From fff3de99381a6effa786d3a9493785a328d4f466 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Wed, 17 Jun 2020 16:13:58 +0200 Subject: [PATCH 01/11] wip: hash bundle url and use it as the cache version --- lib/setup-tools.js | 8 +++++--- lib/setup-tools.js.map | 2 +- src/setup-tools.ts | 8 +++++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/lib/setup-tools.js b/lib/setup-tools.js index 4074722b2..440ea50a8 100644 --- a/lib/setup-tools.js +++ b/lib/setup-tools.js @@ -10,6 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); const toolcache = __importStar(require("@actions/tool-cache")); const path = __importStar(require("path")); +const crypto = __importStar(require("crypto")); class CodeQLSetup { constructor(codeqlDist) { this.dist = codeqlDist; @@ -35,17 +36,18 @@ class CodeQLSetup { } exports.CodeQLSetup = CodeQLSetup; async function setupCodeQL() { - const version = '1.0.0'; + const hash = crypto.createHash('sha256'); const codeqlURL = core.getInput('tools', { required: true }); + const codeqlURLHash = hash.update(codeqlURL).digest('hex'); try { - let codeqlFolder = toolcache.find('CodeQL', version); + let codeqlFolder = toolcache.find('CodeQL', codeqlURLHash); if (codeqlFolder) { core.debug(`CodeQL found in cache ${codeqlFolder}`); } else { const codeqlPath = await toolcache.downloadTool(codeqlURL); const codeqlExtracted = await toolcache.extractTar(codeqlPath); - codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', version); + codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLHash); } return new CodeQLSetup(path.join(codeqlFolder, 'codeql')); } diff --git a/lib/setup-tools.js.map b/lib/setup-tools.js.map index c4307f7f1..ad7735dca 100644 --- a/lib/setup-tools.js.map +++ b/lib/setup-tools.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAE7B,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,MAAM,OAAO,GAAG,OAAO,CAAC;IACxB,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAE7D,IAAI;QACA,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;QACrD,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;SAC/E;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC"} \ No newline at end of file +{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAC7B,+CAAiC;AAEjC,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7D,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAE3D,IAAI;QACA,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC;QAC3D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACrF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AApBD,kCAoBC"} \ No newline at end of file diff --git a/src/setup-tools.ts b/src/setup-tools.ts index 0e1274421..75fe0143d 100644 --- a/src/setup-tools.ts +++ b/src/setup-tools.ts @@ -1,6 +1,7 @@ import * as core from '@actions/core'; import * as toolcache from '@actions/tool-cache'; import * as path from 'path'; +import * as crypto from 'crypto'; export class CodeQLSetup { public dist: string; @@ -29,17 +30,18 @@ export class CodeQLSetup { } export async function setupCodeQL(): Promise { - const version = '1.0.0'; + const hash = crypto.createHash('sha256'); const codeqlURL = core.getInput('tools', { required: true }); + const codeqlURLHash = hash.update(codeqlURL).digest('hex'); try { - let codeqlFolder = toolcache.find('CodeQL', version); + let codeqlFolder = toolcache.find('CodeQL', codeqlURLHash); if (codeqlFolder) { core.debug(`CodeQL found in cache ${codeqlFolder}`); } else { const codeqlPath = await toolcache.downloadTool(codeqlURL); const codeqlExtracted = await toolcache.extractTar(codeqlPath); - codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', version); + codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLHash); } return new CodeQLSetup(path.join(codeqlFolder, 'codeql')); From 74d434c5cafc6787bc2d0fe6b73b5c08b99257b4 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Wed, 17 Jun 2020 16:19:00 +0200 Subject: [PATCH 02/11] fix lint errors --- lib/setup-tools.js | 2 +- lib/setup-tools.js.map | 2 +- src/setup-tools.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/setup-tools.js b/lib/setup-tools.js index 440ea50a8..0f2e4a419 100644 --- a/lib/setup-tools.js +++ b/lib/setup-tools.js @@ -9,8 +9,8 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); const toolcache = __importStar(require("@actions/tool-cache")); -const path = __importStar(require("path")); const crypto = __importStar(require("crypto")); +const path = __importStar(require("path")); class CodeQLSetup { constructor(codeqlDist) { this.dist = codeqlDist; diff --git a/lib/setup-tools.js.map b/lib/setup-tools.js.map index ad7735dca..5ccc5de98 100644 --- a/lib/setup-tools.js.map +++ b/lib/setup-tools.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAC7B,+CAAiC;AAEjC,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7D,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAE3D,IAAI;QACA,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC;QAC3D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACrF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AApBD,kCAoBC"} \ No newline at end of file +{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,+CAAiC;AACjC,2CAA6B;AAE7B,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7D,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAE3D,IAAI;QACA,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC;QAC3D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACrF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AApBD,kCAoBC"} \ No newline at end of file diff --git a/src/setup-tools.ts b/src/setup-tools.ts index 75fe0143d..edc814191 100644 --- a/src/setup-tools.ts +++ b/src/setup-tools.ts @@ -1,7 +1,7 @@ import * as core from '@actions/core'; import * as toolcache from '@actions/tool-cache'; -import * as path from 'path'; import * as crypto from 'crypto'; +import * as path from 'path'; export class CodeQLSetup { public dist: string; From 4c6749115a9f4c7fa051438d018462f47cd0045e Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Thu, 18 Jun 2020 16:31:13 +0200 Subject: [PATCH 03/11] update @actions/tool-cache, install semver, nock --- node_modules/.bin/semver | 2 +- node_modules/@actions/core/package.json | 64 +- node_modules/@actions/exec/package.json | 66 +- .../node_modules/tunnel/package.json | 67 +- .../@actions/http-client/package.json | 79 +- node_modules/@actions/io/package.json | 60 +- node_modules/@actions/tool-cache/README.md | 8 +- .../@actions/tool-cache/lib/manifest.d.ts | 16 + .../@actions/tool-cache/lib/manifest.js | 106 ++ .../@actions/tool-cache/lib/manifest.js.map | 1 + .../@actions/tool-cache/lib/retry-helper.d.ts | 12 + .../@actions/tool-cache/lib/retry-helper.js | 70 + .../tool-cache/lib/retry-helper.js.map | 1 + .../@actions/tool-cache/lib/tool-cache.d.ts | 15 +- .../@actions/tool-cache/lib/tool-cache.js | 312 +++- .../@actions/tool-cache/lib/tool-cache.js.map | 2 +- .../node_modules/@actions/core/README.md | 146 ++ .../@actions/core/lib/command.d.ts | 21 + .../node_modules/@actions/core/lib/command.js | 92 + .../@actions/core/lib/command.js.map | 1 + .../node_modules/@actions/core/lib/core.d.ts | 122 ++ .../node_modules/@actions/core/lib/core.js | 222 +++ .../@actions/core/lib/core.js.map | 1 + .../node_modules/@actions/core/package.json | 66 + .../node_modules/semver/package.json | 67 +- node_modules/@actions/tool-cache/package.json | 87 +- .../escape-string-regexp/package.json | 80 +- node_modules/@ava/typescript/package.json | 74 +- node_modules/@babel/code-frame/package.json | 61 +- node_modules/@babel/highlight/package.json | 60 +- .../react/node_modules/arrify/package.json | 62 +- node_modules/@concordance/react/package.json | 121 +- node_modules/@nodelib/fs.scandir/package.json | 65 +- node_modules/@nodelib/fs.stat/package.json | 58 +- node_modules/@nodelib/fs.walk/package.json | 65 +- node_modules/@octokit/auth-token/package.json | 70 +- node_modules/@octokit/core/package.json | 74 +- node_modules/@octokit/endpoint/package.json | 73 +- .../universal-user-agent/package.json | 63 +- node_modules/@octokit/graphql/package.json | 75 +- .../plugin-paginate-rest/package.json | 72 +- .../@octokit/plugin-request-log/package.json | 72 +- .../plugin-rest-endpoint-methods/package.json | 72 +- .../@octokit/request-error/package.json | 73 +- node_modules/@octokit/request/package.json | 74 +- node_modules/@octokit/rest/package.json | 72 +- node_modules/@octokit/types/package.json | 108 +- node_modules/@sindresorhus/is/package.json | 95 +- .../@szmarczak/http-timer/package.json | 78 +- node_modules/@types/color-name/package.json | 60 +- node_modules/@types/events/package.json | 58 +- node_modules/@types/glob/package.json | 67 +- node_modules/@types/jszip/package.json | 62 +- node_modules/@types/long/package.json | 53 +- node_modules/@types/minimatch/package.json | 56 +- node_modules/@types/nock/LICENSE | 21 + node_modules/@types/nock/README.md | 3 + node_modules/@types/nock/package.json | 48 + node_modules/@types/node/package.json | 187 +- .../normalize-package-data/package.json | 53 +- node_modules/@types/semver/LICENSE | 21 + node_modules/@types/semver/README.md | 16 + .../@types/semver/classes/comparator.d.ts | 17 + node_modules/@types/semver/classes/range.d.ts | 21 + .../@types/semver/classes/semver.d.ts | 62 + .../@types/semver/functions/clean.d.ts | 8 + node_modules/@types/semver/functions/cmp.d.ts | 16 + .../@types/semver/functions/coerce.d.ts | 12 + .../semver/functions/compare-build.d.ts | 16 + .../semver/functions/compare-loose.d.ts | 5 + .../@types/semver/functions/compare.d.ts | 20 + .../@types/semver/functions/diff.d.ts | 13 + node_modules/@types/semver/functions/eq.d.ts | 9 + node_modules/@types/semver/functions/gt.d.ts | 9 + node_modules/@types/semver/functions/gte.d.ts | 9 + node_modules/@types/semver/functions/inc.d.ts | 15 + node_modules/@types/semver/functions/lt.d.ts | 9 + node_modules/@types/semver/functions/lte.d.ts | 8 + .../@types/semver/functions/major.d.ts | 9 + .../@types/semver/functions/minor.d.ts | 9 + node_modules/@types/semver/functions/neq.d.ts | 9 + .../@types/semver/functions/parse.d.ts | 12 + .../@types/semver/functions/patch.d.ts | 9 + .../@types/semver/functions/prerelease.d.ts | 12 + .../@types/semver/functions/rcompare.d.ts | 15 + .../@types/semver/functions/rsort.d.ts | 9 + .../@types/semver/functions/satisfies.d.ts | 14 + .../@types/semver/functions/sort.d.ts | 9 + .../@types/semver/functions/valid.d.ts | 11 + node_modules/@types/semver/index.d.ts | 133 ++ .../@types/semver/internals/identifiers.d.ts | 13 + node_modules/@types/semver/package.json | 76 + node_modules/@types/semver/preload.d.ts | 2 + node_modules/@types/semver/ranges/gtr.d.ts | 14 + .../@types/semver/ranges/intersects.d.ts | 13 + node_modules/@types/semver/ranges/ltr.d.ts | 14 + .../@types/semver/ranges/max-satisfying.d.ts | 14 + .../@types/semver/ranges/min-satisfying.d.ts | 14 + .../@types/semver/ranges/min-version.d.ts | 10 + .../@types/semver/ranges/outside.d.ts | 15 + .../@types/semver/ranges/simplify.d.ts | 14 + .../@types/semver/ranges/to-comparators.d.ts | 9 + node_modules/@types/semver/ranges/valid.d.ts | 12 + node_modules/acorn/package.json | 62 +- node_modules/aggregate-error/package.json | 71 +- .../node_modules/emoji-regex/package.json | 89 +- .../is-fullwidth-code-point/package.json | 60 +- .../node_modules/string-width/package.json | 70 +- .../node_modules/strip-ansi/package.json | 68 +- node_modules/ansi-align/package.json | 85 +- node_modules/ansi-regex/package.json | 64 +- node_modules/ansi-styles/package.json | 76 +- node_modules/argparse/package.json | 81 +- node_modules/array-find-index/package.json | 62 +- node_modules/array-union/package.json | 65 +- node_modules/arrgv/package.json | 65 +- node_modules/arrify/package.json | 64 +- .../ava/node_modules/acorn-walk/package.json | 56 +- .../ava/node_modules/ansi-styles/package.json | 79 +- .../ava/node_modules/chalk/package.json | 84 +- .../node_modules/color-convert/package.json | 81 +- .../ava/node_modules/color-name/package.json | 62 +- .../escape-string-regexp/package.json | 80 +- .../ava/node_modules/has-flag/package.json | 64 +- .../source-map-support/package.json | 58 +- .../ava/node_modules/stack-utils/package.json | 72 +- .../node_modules/supports-color/package.json | 68 +- node_modules/ava/package.json | 149 +- node_modules/balanced-match/package.json | 68 +- node_modules/before-after-hook/package.json | 102 +- node_modules/binary-extensions/package.json | 64 +- node_modules/blueimp-md5/package.json | 80 +- .../node_modules/ansi-styles/package.json | 78 +- .../boxen/node_modules/chalk/package.json | 82 +- .../node_modules/color-convert/package.json | 81 +- .../node_modules/color-name/package.json | 62 +- .../boxen/node_modules/has-flag/package.json | 64 +- .../node_modules/supports-color/package.json | 68 +- .../boxen/node_modules/type-fest/package.json | 68 +- node_modules/boxen/package.json | 88 +- node_modules/brace-expansion/package.json | 70 +- node_modules/braces/package.json | 103 +- node_modules/buffer-from/package.json | 57 +- node_modules/builtin-modules/package.json | 64 +- .../node_modules/get-stream/package.json | 72 +- .../node_modules/lowercase-keys/package.json | 64 +- node_modules/cacheable-request/package.json | 96 +- node_modules/callsites/package.json | 64 +- node_modules/camelcase/package.json | 65 +- node_modules/chalk/package.json | 88 +- node_modules/charenc/package.json | 65 +- .../node_modules/anymatch/package.json | 80 +- .../node_modules/normalize-path/package.json | 84 +- node_modules/chokidar/package.json | 128 +- node_modules/chunkd/package.json | 101 +- node_modules/ci-info/package.json | 74 +- node_modules/ci-parallel-vars/package.json | 69 +- node_modules/clean-stack/package.json | 68 +- node_modules/clean-yaml-object/package.json | 68 +- node_modules/cli-boxes/package.json | 64 +- node_modules/cli-cursor/package.json | 71 +- node_modules/cli-spinners/package.json | 68 +- node_modules/cli-truncate/package.json | 72 +- node_modules/cliui/package.json | 104 +- node_modules/clone-response/package.json | 83 +- node_modules/clone/package.json | 162 +- node_modules/code-excerpt/package.json | 64 +- node_modules/color-convert/package.json | 83 +- node_modules/color-name/package.json | 60 +- node_modules/commander/package.json | 78 +- node_modules/common-path-prefix/package.json | 72 +- node_modules/concat-map/package.json | 73 +- .../concordance/node_modules/.bin/semver | 1 + .../node_modules/md5-hex/package.json | 66 +- .../node_modules/semver/CHANGELOG.md | 39 + .../concordance/node_modules/semver/LICENSE | 15 + .../concordance/node_modules/semver/README.md | 412 +++++ .../node_modules}/semver/bin/semver | 0 .../node_modules/semver/package.json | 60 + .../concordance/node_modules/semver/range.bnf | 16 + .../node_modules}/semver/semver.js | 0 node_modules/concordance/package.json | 84 +- node_modules/configstore/package.json | 76 +- node_modules/console-log-level/package.json | 75 +- node_modules/convert-source-map/package.json | 80 +- node_modules/convert-to-spaces/package.json | 69 +- .../cross-spawn/node_modules/.bin/semver | 1 + .../node_modules/semver/CHANGELOG.md | 39 + .../cross-spawn/node_modules/semver/LICENSE | 15 + .../cross-spawn/node_modules/semver/README.md | 412 +++++ .../node_modules/semver/bin/semver | 160 ++ .../node_modules/semver/package.json | 60 + .../cross-spawn/node_modules/semver/range.bnf | 16 + .../cross-spawn/node_modules/semver/semver.js | 1483 +++++++++++++++ node_modules/cross-spawn/package.json | 114 +- node_modules/crypt/package.json | 61 +- .../crypto-random-string/package.json | 64 +- node_modules/currently-unhandled/package.json | 88 +- node_modules/date-time/package.json | 66 +- node_modules/debug/package.json | 115 +- node_modules/decamelize/package.json | 63 +- node_modules/decompress-response/package.json | 92 +- node_modules/deep-extend/package.json | 100 +- node_modules/defaults/package.json | 69 +- node_modules/defer-to-connect/package.json | 113 +- .../del/node_modules/globby/package.json | 94 +- .../del/node_modules/p-map/package.json | 76 +- node_modules/del/package.json | 100 +- node_modules/deprecation/package.json | 74 +- node_modules/diff/package.json | 91 +- node_modules/dir-glob/package.json | 73 +- node_modules/dot-prop/package.json | 72 +- node_modules/duplexer3/package.json | 62 +- node_modules/emittery/package.json | 78 +- node_modules/emoji-regex/package.json | 87 +- node_modules/end-of-stream/package.json | 67 +- node_modules/equal-length/package.json | 60 +- node_modules/error-ex/package.json | 87 +- node_modules/escape-goat/package.json | 64 +- .../escape-string-regexp/package.json | 79 +- node_modules/esutils/package.json | 77 +- node_modules/execa/package.json | 93 +- node_modules/fast-diff/package.json | 61 +- node_modules/fast-glob/package.json | 121 +- node_modules/fastq/package.json | 92 +- node_modules/figures/package.json | 74 +- node_modules/file-url/package.json | 63 +- node_modules/fill-range/package.json | 97 +- node_modules/find-up/package.json | 75 +- node_modules/fs.realpath/package.json | 71 +- node_modules/fs/package.json | 54 +- node_modules/fsevents/package.json | 92 +- node_modules/get-caller-file/package.json | 77 +- node_modules/get-stream/package.json | 68 +- node_modules/glob-parent/package.json | 93 +- node_modules/glob/package.json | 85 +- node_modules/global-dirs/package.json | 72 +- node_modules/globby/package.json | 92 +- node_modules/got/package.json | 114 +- node_modules/graceful-fs/package.json | 87 +- node_modules/has-flag/package.json | 62 +- node_modules/has-yarn/package.json | 64 +- node_modules/hosted-git-info/package.json | 81 +- .../http-cache-semantics/package.json | 66 +- node_modules/ignore-by-default/package.json | 70 +- node_modules/ignore/package.json | 121 +- node_modules/import-lazy/package.json | 62 +- node_modules/import-local/package.json | 72 +- node_modules/imurmurhash/package.json | 73 +- node_modules/indent-string/package.json | 65 +- node_modules/inflight/package.json | 65 +- node_modules/inherits/package.json | 62 +- node_modules/ini/package.json | 76 +- node_modules/irregular-plurals/package.json | 64 +- node_modules/is-arrayish/package.json | 68 +- node_modules/is-binary-path/package.json | 68 +- node_modules/is-buffer/package.json | 39 +- node_modules/is-ci/package.json | 77 +- node_modules/is-error/package.json | 84 +- node_modules/is-extglob/package.json | 71 +- .../is-fullwidth-code-point/package.json | 65 +- node_modules/is-glob/package.json | 90 +- .../is-installed-globally/package.json | 80 +- node_modules/is-interactive/package.json | 66 +- node_modules/is-npm/package.json | 64 +- node_modules/is-number/package.json | 88 +- node_modules/is-obj/package.json | 64 +- node_modules/is-path-cwd/package.json | 64 +- node_modules/is-path-inside/package.json | 65 +- node_modules/is-plain-object/package.json | 109 +- node_modules/is-promise/package.json | 63 +- node_modules/is-stream/package.json | 63 +- node_modules/is-typedarray/package.json | 66 +- node_modules/is-yarn-global/package.json | 57 +- node_modules/isexe/package.json | 66 +- node_modules/isobject/package.json | 106 +- node_modules/js-string-escape/package.json | 80 +- node_modules/js-tokens/package.json | 74 +- .../js-yaml/node_modules/esprima/package.json | 138 +- node_modules/js-yaml/package.json | 99 +- node_modules/json-buffer/package.json | 54 +- .../json-parse-better-errors/package.json | 96 +- node_modules/json-stringify-safe/.npmignore | 1 + node_modules/json-stringify-safe/CHANGELOG.md | 14 + node_modules/json-stringify-safe/LICENSE | 15 + node_modules/json-stringify-safe/Makefile | 35 + node_modules/json-stringify-safe/README.md | 52 + node_modules/json-stringify-safe/package.json | 66 + node_modules/json-stringify-safe/stringify.js | 27 + .../json-stringify-safe/test/mocha.opts | 2 + .../test/stringify_test.js | 246 +++ node_modules/jsonschema/package.json | 63 +- node_modules/keyv/package.json | 89 +- node_modules/latest-version/package.json | 72 +- node_modules/lines-and-columns/package.json | 88 +- .../node_modules/strip-bom/package.json | 62 +- .../node_modules/type-fest/package.json | 66 +- node_modules/load-json-file/package.json | 76 +- node_modules/locate-path/package.json | 68 +- node_modules/lodash.clonedeep/package.json | 78 +- node_modules/lodash.flattendeep/package.json | 78 +- node_modules/lodash.islength/package.json | 78 +- node_modules/lodash.merge/package.json | 69 +- node_modules/lodash/package.json | 70 +- node_modules/log-symbols/package.json | 70 +- node_modules/long/package.json | 68 +- node_modules/lowercase-keys/package.json | 61 +- node_modules/macos-release/package.json | 63 +- .../make-dir/node_modules/semver/package.json | 68 +- node_modules/make-dir/package.json | 84 +- node_modules/map-age-cleaner/package.json | 102 +- .../escape-string-regexp/package.json | 66 +- node_modules/matcher/package.json | 70 +- node_modules/md5-hex/package.json | 70 +- node_modules/md5-o-matic/package.json | 71 +- node_modules/md5/package.json | 75 +- .../mem/node_modules/mimic-fn/package.json | 64 +- node_modules/mem/package.json | 74 +- node_modules/merge2/package.json | 80 +- node_modules/micromatch/package.json | 144 +- node_modules/mimic-fn/package.json | 64 +- node_modules/mimic-response/package.json | 68 +- node_modules/minimatch/package.json | 74 +- node_modules/minimist/package.json | 79 +- node_modules/mkdirp/package.json | 77 +- node_modules/ms/package.json | 77 +- node_modules/mute-stream/package.json | 71 +- node_modules/nice-try/package.json | 61 +- node_modules/nock/CHANGELOG.md | 3 + node_modules/nock/LICENSE | 21 + node_modules/nock/README.md | 1617 +++++++++++++++++ node_modules/nock/index.js | 53 + node_modules/nock/lib/back.js | 279 +++ node_modules/nock/lib/common.js | 645 +++++++ node_modules/nock/lib/delayed_body.js | 52 + node_modules/nock/lib/global_emitter.js | 5 + node_modules/nock/lib/intercept.js | 449 +++++ .../nock/lib/intercepted_request_router.js | 320 ++++ node_modules/nock/lib/interceptor.js | 619 +++++++ node_modules/nock/lib/match_body.js | 77 + node_modules/nock/lib/playback_interceptor.js | 348 ++++ node_modules/nock/lib/recorder.js | 386 ++++ node_modules/nock/lib/scope.js | 391 ++++ node_modules/nock/lib/socket.js | 80 + node_modules/nock/package.json | 117 ++ node_modules/nock/types/index.d.ts | 278 +++ node_modules/node-fetch/package.json | 96 +- .../node_modules/.bin/semver | 1 + .../node_modules/semver/CHANGELOG.md | 39 + .../node_modules/semver/LICENSE | 15 + .../node_modules/semver/README.md | 412 +++++ .../node_modules/semver/bin/semver | 160 ++ .../node_modules/semver/package.json | 60 + .../node_modules/semver/range.bnf | 16 + .../node_modules/semver/semver.js | 1483 +++++++++++++++ .../normalize-package-data/package.json | 76 +- node_modules/normalize-url/package.json | 68 +- node_modules/npm-run-path/package.json | 63 +- node_modules/once/package.json | 71 +- node_modules/onetime/package.json | 68 +- .../ora/node_modules/ansi-styles/package.json | 78 +- .../ora/node_modules/chalk/package.json | 82 +- .../node_modules/color-convert/package.json | 81 +- .../ora/node_modules/color-name/package.json | 62 +- .../ora/node_modules/has-flag/package.json | 64 +- .../node_modules/supports-color/package.json | 68 +- node_modules/ora/package.json | 90 +- node_modules/os-name/package.json | 72 +- node_modules/p-cancelable/package.json | 68 +- node_modules/p-defer/package.json | 60 +- node_modules/p-finally/package.json | 59 +- node_modules/p-limit/package.json | 77 +- node_modules/p-locate/package.json | 74 +- node_modules/p-map/package.json | 78 +- node_modules/p-try/package.json | 64 +- .../node_modules/semver/package.json | 68 +- node_modules/package-json/package.json | 78 +- node_modules/parse-json/package.json | 70 +- node_modules/parse-ms/package.json | 64 +- node_modules/path-exists/package.json | 64 +- node_modules/path-is-absolute/package.json | 60 +- node_modules/path-key/package.json | 60 +- node_modules/path-parse/package.json | 60 +- node_modules/path-type/package.json | 66 +- node_modules/path/package.json | 49 +- node_modules/picomatch/package.json | 87 +- node_modules/pify/package.json | 68 +- .../node_modules/find-up/package.json | 68 +- .../node_modules/locate-path/package.json | 68 +- .../node_modules/p-locate/package.json | 72 +- .../node_modules/path-exists/package.json | 60 +- node_modules/pkg-conf/package.json | 76 +- node_modules/pkg-dir/package.json | 70 +- node_modules/plur/package.json | 70 +- node_modules/prepend-http/package.json | 62 +- node_modules/pretty-ms/package.json | 70 +- node_modules/process/package.json | 69 +- .../.npmignore => propagate/.eslintignore} | 2 +- node_modules/propagate/.eslintrc.yml | 35 + node_modules/propagate/.prettierignore | 4 + node_modules/propagate/.prettierrc.yml | 5 + node_modules/propagate/.travis.yml | 27 + .../{tunnel/LICENSE => propagate/LICENSE.md} | 4 +- node_modules/propagate/README.md | 72 + node_modules/propagate/index.js | 85 + node_modules/propagate/package.json | 86 + node_modules/propagate/tests/index.js | 168 ++ node_modules/pump/package.json | 61 +- node_modules/pupa/package.json | 68 +- node_modules/rc/package.json | 78 +- .../node_modules/parse-json/package.json | 74 +- .../node_modules/type-fest/package.json | 68 +- node_modules/read-pkg/package.json | 77 +- node_modules/readdirp/package.json | 126 +- node_modules/registry-auth-token/package.json | 82 +- node_modules/registry-url/package.json | 74 +- .../removeNPMAbsolutePaths/package.json | 93 +- node_modules/require-directory/package.json | 83 +- .../require-main-filename/package.json | 80 +- node_modules/resolve-cwd/package.json | 69 +- node_modules/resolve-from/package.json | 64 +- node_modules/resolve/package.json | 96 +- .../test/module_dir/zmodules/bbb/package.json | 2 +- .../resolve/test/resolver/baz/package.json | 4 +- .../test/resolver/browser_field/package.json | 2 +- .../test/resolver/dot_main/package.json | 4 +- .../test/resolver/dot_slash_main/package.json | 4 +- .../test/resolver/incorrect_main/package.json | 4 +- .../test/resolver/invalid_main/package.json | 2 +- .../test/resolver/multirepo/package.json | 2 +- .../multirepo/packages/package-a/package.json | 2 +- .../multirepo/packages/package-b/package.json | 2 +- .../nested_symlinks/mylib/package.json | 2 +- .../resolver/symlinked/package/package.json | 2 +- node_modules/responselike/package.json | 79 +- node_modules/restore-cursor/package.json | 68 +- node_modules/reusify/package.json | 94 +- node_modules/rimraf/package.json | 80 +- node_modules/run-parallel/package.json | 39 +- node_modules/safe-buffer/package.json | 41 +- .../node_modules/semver/package.json | 68 +- node_modules/semver-diff/package.json | 68 +- node_modules/semver/CHANGELOG.md | 72 + node_modules/semver/README.md | 206 ++- node_modules/semver/bin/semver.js | 173 ++ node_modules/semver/classes/comparator.js | 139 ++ node_modules/semver/classes/index.js | 5 + node_modules/semver/classes/range.js | 463 +++++ node_modules/semver/classes/semver.js | 290 +++ node_modules/semver/functions/clean.js | 6 + node_modules/semver/functions/cmp.js | 48 + node_modules/semver/functions/coerce.js | 51 + .../semver/functions/compare-build.js | 7 + .../semver/functions/compare-loose.js | 3 + node_modules/semver/functions/compare.js | 5 + node_modules/semver/functions/diff.js | 23 + node_modules/semver/functions/eq.js | 3 + node_modules/semver/functions/gt.js | 3 + node_modules/semver/functions/gte.js | 3 + node_modules/semver/functions/inc.js | 15 + node_modules/semver/functions/lt.js | 3 + node_modules/semver/functions/lte.js | 3 + node_modules/semver/functions/major.js | 3 + node_modules/semver/functions/minor.js | 3 + node_modules/semver/functions/neq.js | 3 + node_modules/semver/functions/parse.js | 37 + node_modules/semver/functions/patch.js | 3 + node_modules/semver/functions/prerelease.js | 6 + node_modules/semver/functions/rcompare.js | 3 + node_modules/semver/functions/rsort.js | 3 + node_modules/semver/functions/satisfies.js | 10 + node_modules/semver/functions/sort.js | 3 + node_modules/semver/functions/valid.js | 6 + node_modules/semver/index.js | 48 + node_modules/semver/internal/constants.js | 17 + node_modules/semver/internal/debug.js | 9 + node_modules/semver/internal/identifiers.js | 23 + node_modules/semver/internal/re.js | 182 ++ node_modules/semver/package.json | 81 +- node_modules/semver/preload.js | 2 + node_modules/semver/ranges/gtr.js | 4 + node_modules/semver/ranges/intersects.js | 7 + node_modules/semver/ranges/ltr.js | 4 + node_modules/semver/ranges/max-satisfying.js | 25 + node_modules/semver/ranges/min-satisfying.js | 24 + node_modules/semver/ranges/min-version.js | 57 + node_modules/semver/ranges/outside.js | 80 + node_modules/semver/ranges/simplify.js | 44 + node_modules/semver/ranges/subset.js | 155 ++ node_modules/semver/ranges/to-comparators.js | 8 + node_modules/semver/ranges/valid.js | 11 + node_modules/serialize-error/package.json | 62 +- node_modules/set-blocking/package.json | 82 +- node_modules/shebang-command/package.json | 63 +- node_modules/shebang-regex/package.json | 59 +- node_modules/signal-exit/package.json | 81 +- node_modules/slash/package.json | 67 +- .../node_modules/ansi-styles/package.json | 78 +- .../node_modules/astral-regex/package.json | 64 +- .../node_modules/color-convert/package.json | 81 +- .../node_modules/color-name/package.json | 62 +- node_modules/slice-ansi/package.json | 76 +- node_modules/source-map/package.json | 253 ++- node_modules/spdx-correct/package.json | 75 +- node_modules/spdx-exceptions/package.json | 60 +- .../spdx-expression-parse/package.json | 89 +- node_modules/spdx-license-ids/package.json | 80 +- node_modules/sprintf-js/package.json | 67 +- node_modules/string-width/package.json | 77 +- .../node_modules/ansi-regex/package.json | 66 +- node_modules/strip-ansi/package.json | 72 +- node_modules/strip-eof/package.json | 61 +- node_modules/strip-json-comments/package.json | 62 +- .../node_modules/ansi-regex/package.json | 64 +- .../supertap/node_modules/arrify/package.json | 62 +- .../node_modules/indent-string/package.json | 62 +- .../node_modules/strip-ansi/package.json | 66 +- node_modules/supertap/package.json | 78 +- node_modules/supports-color/package.json | 68 +- node_modules/temp-dir/package.json | 66 +- node_modules/term-size/package.json | 68 +- node_modules/time-zone/package.json | 62 +- node_modules/to-readable-stream/package.json | 64 +- node_modules/to-regex-range/package.json | 83 +- node_modules/trim-off-newlines/package.json | 62 +- node_modules/tslib/package.json | 60 +- node_modules/tslint/node_modules/.bin/semver | 1 + .../tslint/node_modules/semver/CHANGELOG.md | 39 + .../tslint/node_modules/semver/LICENSE | 15 + .../tslint/node_modules/semver/README.md | 412 +++++ .../tslint/node_modules/semver/bin/semver | 160 ++ .../tslint/node_modules/semver/package.json | 60 + .../tslint/node_modules/semver/range.bnf | 16 + .../tslint/node_modules/semver/semver.js | 1483 +++++++++++++++ node_modules/tslint/package.json | 102 +- node_modules/tsutils/package.json | 101 +- node_modules/tunnel/CHANGELOG.md | 13 - node_modules/tunnel/README.md | 179 -- node_modules/tunnel/index.js | 1 - node_modules/tunnel/lib/tunnel.js | 247 --- node_modules/tunnel/package.json | 34 - node_modules/tunnel/test/http-over-http.js | 108 -- node_modules/tunnel/test/http-over-https.js | 130 -- node_modules/tunnel/test/https-over-http.js | 130 -- .../tunnel/test/https-over-https-error.js | 261 --- node_modules/tunnel/test/https-over-https.js | 146 -- node_modules/tunnel/test/keys/Makefile | 157 -- node_modules/tunnel/test/keys/agent1-cert.pem | 14 - node_modules/tunnel/test/keys/agent1-csr.pem | 10 - node_modules/tunnel/test/keys/agent1-key.pem | 9 - node_modules/tunnel/test/keys/agent1.cnf | 19 - node_modules/tunnel/test/keys/agent2-cert.pem | 13 - node_modules/tunnel/test/keys/agent2-csr.pem | 10 - node_modules/tunnel/test/keys/agent2-key.pem | 9 - node_modules/tunnel/test/keys/agent2.cnf | 19 - node_modules/tunnel/test/keys/agent3-cert.pem | 14 - node_modules/tunnel/test/keys/agent3-csr.pem | 10 - node_modules/tunnel/test/keys/agent3-key.pem | 9 - node_modules/tunnel/test/keys/agent3.cnf | 19 - node_modules/tunnel/test/keys/agent4-cert.pem | 15 - node_modules/tunnel/test/keys/agent4-csr.pem | 10 - node_modules/tunnel/test/keys/agent4-key.pem | 9 - node_modules/tunnel/test/keys/agent4.cnf | 21 - node_modules/tunnel/test/keys/ca1-cert.pem | 14 - node_modules/tunnel/test/keys/ca1-cert.srl | 1 - node_modules/tunnel/test/keys/ca1-key.pem | 17 - node_modules/tunnel/test/keys/ca1.cnf | 17 - node_modules/tunnel/test/keys/ca2-cert.pem | 14 - node_modules/tunnel/test/keys/ca2-cert.srl | 1 - node_modules/tunnel/test/keys/ca2-crl.pem | 10 - .../tunnel/test/keys/ca2-database.txt | 1 - node_modules/tunnel/test/keys/ca2-key.pem | 17 - node_modules/tunnel/test/keys/ca2-serial | 1 - node_modules/tunnel/test/keys/ca2.cnf | 17 - node_modules/tunnel/test/keys/ca3-cert.pem | 14 - node_modules/tunnel/test/keys/ca3-cert.srl | 1 - node_modules/tunnel/test/keys/ca3-key.pem | 17 - node_modules/tunnel/test/keys/ca3.cnf | 17 - node_modules/tunnel/test/keys/ca4-cert.pem | 14 - node_modules/tunnel/test/keys/ca4-cert.srl | 1 - node_modules/tunnel/test/keys/ca4-key.pem | 17 - node_modules/tunnel/test/keys/ca4.cnf | 17 - node_modules/tunnel/test/keys/client.cnf | 16 - .../tunnel/test/keys/client1-cert.pem | 14 - node_modules/tunnel/test/keys/client1-csr.pem | 12 - node_modules/tunnel/test/keys/client1-key.pem | 15 - node_modules/tunnel/test/keys/client1.cnf | 16 - .../tunnel/test/keys/client2-cert.pem | 14 - node_modules/tunnel/test/keys/client2-csr.pem | 12 - node_modules/tunnel/test/keys/client2-key.pem | 15 - node_modules/tunnel/test/keys/client2.cnf | 16 - node_modules/tunnel/test/keys/proxy1-cert.pem | 14 - node_modules/tunnel/test/keys/proxy1-csr.pem | 12 - node_modules/tunnel/test/keys/proxy1-key.pem | 15 - node_modules/tunnel/test/keys/proxy1.cnf | 16 - node_modules/tunnel/test/keys/proxy2-cert.pem | 14 - node_modules/tunnel/test/keys/proxy2-csr.pem | 12 - node_modules/tunnel/test/keys/proxy2-key.pem | 15 - node_modules/tunnel/test/keys/proxy2.cnf | 16 - .../tunnel/test/keys/server1-cert.pem | 14 - node_modules/tunnel/test/keys/server1-csr.pem | 12 - node_modules/tunnel/test/keys/server1-key.pem | 15 - node_modules/tunnel/test/keys/server1.cnf | 16 - .../tunnel/test/keys/server2-cert.pem | 14 - node_modules/tunnel/test/keys/server2-csr.pem | 12 - node_modules/tunnel/test/keys/server2-key.pem | 15 - node_modules/tunnel/test/keys/server2.cnf | 16 - node_modules/tunnel/test/keys/test.js | 43 - node_modules/typed-rest-client/Handlers.d.ts | 4 - node_modules/typed-rest-client/Handlers.js | 10 - .../typed-rest-client/HttpClient.d.ts | 103 -- node_modules/typed-rest-client/HttpClient.js | 455 ----- node_modules/typed-rest-client/Index.d.ts | 0 node_modules/typed-rest-client/Index.js | 2 - .../typed-rest-client/Interfaces.d.ts | 62 - node_modules/typed-rest-client/Interfaces.js | 5 - node_modules/typed-rest-client/LICENSE | 21 - node_modules/typed-rest-client/README.md | 100 - .../typed-rest-client/RestClient.d.ts | 77 - node_modules/typed-rest-client/RestClient.js | 217 --- .../typed-rest-client/ThirdPartyNotice.txt | 1318 -------------- node_modules/typed-rest-client/Util.d.ts | 7 - node_modules/typed-rest-client/Util.js | 35 - .../handlers/basiccreds.d.ts | 9 - .../typed-rest-client/handlers/basiccreds.js | 24 - .../handlers/bearertoken.d.ts | 8 - .../typed-rest-client/handlers/bearertoken.js | 23 - .../typed-rest-client/handlers/ntlm.d.ts | 13 - .../typed-rest-client/handlers/ntlm.js | 137 -- .../handlers/personalaccesstoken.d.ts | 8 - .../handlers/personalaccesstoken.js | 23 - .../opensource/node-http-ntlm/ntlm.js | 389 ---- .../opensource/node-http-ntlm/readme.txt | 6 - node_modules/typed-rest-client/package.json | 46 - .../typedarray-to-buffer/package.json | 39 +- node_modules/typescript/package.json | 111 +- node_modules/underscore/LICENSE | 23 - node_modules/underscore/README.md | 22 - node_modules/underscore/package.json | 42 - node_modules/underscore/underscore-min.js | 6 - node_modules/underscore/underscore-min.map | 1 - node_modules/underscore/underscore.js | 1548 ---------------- node_modules/unique-string/package.json | 68 +- .../universal-user-agent/package.json | 65 +- .../node_modules/ansi-styles/package.json | 78 +- .../node_modules/chalk/package.json | 82 +- .../node_modules/color-convert/package.json | 81 +- .../node_modules/color-name/package.json | 62 +- .../node_modules/has-flag/package.json | 64 +- .../node_modules/supports-color/package.json | 68 +- node_modules/update-notifier/package.json | 96 +- node_modules/url-parse-lax/package.json | 66 +- node_modules/util/package.json | 71 +- node_modules/uuid/CHANGELOG.md | 43 +- node_modules/uuid/README.md | 71 +- node_modules/uuid/lib/bytesToUuid.js | 18 +- node_modules/uuid/package.json | 110 +- node_modules/uuid/v1.js | 2 +- .../validate-npm-package-license/package.json | 59 +- node_modules/wcwidth/package.json | 71 +- node_modules/well-known-symbols/package.json | 86 +- node_modules/which-module/package.json | 79 +- node_modules/which/package.json | 72 +- node_modules/widest-line/package.json | 68 +- node_modules/windows-release/package.json | 67 +- .../node_modules/ansi-styles/package.json | 78 +- .../node_modules/color-convert/package.json | 81 +- .../node_modules/color-name/package.json | 62 +- node_modules/wrap-ansi/package.json | 80 +- node_modules/wrappy/package.json | 67 +- node_modules/write-file-atomic/package.json | 82 +- node_modules/xdg-basedir/package.json | 67 +- node_modules/y18n/package.json | 82 +- node_modules/yargs-parser/package.json | 92 +- node_modules/yargs/package.json | 94 +- node_modules/zlib/package.json | 54 +- package-lock.json | 119 +- package.json | 12 +- 678 files changed, 39117 insertions(+), 14477 deletions(-) create mode 100644 node_modules/@actions/tool-cache/lib/manifest.d.ts create mode 100644 node_modules/@actions/tool-cache/lib/manifest.js create mode 100644 node_modules/@actions/tool-cache/lib/manifest.js.map create mode 100644 node_modules/@actions/tool-cache/lib/retry-helper.d.ts create mode 100644 node_modules/@actions/tool-cache/lib/retry-helper.js create mode 100644 node_modules/@actions/tool-cache/lib/retry-helper.js.map create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/README.md create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js.map create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.d.ts create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js.map create mode 100644 node_modules/@actions/tool-cache/node_modules/@actions/core/package.json create mode 100644 node_modules/@types/nock/LICENSE create mode 100644 node_modules/@types/nock/README.md create mode 100644 node_modules/@types/nock/package.json create mode 100644 node_modules/@types/semver/LICENSE create mode 100644 node_modules/@types/semver/README.md create mode 100644 node_modules/@types/semver/classes/comparator.d.ts create mode 100644 node_modules/@types/semver/classes/range.d.ts create mode 100644 node_modules/@types/semver/classes/semver.d.ts create mode 100644 node_modules/@types/semver/functions/clean.d.ts create mode 100644 node_modules/@types/semver/functions/cmp.d.ts create mode 100644 node_modules/@types/semver/functions/coerce.d.ts create mode 100644 node_modules/@types/semver/functions/compare-build.d.ts create mode 100644 node_modules/@types/semver/functions/compare-loose.d.ts create mode 100644 node_modules/@types/semver/functions/compare.d.ts create mode 100644 node_modules/@types/semver/functions/diff.d.ts create mode 100644 node_modules/@types/semver/functions/eq.d.ts create mode 100644 node_modules/@types/semver/functions/gt.d.ts create mode 100644 node_modules/@types/semver/functions/gte.d.ts create mode 100644 node_modules/@types/semver/functions/inc.d.ts create mode 100644 node_modules/@types/semver/functions/lt.d.ts create mode 100644 node_modules/@types/semver/functions/lte.d.ts create mode 100644 node_modules/@types/semver/functions/major.d.ts create mode 100644 node_modules/@types/semver/functions/minor.d.ts create mode 100644 node_modules/@types/semver/functions/neq.d.ts create mode 100644 node_modules/@types/semver/functions/parse.d.ts create mode 100644 node_modules/@types/semver/functions/patch.d.ts create mode 100644 node_modules/@types/semver/functions/prerelease.d.ts create mode 100644 node_modules/@types/semver/functions/rcompare.d.ts create mode 100644 node_modules/@types/semver/functions/rsort.d.ts create mode 100644 node_modules/@types/semver/functions/satisfies.d.ts create mode 100644 node_modules/@types/semver/functions/sort.d.ts create mode 100644 node_modules/@types/semver/functions/valid.d.ts create mode 100644 node_modules/@types/semver/index.d.ts create mode 100644 node_modules/@types/semver/internals/identifiers.d.ts create mode 100644 node_modules/@types/semver/package.json create mode 100644 node_modules/@types/semver/preload.d.ts create mode 100644 node_modules/@types/semver/ranges/gtr.d.ts create mode 100644 node_modules/@types/semver/ranges/intersects.d.ts create mode 100644 node_modules/@types/semver/ranges/ltr.d.ts create mode 100644 node_modules/@types/semver/ranges/max-satisfying.d.ts create mode 100644 node_modules/@types/semver/ranges/min-satisfying.d.ts create mode 100644 node_modules/@types/semver/ranges/min-version.d.ts create mode 100644 node_modules/@types/semver/ranges/outside.d.ts create mode 100644 node_modules/@types/semver/ranges/simplify.d.ts create mode 100644 node_modules/@types/semver/ranges/to-comparators.d.ts create mode 100644 node_modules/@types/semver/ranges/valid.d.ts create mode 120000 node_modules/concordance/node_modules/.bin/semver create mode 100644 node_modules/concordance/node_modules/semver/CHANGELOG.md create mode 100644 node_modules/concordance/node_modules/semver/LICENSE create mode 100644 node_modules/concordance/node_modules/semver/README.md rename node_modules/{ => concordance/node_modules}/semver/bin/semver (100%) create mode 100644 node_modules/concordance/node_modules/semver/package.json create mode 100644 node_modules/concordance/node_modules/semver/range.bnf rename node_modules/{ => concordance/node_modules}/semver/semver.js (100%) create mode 120000 node_modules/cross-spawn/node_modules/.bin/semver create mode 100644 node_modules/cross-spawn/node_modules/semver/CHANGELOG.md create mode 100644 node_modules/cross-spawn/node_modules/semver/LICENSE create mode 100644 node_modules/cross-spawn/node_modules/semver/README.md create mode 100755 node_modules/cross-spawn/node_modules/semver/bin/semver create mode 100644 node_modules/cross-spawn/node_modules/semver/package.json create mode 100644 node_modules/cross-spawn/node_modules/semver/range.bnf create mode 100644 node_modules/cross-spawn/node_modules/semver/semver.js create mode 100644 node_modules/json-stringify-safe/.npmignore create mode 100644 node_modules/json-stringify-safe/CHANGELOG.md create mode 100644 node_modules/json-stringify-safe/LICENSE create mode 100644 node_modules/json-stringify-safe/Makefile create mode 100644 node_modules/json-stringify-safe/README.md create mode 100644 node_modules/json-stringify-safe/package.json create mode 100644 node_modules/json-stringify-safe/stringify.js create mode 100644 node_modules/json-stringify-safe/test/mocha.opts create mode 100644 node_modules/json-stringify-safe/test/stringify_test.js create mode 100644 node_modules/nock/CHANGELOG.md create mode 100644 node_modules/nock/LICENSE create mode 100644 node_modules/nock/README.md create mode 100644 node_modules/nock/index.js create mode 100644 node_modules/nock/lib/back.js create mode 100644 node_modules/nock/lib/common.js create mode 100644 node_modules/nock/lib/delayed_body.js create mode 100644 node_modules/nock/lib/global_emitter.js create mode 100644 node_modules/nock/lib/intercept.js create mode 100644 node_modules/nock/lib/intercepted_request_router.js create mode 100644 node_modules/nock/lib/interceptor.js create mode 100644 node_modules/nock/lib/match_body.js create mode 100644 node_modules/nock/lib/playback_interceptor.js create mode 100644 node_modules/nock/lib/recorder.js create mode 100644 node_modules/nock/lib/scope.js create mode 100644 node_modules/nock/lib/socket.js create mode 100644 node_modules/nock/package.json create mode 100644 node_modules/nock/types/index.d.ts create mode 120000 node_modules/normalize-package-data/node_modules/.bin/semver create mode 100644 node_modules/normalize-package-data/node_modules/semver/CHANGELOG.md create mode 100644 node_modules/normalize-package-data/node_modules/semver/LICENSE create mode 100644 node_modules/normalize-package-data/node_modules/semver/README.md create mode 100755 node_modules/normalize-package-data/node_modules/semver/bin/semver create mode 100644 node_modules/normalize-package-data/node_modules/semver/package.json create mode 100644 node_modules/normalize-package-data/node_modules/semver/range.bnf create mode 100644 node_modules/normalize-package-data/node_modules/semver/semver.js rename node_modules/{tunnel/.npmignore => propagate/.eslintignore} (58%) create mode 100644 node_modules/propagate/.eslintrc.yml create mode 100644 node_modules/propagate/.prettierignore create mode 100644 node_modules/propagate/.prettierrc.yml create mode 100644 node_modules/propagate/.travis.yml rename node_modules/{tunnel/LICENSE => propagate/LICENSE.md} (92%) create mode 100644 node_modules/propagate/README.md create mode 100644 node_modules/propagate/index.js create mode 100644 node_modules/propagate/package.json create mode 100644 node_modules/propagate/tests/index.js create mode 100755 node_modules/semver/bin/semver.js create mode 100644 node_modules/semver/classes/comparator.js create mode 100644 node_modules/semver/classes/index.js create mode 100644 node_modules/semver/classes/range.js create mode 100644 node_modules/semver/classes/semver.js create mode 100644 node_modules/semver/functions/clean.js create mode 100644 node_modules/semver/functions/cmp.js create mode 100644 node_modules/semver/functions/coerce.js create mode 100644 node_modules/semver/functions/compare-build.js create mode 100644 node_modules/semver/functions/compare-loose.js create mode 100644 node_modules/semver/functions/compare.js create mode 100644 node_modules/semver/functions/diff.js create mode 100644 node_modules/semver/functions/eq.js create mode 100644 node_modules/semver/functions/gt.js create mode 100644 node_modules/semver/functions/gte.js create mode 100644 node_modules/semver/functions/inc.js create mode 100644 node_modules/semver/functions/lt.js create mode 100644 node_modules/semver/functions/lte.js create mode 100644 node_modules/semver/functions/major.js create mode 100644 node_modules/semver/functions/minor.js create mode 100644 node_modules/semver/functions/neq.js create mode 100644 node_modules/semver/functions/parse.js create mode 100644 node_modules/semver/functions/patch.js create mode 100644 node_modules/semver/functions/prerelease.js create mode 100644 node_modules/semver/functions/rcompare.js create mode 100644 node_modules/semver/functions/rsort.js create mode 100644 node_modules/semver/functions/satisfies.js create mode 100644 node_modules/semver/functions/sort.js create mode 100644 node_modules/semver/functions/valid.js create mode 100644 node_modules/semver/index.js create mode 100644 node_modules/semver/internal/constants.js create mode 100644 node_modules/semver/internal/debug.js create mode 100644 node_modules/semver/internal/identifiers.js create mode 100644 node_modules/semver/internal/re.js create mode 100644 node_modules/semver/preload.js create mode 100644 node_modules/semver/ranges/gtr.js create mode 100644 node_modules/semver/ranges/intersects.js create mode 100644 node_modules/semver/ranges/ltr.js create mode 100644 node_modules/semver/ranges/max-satisfying.js create mode 100644 node_modules/semver/ranges/min-satisfying.js create mode 100644 node_modules/semver/ranges/min-version.js create mode 100644 node_modules/semver/ranges/outside.js create mode 100644 node_modules/semver/ranges/simplify.js create mode 100644 node_modules/semver/ranges/subset.js create mode 100644 node_modules/semver/ranges/to-comparators.js create mode 100644 node_modules/semver/ranges/valid.js create mode 120000 node_modules/tslint/node_modules/.bin/semver create mode 100644 node_modules/tslint/node_modules/semver/CHANGELOG.md create mode 100644 node_modules/tslint/node_modules/semver/LICENSE create mode 100644 node_modules/tslint/node_modules/semver/README.md create mode 100755 node_modules/tslint/node_modules/semver/bin/semver create mode 100644 node_modules/tslint/node_modules/semver/package.json create mode 100644 node_modules/tslint/node_modules/semver/range.bnf create mode 100644 node_modules/tslint/node_modules/semver/semver.js delete mode 100644 node_modules/tunnel/CHANGELOG.md delete mode 100644 node_modules/tunnel/README.md delete mode 100644 node_modules/tunnel/index.js delete mode 100644 node_modules/tunnel/lib/tunnel.js delete mode 100644 node_modules/tunnel/package.json delete mode 100644 node_modules/tunnel/test/http-over-http.js delete mode 100644 node_modules/tunnel/test/http-over-https.js delete mode 100644 node_modules/tunnel/test/https-over-http.js delete mode 100644 node_modules/tunnel/test/https-over-https-error.js delete mode 100644 node_modules/tunnel/test/https-over-https.js delete mode 100644 node_modules/tunnel/test/keys/Makefile delete mode 100644 node_modules/tunnel/test/keys/agent1-cert.pem delete mode 100644 node_modules/tunnel/test/keys/agent1-csr.pem delete mode 100644 node_modules/tunnel/test/keys/agent1-key.pem delete mode 100644 node_modules/tunnel/test/keys/agent1.cnf delete mode 100644 node_modules/tunnel/test/keys/agent2-cert.pem delete mode 100644 node_modules/tunnel/test/keys/agent2-csr.pem delete mode 100644 node_modules/tunnel/test/keys/agent2-key.pem delete mode 100644 node_modules/tunnel/test/keys/agent2.cnf delete mode 100644 node_modules/tunnel/test/keys/agent3-cert.pem delete mode 100644 node_modules/tunnel/test/keys/agent3-csr.pem delete mode 100644 node_modules/tunnel/test/keys/agent3-key.pem delete mode 100644 node_modules/tunnel/test/keys/agent3.cnf delete mode 100644 node_modules/tunnel/test/keys/agent4-cert.pem delete mode 100644 node_modules/tunnel/test/keys/agent4-csr.pem delete mode 100644 node_modules/tunnel/test/keys/agent4-key.pem delete mode 100644 node_modules/tunnel/test/keys/agent4.cnf delete mode 100644 node_modules/tunnel/test/keys/ca1-cert.pem delete mode 100644 node_modules/tunnel/test/keys/ca1-cert.srl delete mode 100644 node_modules/tunnel/test/keys/ca1-key.pem delete mode 100644 node_modules/tunnel/test/keys/ca1.cnf delete mode 100644 node_modules/tunnel/test/keys/ca2-cert.pem delete mode 100644 node_modules/tunnel/test/keys/ca2-cert.srl delete mode 100644 node_modules/tunnel/test/keys/ca2-crl.pem delete mode 100644 node_modules/tunnel/test/keys/ca2-database.txt delete mode 100644 node_modules/tunnel/test/keys/ca2-key.pem delete mode 100644 node_modules/tunnel/test/keys/ca2-serial delete mode 100644 node_modules/tunnel/test/keys/ca2.cnf delete mode 100644 node_modules/tunnel/test/keys/ca3-cert.pem delete mode 100644 node_modules/tunnel/test/keys/ca3-cert.srl delete mode 100644 node_modules/tunnel/test/keys/ca3-key.pem delete mode 100644 node_modules/tunnel/test/keys/ca3.cnf delete mode 100644 node_modules/tunnel/test/keys/ca4-cert.pem delete mode 100644 node_modules/tunnel/test/keys/ca4-cert.srl delete mode 100644 node_modules/tunnel/test/keys/ca4-key.pem delete mode 100644 node_modules/tunnel/test/keys/ca4.cnf delete mode 100644 node_modules/tunnel/test/keys/client.cnf delete mode 100644 node_modules/tunnel/test/keys/client1-cert.pem delete mode 100644 node_modules/tunnel/test/keys/client1-csr.pem delete mode 100644 node_modules/tunnel/test/keys/client1-key.pem delete mode 100644 node_modules/tunnel/test/keys/client1.cnf delete mode 100644 node_modules/tunnel/test/keys/client2-cert.pem delete mode 100644 node_modules/tunnel/test/keys/client2-csr.pem delete mode 100644 node_modules/tunnel/test/keys/client2-key.pem delete mode 100644 node_modules/tunnel/test/keys/client2.cnf delete mode 100644 node_modules/tunnel/test/keys/proxy1-cert.pem delete mode 100644 node_modules/tunnel/test/keys/proxy1-csr.pem delete mode 100644 node_modules/tunnel/test/keys/proxy1-key.pem delete mode 100644 node_modules/tunnel/test/keys/proxy1.cnf delete mode 100644 node_modules/tunnel/test/keys/proxy2-cert.pem delete mode 100644 node_modules/tunnel/test/keys/proxy2-csr.pem delete mode 100644 node_modules/tunnel/test/keys/proxy2-key.pem delete mode 100644 node_modules/tunnel/test/keys/proxy2.cnf delete mode 100644 node_modules/tunnel/test/keys/server1-cert.pem delete mode 100644 node_modules/tunnel/test/keys/server1-csr.pem delete mode 100644 node_modules/tunnel/test/keys/server1-key.pem delete mode 100644 node_modules/tunnel/test/keys/server1.cnf delete mode 100644 node_modules/tunnel/test/keys/server2-cert.pem delete mode 100644 node_modules/tunnel/test/keys/server2-csr.pem delete mode 100644 node_modules/tunnel/test/keys/server2-key.pem delete mode 100644 node_modules/tunnel/test/keys/server2.cnf delete mode 100644 node_modules/tunnel/test/keys/test.js delete mode 100644 node_modules/typed-rest-client/Handlers.d.ts delete mode 100644 node_modules/typed-rest-client/Handlers.js delete mode 100644 node_modules/typed-rest-client/HttpClient.d.ts delete mode 100644 node_modules/typed-rest-client/HttpClient.js delete mode 100644 node_modules/typed-rest-client/Index.d.ts delete mode 100644 node_modules/typed-rest-client/Index.js delete mode 100644 node_modules/typed-rest-client/Interfaces.d.ts delete mode 100644 node_modules/typed-rest-client/Interfaces.js delete mode 100644 node_modules/typed-rest-client/LICENSE delete mode 100644 node_modules/typed-rest-client/README.md delete mode 100644 node_modules/typed-rest-client/RestClient.d.ts delete mode 100644 node_modules/typed-rest-client/RestClient.js delete mode 100644 node_modules/typed-rest-client/ThirdPartyNotice.txt delete mode 100644 node_modules/typed-rest-client/Util.d.ts delete mode 100644 node_modules/typed-rest-client/Util.js delete mode 100644 node_modules/typed-rest-client/handlers/basiccreds.d.ts delete mode 100644 node_modules/typed-rest-client/handlers/basiccreds.js delete mode 100644 node_modules/typed-rest-client/handlers/bearertoken.d.ts delete mode 100644 node_modules/typed-rest-client/handlers/bearertoken.js delete mode 100644 node_modules/typed-rest-client/handlers/ntlm.d.ts delete mode 100644 node_modules/typed-rest-client/handlers/ntlm.js delete mode 100644 node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts delete mode 100644 node_modules/typed-rest-client/handlers/personalaccesstoken.js delete mode 100644 node_modules/typed-rest-client/opensource/node-http-ntlm/ntlm.js delete mode 100644 node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt delete mode 100644 node_modules/typed-rest-client/package.json delete mode 100644 node_modules/underscore/LICENSE delete mode 100644 node_modules/underscore/README.md delete mode 100644 node_modules/underscore/package.json delete mode 100644 node_modules/underscore/underscore-min.js delete mode 100644 node_modules/underscore/underscore-min.map delete mode 100644 node_modules/underscore/underscore.js diff --git a/node_modules/.bin/semver b/node_modules/.bin/semver index 317eb293d..5aaadf42c 120000 --- a/node_modules/.bin/semver +++ b/node_modules/.bin/semver @@ -1 +1 @@ -../semver/bin/semver \ No newline at end of file +../semver/bin/semver.js \ No newline at end of file diff --git a/node_modules/@actions/core/package.json b/node_modules/@actions/core/package.json index ac8962e99..53a91f686 100644 --- a/node_modules/@actions/core/package.json +++ b/node_modules/@actions/core/package.json @@ -1,15 +1,41 @@ { - "name": "@actions/core", - "version": "1.2.0", - "description": "Actions core lib", - "keywords": [ - "github", - "actions", - "core" + "_args": [ + [ + "@actions/core@1.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", - "license": "MIT", - "main": "lib/core.js", + "_from": "@actions/core@1.2.0", + "_id": "@actions/core@1.2.0", + "_inBundle": false, + "_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==", + "_location": "/@actions/core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@actions/core@1.2.0", + "name": "@actions/core", + "escapedName": "@actions%2fcore", + "scope": "@actions", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/", + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "description": "Actions core lib", + "devDependencies": { + "@types/node": "^12.0.2" + }, "directories": { "lib": "lib", "test": "__tests__" @@ -17,6 +43,15 @@ "files": [ "lib" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", + "keywords": [ + "github", + "actions", + "core" + ], + "license": "MIT", + "main": "lib/core.js", + "name": "@actions/core", "publishConfig": { "access": "public" }, @@ -29,10 +64,5 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "devDependencies": { - "@types/node": "^12.0.2" - } -} \ No newline at end of file + "version": "1.2.0" +} diff --git a/node_modules/@actions/exec/package.json b/node_modules/@actions/exec/package.json index 5255e599d..d1fb1217a 100644 --- a/node_modules/@actions/exec/package.json +++ b/node_modules/@actions/exec/package.json @@ -1,15 +1,41 @@ { - "name": "@actions/exec", - "version": "1.0.1", - "description": "Actions exec lib", - "keywords": [ - "github", - "actions", - "exec" + "_args": [ + [ + "@actions/exec@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/exec", - "license": "MIT", - "main": "lib/exec.js", + "_from": "@actions/exec@1.0.1", + "_id": "@actions/exec@1.0.1", + "_inBundle": false, + "_integrity": "sha512-nvFkxwiicvpzNiCBF4wFBDfnBvi7xp/as7LE1hBxBxKG2L29+gkIPBiLKMVORL+Hg3JNf07AKRfl0V5djoypjQ==", + "_location": "/@actions/exec", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@actions/exec@1.0.1", + "name": "@actions/exec", + "escapedName": "@actions%2fexec", + "scope": "@actions", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/", + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "description": "Actions exec lib", + "devDependencies": { + "@actions/io": "^1.0.1" + }, "directories": { "lib": "lib", "test": "__tests__" @@ -17,6 +43,16 @@ "files": [ "lib" ], + "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52", + "homepage": "https://github.com/actions/toolkit/tree/master/packages/exec", + "keywords": [ + "github", + "actions", + "exec" + ], + "license": "MIT", + "main": "lib/exec.js", + "name": "@actions/exec", "publishConfig": { "access": "public" }, @@ -28,11 +64,5 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "devDependencies": { - "@actions/io": "^1.0.1" - }, - "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" -} \ No newline at end of file + "version": "1.0.1" +} diff --git a/node_modules/@actions/http-client/node_modules/tunnel/package.json b/node_modules/@actions/http-client/node_modules/tunnel/package.json index 27cce6b48..bc86680d7 100644 --- a/node_modules/@actions/http-client/node_modules/tunnel/package.json +++ b/node_modules/@actions/http-client/node_modules/tunnel/package.json @@ -1,7 +1,51 @@ { - "name": "tunnel", - "version": "0.0.6", + "_args": [ + [ + "tunnel@0.0.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "tunnel@0.0.6", + "_id": "tunnel@0.0.6", + "_inBundle": false, + "_integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "_location": "/@actions/http-client/tunnel", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tunnel@0.0.6", + "name": "tunnel", + "escapedName": "tunnel", + "rawSpec": "0.0.6", + "saveSpec": null, + "fetchSpec": "0.0.6" + }, + "_requiredBy": [ + "/@actions/http-client" + ], + "_resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "_spec": "0.0.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Koichi Kobayashi", + "email": "koichik@improvement.jp" + }, + "bugs": { + "url": "https://github.com/koichik/node-tunnel/issues" + }, "description": "Node HTTP/HTTPS Agents for tunneling proxies", + "devDependencies": { + "mocha": "^5.2.0", + "should": "^13.2.3" + }, + "directories": { + "lib": "./lib" + }, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + }, + "homepage": "https://github.com/koichik/node-tunnel/", "keywords": [ "http", "https", @@ -9,26 +53,15 @@ "proxy", "tunnel" ], - "homepage": "https://github.com/koichik/node-tunnel/", - "bugs": "https://github.com/koichik/node-tunnel/issues", "license": "MIT", - "author": "Koichi Kobayashi ", "main": "./index.js", - "directories": { - "lib": "./lib" - }, + "name": "tunnel", "repository": { "type": "git", - "url": "https://github.com/koichik/node-tunnel.git" + "url": "git+https://github.com/koichik/node-tunnel.git" }, "scripts": { "test": "mocha" }, - "devDependencies": { - "mocha": "^5.2.0", - "should": "^13.2.3" - }, - "engines": { - "node": ">=0.6.11 <=0.7.0 || >=0.7.3" - } -} \ No newline at end of file + "version": "0.0.6" +} diff --git a/node_modules/@actions/http-client/package.json b/node_modules/@actions/http-client/package.json index fbfec5f9d..eb01cdca5 100644 --- a/node_modules/@actions/http-client/package.json +++ b/node_modules/@actions/http-client/package.json @@ -1,29 +1,43 @@ { - "name": "@actions/http-client", - "version": "1.0.8", - "description": "Actions Http Client", - "main": "index.js", - "scripts": { - "build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out", - "test": "jest", - "format": "prettier --write *.ts && prettier --write **/*.ts", - "format-check": "prettier --check *.ts && prettier --check **/*.ts", - "audit-check": "npm audit --audit-level=moderate" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/actions/http-client.git" + "_args": [ + [ + "@actions/http-client@1.0.8", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "@actions/http-client@1.0.8", + "_id": "@actions/http-client@1.0.8", + "_inBundle": false, + "_integrity": "sha512-G4JjJ6f9Hb3Zvejj+ewLLKLf99ZC+9v+yCxoYf9vSyH+WkzPLB2LuUtRMGNkooMqdugGBFStIKXOuvH1W+EctA==", + "_location": "/@actions/http-client", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@actions/http-client@1.0.8", + "name": "@actions/http-client", + "escapedName": "@actions%2fhttp-client", + "scope": "@actions", + "rawSpec": "1.0.8", + "saveSpec": null, + "fetchSpec": "1.0.8" }, - "keywords": [ - "Actions", - "Http" + "_requiredBy": [ + "/" ], - "author": "GitHub, Inc.", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.8.tgz", + "_spec": "1.0.8", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "GitHub, Inc." + }, "bugs": { "url": "https://github.com/actions/http-client/issues" }, - "homepage": "https://github.com/actions/http-client#readme", + "dependencies": { + "tunnel": "0.0.6" + }, + "description": "Actions Http Client", "devDependencies": { "@types/jest": "^25.1.4", "@types/node": "^12.12.31", @@ -33,7 +47,24 @@ "ts-jest": "^25.2.1", "typescript": "^3.8.3" }, - "dependencies": { - "tunnel": "0.0.6" - } -} \ No newline at end of file + "homepage": "https://github.com/actions/http-client#readme", + "keywords": [ + "Actions", + "Http" + ], + "license": "MIT", + "main": "index.js", + "name": "@actions/http-client", + "repository": { + "type": "git", + "url": "git+https://github.com/actions/http-client.git" + }, + "scripts": { + "audit-check": "npm audit --audit-level=moderate", + "build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out", + "format": "prettier --write *.ts && prettier --write **/*.ts", + "format-check": "prettier --check *.ts && prettier --check **/*.ts", + "test": "jest" + }, + "version": "1.0.8" +} diff --git a/node_modules/@actions/io/package.json b/node_modules/@actions/io/package.json index c19c88922..51e76a3bf 100644 --- a/node_modules/@actions/io/package.json +++ b/node_modules/@actions/io/package.json @@ -1,15 +1,38 @@ { - "name": "@actions/io", - "version": "1.0.1", - "description": "Actions io lib", - "keywords": [ - "github", - "actions", - "io" + "_args": [ + [ + "@actions/io@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/io", - "license": "MIT", - "main": "lib/io.js", + "_from": "@actions/io@1.0.1", + "_id": "@actions/io@1.0.1", + "_inBundle": false, + "_integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==", + "_location": "/@actions/io", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@actions/io@1.0.1", + "name": "@actions/io", + "escapedName": "@actions%2fio", + "scope": "@actions", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/", + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "description": "Actions io lib", "directories": { "lib": "lib", "test": "__tests__" @@ -17,6 +40,16 @@ "files": [ "lib" ], + "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52", + "homepage": "https://github.com/actions/toolkit/tree/master/packages/io", + "keywords": [ + "github", + "actions", + "io" + ], + "license": "MIT", + "main": "lib/io.js", + "name": "@actions/io", "publishConfig": { "access": "public" }, @@ -28,8 +61,5 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" -} \ No newline at end of file + "version": "1.0.1" +} diff --git a/node_modules/@actions/tool-cache/README.md b/node_modules/@actions/tool-cache/README.md index e00bb4b05..f45cedd8a 100644 --- a/node_modules/@actions/tool-cache/README.md +++ b/node_modules/@actions/tool-cache/README.md @@ -22,11 +22,11 @@ These can then be extracted in platform specific ways: const tc = require('@actions/tool-cache'); if (process.platform === 'win32') { - const node12Path = tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip'); + const node12Path = await tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip'); const node12ExtractedFolder = await tc.extractZip(node12Path, 'path/to/extract/to'); // Or alternately - const node12Path = tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z'); + const node12Path = await tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z'); const node12ExtractedFolder = await tc.extract7z(node12Path, 'path/to/extract/to'); } else { @@ -37,7 +37,7 @@ else { #### Cache -Finally, you can cache these directories in our tool-cache. This is useful if you want to switch back and forth between versions of a tool, or save a tool between runs for private runners (private runners are still in development but are on the roadmap). +Finally, you can cache these directories in our tool-cache. This is useful if you want to switch back and forth between versions of a tool, or save a tool between runs for self-hosted runners. You'll often want to add it to the path as part of this step: @@ -57,7 +57,7 @@ You can also cache files for reuse. ```js const tc = require('@actions/tool-cache'); -tc.cacheFile('path/to/exe', 'destFileName.exe', 'myExeName', '1.1.0'); +const cachedPath = await tc.cacheFile('path/to/exe', 'destFileName.exe', 'myExeName', '1.1.0'); ``` #### Find diff --git a/node_modules/@actions/tool-cache/lib/manifest.d.ts b/node_modules/@actions/tool-cache/lib/manifest.d.ts new file mode 100644 index 000000000..8c32f3e5b --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/manifest.d.ts @@ -0,0 +1,16 @@ +export interface IToolReleaseFile { + filename: string; + platform: string; + platform_version?: string; + arch: string; + download_url: string; +} +export interface IToolRelease { + version: string; + stable: boolean; + release_url: string; + files: IToolReleaseFile[]; +} +export declare function _findMatch(versionSpec: string, stable: boolean, candidates: IToolRelease[], archFilter: string): Promise; +export declare function _getOsVersion(): string; +export declare function _readLinuxVersionFile(): string; diff --git a/node_modules/@actions/tool-cache/lib/manifest.js b/node_modules/@actions/tool-cache/lib/manifest.js new file mode 100644 index 000000000..40c886b2e --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/manifest.js @@ -0,0 +1,106 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const semver = __importStar(require("semver")); +const core_1 = require("@actions/core"); +// needs to be require for core node modules to be mocked +/* eslint @typescript-eslint/no-require-imports: 0 */ +const os = require("os"); +const cp = require("child_process"); +const fs = require("fs"); +function _findMatch(versionSpec, stable, candidates, archFilter) { + return __awaiter(this, void 0, void 0, function* () { + const platFilter = os.platform(); + let result; + let match; + let file; + for (const candidate of candidates) { + const version = candidate.version; + core_1.debug(`check ${version} satisfies ${versionSpec}`); + if (semver.satisfies(version, versionSpec) && + (!stable || candidate.stable === stable)) { + file = candidate.files.find(item => { + core_1.debug(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`); + let chk = item.arch === archFilter && item.platform === platFilter; + if (chk && item.platform_version) { + const osVersion = module.exports._getOsVersion(); + if (osVersion === item.platform_version) { + chk = true; + } + else { + chk = semver.satisfies(osVersion, item.platform_version); + } + } + return chk; + }); + if (file) { + core_1.debug(`matched ${candidate.version}`); + match = candidate; + break; + } + } + } + if (match && file) { + // clone since we're mutating the file list to be only the file that matches + result = Object.assign({}, match); + result.files = [file]; + } + return result; + }); +} +exports._findMatch = _findMatch; +function _getOsVersion() { + // TODO: add windows and other linux, arm variants + // right now filtering on version is only an ubuntu and macos scenario for tools we build for hosted (python) + const plat = os.platform(); + let version = ''; + if (plat === 'darwin') { + version = cp.execSync('sw_vers -productVersion').toString(); + } + else if (plat === 'linux') { + // lsb_release process not in some containers, readfile + // Run cat /etc/lsb-release + // DISTRIB_ID=Ubuntu + // DISTRIB_RELEASE=18.04 + // DISTRIB_CODENAME=bionic + // DISTRIB_DESCRIPTION="Ubuntu 18.04.4 LTS" + const lsbContents = module.exports._readLinuxVersionFile(); + if (lsbContents) { + const lines = lsbContents.split('\n'); + for (const line of lines) { + const parts = line.split('='); + if (parts.length === 2 && parts[0].trim() === 'DISTRIB_RELEASE') { + version = parts[1].trim(); + break; + } + } + } + } + return version; +} +exports._getOsVersion = _getOsVersion; +function _readLinuxVersionFile() { + const lsbFile = '/etc/lsb-release'; + let contents = ''; + if (fs.existsSync(lsbFile)) { + contents = fs.readFileSync(lsbFile).toString(); + } + return contents; +} +exports._readLinuxVersionFile = _readLinuxVersionFile; +//# sourceMappingURL=manifest.js.map \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/lib/manifest.js.map b/node_modules/@actions/tool-cache/lib/manifest.js.map new file mode 100644 index 000000000..8acbaaae6 --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/manifest.js.map @@ -0,0 +1 @@ +{"version":3,"file":"manifest.js","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+CAAgC;AAChC,wCAAmC;AAEnC,yDAAyD;AACzD,qDAAqD;AAErD,yBAAyB;AACzB,oCAAoC;AACpC,yBAAyB;AAqDzB,SAAsB,UAAU,CAC9B,WAAmB,EACnB,MAAe,EACf,UAA0B,EAC1B,UAAkB;;QAElB,MAAM,UAAU,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAA;QAEhC,IAAI,MAAgC,CAAA;QACpC,IAAI,KAA+B,CAAA;QAEnC,IAAI,IAAkC,CAAA;QACtC,KAAK,MAAM,SAAS,IAAI,UAAU,EAAE;YAClC,MAAM,OAAO,GAAG,SAAS,CAAC,OAAO,CAAA;YAEjC,YAAK,CAAC,SAAS,OAAO,cAAc,WAAW,EAAE,CAAC,CAAA;YAClD,IACE,MAAM,CAAC,SAAS,CAAC,OAAO,EAAE,WAAW,CAAC;gBACtC,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,MAAM,KAAK,MAAM,CAAC,EACxC;gBACA,IAAI,GAAG,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;oBACjC,YAAK,CACH,GAAG,IAAI,CAAC,IAAI,MAAM,UAAU,OAAO,IAAI,CAAC,QAAQ,MAAM,UAAU,EAAE,CACnE,CAAA;oBAED,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,KAAK,UAAU,IAAI,IAAI,CAAC,QAAQ,KAAK,UAAU,CAAA;oBAClE,IAAI,GAAG,IAAI,IAAI,CAAC,gBAAgB,EAAE;wBAChC,MAAM,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,aAAa,EAAE,CAAA;wBAEhD,IAAI,SAAS,KAAK,IAAI,CAAC,gBAAgB,EAAE;4BACvC,GAAG,GAAG,IAAI,CAAA;yBACX;6BAAM;4BACL,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAA;yBACzD;qBACF;oBAED,OAAO,GAAG,CAAA;gBACZ,CAAC,CAAC,CAAA;gBAEF,IAAI,IAAI,EAAE;oBACR,YAAK,CAAC,WAAW,SAAS,CAAC,OAAO,EAAE,CAAC,CAAA;oBACrC,KAAK,GAAG,SAAS,CAAA;oBACjB,MAAK;iBACN;aACF;SACF;QAED,IAAI,KAAK,IAAI,IAAI,EAAE;YACjB,4EAA4E;YAC5E,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAA;YACjC,MAAM,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,CAAA;SACtB;QAED,OAAO,MAAM,CAAA;IACf,CAAC;CAAA;AAtDD,gCAsDC;AAED,SAAgB,aAAa;IAC3B,kDAAkD;IAClD,6GAA6G;IAC7G,MAAM,IAAI,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAA;IAC1B,IAAI,OAAO,GAAG,EAAE,CAAA;IAEhB,IAAI,IAAI,KAAK,QAAQ,EAAE;QACrB,OAAO,GAAG,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC,CAAC,QAAQ,EAAE,CAAA;KAC5D;SAAM,IAAI,IAAI,KAAK,OAAO,EAAE;QAC3B,uDAAuD;QACvD,2BAA2B;QAC3B,oBAAoB;QACpB,wBAAwB;QACxB,0BAA0B;QAC1B,2CAA2C;QAC3C,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,qBAAqB,EAAE,CAAA;QAC1D,IAAI,WAAW,EAAE;YACf,MAAM,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;YACrC,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE;gBACxB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;gBAC7B,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,KAAK,iBAAiB,EAAE;oBAC/D,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAA;oBACzB,MAAK;iBACN;aACF;SACF;KACF;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AA7BD,sCA6BC;AAED,SAAgB,qBAAqB;IACnC,MAAM,OAAO,GAAG,kBAAkB,CAAA;IAClC,IAAI,QAAQ,GAAG,EAAE,CAAA;IAEjB,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE;QAC1B,QAAQ,GAAG,EAAE,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAA;KAC/C;IAED,OAAO,QAAQ,CAAA;AACjB,CAAC;AATD,sDASC"} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/lib/retry-helper.d.ts b/node_modules/@actions/tool-cache/lib/retry-helper.d.ts new file mode 100644 index 000000000..4707a0715 --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/retry-helper.d.ts @@ -0,0 +1,12 @@ +/** + * Internal class for retries + */ +export declare class RetryHelper { + private maxAttempts; + private minSeconds; + private maxSeconds; + constructor(maxAttempts: number, minSeconds: number, maxSeconds: number); + execute(action: () => Promise, isRetryable?: (e: Error) => boolean): Promise; + private getSleepAmount; + private sleep; +} diff --git a/node_modules/@actions/tool-cache/lib/retry-helper.js b/node_modules/@actions/tool-cache/lib/retry-helper.js new file mode 100644 index 000000000..4f040d679 --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/retry-helper.js @@ -0,0 +1,70 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const core = __importStar(require("@actions/core")); +/** + * Internal class for retries + */ +class RetryHelper { + constructor(maxAttempts, minSeconds, maxSeconds) { + if (maxAttempts < 1) { + throw new Error('max attempts should be greater than or equal to 1'); + } + this.maxAttempts = maxAttempts; + this.minSeconds = Math.floor(minSeconds); + this.maxSeconds = Math.floor(maxSeconds); + if (this.minSeconds > this.maxSeconds) { + throw new Error('min seconds should be less than or equal to max seconds'); + } + } + execute(action, isRetryable) { + return __awaiter(this, void 0, void 0, function* () { + let attempt = 1; + while (attempt < this.maxAttempts) { + // Try + try { + return yield action(); + } + catch (err) { + if (isRetryable && !isRetryable(err)) { + throw err; + } + core.info(err.message); + } + // Sleep + const seconds = this.getSleepAmount(); + core.info(`Waiting ${seconds} seconds before trying again`); + yield this.sleep(seconds); + attempt++; + } + // Last attempt + return yield action(); + }); + } + getSleepAmount() { + return (Math.floor(Math.random() * (this.maxSeconds - this.minSeconds + 1)) + + this.minSeconds); + } + sleep(seconds) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise(resolve => setTimeout(resolve, seconds * 1000)); + }); + } +} +exports.RetryHelper = RetryHelper; +//# sourceMappingURL=retry-helper.js.map \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/lib/retry-helper.js.map b/node_modules/@actions/tool-cache/lib/retry-helper.js.map new file mode 100644 index 000000000..7607d6bb1 --- /dev/null +++ b/node_modules/@actions/tool-cache/lib/retry-helper.js.map @@ -0,0 +1 @@ +{"version":3,"file":"retry-helper.js","sourceRoot":"","sources":["../src/retry-helper.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,oDAAqC;AAErC;;GAEG;AACH,MAAa,WAAW;IAKtB,YAAY,WAAmB,EAAE,UAAkB,EAAE,UAAkB;QACrE,IAAI,WAAW,GAAG,CAAC,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAA;SACrE;QAED,IAAI,CAAC,WAAW,GAAG,WAAW,CAAA;QAC9B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;QACxC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;QACxC,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,EAAE;YACrC,MAAM,IAAI,KAAK,CAAC,yDAAyD,CAAC,CAAA;SAC3E;IACH,CAAC;IAEK,OAAO,CACX,MAAwB,EACxB,WAAmC;;YAEnC,IAAI,OAAO,GAAG,CAAC,CAAA;YACf,OAAO,OAAO,GAAG,IAAI,CAAC,WAAW,EAAE;gBACjC,MAAM;gBACN,IAAI;oBACF,OAAO,MAAM,MAAM,EAAE,CAAA;iBACtB;gBAAC,OAAO,GAAG,EAAE;oBACZ,IAAI,WAAW,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE;wBACpC,MAAM,GAAG,CAAA;qBACV;oBAED,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;iBACvB;gBAED,QAAQ;gBACR,MAAM,OAAO,GAAG,IAAI,CAAC,cAAc,EAAE,CAAA;gBACrC,IAAI,CAAC,IAAI,CAAC,WAAW,OAAO,8BAA8B,CAAC,CAAA;gBAC3D,MAAM,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;gBACzB,OAAO,EAAE,CAAA;aACV;YAED,eAAe;YACf,OAAO,MAAM,MAAM,EAAE,CAAA;QACvB,CAAC;KAAA;IAEO,cAAc;QACpB,OAAO,CACL,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;YACnE,IAAI,CAAC,UAAU,CAChB,CAAA;IACH,CAAC;IAEa,KAAK,CAAC,OAAe;;YACjC,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAAC,CAAC,CAAA;QACpE,CAAC;KAAA;CACF;AAxDD,kCAwDC"} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/lib/tool-cache.d.ts b/node_modules/@actions/tool-cache/lib/tool-cache.d.ts index ca6fa0742..01fdd1939 100644 --- a/node_modules/@actions/tool-cache/lib/tool-cache.d.ts +++ b/node_modules/@actions/tool-cache/lib/tool-cache.d.ts @@ -1,3 +1,4 @@ +import * as mm from './manifest'; export declare class HTTPError extends Error { readonly httpStatusCode: number | undefined; constructor(httpStatusCode: number | undefined); @@ -6,9 +7,11 @@ export declare class HTTPError extends Error { * Download a tool from an url and stream it into a file * * @param url url of tool to download + * @param dest path to download tool + * @param auth authorization header * @returns path to downloaded tool */ -export declare function downloadTool(url: string): Promise; +export declare function downloadTool(url: string, dest?: string, auth?: string): Promise; /** * Extract a .7z file * @@ -26,14 +29,14 @@ export declare function downloadTool(url: string): Promise; */ export declare function extract7z(file: string, dest?: string, _7zPath?: string): Promise; /** - * Extract a tar + * Extract a compressed tar archive * * @param file path to the tar * @param dest destination directory. Optional. - * @param flags flags for the tar. Optional. + * @param flags flags for the tar command to use for extraction. Defaults to 'xz' (extracting gzipped tars). Optional. * @returns path to the destination directory */ -export declare function extractTar(file: string, dest?: string, flags?: string): Promise; +export declare function extractTar(file: string, dest?: string, flags?: string | string[]): Promise; /** * Extract a zip * @@ -77,3 +80,7 @@ export declare function find(toolName: string, versionSpec: string, arch?: strin * @param arch optional arch. defaults to arch of computer */ export declare function findAllVersions(toolName: string, arch?: string): string[]; +export declare type IToolRelease = mm.IToolRelease; +export declare type IToolReleaseFile = mm.IToolReleaseFile; +export declare function getManifestFromRepo(owner: string, repo: string, auth?: string, branch?: string): Promise; +export declare function findFromManifest(versionSpec: string, stable: boolean, manifest: IToolRelease[], archFilter?: string): Promise; diff --git a/node_modules/@actions/tool-cache/lib/tool-cache.js b/node_modules/@actions/tool-cache/lib/tool-cache.js index bb04f17c4..3faeca7bf 100644 --- a/node_modules/@actions/tool-cache/lib/tool-cache.js +++ b/node_modules/@actions/tool-cache/lib/tool-cache.js @@ -8,17 +8,31 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -const core = require("@actions/core"); -const io = require("@actions/io"); -const fs = require("fs"); -const os = require("os"); -const path = require("path"); -const httpm = require("typed-rest-client/HttpClient"); -const semver = require("semver"); -const uuidV4 = require("uuid/v4"); +const core = __importStar(require("@actions/core")); +const io = __importStar(require("@actions/io")); +const fs = __importStar(require("fs")); +const mm = __importStar(require("./manifest")); +const os = __importStar(require("os")); +const path = __importStar(require("path")); +const httpm = __importStar(require("@actions/http-client")); +const semver = __importStar(require("semver")); +const stream = __importStar(require("stream")); +const util = __importStar(require("util")); +const v4_1 = __importDefault(require("uuid/v4")); const exec_1 = require("@actions/exec/lib/exec"); const assert_1 = require("assert"); +const retry_helper_1 = require("./retry-helper"); class HTTPError extends Error { constructor(httpStatusCode) { super(`Unexpected HTTP response: ${httpStatusCode}`); @@ -29,85 +43,88 @@ class HTTPError extends Error { exports.HTTPError = HTTPError; const IS_WINDOWS = process.platform === 'win32'; const userAgent = 'actions/tool-cache'; -// On load grab temp directory and cache directory and remove them from env (currently don't want to expose this) -let tempDirectory = process.env['RUNNER_TEMP'] || ''; -let cacheRoot = process.env['RUNNER_TOOL_CACHE'] || ''; -// If directories not found, place them in common temp locations -if (!tempDirectory || !cacheRoot) { - let baseLocation; - if (IS_WINDOWS) { - // On windows use the USERPROFILE env variable - baseLocation = process.env['USERPROFILE'] || 'C:\\'; - } - else { - if (process.platform === 'darwin') { - baseLocation = '/Users'; - } - else { - baseLocation = '/home'; - } - } - if (!tempDirectory) { - tempDirectory = path.join(baseLocation, 'actions', 'temp'); - } - if (!cacheRoot) { - cacheRoot = path.join(baseLocation, 'actions', 'cache'); - } -} /** * Download a tool from an url and stream it into a file * * @param url url of tool to download + * @param dest path to download tool + * @param auth authorization header * @returns path to downloaded tool */ -function downloadTool(url) { +function downloadTool(url, dest, auth) { return __awaiter(this, void 0, void 0, function* () { - // Wrap in a promise so that we can resolve from within stream callbacks - return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { - try { - const http = new httpm.HttpClient(userAgent, [], { - allowRetries: true, - maxRetries: 3 - }); - const destPath = path.join(tempDirectory, uuidV4()); - yield io.mkdirP(tempDirectory); - core.debug(`Downloading ${url}`); - core.debug(`Downloading ${destPath}`); - if (fs.existsSync(destPath)) { - throw new Error(`Destination file path ${destPath} already exists`); + dest = dest || path.join(_getTempDirectory(), v4_1.default()); + yield io.mkdirP(path.dirname(dest)); + core.debug(`Downloading ${url}`); + core.debug(`Destination ${dest}`); + const maxAttempts = 3; + const minSeconds = _getGlobal('TEST_DOWNLOAD_TOOL_RETRY_MIN_SECONDS', 10); + const maxSeconds = _getGlobal('TEST_DOWNLOAD_TOOL_RETRY_MAX_SECONDS', 20); + const retryHelper = new retry_helper_1.RetryHelper(maxAttempts, minSeconds, maxSeconds); + return yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () { + return yield downloadToolAttempt(url, dest || '', auth); + }), (err) => { + if (err instanceof HTTPError && err.httpStatusCode) { + // Don't retry anything less than 500, except 408 Request Timeout and 429 Too Many Requests + if (err.httpStatusCode < 500 && + err.httpStatusCode !== 408 && + err.httpStatusCode !== 429) { + return false; } - const response = yield http.get(url); - if (response.message.statusCode !== 200) { - const err = new HTTPError(response.message.statusCode); - core.debug(`Failed to download from "${url}". Code(${response.message.statusCode}) Message(${response.message.statusMessage})`); - throw err; - } - const file = fs.createWriteStream(destPath); - file.on('open', () => __awaiter(this, void 0, void 0, function* () { - try { - const stream = response.message.pipe(file); - stream.on('close', () => { - core.debug('download complete'); - resolve(destPath); - }); - } - catch (err) { - core.debug(`Failed to download from "${url}". Code(${response.message.statusCode}) Message(${response.message.statusMessage})`); - reject(err); - } - })); - file.on('error', err => { - file.end(); - reject(err); - }); - } - catch (err) { - reject(err); } - })); + // Otherwise retry + return true; + }); }); } exports.downloadTool = downloadTool; +function downloadToolAttempt(url, dest, auth) { + return __awaiter(this, void 0, void 0, function* () { + if (fs.existsSync(dest)) { + throw new Error(`Destination file path ${dest} already exists`); + } + // Get the response headers + const http = new httpm.HttpClient(userAgent, [], { + allowRetries: false + }); + let headers; + if (auth) { + core.debug('set auth'); + headers = { + authorization: auth + }; + } + const response = yield http.get(url, headers); + if (response.message.statusCode !== 200) { + const err = new HTTPError(response.message.statusCode); + core.debug(`Failed to download from "${url}". Code(${response.message.statusCode}) Message(${response.message.statusMessage})`); + throw err; + } + // Download the response body + const pipeline = util.promisify(stream.pipeline); + const responseMessageFactory = _getGlobal('TEST_DOWNLOAD_TOOL_RESPONSE_MESSAGE_FACTORY', () => response.message); + const readStream = responseMessageFactory(); + let succeeded = false; + try { + yield pipeline(readStream, fs.createWriteStream(dest)); + core.debug('download complete'); + succeeded = true; + return dest; + } + finally { + // Error, delete dest before retry + if (!succeeded) { + core.debug('download failed'); + try { + yield io.rmRF(dest); + } + catch (err) { + core.debug(`Failed to delete '${dest}'. ${err.message}`); + } + } + } + }); +} /** * Extract a .7z file * @@ -127,14 +144,15 @@ function extract7z(file, dest, _7zPath) { return __awaiter(this, void 0, void 0, function* () { assert_1.ok(IS_WINDOWS, 'extract7z() not supported on current OS'); assert_1.ok(file, 'parameter "file" is required'); - dest = dest || (yield _createExtractFolder(dest)); + dest = yield _createExtractFolder(dest); const originalCwd = process.cwd(); process.chdir(dest); if (_7zPath) { try { + const logLevel = core.isDebug() ? '-bb1' : '-bb0'; const args = [ 'x', - '-bb1', + logLevel, '-bd', '-sccUTF-8', file @@ -182,11 +200,11 @@ function extract7z(file, dest, _7zPath) { } exports.extract7z = extract7z; /** - * Extract a tar + * Extract a compressed tar archive * * @param file path to the tar * @param dest destination directory. Optional. - * @param flags flags for the tar. Optional. + * @param flags flags for the tar command to use for extraction. Defaults to 'xz' (extracting gzipped tars). Optional. * @returns path to the destination directory */ function extractTar(file, dest, flags = 'xz') { @@ -194,9 +212,47 @@ function extractTar(file, dest, flags = 'xz') { if (!file) { throw new Error("parameter 'file' is required"); } - dest = dest || (yield _createExtractFolder(dest)); - const tarPath = yield io.which('tar', true); - yield exec_1.exec(`"${tarPath}"`, [flags, '-C', dest, '-f', file]); + // Create dest + dest = yield _createExtractFolder(dest); + // Determine whether GNU tar + core.debug('Checking tar --version'); + let versionOutput = ''; + yield exec_1.exec('tar --version', [], { + ignoreReturnCode: true, + silent: true, + listeners: { + stdout: (data) => (versionOutput += data.toString()), + stderr: (data) => (versionOutput += data.toString()) + } + }); + core.debug(versionOutput.trim()); + const isGnuTar = versionOutput.toUpperCase().includes('GNU TAR'); + // Initialize args + let args; + if (flags instanceof Array) { + args = flags; + } + else { + args = [flags]; + } + if (core.isDebug() && !flags.includes('v')) { + args.push('-v'); + } + let destArg = dest; + let fileArg = file; + if (IS_WINDOWS && isGnuTar) { + args.push('--force-local'); + destArg = dest.replace(/\\/g, '/'); + // Technically only the dest needs to have `/` but for aesthetic consistency + // convert slashes in the file arg too. + fileArg = file.replace(/\\/g, '/'); + } + if (isGnuTar) { + // Suppress warnings when using GNU tar to extract archives created by BSD tar + args.push('--warning=no-unknown-keyword'); + } + args.push('-C', destArg, '-f', fileArg); + yield exec_1.exec(`tar`, args); return dest; }); } @@ -213,7 +269,7 @@ function extractZip(file, dest) { if (!file) { throw new Error("parameter 'file' is required"); } - dest = dest || (yield _createExtractFolder(dest)); + dest = yield _createExtractFolder(dest); if (IS_WINDOWS) { yield extractZipWin(file, dest); } @@ -231,7 +287,7 @@ function extractZipWin(file, dest) { const escapedDest = dest.replace(/'/g, "''").replace(/"|\n|\r/g, ''); const command = `$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ; [System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}')`; // run powershell - const powershellPath = yield io.which('powershell'); + const powershellPath = yield io.which('powershell', true); const args = [ '-NoLogo', '-Sta', @@ -247,8 +303,12 @@ function extractZipWin(file, dest) { } function extractZipNix(file, dest) { return __awaiter(this, void 0, void 0, function* () { - const unzipPath = yield io.which('unzip'); - yield exec_1.exec(`"${unzipPath}"`, [file], { cwd: dest }); + const unzipPath = yield io.which('unzip', true); + const args = [file]; + if (!core.isDebug()) { + args.unshift('-q'); + } + yield exec_1.exec(`"${unzipPath}"`, args, { cwd: dest }); }); } /** @@ -339,7 +399,7 @@ function find(toolName, versionSpec, arch) { let toolPath = ''; if (versionSpec) { versionSpec = semver.clean(versionSpec) || ''; - const cachePath = path.join(cacheRoot, toolName, versionSpec, arch); + const cachePath = path.join(_getCacheDirectory(), toolName, versionSpec, arch); core.debug(`checking cache: ${cachePath}`); if (fs.existsSync(cachePath) && fs.existsSync(`${cachePath}.complete`)) { core.debug(`Found tool in cache ${toolName} ${versionSpec} ${arch}`); @@ -361,7 +421,7 @@ exports.find = find; function findAllVersions(toolName, arch) { const versions = []; arch = arch || os.arch(); - const toolPath = path.join(cacheRoot, toolName); + const toolPath = path.join(_getCacheDirectory(), toolName); if (fs.existsSync(toolPath)) { const children = fs.readdirSync(toolPath); for (const child of children) { @@ -376,11 +436,56 @@ function findAllVersions(toolName, arch) { return versions; } exports.findAllVersions = findAllVersions; +function getManifestFromRepo(owner, repo, auth, branch = 'master') { + return __awaiter(this, void 0, void 0, function* () { + let releases = []; + const treeUrl = `https://api.github.com/repos/${owner}/${repo}/git/trees/${branch}`; + const http = new httpm.HttpClient('tool-cache'); + const headers = {}; + if (auth) { + core.debug('set auth'); + headers.authorization = auth; + } + const response = yield http.getJson(treeUrl, headers); + if (!response.result) { + return releases; + } + let manifestUrl = ''; + for (const item of response.result.tree) { + if (item.path === 'versions-manifest.json') { + manifestUrl = item.url; + break; + } + } + headers['accept'] = 'application/vnd.github.VERSION.raw'; + let versionsRaw = yield (yield http.get(manifestUrl, headers)).readBody(); + if (versionsRaw) { + // shouldn't be needed but protects against invalid json saved with BOM + versionsRaw = versionsRaw.replace(/^\uFEFF/, ''); + try { + releases = JSON.parse(versionsRaw); + } + catch (_a) { + core.debug('Invalid json'); + } + } + return releases; + }); +} +exports.getManifestFromRepo = getManifestFromRepo; +function findFromManifest(versionSpec, stable, manifest, archFilter = os.arch()) { + return __awaiter(this, void 0, void 0, function* () { + // wrap the internal impl + const match = yield mm._findMatch(versionSpec, stable, manifest, archFilter); + return match; + }); +} +exports.findFromManifest = findFromManifest; function _createExtractFolder(dest) { return __awaiter(this, void 0, void 0, function* () { if (!dest) { // create a temp dir - dest = path.join(tempDirectory, uuidV4()); + dest = path.join(_getTempDirectory(), v4_1.default()); } yield io.mkdirP(dest); return dest; @@ -388,7 +493,7 @@ function _createExtractFolder(dest) { } function _createToolPath(tool, version, arch) { return __awaiter(this, void 0, void 0, function* () { - const folderPath = path.join(cacheRoot, tool, semver.clean(version) || version, arch || ''); + const folderPath = path.join(_getCacheDirectory(), tool, semver.clean(version) || version, arch || ''); core.debug(`destination ${folderPath}`); const markerPath = `${folderPath}.complete`; yield io.rmRF(folderPath); @@ -398,7 +503,7 @@ function _createToolPath(tool, version, arch) { }); } function _completeToolPath(tool, version, arch) { - const folderPath = path.join(cacheRoot, tool, semver.clean(version) || version, arch || ''); + const folderPath = path.join(_getCacheDirectory(), tool, semver.clean(version) || version, arch || ''); const markerPath = `${folderPath}.complete`; fs.writeFileSync(markerPath, ''); core.debug('finished caching tool'); @@ -435,4 +540,29 @@ function _evaluateVersions(versions, versionSpec) { } return version; } +/** + * Gets RUNNER_TOOL_CACHE + */ +function _getCacheDirectory() { + const cacheDirectory = process.env['RUNNER_TOOL_CACHE'] || ''; + assert_1.ok(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined'); + return cacheDirectory; +} +/** + * Gets RUNNER_TEMP + */ +function _getTempDirectory() { + const tempDirectory = process.env['RUNNER_TEMP'] || ''; + assert_1.ok(tempDirectory, 'Expected RUNNER_TEMP to be defined'); + return tempDirectory; +} +/** + * Gets a global variable + */ +function _getGlobal(key, defaultValue) { + /* eslint-disable @typescript-eslint/no-explicit-any */ + const value = global[key]; + /* eslint-enable @typescript-eslint/no-explicit-any */ + return value !== undefined ? value : defaultValue; +} //# sourceMappingURL=tool-cache.js.map \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/lib/tool-cache.js.map b/node_modules/@actions/tool-cache/lib/tool-cache.js.map index 8d905c23f..25a012809 100644 --- a/node_modules/@actions/tool-cache/lib/tool-cache.js.map +++ b/node_modules/@actions/tool-cache/lib/tool-cache.js.map @@ -1 +1 @@ -{"version":3,"file":"tool-cache.js","sourceRoot":"","sources":["../src/tool-cache.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,sCAAqC;AACrC,kCAAiC;AACjC,yBAAwB;AACxB,yBAAwB;AACxB,6BAA4B;AAC5B,sDAAqD;AACrD,iCAAgC;AAChC,kCAAiC;AACjC,iDAA2C;AAE3C,mCAAyB;AAEzB,MAAa,SAAU,SAAQ,KAAK;IAClC,YAAqB,cAAkC;QACrD,KAAK,CAAC,6BAA6B,cAAc,EAAE,CAAC,CAAA;QADjC,mBAAc,GAAd,cAAc,CAAoB;QAErD,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;IACnD,CAAC;CACF;AALD,8BAKC;AAED,MAAM,UAAU,GAAG,OAAO,CAAC,QAAQ,KAAK,OAAO,CAAA;AAC/C,MAAM,SAAS,GAAG,oBAAoB,CAAA;AAEtC,iHAAiH;AACjH,IAAI,aAAa,GAAW,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,EAAE,CAAA;AAC5D,IAAI,SAAS,GAAW,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,IAAI,EAAE,CAAA;AAC9D,gEAAgE;AAChE,IAAI,CAAC,aAAa,IAAI,CAAC,SAAS,EAAE;IAChC,IAAI,YAAoB,CAAA;IACxB,IAAI,UAAU,EAAE;QACd,8CAA8C;QAC9C,YAAY,GAAG,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,MAAM,CAAA;KACpD;SAAM;QACL,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACjC,YAAY,GAAG,QAAQ,CAAA;SACxB;aAAM;YACL,YAAY,GAAG,OAAO,CAAA;SACvB;KACF;IACD,IAAI,CAAC,aAAa,EAAE;QAClB,aAAa,GAAG,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,SAAS,EAAE,MAAM,CAAC,CAAA;KAC3D;IACD,IAAI,CAAC,SAAS,EAAE;QACd,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;KACxD;CACF;AAED;;;;;GAKG;AACH,SAAsB,YAAY,CAAC,GAAW;;QAC5C,wEAAwE;QACxE,OAAO,IAAI,OAAO,CAAS,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;YACnD,IAAI;gBACF,MAAM,IAAI,GAAG,IAAI,KAAK,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE;oBAC/C,YAAY,EAAE,IAAI;oBAClB,UAAU,EAAE,CAAC;iBACd,CAAC,CAAA;gBACF,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,MAAM,EAAE,CAAC,CAAA;gBAEnD,MAAM,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,CAAA;gBAC9B,IAAI,CAAC,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC,CAAA;gBAChC,IAAI,CAAC,KAAK,CAAC,eAAe,QAAQ,EAAE,CAAC,CAAA;gBAErC,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;oBAC3B,MAAM,IAAI,KAAK,CAAC,yBAAyB,QAAQ,iBAAiB,CAAC,CAAA;iBACpE;gBAED,MAAM,QAAQ,GAA6B,MAAM,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;gBAE9D,IAAI,QAAQ,CAAC,OAAO,CAAC,UAAU,KAAK,GAAG,EAAE;oBACvC,MAAM,GAAG,GAAG,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAA;oBACtD,IAAI,CAAC,KAAK,CACR,4BAA4B,GAAG,WAC7B,QAAQ,CAAC,OAAO,CAAC,UACnB,aAAa,QAAQ,CAAC,OAAO,CAAC,aAAa,GAAG,CAC/C,CAAA;oBACD,MAAM,GAAG,CAAA;iBACV;gBAED,MAAM,IAAI,GAA0B,EAAE,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAA;gBAClE,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,GAAS,EAAE;oBACzB,IAAI;wBACF,MAAM,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;wBAC1C,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE;4BACtB,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAA;4BAC/B,OAAO,CAAC,QAAQ,CAAC,CAAA;wBACnB,CAAC,CAAC,CAAA;qBACH;oBAAC,OAAO,GAAG,EAAE;wBACZ,IAAI,CAAC,KAAK,CACR,4BAA4B,GAAG,WAC7B,QAAQ,CAAC,OAAO,CAAC,UACnB,aAAa,QAAQ,CAAC,OAAO,CAAC,aAAa,GAAG,CAC/C,CAAA;wBACD,MAAM,CAAC,GAAG,CAAC,CAAA;qBACZ;gBACH,CAAC,CAAA,CAAC,CAAA;gBACF,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE;oBACrB,IAAI,CAAC,GAAG,EAAE,CAAA;oBACV,MAAM,CAAC,GAAG,CAAC,CAAA;gBACb,CAAC,CAAC,CAAA;aACH;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,CAAC,GAAG,CAAC,CAAA;aACZ;QACH,CAAC,CAAA,CAAC,CAAA;IACJ,CAAC;CAAA;AAvDD,oCAuDC;AAED;;;;;;;;;;;;;;GAcG;AACH,SAAsB,SAAS,CAC7B,IAAY,EACZ,IAAa,EACb,OAAgB;;QAEhB,WAAE,CAAC,UAAU,EAAE,yCAAyC,CAAC,CAAA;QACzD,WAAE,CAAC,IAAI,EAAE,8BAA8B,CAAC,CAAA;QAExC,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAC,CAAA;QAEjD,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,EAAE,CAAA;QACjC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QACnB,IAAI,OAAO,EAAE;YACX,IAAI;gBACF,MAAM,IAAI,GAAa;oBACrB,GAAG;oBACH,MAAM;oBACN,KAAK;oBACL,WAAW;oBACX,IAAI;iBACL,CAAA;gBACD,MAAM,OAAO,GAAgB;oBAC3B,MAAM,EAAE,IAAI;iBACb,CAAA;gBACD,MAAM,WAAI,CAAC,IAAI,OAAO,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;aAC1C;oBAAS;gBACR,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;aAC3B;SACF;aAAM;YACL,MAAM,aAAa,GAAG,IAAI;iBACvB,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,SAAS,EAAE,kBAAkB,CAAC;iBACpD,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC;iBACnB,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA,CAAC,6DAA6D;YACxF,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;YACpE,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;YACtE,MAAM,OAAO,GAAG,MAAM,aAAa,cAAc,WAAW,cAAc,aAAa,GAAG,CAAA;YAC1F,MAAM,IAAI,GAAa;gBACrB,SAAS;gBACT,MAAM;gBACN,YAAY;gBACZ,iBAAiB;gBACjB,kBAAkB;gBAClB,cAAc;gBACd,UAAU;gBACV,OAAO;aACR,CAAA;YACD,MAAM,OAAO,GAAgB;gBAC3B,MAAM,EAAE,IAAI;aACb,CAAA;YACD,IAAI;gBACF,MAAM,cAAc,GAAW,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,CAAC,CAAA;gBACjE,MAAM,WAAI,CAAC,IAAI,cAAc,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;aACjD;oBAAS;gBACR,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;aAC3B;SACF;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AA1DD,8BA0DC;AAED;;;;;;;GAOG;AACH,SAAsB,UAAU,CAC9B,IAAY,EACZ,IAAa,EACb,QAAgB,IAAI;;QAEpB,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAC,CAAA;QACjD,MAAM,OAAO,GAAW,MAAM,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;QACnD,MAAM,WAAI,CAAC,IAAI,OAAO,GAAG,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAA;QAE3D,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAdD,gCAcC;AAED;;;;;;GAMG;AACH,SAAsB,UAAU,CAAC,IAAY,EAAE,IAAa;;QAC1D,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAC,CAAA;QAEjD,IAAI,UAAU,EAAE;YACd,MAAM,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;SAChC;aAAM;YACL,MAAM,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;SAChC;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAdD,gCAcC;AAED,SAAe,aAAa,CAAC,IAAY,EAAE,IAAY;;QACrD,+BAA+B;QAC/B,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA,CAAC,6DAA6D;QAClI,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;QACpE,MAAM,OAAO,GAAG,sKAAsK,WAAW,OAAO,WAAW,IAAI,CAAA;QAEvN,iBAAiB;QACjB,MAAM,cAAc,GAAG,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,CAAC,CAAA;QACnD,MAAM,IAAI,GAAG;YACX,SAAS;YACT,MAAM;YACN,YAAY;YACZ,iBAAiB;YACjB,kBAAkB;YAClB,cAAc;YACd,UAAU;YACV,OAAO;SACR,CAAA;QACD,MAAM,WAAI,CAAC,IAAI,cAAc,GAAG,EAAE,IAAI,CAAC,CAAA;IACzC,CAAC;CAAA;AAED,SAAe,aAAa,CAAC,IAAY,EAAE,IAAY;;QACrD,MAAM,SAAS,GAAG,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;QACzC,MAAM,WAAI,CAAC,IAAI,SAAS,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,EAAC,GAAG,EAAE,IAAI,EAAC,CAAC,CAAA;IACnD,CAAC;CAAA;AAED;;;;;;;GAOG;AACH,SAAsB,QAAQ,CAC5B,SAAiB,EACjB,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,CAAA;QAC1C,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;QACxB,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC,CAAA;QAErD,IAAI,CAAC,KAAK,CAAC,eAAe,SAAS,EAAE,CAAC,CAAA;QACtC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,WAAW,EAAE,EAAE;YACzC,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,sBAAsB;QACtB,MAAM,QAAQ,GAAW,MAAM,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QACnE,8DAA8D;QAC9D,8DAA8D;QAC9D,KAAK,MAAM,QAAQ,IAAI,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC,EAAE;YAChD,MAAM,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAA;YACxC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAC,SAAS,EAAE,IAAI,EAAC,CAAC,CAAA;SAC5C;QAED,kBAAkB;QAClB,iBAAiB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAEtC,OAAO,QAAQ,CAAA;IACjB,CAAC;CAAA;AA5BD,4BA4BC;AAED;;;;;;;;;GASG;AACH,SAAsB,SAAS,CAC7B,UAAkB,EAClB,UAAkB,EAClB,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,CAAA;QAC1C,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;QACxB,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC,CAAA;QAErD,IAAI,CAAC,KAAK,CAAC,gBAAgB,UAAU,EAAE,CAAC,CAAA;QACxC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE,EAAE;YACrC,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAA;SAC5C;QAED,sBAAsB;QACtB,MAAM,UAAU,GAAW,MAAM,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAErE,wDAAwD;QACxD,uDAAuD;QACvD,MAAM,QAAQ,GAAW,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;QAC1D,IAAI,CAAC,KAAK,CAAC,oBAAoB,QAAQ,EAAE,CAAC,CAAA;QAC1C,MAAM,EAAE,CAAC,EAAE,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA;QAEjC,kBAAkB;QAClB,iBAAiB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAEtC,OAAO,UAAU,CAAA;IACnB,CAAC;CAAA;AA7BD,8BA6BC;AAED;;;;;;GAMG;AACH,SAAgB,IAAI,CAClB,QAAgB,EAChB,WAAmB,EACnB,IAAa;IAEb,IAAI,CAAC,QAAQ,EAAE;QACb,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAA;KAClD;IAED,IAAI,CAAC,WAAW,EAAE;QAChB,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAA;KACrD;IAED,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;IAExB,yCAAyC;IACzC,IAAI,CAAC,kBAAkB,CAAC,WAAW,CAAC,EAAE;QACpC,MAAM,aAAa,GAAa,eAAe,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;QAC/D,MAAM,KAAK,GAAG,iBAAiB,CAAC,aAAa,EAAE,WAAW,CAAC,CAAA;QAC3D,WAAW,GAAG,KAAK,CAAA;KACpB;IAED,8CAA8C;IAC9C,IAAI,QAAQ,GAAG,EAAE,CAAA;IACjB,IAAI,WAAW,EAAE;QACf,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,CAAA;QAC7C,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,IAAI,CAAC,CAAA;QACnE,IAAI,CAAC,KAAK,CAAC,mBAAmB,SAAS,EAAE,CAAC,CAAA;QAC1C,IAAI,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,UAAU,CAAC,GAAG,SAAS,WAAW,CAAC,EAAE;YACtE,IAAI,CAAC,KAAK,CAAC,uBAAuB,QAAQ,IAAI,WAAW,IAAI,IAAI,EAAE,CAAC,CAAA;YACpE,QAAQ,GAAG,SAAS,CAAA;SACrB;aAAM;YACL,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;SACxB;KACF;IACD,OAAO,QAAQ,CAAA;AACjB,CAAC;AApCD,oBAoCC;AAED;;;;;GAKG;AACH,SAAgB,eAAe,CAAC,QAAgB,EAAE,IAAa;IAC7D,MAAM,QAAQ,GAAa,EAAE,CAAA;IAE7B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;IACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAA;IAE/C,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC3B,MAAM,QAAQ,GAAa,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;QACnD,KAAK,MAAM,KAAK,IAAI,QAAQ,EAAE;YAC5B,IAAI,kBAAkB,CAAC,KAAK,CAAC,EAAE;gBAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,CAAC,CAAA;gBACvD,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,UAAU,CAAC,GAAG,QAAQ,WAAW,CAAC,EAAE;oBACpE,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;iBACrB;aACF;SACF;KACF;IAED,OAAO,QAAQ,CAAA;AACjB,CAAC;AAnBD,0CAmBC;AAED,SAAe,oBAAoB,CAAC,IAAa;;QAC/C,IAAI,CAAC,IAAI,EAAE;YACT,oBAAoB;YACpB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,MAAM,EAAE,CAAC,CAAA;SAC1C;QACD,MAAM,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACrB,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAED,SAAe,eAAe,CAC5B,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAC1B,SAAS,EACT,IAAI,EACJ,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,EAChC,IAAI,IAAI,EAAE,CACX,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,eAAe,UAAU,EAAE,CAAC,CAAA;QACvC,MAAM,UAAU,GAAG,GAAG,UAAU,WAAW,CAAA;QAC3C,MAAM,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACzB,MAAM,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACzB,MAAM,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,CAAA;QAC3B,OAAO,UAAU,CAAA;IACnB,CAAC;CAAA;AAED,SAAS,iBAAiB,CAAC,IAAY,EAAE,OAAe,EAAE,IAAa;IACrE,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAC1B,SAAS,EACT,IAAI,EACJ,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,EAChC,IAAI,IAAI,EAAE,CACX,CAAA;IACD,MAAM,UAAU,GAAG,GAAG,UAAU,WAAW,CAAA;IAC3C,EAAE,CAAC,aAAa,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;IAChC,IAAI,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAA;AACrC,CAAC;AAED,SAAS,kBAAkB,CAAC,WAAmB;IAC7C,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,CAAA;IACzC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,EAAE,CAAC,CAAA;IAE9B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAA;IACrC,IAAI,CAAC,KAAK,CAAC,aAAa,KAAK,EAAE,CAAC,CAAA;IAEhC,OAAO,KAAK,CAAA;AACd,CAAC;AAED,SAAS,iBAAiB,CAAC,QAAkB,EAAE,WAAmB;IAChE,IAAI,OAAO,GAAG,EAAE,CAAA;IAChB,IAAI,CAAC,KAAK,CAAC,cAAc,QAAQ,CAAC,MAAM,WAAW,CAAC,CAAA;IACpD,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;QAChC,IAAI,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;YACnB,OAAO,CAAC,CAAA;SACT;QACD,OAAO,CAAC,CAAC,CAAA;IACX,CAAC,CAAC,CAAA;IACF,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;QAC7C,MAAM,SAAS,GAAW,QAAQ,CAAC,CAAC,CAAC,CAAA;QACrC,MAAM,SAAS,GAAY,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,WAAW,CAAC,CAAA;QACnE,IAAI,SAAS,EAAE;YACb,OAAO,GAAG,SAAS,CAAA;YACnB,MAAK;SACN;KACF;IAED,IAAI,OAAO,EAAE;QACX,IAAI,CAAC,KAAK,CAAC,YAAY,OAAO,EAAE,CAAC,CAAA;KAClC;SAAM;QACL,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAA;KAC9B;IAED,OAAO,OAAO,CAAA;AAChB,CAAC"} \ No newline at end of file +{"version":3,"file":"tool-cache.js","sourceRoot":"","sources":["../src/tool-cache.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,oDAAqC;AACrC,gDAAiC;AACjC,uCAAwB;AACxB,+CAAgC;AAChC,uCAAwB;AACxB,2CAA4B;AAC5B,4DAA6C;AAC7C,+CAAgC;AAChC,+CAAgC;AAChC,2CAA4B;AAC5B,iDAA4B;AAC5B,iDAA2C;AAE3C,mCAAyB;AACzB,iDAA0C;AAG1C,MAAa,SAAU,SAAQ,KAAK;IAClC,YAAqB,cAAkC;QACrD,KAAK,CAAC,6BAA6B,cAAc,EAAE,CAAC,CAAA;QADjC,mBAAc,GAAd,cAAc,CAAoB;QAErD,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;IACnD,CAAC;CACF;AALD,8BAKC;AAED,MAAM,UAAU,GAAG,OAAO,CAAC,QAAQ,KAAK,OAAO,CAAA;AAC/C,MAAM,SAAS,GAAG,oBAAoB,CAAA;AAEtC;;;;;;;GAOG;AACH,SAAsB,YAAY,CAChC,GAAW,EACX,IAAa,EACb,IAAa;;QAEb,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAE,EAAE,YAAM,EAAE,CAAC,CAAA;QACvD,MAAM,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;QACnC,IAAI,CAAC,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC,CAAA;QAChC,IAAI,CAAC,KAAK,CAAC,eAAe,IAAI,EAAE,CAAC,CAAA;QAEjC,MAAM,WAAW,GAAG,CAAC,CAAA;QACrB,MAAM,UAAU,GAAG,UAAU,CAC3B,sCAAsC,EACtC,EAAE,CACH,CAAA;QACD,MAAM,UAAU,GAAG,UAAU,CAC3B,sCAAsC,EACtC,EAAE,CACH,CAAA;QACD,MAAM,WAAW,GAAG,IAAI,0BAAW,CAAC,WAAW,EAAE,UAAU,EAAE,UAAU,CAAC,CAAA;QACxE,OAAO,MAAM,WAAW,CAAC,OAAO,CAC9B,GAAS,EAAE;YACT,OAAO,MAAM,mBAAmB,CAAC,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,CAAC,CAAA;QACzD,CAAC,CAAA,EACD,CAAC,GAAU,EAAE,EAAE;YACb,IAAI,GAAG,YAAY,SAAS,IAAI,GAAG,CAAC,cAAc,EAAE;gBAClD,2FAA2F;gBAC3F,IACE,GAAG,CAAC,cAAc,GAAG,GAAG;oBACxB,GAAG,CAAC,cAAc,KAAK,GAAG;oBAC1B,GAAG,CAAC,cAAc,KAAK,GAAG,EAC1B;oBACA,OAAO,KAAK,CAAA;iBACb;aACF;YAED,kBAAkB;YAClB,OAAO,IAAI,CAAA;QACb,CAAC,CACF,CAAA;IACH,CAAC;CAAA;AAxCD,oCAwCC;AAED,SAAe,mBAAmB,CAChC,GAAW,EACX,IAAY,EACZ,IAAa;;QAEb,IAAI,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACvB,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,iBAAiB,CAAC,CAAA;SAChE;QAED,2BAA2B;QAC3B,MAAM,IAAI,GAAG,IAAI,KAAK,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE;YAC/C,YAAY,EAAE,KAAK;SACpB,CAAC,CAAA;QAEF,IAAI,OAA6B,CAAA;QACjC,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;YACtB,OAAO,GAAG;gBACR,aAAa,EAAE,IAAI;aACpB,CAAA;SACF;QAED,MAAM,QAAQ,GAA6B,MAAM,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;QACvE,IAAI,QAAQ,CAAC,OAAO,CAAC,UAAU,KAAK,GAAG,EAAE;YACvC,MAAM,GAAG,GAAG,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAA;YACtD,IAAI,CAAC,KAAK,CACR,4BAA4B,GAAG,WAAW,QAAQ,CAAC,OAAO,CAAC,UAAU,aAAa,QAAQ,CAAC,OAAO,CAAC,aAAa,GAAG,CACpH,CAAA;YACD,MAAM,GAAG,CAAA;SACV;QAED,6BAA6B;QAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;QAChD,MAAM,sBAAsB,GAAG,UAAU,CACvC,6CAA6C,EAC7C,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,CACvB,CAAA;QACD,MAAM,UAAU,GAAG,sBAAsB,EAAE,CAAA;QAC3C,IAAI,SAAS,GAAG,KAAK,CAAA;QACrB,IAAI;YACF,MAAM,QAAQ,CAAC,UAAU,EAAE,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAA;YACtD,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAA;YAC/B,SAAS,GAAG,IAAI,CAAA;YAChB,OAAO,IAAI,CAAA;SACZ;gBAAS;YACR,kCAAkC;YAClC,IAAI,CAAC,SAAS,EAAE;gBACd,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAA;gBAC7B,IAAI;oBACF,MAAM,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;iBACpB;gBAAC,OAAO,GAAG,EAAE;oBACZ,IAAI,CAAC,KAAK,CAAC,qBAAqB,IAAI,MAAM,GAAG,CAAC,OAAO,EAAE,CAAC,CAAA;iBACzD;aACF;SACF;IACH,CAAC;CAAA;AAED;;;;;;;;;;;;;;GAcG;AACH,SAAsB,SAAS,CAC7B,IAAY,EACZ,IAAa,EACb,OAAgB;;QAEhB,WAAE,CAAC,UAAU,EAAE,yCAAyC,CAAC,CAAA;QACzD,WAAE,CAAC,IAAI,EAAE,8BAA8B,CAAC,CAAA;QAExC,IAAI,GAAG,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAA;QAEvC,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,EAAE,CAAA;QACjC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QACnB,IAAI,OAAO,EAAE;YACX,IAAI;gBACF,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAA;gBACjD,MAAM,IAAI,GAAa;oBACrB,GAAG;oBACH,QAAQ;oBACR,KAAK;oBACL,WAAW;oBACX,IAAI;iBACL,CAAA;gBACD,MAAM,OAAO,GAAgB;oBAC3B,MAAM,EAAE,IAAI;iBACb,CAAA;gBACD,MAAM,WAAI,CAAC,IAAI,OAAO,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;aAC1C;oBAAS;gBACR,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;aAC3B;SACF;aAAM;YACL,MAAM,aAAa,GAAG,IAAI;iBACvB,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,SAAS,EAAE,kBAAkB,CAAC;iBACpD,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC;iBACnB,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA,CAAC,6DAA6D;YACxF,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;YACpE,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;YACtE,MAAM,OAAO,GAAG,MAAM,aAAa,cAAc,WAAW,cAAc,aAAa,GAAG,CAAA;YAC1F,MAAM,IAAI,GAAa;gBACrB,SAAS;gBACT,MAAM;gBACN,YAAY;gBACZ,iBAAiB;gBACjB,kBAAkB;gBAClB,cAAc;gBACd,UAAU;gBACV,OAAO;aACR,CAAA;YACD,MAAM,OAAO,GAAgB;gBAC3B,MAAM,EAAE,IAAI;aACb,CAAA;YACD,IAAI;gBACF,MAAM,cAAc,GAAW,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,CAAC,CAAA;gBACjE,MAAM,WAAI,CAAC,IAAI,cAAc,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;aACjD;oBAAS;gBACR,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;aAC3B;SACF;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AA3DD,8BA2DC;AAED;;;;;;;GAOG;AACH,SAAsB,UAAU,CAC9B,IAAY,EACZ,IAAa,EACb,QAA2B,IAAI;;QAE/B,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,cAAc;QACd,IAAI,GAAG,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAA;QAEvC,4BAA4B;QAC5B,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAA;QACpC,IAAI,aAAa,GAAG,EAAE,CAAA;QACtB,MAAM,WAAI,CAAC,eAAe,EAAE,EAAE,EAAE;YAC9B,gBAAgB,EAAE,IAAI;YACtB,MAAM,EAAE,IAAI;YACZ,SAAS,EAAE;gBACT,MAAM,EAAE,CAAC,IAAY,EAAE,EAAE,CAAC,CAAC,aAAa,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;gBAC5D,MAAM,EAAE,CAAC,IAAY,EAAE,EAAE,CAAC,CAAC,aAAa,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;aAC7D;SACF,CAAC,CAAA;QACF,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,CAAA;QAChC,MAAM,QAAQ,GAAG,aAAa,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAA;QAEhE,kBAAkB;QAClB,IAAI,IAAc,CAAA;QAClB,IAAI,KAAK,YAAY,KAAK,EAAE;YAC1B,IAAI,GAAG,KAAK,CAAA;SACb;aAAM;YACL,IAAI,GAAG,CAAC,KAAK,CAAC,CAAA;SACf;QAED,IAAI,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YAC1C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;SAChB;QAED,IAAI,OAAO,GAAG,IAAI,CAAA;QAClB,IAAI,OAAO,GAAG,IAAI,CAAA;QAClB,IAAI,UAAU,IAAI,QAAQ,EAAE;YAC1B,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,CAAA;YAC1B,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;YAElC,4EAA4E;YAC5E,uCAAuC;YACvC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;SACnC;QAED,IAAI,QAAQ,EAAE;YACZ,8EAA8E;YAC9E,IAAI,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAA;SAC1C;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;QACvC,MAAM,WAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;QAEvB,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AA1DD,gCA0DC;AAED;;;;;;GAMG;AACH,SAAsB,UAAU,CAAC,IAAY,EAAE,IAAa;;QAC1D,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,IAAI,GAAG,MAAM,oBAAoB,CAAC,IAAI,CAAC,CAAA;QAEvC,IAAI,UAAU,EAAE;YACd,MAAM,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;SAChC;aAAM;YACL,MAAM,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;SAChC;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAdD,gCAcC;AAED,SAAe,aAAa,CAAC,IAAY,EAAE,IAAY;;QACrD,+BAA+B;QAC/B,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA,CAAC,6DAA6D;QAClI,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;QACpE,MAAM,OAAO,GAAG,sKAAsK,WAAW,OAAO,WAAW,IAAI,CAAA;QAEvN,iBAAiB;QACjB,MAAM,cAAc,GAAG,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,CAAC,CAAA;QACzD,MAAM,IAAI,GAAG;YACX,SAAS;YACT,MAAM;YACN,YAAY;YACZ,iBAAiB;YACjB,kBAAkB;YAClB,cAAc;YACd,UAAU;YACV,OAAO;SACR,CAAA;QACD,MAAM,WAAI,CAAC,IAAI,cAAc,GAAG,EAAE,IAAI,CAAC,CAAA;IACzC,CAAC;CAAA;AAED,SAAe,aAAa,CAAC,IAAY,EAAE,IAAY;;QACrD,MAAM,SAAS,GAAG,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAA;QAC/C,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,CAAA;QACnB,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE;YACnB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;SACnB;QACD,MAAM,WAAI,CAAC,IAAI,SAAS,GAAG,EAAE,IAAI,EAAE,EAAC,GAAG,EAAE,IAAI,EAAC,CAAC,CAAA;IACjD,CAAC;CAAA;AAED;;;;;;;GAOG;AACH,SAAsB,QAAQ,CAC5B,SAAiB,EACjB,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,CAAA;QAC1C,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;QACxB,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC,CAAA;QAErD,IAAI,CAAC,KAAK,CAAC,eAAe,SAAS,EAAE,CAAC,CAAA;QACtC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,WAAW,EAAE,EAAE;YACzC,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAA;SAChD;QAED,sBAAsB;QACtB,MAAM,QAAQ,GAAW,MAAM,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QACnE,8DAA8D;QAC9D,8DAA8D;QAC9D,KAAK,MAAM,QAAQ,IAAI,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC,EAAE;YAChD,MAAM,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAA;YACxC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAC,SAAS,EAAE,IAAI,EAAC,CAAC,CAAA;SAC5C;QAED,kBAAkB;QAClB,iBAAiB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAEtC,OAAO,QAAQ,CAAA;IACjB,CAAC;CAAA;AA5BD,4BA4BC;AAED;;;;;;;;;GASG;AACH,SAAsB,SAAS,CAC7B,UAAkB,EAClB,UAAkB,EAClB,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,CAAA;QAC1C,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;QACxB,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC,CAAA;QAErD,IAAI,CAAC,KAAK,CAAC,gBAAgB,UAAU,EAAE,CAAC,CAAA;QACxC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE,EAAE;YACrC,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAA;SAC5C;QAED,sBAAsB;QACtB,MAAM,UAAU,GAAW,MAAM,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAErE,wDAAwD;QACxD,uDAAuD;QACvD,MAAM,QAAQ,GAAW,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;QAC1D,IAAI,CAAC,KAAK,CAAC,oBAAoB,QAAQ,EAAE,CAAC,CAAA;QAC1C,MAAM,EAAE,CAAC,EAAE,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA;QAEjC,kBAAkB;QAClB,iBAAiB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;QAEtC,OAAO,UAAU,CAAA;IACnB,CAAC;CAAA;AA7BD,8BA6BC;AAED;;;;;;GAMG;AACH,SAAgB,IAAI,CAClB,QAAgB,EAChB,WAAmB,EACnB,IAAa;IAEb,IAAI,CAAC,QAAQ,EAAE;QACb,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAA;KAClD;IAED,IAAI,CAAC,WAAW,EAAE;QAChB,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAA;KACrD;IAED,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;IAExB,yCAAyC;IACzC,IAAI,CAAC,kBAAkB,CAAC,WAAW,CAAC,EAAE;QACpC,MAAM,aAAa,GAAa,eAAe,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;QAC/D,MAAM,KAAK,GAAG,iBAAiB,CAAC,aAAa,EAAE,WAAW,CAAC,CAAA;QAC3D,WAAW,GAAG,KAAK,CAAA;KACpB;IAED,8CAA8C;IAC9C,IAAI,QAAQ,GAAG,EAAE,CAAA;IACjB,IAAI,WAAW,EAAE;QACf,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,CAAA;QAC7C,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CACzB,kBAAkB,EAAE,EACpB,QAAQ,EACR,WAAW,EACX,IAAI,CACL,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,mBAAmB,SAAS,EAAE,CAAC,CAAA;QAC1C,IAAI,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,UAAU,CAAC,GAAG,SAAS,WAAW,CAAC,EAAE;YACtE,IAAI,CAAC,KAAK,CAAC,uBAAuB,QAAQ,IAAI,WAAW,IAAI,IAAI,EAAE,CAAC,CAAA;YACpE,QAAQ,GAAG,SAAS,CAAA;SACrB;aAAM;YACL,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;SACxB;KACF;IACD,OAAO,QAAQ,CAAA;AACjB,CAAC;AAzCD,oBAyCC;AAED;;;;;GAKG;AACH,SAAgB,eAAe,CAAC,QAAgB,EAAE,IAAa;IAC7D,MAAM,QAAQ,GAAa,EAAE,CAAA;IAE7B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;IACxB,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,QAAQ,CAAC,CAAA;IAE1D,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC3B,MAAM,QAAQ,GAAa,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAA;QACnD,KAAK,MAAM,KAAK,IAAI,QAAQ,EAAE;YAC5B,IAAI,kBAAkB,CAAC,KAAK,CAAC,EAAE;gBAC7B,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,IAAI,EAAE,CAAC,CAAA;gBACvD,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,UAAU,CAAC,GAAG,QAAQ,WAAW,CAAC,EAAE;oBACpE,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;iBACrB;aACF;SACF;KACF;IAED,OAAO,QAAQ,CAAA;AACjB,CAAC;AAnBD,0CAmBC;AA0BD,SAAsB,mBAAmB,CACvC,KAAa,EACb,IAAY,EACZ,IAAa,EACb,MAAM,GAAG,QAAQ;;QAEjB,IAAI,QAAQ,GAAmB,EAAE,CAAA;QACjC,MAAM,OAAO,GAAG,gCAAgC,KAAK,IAAI,IAAI,cAAc,MAAM,EAAE,CAAA;QAEnF,MAAM,IAAI,GAAqB,IAAI,KAAK,CAAC,UAAU,CAAC,YAAY,CAAC,CAAA;QACjE,MAAM,OAAO,GAAa,EAAE,CAAA;QAC5B,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAA;YACtB,OAAO,CAAC,aAAa,GAAG,IAAI,CAAA;SAC7B;QAED,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAa,OAAO,EAAE,OAAO,CAAC,CAAA;QACjE,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE;YACpB,OAAO,QAAQ,CAAA;SAChB;QAED,IAAI,WAAW,GAAG,EAAE,CAAA;QACpB,KAAK,MAAM,IAAI,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,EAAE;YACvC,IAAI,IAAI,CAAC,IAAI,KAAK,wBAAwB,EAAE;gBAC1C,WAAW,GAAG,IAAI,CAAC,GAAG,CAAA;gBACtB,MAAK;aACN;SACF;QAED,OAAO,CAAC,QAAQ,CAAC,GAAG,oCAAoC,CAAA;QACxD,IAAI,WAAW,GAAG,MAAM,CAAC,MAAM,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAA;QAEzE,IAAI,WAAW,EAAE;YACf,uEAAuE;YACvE,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAA;YAChD,IAAI;gBACF,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;aACnC;YAAC,WAAM;gBACN,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAA;aAC3B;SACF;QAED,OAAO,QAAQ,CAAA;IACjB,CAAC;CAAA;AA3CD,kDA2CC;AAED,SAAsB,gBAAgB,CACpC,WAAmB,EACnB,MAAe,EACf,QAAwB,EACxB,aAAqB,EAAE,CAAC,IAAI,EAAE;;QAE9B,yBAAyB;QACzB,MAAM,KAAK,GAAgC,MAAM,EAAE,CAAC,UAAU,CAC5D,WAAW,EACX,MAAM,EACN,QAAQ,EACR,UAAU,CACX,CAAA;QAED,OAAO,KAAK,CAAA;IACd,CAAC;CAAA;AAfD,4CAeC;AAED,SAAe,oBAAoB,CAAC,IAAa;;QAC/C,IAAI,CAAC,IAAI,EAAE;YACT,oBAAoB;YACpB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAE,EAAE,YAAM,EAAE,CAAC,CAAA;SAChD;QACD,MAAM,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACrB,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAED,SAAe,eAAe,CAC5B,IAAY,EACZ,OAAe,EACf,IAAa;;QAEb,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAC1B,kBAAkB,EAAE,EACpB,IAAI,EACJ,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,EAChC,IAAI,IAAI,EAAE,CACX,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,eAAe,UAAU,EAAE,CAAC,CAAA;QACvC,MAAM,UAAU,GAAG,GAAG,UAAU,WAAW,CAAA;QAC3C,MAAM,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACzB,MAAM,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACzB,MAAM,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,CAAA;QAC3B,OAAO,UAAU,CAAA;IACnB,CAAC;CAAA;AAED,SAAS,iBAAiB,CAAC,IAAY,EAAE,OAAe,EAAE,IAAa;IACrE,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAC1B,kBAAkB,EAAE,EACpB,IAAI,EACJ,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,EAChC,IAAI,IAAI,EAAE,CACX,CAAA;IACD,MAAM,UAAU,GAAG,GAAG,UAAU,WAAW,CAAA;IAC3C,EAAE,CAAC,aAAa,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;IAChC,IAAI,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAA;AACrC,CAAC;AAED,SAAS,kBAAkB,CAAC,WAAmB;IAC7C,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,CAAA;IACzC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,EAAE,CAAC,CAAA;IAE9B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAA;IACrC,IAAI,CAAC,KAAK,CAAC,aAAa,KAAK,EAAE,CAAC,CAAA;IAEhC,OAAO,KAAK,CAAA;AACd,CAAC;AAED,SAAS,iBAAiB,CAAC,QAAkB,EAAE,WAAmB;IAChE,IAAI,OAAO,GAAG,EAAE,CAAA;IAChB,IAAI,CAAC,KAAK,CAAC,cAAc,QAAQ,CAAC,MAAM,WAAW,CAAC,CAAA;IACpD,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;QAChC,IAAI,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;YACnB,OAAO,CAAC,CAAA;SACT;QACD,OAAO,CAAC,CAAC,CAAA;IACX,CAAC,CAAC,CAAA;IACF,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;QAC7C,MAAM,SAAS,GAAW,QAAQ,CAAC,CAAC,CAAC,CAAA;QACrC,MAAM,SAAS,GAAY,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,WAAW,CAAC,CAAA;QACnE,IAAI,SAAS,EAAE;YACb,OAAO,GAAG,SAAS,CAAA;YACnB,MAAK;SACN;KACF;IAED,IAAI,OAAO,EAAE;QACX,IAAI,CAAC,KAAK,CAAC,YAAY,OAAO,EAAE,CAAC,CAAA;KAClC;SAAM;QACL,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAA;KAC9B;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AAED;;GAEG;AACH,SAAS,kBAAkB;IACzB,MAAM,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,IAAI,EAAE,CAAA;IAC7D,WAAE,CAAC,cAAc,EAAE,0CAA0C,CAAC,CAAA;IAC9D,OAAO,cAAc,CAAA;AACvB,CAAC;AAED;;GAEG;AACH,SAAS,iBAAiB;IACxB,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,EAAE,CAAA;IACtD,WAAE,CAAC,aAAa,EAAE,oCAAoC,CAAC,CAAA;IACvD,OAAO,aAAa,CAAA;AACtB,CAAC;AAED;;GAEG;AACH,SAAS,UAAU,CAAI,GAAW,EAAE,YAAe;IACjD,uDAAuD;IACvD,MAAM,KAAK,GAAI,MAAc,CAAC,GAAG,CAAkB,CAAA;IACnD,sDAAsD;IACtD,OAAO,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,YAAY,CAAA;AACnD,CAAC"} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/README.md b/node_modules/@actions/tool-cache/node_modules/@actions/core/README.md new file mode 100644 index 000000000..5ad27eede --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/README.md @@ -0,0 +1,146 @@ +# `@actions/core` + +> Core functions for setting results, logging, registering secrets and exporting variables across actions + +## Usage + +### Import the package + +```js +// javascript +const core = require('@actions/core'); + +// typescript +import * as core from '@actions/core'; +``` + +#### Inputs/Outputs + +Action inputs can be read with `getInput`. Outputs can be set with `setOutput` which makes them available to be mapped into inputs of other actions to ensure they are decoupled. + +```js +const myInput = core.getInput('inputName', { required: true }); + +core.setOutput('outputKey', 'outputVal'); +``` + +#### Exporting variables + +Since each step runs in a separate process, you can use `exportVariable` to add it to this step and future steps environment blocks. + +```js +core.exportVariable('envVar', 'Val'); +``` + +#### Setting a secret + +Setting a secret registers the secret with the runner to ensure it is masked in logs. + +```js +core.setSecret('myPassword'); +``` + +#### PATH Manipulation + +To make a tool's path available in the path for the remainder of the job (without altering the machine or containers state), use `addPath`. The runner will prepend the path given to the jobs PATH. + +```js +core.addPath('/path/to/mytool'); +``` + +#### Exit codes + +You should use this library to set the failing exit code for your action. If status is not set and the script runs to completion, that will lead to a success. + +```js +const core = require('@actions/core'); + +try { + // Do stuff +} +catch (err) { + // setFailed logs the message and sets a failing exit code + core.setFailed(`Action failed with error ${err}`); +} + +Note that `setNeutral` is not yet implemented in actions V2 but equivalent functionality is being planned. + +``` + +#### Logging + +Finally, this library provides some utilities for logging. Note that debug logging is hidden from the logs by default. This behavior can be toggled by enabling the [Step Debug Logs](../../docs/action-debugging.md#step-debug-logs). + +```js +const core = require('@actions/core'); + +const myInput = core.getInput('input'); +try { + core.debug('Inside try block'); + + if (!myInput) { + core.warning('myInput was not set'); + } + + if (core.isDebug()) { + // curl -v https://github.com + } else { + // curl https://github.com + } + + // Do stuff +} +catch (err) { + core.error(`Error ${err}, action may still succeed though`); +} +``` + +This library can also wrap chunks of output in foldable groups. + +```js +const core = require('@actions/core') + +// Manually wrap output +core.startGroup('Do some function') +doSomeFunction() +core.endGroup() + +// Wrap an asynchronous function call +const result = await core.group('Do something async', async () => { + const response = await doSomeHTTPRequest() + return response +}) +``` + +#### Action state + +You can use this library to save state and get state for sharing information between a given wrapper action: + +**action.yml** +```yaml +name: 'Wrapper action sample' +inputs: + name: + default: 'GitHub' +runs: + using: 'node12' + main: 'main.js' + post: 'cleanup.js' +``` + +In action's `main.js`: + +```js +const core = require('@actions/core'); + +core.saveState("pidToKill", 12345); +``` + +In action's `cleanup.js`: +```js +const core = require('@actions/core'); + +var pid = core.getState("pidToKill"); + +process.kill(pid); +``` \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts new file mode 100644 index 000000000..94d5e449c --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.d.ts @@ -0,0 +1,21 @@ +interface CommandProperties { + [key: string]: any; +} +/** + * Commands + * + * Command Format: + * ::name key=value,key=value::message + * + * Examples: + * ::warning::This is the message + * ::set-env name=MY_VAR::some value + */ +export declare function issueCommand(command: string, properties: CommandProperties, message: any): void; +export declare function issue(name: string, message?: string): void; +/** + * Sanitizes an input into a string so it can be passed into issueCommand safely + * @param input input to sanitize into a string + */ +export declare function toCommandValue(input: any): string; +export {}; diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js new file mode 100644 index 000000000..af28d2b11 --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js @@ -0,0 +1,92 @@ +"use strict"; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const os = __importStar(require("os")); +/** + * Commands + * + * Command Format: + * ::name key=value,key=value::message + * + * Examples: + * ::warning::This is the message + * ::set-env name=MY_VAR::some value + */ +function issueCommand(command, properties, message) { + const cmd = new Command(command, properties, message); + process.stdout.write(cmd.toString() + os.EOL); +} +exports.issueCommand = issueCommand; +function issue(name, message = '') { + issueCommand(name, {}, message); +} +exports.issue = issue; +const CMD_STRING = '::'; +class Command { + constructor(command, properties, message) { + if (!command) { + command = 'missing.command'; + } + this.command = command; + this.properties = properties; + this.message = message; + } + toString() { + let cmdStr = CMD_STRING + this.command; + if (this.properties && Object.keys(this.properties).length > 0) { + cmdStr += ' '; + let first = true; + for (const key in this.properties) { + if (this.properties.hasOwnProperty(key)) { + const val = this.properties[key]; + if (val) { + if (first) { + first = false; + } + else { + cmdStr += ','; + } + cmdStr += `${key}=${escapeProperty(val)}`; + } + } + } + } + cmdStr += `${CMD_STRING}${escapeData(this.message)}`; + return cmdStr; + } +} +/** + * Sanitizes an input into a string so it can be passed into issueCommand safely + * @param input input to sanitize into a string + */ +function toCommandValue(input) { + if (input === null || input === undefined) { + return ''; + } + else if (typeof input === 'string' || input instanceof String) { + return input; + } + return JSON.stringify(input); +} +exports.toCommandValue = toCommandValue; +function escapeData(s) { + return toCommandValue(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A'); +} +function escapeProperty(s) { + return toCommandValue(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A') + .replace(/:/g, '%3A') + .replace(/,/g, '%2C'); +} +//# sourceMappingURL=command.js.map \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js.map b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js.map new file mode 100644 index 000000000..ae755652c --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/command.js.map @@ -0,0 +1 @@ +{"version":3,"file":"command.js","sourceRoot":"","sources":["../src/command.ts"],"names":[],"mappings":";;;;;;;;;AAAA,uCAAwB;AAWxB;;;;;;;;;GASG;AACH,SAAgB,YAAY,CAC1B,OAAe,EACf,UAA6B,EAC7B,OAAY;IAEZ,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;IACrD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AAC/C,CAAC;AAPD,oCAOC;AAED,SAAgB,KAAK,CAAC,IAAY,EAAE,UAAkB,EAAE;IACtD,YAAY,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACjC,CAAC;AAFD,sBAEC;AAED,MAAM,UAAU,GAAG,IAAI,CAAA;AAEvB,MAAM,OAAO;IAKX,YAAY,OAAe,EAAE,UAA6B,EAAE,OAAe;QACzE,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,iBAAiB,CAAA;SAC5B;QAED,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;QAC5B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,CAAC;IAED,QAAQ;QACN,IAAI,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,OAAO,CAAA;QAEtC,IAAI,IAAI,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;YAC9D,MAAM,IAAI,GAAG,CAAA;YACb,IAAI,KAAK,GAAG,IAAI,CAAA;YAChB,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,UAAU,EAAE;gBACjC,IAAI,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;oBACvC,MAAM,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;oBAChC,IAAI,GAAG,EAAE;wBACP,IAAI,KAAK,EAAE;4BACT,KAAK,GAAG,KAAK,CAAA;yBACd;6BAAM;4BACL,MAAM,IAAI,GAAG,CAAA;yBACd;wBAED,MAAM,IAAI,GAAG,GAAG,IAAI,cAAc,CAAC,GAAG,CAAC,EAAE,CAAA;qBAC1C;iBACF;aACF;SACF;QAED,MAAM,IAAI,GAAG,UAAU,GAAG,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAA;QACpD,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED;;;GAGG;AACH,SAAgB,cAAc,CAAC,KAAU;IACvC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;QACzC,OAAO,EAAE,CAAA;KACV;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,YAAY,MAAM,EAAE;QAC/D,OAAO,KAAe,CAAA;KACvB;IACD,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;AAC9B,CAAC;AAPD,wCAOC;AAED,SAAS,UAAU,CAAC,CAAM;IACxB,OAAO,cAAc,CAAC,CAAC,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;AAC1B,CAAC;AAED,SAAS,cAAc,CAAC,CAAM;IAC5B,OAAO,cAAc,CAAC,CAAC,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;AACzB,CAAC"} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.d.ts b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.d.ts new file mode 100644 index 000000000..8bb5093c5 --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.d.ts @@ -0,0 +1,122 @@ +/** + * Interface for getInput options + */ +export interface InputOptions { + /** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */ + required?: boolean; +} +/** + * The code to exit an action + */ +export declare enum ExitCode { + /** + * A code indicating that the action was successful + */ + Success = 0, + /** + * A code indicating that the action was a failure + */ + Failure = 1 +} +/** + * Sets env variable for this action and future actions in the job + * @param name the name of the variable to set + * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify + */ +export declare function exportVariable(name: string, val: any): void; +/** + * Registers a secret which will get masked from logs + * @param secret value of the secret + */ +export declare function setSecret(secret: string): void; +/** + * Prepends inputPath to the PATH (for this action and future actions) + * @param inputPath + */ +export declare function addPath(inputPath: string): void; +/** + * Gets the value of an input. The value is also trimmed. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string + */ +export declare function getInput(name: string, options?: InputOptions): string; +/** + * Sets the value of an output. + * + * @param name name of the output to set + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +export declare function setOutput(name: string, value: any): void; +/** + * Enables or disables the echoing of commands into stdout for the rest of the step. + * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set. + * + */ +export declare function setCommandEcho(enabled: boolean): void; +/** + * Sets the action status to failed. + * When the action exits it will be with an exit code of 1 + * @param message add error issue message + */ +export declare function setFailed(message: string | Error): void; +/** + * Gets whether Actions Step Debug is on or not + */ +export declare function isDebug(): boolean; +/** + * Writes debug message to user log + * @param message debug message + */ +export declare function debug(message: string): void; +/** + * Adds an error issue + * @param message error issue message. Errors will be converted to string via toString() + */ +export declare function error(message: string | Error): void; +/** + * Adds an warning issue + * @param message warning issue message. Errors will be converted to string via toString() + */ +export declare function warning(message: string | Error): void; +/** + * Writes info to log with console.log. + * @param message info message + */ +export declare function info(message: string): void; +/** + * Begin an output group. + * + * Output until the next `groupEnd` will be foldable in this group + * + * @param name The name of the output group + */ +export declare function startGroup(name: string): void; +/** + * End an output group. + */ +export declare function endGroup(): void; +/** + * Wrap an asynchronous function call in a group. + * + * Returns the same type as the function itself. + * + * @param name The name of the group + * @param fn The function to wrap in the group + */ +export declare function group(name: string, fn: () => Promise): Promise; +/** + * Saves state for current action, the state can only be retrieved by this action's post job execution. + * + * @param name name of the state to store + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +export declare function saveState(name: string, value: any): void; +/** + * Gets the value of an state set by this action's main execution. + * + * @param name name of the state to get + * @returns string + */ +export declare function getState(name: string): string; diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js new file mode 100644 index 000000000..c838f4e20 --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js @@ -0,0 +1,222 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const command_1 = require("./command"); +const os = __importStar(require("os")); +const path = __importStar(require("path")); +/** + * The code to exit an action + */ +var ExitCode; +(function (ExitCode) { + /** + * A code indicating that the action was successful + */ + ExitCode[ExitCode["Success"] = 0] = "Success"; + /** + * A code indicating that the action was a failure + */ + ExitCode[ExitCode["Failure"] = 1] = "Failure"; +})(ExitCode = exports.ExitCode || (exports.ExitCode = {})); +//----------------------------------------------------------------------- +// Variables +//----------------------------------------------------------------------- +/** + * Sets env variable for this action and future actions in the job + * @param name the name of the variable to set + * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function exportVariable(name, val) { + const convertedVal = command_1.toCommandValue(val); + process.env[name] = convertedVal; + command_1.issueCommand('set-env', { name }, convertedVal); +} +exports.exportVariable = exportVariable; +/** + * Registers a secret which will get masked from logs + * @param secret value of the secret + */ +function setSecret(secret) { + command_1.issueCommand('add-mask', {}, secret); +} +exports.setSecret = setSecret; +/** + * Prepends inputPath to the PATH (for this action and future actions) + * @param inputPath + */ +function addPath(inputPath) { + command_1.issueCommand('add-path', {}, inputPath); + process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`; +} +exports.addPath = addPath; +/** + * Gets the value of an input. The value is also trimmed. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string + */ +function getInput(name, options) { + const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''; + if (options && options.required && !val) { + throw new Error(`Input required and not supplied: ${name}`); + } + return val.trim(); +} +exports.getInput = getInput; +/** + * Sets the value of an output. + * + * @param name name of the output to set + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function setOutput(name, value) { + command_1.issueCommand('set-output', { name }, value); +} +exports.setOutput = setOutput; +/** + * Enables or disables the echoing of commands into stdout for the rest of the step. + * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set. + * + */ +function setCommandEcho(enabled) { + command_1.issue('echo', enabled ? 'on' : 'off'); +} +exports.setCommandEcho = setCommandEcho; +//----------------------------------------------------------------------- +// Results +//----------------------------------------------------------------------- +/** + * Sets the action status to failed. + * When the action exits it will be with an exit code of 1 + * @param message add error issue message + */ +function setFailed(message) { + process.exitCode = ExitCode.Failure; + error(message); +} +exports.setFailed = setFailed; +//----------------------------------------------------------------------- +// Logging Commands +//----------------------------------------------------------------------- +/** + * Gets whether Actions Step Debug is on or not + */ +function isDebug() { + return process.env['RUNNER_DEBUG'] === '1'; +} +exports.isDebug = isDebug; +/** + * Writes debug message to user log + * @param message debug message + */ +function debug(message) { + command_1.issueCommand('debug', {}, message); +} +exports.debug = debug; +/** + * Adds an error issue + * @param message error issue message. Errors will be converted to string via toString() + */ +function error(message) { + command_1.issue('error', message instanceof Error ? message.toString() : message); +} +exports.error = error; +/** + * Adds an warning issue + * @param message warning issue message. Errors will be converted to string via toString() + */ +function warning(message) { + command_1.issue('warning', message instanceof Error ? message.toString() : message); +} +exports.warning = warning; +/** + * Writes info to log with console.log. + * @param message info message + */ +function info(message) { + process.stdout.write(message + os.EOL); +} +exports.info = info; +/** + * Begin an output group. + * + * Output until the next `groupEnd` will be foldable in this group + * + * @param name The name of the output group + */ +function startGroup(name) { + command_1.issue('group', name); +} +exports.startGroup = startGroup; +/** + * End an output group. + */ +function endGroup() { + command_1.issue('endgroup'); +} +exports.endGroup = endGroup; +/** + * Wrap an asynchronous function call in a group. + * + * Returns the same type as the function itself. + * + * @param name The name of the group + * @param fn The function to wrap in the group + */ +function group(name, fn) { + return __awaiter(this, void 0, void 0, function* () { + startGroup(name); + let result; + try { + result = yield fn(); + } + finally { + endGroup(); + } + return result; + }); +} +exports.group = group; +//----------------------------------------------------------------------- +// Wrapper action state +//----------------------------------------------------------------------- +/** + * Saves state for current action, the state can only be retrieved by this action's post job execution. + * + * @param name name of the state to store + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function saveState(name, value) { + command_1.issueCommand('save-state', { name }, value); +} +exports.saveState = saveState; +/** + * Gets the value of an state set by this action's main execution. + * + * @param name name of the state to get + * @returns string + */ +function getState(name) { + return process.env[`STATE_${name}`] || ''; +} +exports.getState = getState; +//# sourceMappingURL=core.js.map \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js.map b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js.map new file mode 100644 index 000000000..68e9f313f --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/lib/core.js.map @@ -0,0 +1 @@ +{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,uCAA6D;AAE7D,uCAAwB;AACxB,2CAA4B;AAU5B;;GAEG;AACH,IAAY,QAUX;AAVD,WAAY,QAAQ;IAClB;;OAEG;IACH,6CAAW,CAAA;IAEX;;OAEG;IACH,6CAAW,CAAA;AACb,CAAC,EAVW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAUnB;AAED,yEAAyE;AACzE,YAAY;AACZ,yEAAyE;AAEzE;;;;GAIG;AACH,8DAA8D;AAC9D,SAAgB,cAAc,CAAC,IAAY,EAAE,GAAQ;IACnD,MAAM,YAAY,GAAG,wBAAc,CAAC,GAAG,CAAC,CAAA;IACxC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,YAAY,CAAA;IAChC,sBAAY,CAAC,SAAS,EAAE,EAAC,IAAI,EAAC,EAAE,YAAY,CAAC,CAAA;AAC/C,CAAC;AAJD,wCAIC;AAED;;;GAGG;AACH,SAAgB,SAAS,CAAC,MAAc;IACtC,sBAAY,CAAC,UAAU,EAAE,EAAE,EAAE,MAAM,CAAC,CAAA;AACtC,CAAC;AAFD,8BAEC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,SAAiB;IACvC,sBAAY,CAAC,UAAU,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;IACvC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAA;AAC7E,CAAC;AAHD,0BAGC;AAED;;;;;;GAMG;AACH,SAAgB,QAAQ,CAAC,IAAY,EAAE,OAAsB;IAC3D,MAAM,GAAG,GACP,OAAO,CAAC,GAAG,CAAC,SAAS,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC,IAAI,EAAE,CAAA;IACrE,IAAI,OAAO,IAAI,OAAO,CAAC,QAAQ,IAAI,CAAC,GAAG,EAAE;QACvC,MAAM,IAAI,KAAK,CAAC,oCAAoC,IAAI,EAAE,CAAC,CAAA;KAC5D;IAED,OAAO,GAAG,CAAC,IAAI,EAAE,CAAA;AACnB,CAAC;AARD,4BAQC;AAED;;;;;GAKG;AACH,8DAA8D;AAC9D,SAAgB,SAAS,CAAC,IAAY,EAAE,KAAU;IAChD,sBAAY,CAAC,YAAY,EAAE,EAAC,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;AAC3C,CAAC;AAFD,8BAEC;AAED;;;;GAIG;AACH,SAAgB,cAAc,CAAC,OAAgB;IAC7C,eAAK,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;AACvC,CAAC;AAFD,wCAEC;AAED,yEAAyE;AACzE,UAAU;AACV,yEAAyE;AAEzE;;;;GAIG;AACH,SAAgB,SAAS,CAAC,OAAuB;IAC/C,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAA;IAEnC,KAAK,CAAC,OAAO,CAAC,CAAA;AAChB,CAAC;AAJD,8BAIC;AAED,yEAAyE;AACzE,mBAAmB;AACnB,yEAAyE;AAEzE;;GAEG;AACH,SAAgB,OAAO;IACrB,OAAO,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,KAAK,GAAG,CAAA;AAC5C,CAAC;AAFD,0BAEC;AAED;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAe;IACnC,sBAAY,CAAC,OAAO,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACpC,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAuB;IAC3C,eAAK,CAAC,OAAO,EAAE,OAAO,YAAY,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;AACzE,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,OAAuB;IAC7C,eAAK,CAAC,SAAS,EAAE,OAAO,YAAY,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAA;AAC3E,CAAC;AAFD,0BAEC;AAED;;;GAGG;AACH,SAAgB,IAAI,CAAC,OAAe;IAClC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AACxC,CAAC;AAFD,oBAEC;AAED;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,IAAY;IACrC,eAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAA;AACtB,CAAC;AAFD,gCAEC;AAED;;GAEG;AACH,SAAgB,QAAQ;IACtB,eAAK,CAAC,UAAU,CAAC,CAAA;AACnB,CAAC;AAFD,4BAEC;AAED;;;;;;;GAOG;AACH,SAAsB,KAAK,CAAI,IAAY,EAAE,EAAoB;;QAC/D,UAAU,CAAC,IAAI,CAAC,CAAA;QAEhB,IAAI,MAAS,CAAA;QAEb,IAAI;YACF,MAAM,GAAG,MAAM,EAAE,EAAE,CAAA;SACpB;gBAAS;YACR,QAAQ,EAAE,CAAA;SACX;QAED,OAAO,MAAM,CAAA;IACf,CAAC;CAAA;AAZD,sBAYC;AAED,yEAAyE;AACzE,uBAAuB;AACvB,yEAAyE;AAEzE;;;;;GAKG;AACH,8DAA8D;AAC9D,SAAgB,SAAS,CAAC,IAAY,EAAE,KAAU;IAChD,sBAAY,CAAC,YAAY,EAAE,EAAC,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;AAC3C,CAAC;AAFD,8BAEC;AAED;;;;;GAKG;AACH,SAAgB,QAAQ,CAAC,IAAY;IACnC,OAAO,OAAO,CAAC,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;AAC3C,CAAC;AAFD,4BAEC"} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json new file mode 100644 index 000000000..171ddbdb8 --- /dev/null +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json @@ -0,0 +1,66 @@ +{ + "_from": "@actions/core@^1.2.3", + "_id": "@actions/core@1.2.4", + "_inBundle": false, + "_integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg==", + "_location": "/@actions/tool-cache/@actions/core", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "@actions/core@^1.2.3", + "name": "@actions/core", + "escapedName": "@actions%2fcore", + "scope": "@actions", + "rawSpec": "^1.2.3", + "saveSpec": null, + "fetchSpec": "^1.2.3" + }, + "_requiredBy": [ + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz", + "_shasum": "96179dbf9f8d951dd74b40a0dbd5c22555d186ab", + "_spec": "@actions/core@^1.2.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/@actions/tool-cache", + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "Actions core lib", + "devDependencies": { + "@types/node": "^12.0.2" + }, + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", + "keywords": [ + "github", + "actions", + "core" + ], + "license": "MIT", + "main": "lib/core.js", + "name": "@actions/core", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/actions/toolkit.git", + "directory": "packages/core" + }, + "scripts": { + "audit-moderate": "npm install && npm audit --audit-level=moderate", + "test": "echo \"Error: run tests from root\" && exit 1", + "tsc": "tsc" + }, + "types": "lib/core.d.ts", + "version": "1.2.4" +} diff --git a/node_modules/@actions/tool-cache/node_modules/semver/package.json b/node_modules/@actions/tool-cache/node_modules/semver/package.json index a330b56c2..20cba5dc9 100644 --- a/node_modules/@actions/tool-cache/node_modules/semver/package.json +++ b/node_modules/@actions/tool-cache/node_modules/semver/package.json @@ -1,28 +1,63 @@ { - "name": "semver", - "version": "6.3.0", - "description": "The semantic version parser used by npm.", - "main": "semver.js", - "scripts": { - "test": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags" + "_args": [ + [ + "semver@6.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "semver@6.3.0", + "_id": "semver@6.3.0", + "_inBundle": false, + "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "_location": "/@actions/tool-cache/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@6.3.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "6.3.0", + "saveSpec": null, + "fetchSpec": "6.3.0" + }, + "_requiredBy": [ + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "_spec": "6.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "semver": "bin/semver.js" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" }, + "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^14.3.1" }, - "license": "ISC", - "repository": "https://github.com/npm/node-semver", - "bin": { - "semver": "./bin/semver.js" - }, "files": [ "bin", "range.bnf", "semver.js" ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, "tap": { "check-coverage": true - } -} \ No newline at end of file + }, + "version": "6.3.0" +} diff --git a/node_modules/@actions/tool-cache/package.json b/node_modules/@actions/tool-cache/package.json index b0e89a12f..ea99ac676 100644 --- a/node_modules/@actions/tool-cache/package.json +++ b/node_modules/@actions/tool-cache/package.json @@ -1,15 +1,48 @@ { - "name": "@actions/tool-cache", - "version": "1.1.2", - "description": "Actions tool-cache lib", - "keywords": [ - "github", - "actions", - "exec" + "_from": "@actions/tool-cache@^1.5.5", + "_id": "@actions/tool-cache@1.5.5", + "_inBundle": false, + "_integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==", + "_location": "/@actions/tool-cache", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "@actions/tool-cache@^1.5.5", + "name": "@actions/tool-cache", + "escapedName": "@actions%2ftool-cache", + "scope": "@actions", + "rawSpec": "^1.5.5", + "saveSpec": null, + "fetchSpec": "^1.5.5" + }, + "_requiredBy": [ + "/" ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/exec", - "license": "MIT", - "main": "lib/tool-cache.js", + "_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz", + "_shasum": "2a49253f0f5838b9c4929b6f7cc7d73ae3ef4d2d", + "_spec": "@actions/tool-cache@^1.5.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "bundleDependencies": false, + "dependencies": { + "@actions/core": "^1.2.3", + "@actions/exec": "^1.0.0", + "@actions/http-client": "^1.0.8", + "@actions/io": "^1.0.1", + "semver": "^6.1.0", + "uuid": "^3.3.2" + }, + "deprecated": false, + "description": "Actions tool-cache lib", + "devDependencies": { + "@types/nock": "^10.0.3", + "@types/semver": "^6.0.0", + "@types/uuid": "^3.4.4", + "nock": "^10.0.6" + }, "directories": { "lib": "lib", "test": "__tests__" @@ -18,32 +51,28 @@ "lib", "scripts" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/tool-cache", + "keywords": [ + "github", + "actions", + "exec" + ], + "license": "MIT", + "main": "lib/tool-cache.js", + "name": "@actions/tool-cache", "publishConfig": { "access": "public" }, "repository": { "type": "git", - "url": "git+https://github.com/actions/toolkit.git" + "url": "git+https://github.com/actions/toolkit.git", + "directory": "packages/tool-cache" }, "scripts": { + "audit-moderate": "npm install && npm audit --audit-level=moderate", "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "dependencies": { - "@actions/core": "^1.1.0", - "@actions/exec": "^1.0.1", - "@actions/io": "^1.0.1", - "semver": "^6.1.0", - "typed-rest-client": "^1.4.0", - "uuid": "^3.3.2" - }, - "devDependencies": { - "@types/nock": "^10.0.3", - "@types/semver": "^6.0.0", - "@types/uuid": "^3.4.4", - "nock": "^10.0.6" - } -} \ No newline at end of file + "types": "lib/tool-cache.d.ts", + "version": "1.5.5" +} diff --git a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json index d7bec7c3d..4f162255e 100644 --- a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json +++ b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json @@ -1,28 +1,55 @@ { - "name": "escape-string-regexp", - "version": "2.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", + "_args": [ + [ + "escape-string-regexp@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "escape-string-regexp@2.0.0", + "_id": "escape-string-regexp@2.0.0", + "_inBundle": false, + "_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "_location": "/@ava/typescript/escape-string-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-string-regexp@2.0.0", + "name": "escape-string-regexp", + "escapedName": "escape-string-regexp", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@ava/typescript" + ], + "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "maintainers": [ - "Sindre Sorhus (sindresorhus.com)", - "Joshua Boy Nicolai Appelman (jbna.nl)" - ], + "bugs": { + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + "description": "Escape RegExp special characters", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -35,9 +62,26 @@ "special", "characters" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Boy Nicolai Appelman", + "email": "joshua@jbna.nl", + "url": "jbna.nl" + } + ], + "name": "escape-string-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/@ava/typescript/package.json b/node_modules/@ava/typescript/package.json index d064983ae..c1daaa707 100644 --- a/node_modules/@ava/typescript/package.json +++ b/node_modules/@ava/typescript/package.json @@ -1,32 +1,64 @@ { - "name": "@ava/typescript", - "version": "1.1.1", - "description": "TypeScript provider for AVA", - "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0" - }, - "files": [ - "index.js" + "_args": [ + [ + "@ava/typescript@1.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "author": "Mark Wubben (https://novemberborn.net)", - "repository": "avajs/typescript", - "license": "MIT", - "keywords": [ - "ava", - "typescript" + "_development": true, + "_from": "@ava/typescript@1.1.1", + "_id": "@ava/typescript@1.1.1", + "_inBundle": false, + "_integrity": "sha512-KbLUAe2cWXK63WLK6LnOJonjwEDU/8MNXCOA1ooX/YFZgKRmeAD1kZu+2K0ks5fnOCEcckNQAooyBNGdZUmMQA==", + "_location": "/@ava/typescript", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@ava/typescript@1.1.1", + "name": "@ava/typescript", + "escapedName": "@ava%2ftypescript", + "scope": "@ava", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "#DEV:/" ], - "scripts": { - "test": "xo && nyc ava" + "_resolved": "https://registry.npmjs.org/@ava/typescript/-/typescript-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net" + }, + "bugs": { + "url": "https://github.com/avajs/typescript/issues" }, "dependencies": { "escape-string-regexp": "^2.0.0" }, + "description": "TypeScript provider for AVA", "devDependencies": { "ava": "^3.0.0", "execa": "^4.0.0", "nyc": "^15.0.0", "xo": "^0.25.3" }, + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/avajs/typescript#readme", + "keywords": [ + "ava", + "typescript" + ], + "license": "MIT", + "name": "@ava/typescript", "nyc": { "reporter": [ "html", @@ -34,9 +66,17 @@ "text" ] }, + "repository": { + "type": "git", + "url": "git+https://github.com/avajs/typescript.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "1.1.1", "xo": { "rules": { "import/order": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json index ce0bf0f62..3f80a0729 100644 --- a/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/code-frame/package.json @@ -1,21 +1,58 @@ { - "name": "@babel/code-frame", - "version": "7.5.5", - "description": "Generate errors that contain a code frame that point to source locations.", - "author": "Sebastian McKenzie ", - "homepage": "https://babeljs.io/", - "license": "MIT", - "publishConfig": { - "access": "public" + "_args": [ + [ + "@babel/code-frame@7.5.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@babel/code-frame@7.5.5", + "_id": "@babel/code-frame@7.5.5", + "_inBundle": false, + "_integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "_location": "/@babel/code-frame", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/code-frame@7.5.5", + "name": "@babel/code-frame", + "escapedName": "@babel%2fcode-frame", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/read-pkg/parse-json", + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" }, - "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", - "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.0.0" }, + "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43" -} \ No newline at end of file + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/code-frame", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/highlight/package.json b/node_modules/@babel/highlight/package.json index c958a9e8d..cd437e629 100644 --- a/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/highlight/package.json @@ -1,22 +1,58 @@ { - "name": "@babel/highlight", - "version": "7.5.0", - "description": "Syntax highlight JavaScript strings for output in terminals.", - "author": "suchipi ", - "homepage": "https://babeljs.io/", - "license": "MIT", - "publishConfig": { - "access": "public" + "_args": [ + [ + "@babel/highlight@7.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@babel/highlight@7.5.0", + "_id": "@babel/highlight@7.5.0", + "_inBundle": false, + "_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", + "_location": "/@babel/highlight", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/highlight@7.5.0", + "name": "@babel/highlight", + "escapedName": "@babel%2fhighlight", + "scope": "@babel", + "rawSpec": "7.5.0", + "saveSpec": null, + "fetchSpec": "7.5.0" + }, + "_requiredBy": [ + "/@babel/code-frame" + ], + "_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", + "_spec": "7.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "suchipi", + "email": "me@suchipi.com" }, - "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", - "main": "lib/index.js", "dependencies": { "chalk": "^2.0.0", "esutils": "^2.0.2", "js-tokens": "^4.0.0" }, + "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4" -} \ No newline at end of file + "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/highlight", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-highlight" + }, + "version": "7.5.0" +} diff --git a/node_modules/@concordance/react/node_modules/arrify/package.json b/node_modules/@concordance/react/node_modules/arrify/package.json index d60245659..5ae8dd37b 100644 --- a/node_modules/@concordance/react/node_modules/arrify/package.json +++ b/node_modules/@concordance/react/node_modules/arrify/package.json @@ -1,23 +1,53 @@ { - "name": "arrify", - "version": "1.0.1", - "description": "Convert a value to an array", - "license": "MIT", - "repository": "sindresorhus/arrify", + "_args": [ + [ + "arrify@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "arrify@1.0.1", + "_id": "arrify@1.0.1", + "_inBundle": false, + "_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "_location": "/@concordance/react/arrify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arrify@1.0.1", + "name": "arrify", + "escapedName": "arrify", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/@concordance/react" + ], + "_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/arrify/issues" + }, + "description": "Convert a value to an array", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/arrify#readme", "keywords": [ "array", "arr", @@ -26,8 +56,14 @@ "convert", "value" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "arrify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/arrify.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.1" +} diff --git a/node_modules/@concordance/react/package.json b/node_modules/@concordance/react/package.json index f0ba9b96c..7f5e7b24a 100644 --- a/node_modules/@concordance/react/package.json +++ b/node_modules/@concordance/react/package.json @@ -1,39 +1,63 @@ { - "name": "@concordance/react", - "version": "2.0.0", - "description": "Compare, format, diff and serialize React trees with Concordance", - "main": "index.js", - "files": [ - "lib", - "index.js" + "_args": [ + [ + "@concordance/react@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" + "_development": true, + "_from": "@concordance/react@2.0.0", + "_id": "@concordance/react@2.0.0", + "_inBundle": false, + "_integrity": "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA==", + "_location": "/@concordance/react", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@concordance/react@2.0.0", + "name": "@concordance/react", + "escapedName": "@concordance%2freact", + "scope": "@concordance", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" }, - "scripts": { - "build:fixtures": "babel --presets=module:@babel/preset-react,module:ava/stage-4 --out-dir=test/fixtures/react --extensions=.jsx test/fixtures/react", - "lint": "as-i-preach", - "pretest": "npm run -s build:fixtures", - "test": "npm run -s lint && nyc ava" + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/@concordance/react/-/react-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "as-i-preach": { + "allowDevDependencies": [ + "test/**/*.js", + "test/**/*.jsx" + ], + "ignore": [ + "test/fixtures/react/*.js" + ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/concordancejs/react.git" + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net/" + }, + "ava": { + "babel": { + "testOptions": { + "presets": [ + "module:@babel/preset-react" + ] + } + } }, - "author": "Mark Wubben (https://novemberborn.net/)", - "license": "ISC", "bugs": { "url": "https://github.com/concordancejs/react/issues" }, - "homepage": "https://github.com/concordancejs/react#readme", - "keywords": [ - "concordance-plugin", - "concordance", - "react" - ], "dependencies": { "arrify": "^1.0.1" }, + "description": "Compare, format, diff and serialize React trees with Concordance", "devDependencies": { "@babel/cli": "^7.1.0", "@babel/core": "^7.1.0", @@ -46,24 +70,22 @@ "react": "^16.5.2", "react-test-renderer": "^16.5.2" }, - "as-i-preach": { - "allowDevDependencies": [ - "test/**/*.js", - "test/**/*.jsx" - ], - "ignore": [ - "test/fixtures/react/*.js" - ] - }, - "ava": { - "babel": { - "testOptions": { - "presets": [ - "module:@babel/preset-react" - ] - } - } + "engines": { + "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/concordancejs/react#readme", + "keywords": [ + "concordance-plugin", + "concordance", + "react" + ], + "license": "ISC", + "main": "index.js", + "name": "@concordance/react", "nyc": { "reporter": [ "html", @@ -71,5 +93,16 @@ "text" ] }, - "standard-engine": "@novemberborn/as-i-preach" -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git+https://github.com/concordancejs/react.git" + }, + "scripts": { + "build:fixtures": "babel --presets=module:@babel/preset-react,module:ava/stage-4 --out-dir=test/fixtures/react --extensions=.jsx test/fixtures/react", + "lint": "as-i-preach", + "pretest": "npm run -s build:fixtures", + "test": "npm run -s lint && nyc ava" + }, + "standard-engine": "@novemberborn/as-i-preach", + "version": "2.0.0" +} diff --git a/node_modules/@nodelib/fs.scandir/package.json b/node_modules/@nodelib/fs.scandir/package.json index 5a32a9fea..5dbc112c4 100644 --- a/node_modules/@nodelib/fs.scandir/package.json +++ b/node_modules/@nodelib/fs.scandir/package.json @@ -1,9 +1,43 @@ { - "name": "@nodelib/fs.scandir", - "version": "2.1.3", + "_args": [ + [ + "@nodelib/fs.scandir@2.1.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@nodelib/fs.scandir@2.1.3", + "_id": "@nodelib/fs.scandir@2.1.3", + "_inBundle": false, + "_integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "_location": "/@nodelib/fs.scandir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.scandir@2.1.3", + "name": "@nodelib/fs.scandir", + "escapedName": "@nodelib%2ffs.scandir", + "scope": "@nodelib", + "rawSpec": "2.1.3", + "saveSpec": null, + "fetchSpec": "2.1.3" + }, + "_requiredBy": [ + "/@nodelib/fs.walk" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "_spec": "2.1.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "dependencies": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + }, "description": "List files and directories inside the specified directory", - "license": "MIT", - "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", "keywords": [ "NodeLib", "fs", @@ -13,23 +47,22 @@ "readdir", "dirent" ], - "engines": { - "node": ">= 8" - }, + "license": "MIT", "main": "out/index.js", - "typings": "out/index.d.ts", + "name": "@nodelib/fs.scandir", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir" + }, "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", - "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", - "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "dependencies": { - "@nodelib/fs.stat": "2.0.3", - "run-parallel": "^1.1.9" - }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" -} \ No newline at end of file + "typings": "out/index.d.ts", + "version": "2.1.3" +} diff --git a/node_modules/@nodelib/fs.stat/package.json b/node_modules/@nodelib/fs.stat/package.json index 96a5ebb31..aef349958 100644 --- a/node_modules/@nodelib/fs.stat/package.json +++ b/node_modules/@nodelib/fs.stat/package.json @@ -1,9 +1,40 @@ { - "name": "@nodelib/fs.stat", - "version": "2.0.3", + "_args": [ + [ + "@nodelib/fs.stat@2.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@nodelib/fs.stat@2.0.3", + "_id": "@nodelib/fs.stat@2.0.3", + "_inBundle": false, + "_integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "_location": "/@nodelib/fs.stat", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.stat@2.0.3", + "name": "@nodelib/fs.stat", + "escapedName": "@nodelib%2ffs.stat", + "scope": "@nodelib", + "rawSpec": "2.0.3", + "saveSpec": null, + "fetchSpec": "2.0.3" + }, + "_requiredBy": [ + "/@nodelib/fs.scandir", + "/fast-glob" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "_spec": "2.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "description": "Get the status of a file with some features", - "license": "MIT", - "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", "keywords": [ "NodeLib", "fs", @@ -11,19 +42,22 @@ "file system", "stat" ], - "engines": { - "node": ">= 8" - }, + "license": "MIT", "main": "out/index.js", - "typings": "out/index.d.ts", + "name": "@nodelib/fs.stat", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat" + }, "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", - "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", - "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" -} \ No newline at end of file + "typings": "out/index.d.ts", + "version": "2.0.3" +} diff --git a/node_modules/@nodelib/fs.walk/package.json b/node_modules/@nodelib/fs.walk/package.json index 9490845bf..19ffcba89 100644 --- a/node_modules/@nodelib/fs.walk/package.json +++ b/node_modules/@nodelib/fs.walk/package.json @@ -1,9 +1,43 @@ { - "name": "@nodelib/fs.walk", - "version": "1.2.4", + "_args": [ + [ + "@nodelib/fs.walk@1.2.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@nodelib/fs.walk@1.2.4", + "_id": "@nodelib/fs.walk@1.2.4", + "_inBundle": false, + "_integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "_location": "/@nodelib/fs.walk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@nodelib/fs.walk@1.2.4", + "name": "@nodelib/fs.walk", + "escapedName": "@nodelib%2ffs.walk", + "scope": "@nodelib", + "rawSpec": "1.2.4", + "saveSpec": null, + "fetchSpec": "1.2.4" + }, + "_requiredBy": [ + "/fast-glob" + ], + "_resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "_spec": "1.2.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "dependencies": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + }, "description": "A library for efficiently walking a directory recursively", - "license": "MIT", - "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk", + "engines": { + "node": ">= 8" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", "keywords": [ "NodeLib", "fs", @@ -13,23 +47,22 @@ "scanner", "crawler" ], - "engines": { - "node": ">= 8" - }, + "license": "MIT", "main": "out/index.js", - "typings": "out/index.d.ts", + "name": "@nodelib/fs.walk", + "repository": { + "type": "git", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk" + }, "scripts": { + "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", - "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", + "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", - "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "dependencies": { - "@nodelib/fs.scandir": "2.1.3", - "fastq": "^1.6.0" - }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" -} \ No newline at end of file + "typings": "out/index.d.ts", + "version": "1.2.4" +} diff --git a/node_modules/@octokit/auth-token/package.json b/node_modules/@octokit/auth-token/package.json index 5add1ac3d..fc2330e5e 100644 --- a/node_modules/@octokit/auth-token/package.json +++ b/node_modules/@octokit/auth-token/package.json @@ -1,28 +1,40 @@ { - "name": "@octokit/auth-token", - "description": "GitHub API token authentication for browsers and Node.js", - "version": "2.4.0", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/auth-token@2.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "github", - "octokit", - "authentication", - "api" + "_from": "@octokit/auth-token@2.4.0", + "_id": "@octokit/auth-token@2.4.0", + "_inBundle": false, + "_integrity": "sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==", + "_location": "/@octokit/auth-token", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/auth-token@2.4.0", + "name": "@octokit/auth-token", + "escapedName": "@octokit%2fauth-token", + "scope": "@octokit", + "rawSpec": "2.4.0", + "saveSpec": null, + "fetchSpec": "2.4.0" + }, + "_requiredBy": [ + "/@octokit/core" ], - "homepage": "https://github.com/octokit/auth-token.js#readme", + "_resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.0.tgz", + "_spec": "2.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bugs": { "url": "https://github.com/octokit/auth-token.js/issues" }, - "repository": "https://github.com/octokit/auth-token.js", "dependencies": { "@octokit/types": "^2.0.0" }, + "description": "GitHub API token authentication for browsers and Node.js", "devDependencies": { "@octokit/request": "^5.3.0", "@pika/pack": "^0.5.0", @@ -37,11 +49,31 @@ "ts-jest": "^24.0.2", "typescript": "^3.5.1" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/auth-token.js#readme", + "keywords": [ + "github", + "octokit", + "authentication", + "api" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/auth-token", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/auth-token.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "2.4.0" +} diff --git a/node_modules/@octokit/core/package.json b/node_modules/@octokit/core/package.json index 5eab6c145..f59f7b553 100644 --- a/node_modules/@octokit/core/package.json +++ b/node_modules/@octokit/core/package.json @@ -1,22 +1,36 @@ { - "name": "@octokit/core", - "description": "Extendable client for GitHub's REST & GraphQL APIs", - "version": "2.4.2", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/core@2.4.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "api", - "sdk", - "toolkit" + "_from": "@octokit/core@2.4.2", + "_id": "@octokit/core@2.4.2", + "_inBundle": false, + "_integrity": "sha512-fUx/Qt774cgiPhb3HRKfdl6iufVL/ltECkwkCg373I4lIPYvAPY4cbidVZqyVqHI+ThAIlFlTW8FT4QHChv3Sg==", + "_location": "/@octokit/core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/core@2.4.2", + "name": "@octokit/core", + "escapedName": "@octokit%2fcore", + "scope": "@octokit", + "rawSpec": "2.4.2", + "saveSpec": null, + "fetchSpec": "2.4.2" + }, + "_requiredBy": [ + "/@octokit/rest" ], - "repository": "https://github.com/octokit/core.js", + "_resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.4.2.tgz", + "_spec": "2.4.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/octokit/core.js/issues" + }, "dependencies": { "@octokit/auth-token": "^2.4.0", "@octokit/graphql": "^4.3.1", @@ -25,6 +39,7 @@ "before-after-hook": "^2.1.0", "universal-user-agent": "^5.0.0" }, + "description": "Extendable client for GitHub's REST & GraphQL APIs", "devDependencies": { "@octokit/auth": "^1.1.0", "@pika/pack": "^0.5.0", @@ -47,11 +62,32 @@ "ts-jest": "^25.1.0", "typescript": "^3.5.3" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/core.js#readme", + "keywords": [ + "octokit", + "github", + "api", + "sdk", + "toolkit" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/core", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/core.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "2.4.2" +} diff --git a/node_modules/@octokit/endpoint/package.json b/node_modules/@octokit/endpoint/package.json index 49e716c34..177bac351 100644 --- a/node_modules/@octokit/endpoint/package.json +++ b/node_modules/@octokit/endpoint/package.json @@ -1,33 +1,42 @@ { - "name": "@octokit/endpoint", - "description": "Turns REST API endpoints into generic request options", - "version": "5.5.3", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/endpoint@5.5.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "api", - "rest" + "_from": "@octokit/endpoint@5.5.3", + "_id": "@octokit/endpoint@5.5.3", + "_inBundle": false, + "_integrity": "sha512-EzKwkwcxeegYYah5ukEeAI/gYRLv2Y9U5PpIsseGSFDk+G3RbipQGBs8GuYS1TLCtQaqoO66+aQGtITPalxsNQ==", + "_location": "/@octokit/endpoint", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/endpoint@5.5.3", + "name": "@octokit/endpoint", + "escapedName": "@octokit%2fendpoint", + "scope": "@octokit", + "rawSpec": "5.5.3", + "saveSpec": null, + "fetchSpec": "5.5.3" + }, + "_requiredBy": [ + "/@octokit/request" ], - "homepage": "https://github.com/octokit/endpoint.js#readme", + "_resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.3.tgz", + "_spec": "5.5.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bugs": { "url": "https://github.com/octokit/endpoint.js/issues" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/endpoint.js.git" - }, "dependencies": { "@octokit/types": "^2.0.0", "is-plain-object": "^3.0.0", "universal-user-agent": "^5.0.0" }, + "description": "Turns REST API endpoints into generic request options", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.9.0", @@ -41,11 +50,31 @@ "ts-jest": "^25.1.0", "typescript": "^3.4.5" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/endpoint.js#readme", + "keywords": [ + "octokit", + "github", + "api", + "rest" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/endpoint", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/endpoint.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "5.5.3" +} diff --git a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json index ad2c9a9f4..0d27b29e5 100644 --- a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json @@ -1,19 +1,39 @@ { - "name": "universal-user-agent", - "description": "Get a user agent string in both browser and node", - "version": "4.0.1", - "license": "ISC", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "universal-user-agent@4.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [], - "repository": "https://github.com/gr2m/universal-user-agent.git", + "_from": "universal-user-agent@4.0.1", + "_id": "universal-user-agent@4.0.1", + "_inBundle": false, + "_integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==", + "_location": "/@octokit/graphql/universal-user-agent", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "universal-user-agent@4.0.1", + "name": "universal-user-agent", + "escapedName": "universal-user-agent", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/@octokit/graphql" + ], + "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/gr2m/universal-user-agent/issues" + }, "dependencies": { "os-name": "^3.1.0" }, + "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", "@pika/pack": "^0.5.0", @@ -26,8 +46,23 @@ "ts-jest": "^25.1.0", "typescript": "^3.6.2" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/gr2m/universal-user-agent#readme", + "keywords": [], + "license": "ISC", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "universal-user-agent", + "pika": true, + "repository": { + "type": "git", + "url": "git+https://github.com/gr2m/universal-user-agent.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "4.0.1" +} diff --git a/node_modules/@octokit/graphql/package.json b/node_modules/@octokit/graphql/package.json index 958b0c83e..cb67838fe 100644 --- a/node_modules/@octokit/graphql/package.json +++ b/node_modules/@octokit/graphql/package.json @@ -1,33 +1,45 @@ { - "name": "@octokit/graphql", - "description": "GitHub GraphQL API client for browsers and Node", - "version": "4.3.1", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/graphql@4.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "api", - "graphql" + "_from": "@octokit/graphql@4.3.1", + "_id": "@octokit/graphql@4.3.1", + "_inBundle": false, + "_integrity": "sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA==", + "_location": "/@octokit/graphql", + "_phantomChildren": { + "os-name": "3.1.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/graphql@4.3.1", + "name": "@octokit/graphql", + "escapedName": "@octokit%2fgraphql", + "scope": "@octokit", + "rawSpec": "4.3.1", + "saveSpec": null, + "fetchSpec": "4.3.1" + }, + "_requiredBy": [ + "/@octokit/core" ], - "homepage": "https://github.com/octokit/graphql.js#readme", + "_resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.3.1.tgz", + "_spec": "4.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bugs": { "url": "https://github.com/octokit/graphql.js/issues" }, - "repository": { - "type": "git", - "url": "https://github.com/octokit/graphql.js.git" - }, + "deno": "dist-web/index.js", "dependencies": { "@octokit/request": "^5.3.0", "@octokit/types": "^2.0.0", "universal-user-agent": "^4.0.0" }, + "description": "GitHub GraphQL API client for browsers and Node", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.7.0", @@ -44,11 +56,30 @@ "ts-jest": "^24.0.2", "typescript": "^3.4.5" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/graphql.js#readme", + "keywords": [ + "octokit", + "github", + "api", + "graphql" + ], + "license": "MIT", + "main": "dist-node/index.js", + "name": "@octokit/graphql", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/graphql.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "deno": "dist-web/index.js" -} \ No newline at end of file + "version": "4.3.1" +} diff --git a/node_modules/@octokit/plugin-paginate-rest/package.json b/node_modules/@octokit/plugin-paginate-rest/package.json index 2c0d4c9f4..65f447c31 100644 --- a/node_modules/@octokit/plugin-paginate-rest/package.json +++ b/node_modules/@octokit/plugin-paginate-rest/package.json @@ -1,24 +1,40 @@ { - "name": "@octokit/plugin-paginate-rest", - "description": "Octokit plugin to paginate REST API endpoint responses", - "version": "2.0.2", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/plugin-paginate-rest@2.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "github", - "api", - "sdk", - "toolkit" + "_from": "@octokit/plugin-paginate-rest@2.0.2", + "_id": "@octokit/plugin-paginate-rest@2.0.2", + "_inBundle": false, + "_integrity": "sha512-HzODcSUt9mjErly26TlTOGZrhf9bmF/FEDQ2zln1izhgmIV6ulsjsHmgmR4VZ0wzVr/m52Eb6U2XuyS8fkcR1A==", + "_location": "/@octokit/plugin-paginate-rest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/plugin-paginate-rest@2.0.2", + "name": "@octokit/plugin-paginate-rest", + "escapedName": "@octokit%2fplugin-paginate-rest", + "scope": "@octokit", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/@octokit/rest" ], - "repository": "https://github.com/octokit/plugin-paginate-rest.js", + "_resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/octokit/plugin-paginate-rest.js/issues" + }, "dependencies": { "@octokit/types": "^2.0.1" }, + "description": "Octokit plugin to paginate REST API endpoint responses", "devDependencies": { "@octokit/core": "^2.0.0", "@pika/pack": "^0.5.0", @@ -36,11 +52,31 @@ "ts-jest": "^25.1.0", "typescript": "^3.7.2" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/plugin-paginate-rest.js#readme", + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/plugin-paginate-rest", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/plugin-paginate-rest.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "2.0.2" +} diff --git a/node_modules/@octokit/plugin-request-log/package.json b/node_modules/@octokit/plugin-request-log/package.json index ff6a0b1d3..de040676a 100644 --- a/node_modules/@octokit/plugin-request-log/package.json +++ b/node_modules/@octokit/plugin-request-log/package.json @@ -1,22 +1,38 @@ { - "name": "@octokit/plugin-request-log", - "description": "Log all requests and request errors", - "version": "1.0.0", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/plugin-request-log@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "github", - "api", - "sdk", - "toolkit" + "_from": "@octokit/plugin-request-log@1.0.0", + "_id": "@octokit/plugin-request-log@1.0.0", + "_inBundle": false, + "_integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==", + "_location": "/@octokit/plugin-request-log", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/plugin-request-log@1.0.0", + "name": "@octokit/plugin-request-log", + "escapedName": "@octokit%2fplugin-request-log", + "scope": "@octokit", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/@octokit/rest" ], - "repository": "https://github.com/octokit/plugin-request-log.js", + "_resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/octokit/plugin-request-log.js/issues" + }, "dependencies": {}, + "description": "Log all requests and request errors", "devDependencies": { "@octokit/core": "^2.1.2", "@pika/pack": "^0.5.0", @@ -34,11 +50,31 @@ "ts-jest": "^24.3.0", "typescript": "^3.7.4" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/plugin-request-log.js#readme", + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/plugin-request-log", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/plugin-request-log.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "1.0.0" +} diff --git a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json index 261fbec2b..77dcd6c1e 100644 --- a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json +++ b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json @@ -1,25 +1,41 @@ { - "name": "@octokit/plugin-rest-endpoint-methods", - "description": "Octokit plugin adding one method for all of api.github.com REST API endpoints", - "version": "3.3.1", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/plugin-rest-endpoint-methods@3.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "github", - "api", - "sdk", - "toolkit" + "_from": "@octokit/plugin-rest-endpoint-methods@3.3.1", + "_id": "@octokit/plugin-rest-endpoint-methods@3.3.1", + "_inBundle": false, + "_integrity": "sha512-iLAXPLWBZaP6ocy1GFfZUCzyN4cwg3y2JE6yZjQo0zLE3UaewC3TI68/TnS4ilyhXDxh81Jr1qwPN1AqTp8t3w==", + "_location": "/@octokit/plugin-rest-endpoint-methods", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/plugin-rest-endpoint-methods@3.3.1", + "name": "@octokit/plugin-rest-endpoint-methods", + "escapedName": "@octokit%2fplugin-rest-endpoint-methods", + "scope": "@octokit", + "rawSpec": "3.3.1", + "saveSpec": null, + "fetchSpec": "3.3.1" + }, + "_requiredBy": [ + "/@octokit/rest" ], - "repository": "https://github.com/octokit/plugin-rest-endpoint-methods.js", + "_resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.3.1.tgz", + "_spec": "3.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/octokit/plugin-rest-endpoint-methods.js/issues" + }, "dependencies": { "@octokit/types": "^2.0.1", "deprecation": "^2.3.1" }, + "description": "Octokit plugin adding one method for all of api.github.com REST API endpoints", "devDependencies": { "@gimenete/type-writer": "^0.1.4", "@octokit/core": "^2.1.2", @@ -47,11 +63,31 @@ "ts-jest": "^25.1.0", "typescript": "^3.7.2" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/plugin-rest-endpoint-methods.js#readme", + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/plugin-rest-endpoint-methods", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/plugin-rest-endpoint-methods.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "3.3.1" +} diff --git a/node_modules/@octokit/request-error/package.json b/node_modules/@octokit/request-error/package.json index 0938401ac..5c1c1d43e 100644 --- a/node_modules/@octokit/request-error/package.json +++ b/node_modules/@octokit/request-error/package.json @@ -1,33 +1,42 @@ { - "name": "@octokit/request-error", - "description": "Error class for Octokit request errors", - "version": "1.2.1", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/request-error@1.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "api", - "error" + "_from": "@octokit/request-error@1.2.1", + "_id": "@octokit/request-error@1.2.1", + "_inBundle": false, + "_integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==", + "_location": "/@octokit/request-error", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/request-error@1.2.1", + "name": "@octokit/request-error", + "escapedName": "@octokit%2frequest-error", + "scope": "@octokit", + "rawSpec": "1.2.1", + "saveSpec": null, + "fetchSpec": "1.2.1" + }, + "_requiredBy": [ + "/@octokit/request" ], - "homepage": "https://github.com/octokit/request-error.js#readme", + "_resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz", + "_spec": "1.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bugs": { "url": "https://github.com/octokit/request-error.js/issues" }, - "repository": { - "type": "git", - "url": "https://github.com/octokit/request-error.js.git" - }, "dependencies": { "@octokit/types": "^2.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" }, + "description": "Error class for Octokit request errors", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.8.1", @@ -44,11 +53,31 @@ "ts-jest": "^24.0.2", "typescript": "^3.4.5" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/request-error.js#readme", + "keywords": [ + "octokit", + "github", + "api", + "error" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/request-error", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/request-error.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "1.2.1" +} diff --git a/node_modules/@octokit/request/package.json b/node_modules/@octokit/request/package.json index e14ca5a44..4afc1ca4f 100644 --- a/node_modules/@octokit/request/package.json +++ b/node_modules/@octokit/request/package.json @@ -1,28 +1,37 @@ { - "name": "@octokit/request", - "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node", - "version": "5.3.2", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/request@5.3.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "api", - "request" + "_from": "@octokit/request@5.3.2", + "_id": "@octokit/request@5.3.2", + "_inBundle": false, + "_integrity": "sha512-7NPJpg19wVQy1cs2xqXjjRq/RmtSomja/VSWnptfYwuBxLdbYh2UjhGi0Wx7B1v5Iw5GKhfFDQL7jM7SSp7K2g==", + "_location": "/@octokit/request", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/request@5.3.2", + "name": "@octokit/request", + "escapedName": "@octokit%2frequest", + "scope": "@octokit", + "rawSpec": "5.3.2", + "saveSpec": null, + "fetchSpec": "5.3.2" + }, + "_requiredBy": [ + "/@octokit/core", + "/@octokit/graphql" ], - "homepage": "https://github.com/octokit/request.js#readme", + "_resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.3.2.tgz", + "_spec": "5.3.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bugs": { "url": "https://github.com/octokit/request.js/issues" }, - "repository": { - "type": "git", - "url": "https://github.com/octokit/request.js.git" - }, "dependencies": { "@octokit/endpoint": "^5.5.0", "@octokit/request-error": "^1.0.1", @@ -33,6 +42,7 @@ "once": "^1.4.0", "universal-user-agent": "^5.0.0" }, + "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node", "devDependencies": { "@octokit/auth-app": "^2.1.2", "@pika/pack": "^0.5.0", @@ -54,11 +64,31 @@ "ts-jest": "^25.1.0", "typescript": "^3.4.5" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/request.js#readme", + "keywords": [ + "octokit", + "github", + "api", + "request" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/request", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/request.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "5.3.2" +} diff --git a/node_modules/@octokit/rest/package.json b/node_modules/@octokit/rest/package.json index 6cf0f21e4..b31ec8833 100644 --- a/node_modules/@octokit/rest/package.json +++ b/node_modules/@octokit/rest/package.json @@ -1,20 +1,36 @@ { - "name": "@octokit/rest", - "description": "GitHub REST API client for Node.js", - "version": "17.1.0", - "license": "MIT", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "@octokit/rest@17.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [ - "octokit", - "github", - "rest", - "api-client" + "_from": "@octokit/rest@17.1.0", + "_id": "@octokit/rest@17.1.0", + "_inBundle": false, + "_integrity": "sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==", + "_location": "/@octokit/rest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/rest@17.1.0", + "name": "@octokit/rest", + "escapedName": "@octokit%2frest", + "scope": "@octokit", + "rawSpec": "17.1.0", + "saveSpec": null, + "fetchSpec": "17.1.0" + }, + "_requiredBy": [ + "/" ], + "_resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.1.0.tgz", + "_spec": "17.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/octokit/rest.js/issues" + }, "contributors": [ { "name": "Mike de Boer", @@ -33,13 +49,13 @@ "url": "https://github.com/gr2m" } ], - "repository": "https://github.com/octokit/rest.js", "dependencies": { "@octokit/core": "^2.4.0", "@octokit/plugin-paginate-rest": "^2.0.0", "@octokit/plugin-request-log": "^1.0.0", "@octokit/plugin-rest-endpoint-methods": "^3.3.0" }, + "description": "GitHub REST API client for Node.js", "devDependencies": { "@octokit/auth": "^2.0.0", "@octokit/fixtures-server": "^6.0.0", @@ -58,11 +74,31 @@ "ts-jest": "^25.2.0", "typescript": "^3.7.5" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/octokit/rest.js#readme", + "keywords": [ + "octokit", + "github", + "rest", + "api-client" + ], + "license": "MIT", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "@octokit/rest", + "pika": true, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/rest.js.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "17.1.0" +} diff --git a/node_modules/@octokit/types/package.json b/node_modules/@octokit/types/package.json index 8176f97b4..4e377ffce 100644 --- a/node_modules/@octokit/types/package.json +++ b/node_modules/@octokit/types/package.json @@ -1,34 +1,51 @@ { - "name": "@octokit/types", - "version": "2.5.0", - "publishConfig": { - "access": "public" - }, - "description": "Shared TypeScript definitions for Octokit projects", - "main": "src/index.ts", - "files": [ - "src/" + "_args": [ + [ + "@octokit/types@2.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "docs": "typedoc --module commonjs --readme none --out docs src/", - "lint": "prettier --check '{src,test}/**/*' README.md package.json !src/generated/*", - "lint:fix": "prettier --write '{src,test}/**/*' README.md package.json !src/generated/*", - "pretest": "npm run -s lint", - "test": "./node_modules/.bin/tsc --noEmit --declaration src/index.ts", - "update-endpoints": "npm-run-all update-endpoints:*", - "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json", - "update-endpoints:typescript": "node scripts/update-endpoints/typescript" + "_from": "@octokit/types@2.5.0", + "_id": "@octokit/types@2.5.0", + "_inBundle": false, + "_integrity": "sha512-KEnLwOfdXzxPNL34fj508bhi9Z9cStyN7qY1kOfVahmqtAfrWw6Oq3P4R+dtsg0lYtZdWBpUrS/Ixmd5YILSww==", + "_location": "/@octokit/types", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@octokit/types@2.5.0", + "name": "@octokit/types", + "escapedName": "@octokit%2ftypes", + "scope": "@octokit", + "rawSpec": "2.5.0", + "saveSpec": null, + "fetchSpec": "2.5.0" }, - "repository": "https://github.com/octokit/types.ts", - "keywords": [ - "github", - "api", - "sdk", - "toolkit", - "typescript" + "_requiredBy": [ + "/@octokit/auth-token", + "/@octokit/core", + "/@octokit/endpoint", + "/@octokit/graphql", + "/@octokit/plugin-paginate-rest", + "/@octokit/plugin-rest-endpoint-methods", + "/@octokit/request", + "/@octokit/request-error" ], - "author": "Gregor Martynus (https://twitter.com/gr2m)", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.5.0.tgz", + "_spec": "2.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Gregor Martynus", + "url": "https://twitter.com/gr2m" + }, + "bugs": { + "url": "https://github.com/octokit/types.ts/issues" + }, + "dependencies": { + "@types/node": ">= 8" + }, + "description": "Shared TypeScript definitions for Octokit projects", "devDependencies": { "@octokit/graphql": "^4.2.2", "handlebars": "^4.4.5", @@ -43,6 +60,23 @@ "typedoc": "^0.16.0", "typescript": "^3.6.4" }, + "files": [ + "src/" + ], + "homepage": "https://github.com/octokit/types.ts#readme", + "keywords": [ + "github", + "api", + "sdk", + "toolkit", + "typescript" + ], + "license": "MIT", + "main": "src/index.ts", + "name": "@octokit/types", + "publishConfig": { + "access": "public" + }, "release": { "plugins": [ "@semantic-release/commit-analyzer", @@ -59,7 +93,19 @@ ] ] }, - "dependencies": { - "@types/node": ">= 8" - } -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/types.ts.git" + }, + "scripts": { + "docs": "typedoc --module commonjs --readme none --out docs src/", + "lint": "prettier --check '{src,test}/**/*' README.md package.json !src/generated/*", + "lint:fix": "prettier --write '{src,test}/**/*' README.md package.json !src/generated/*", + "pretest": "npm run -s lint", + "test": "tsc --noEmit --declaration src/index.ts", + "update-endpoints": "npm-run-all update-endpoints:*", + "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json", + "update-endpoints:typescript": "node scripts/update-endpoints/typescript" + }, + "version": "2.5.0" +} diff --git a/node_modules/@sindresorhus/is/package.json b/node_modules/@sindresorhus/is/package.json index 66fc8bad1..0ea0e30d6 100644 --- a/node_modules/@sindresorhus/is/package.json +++ b/node_modules/@sindresorhus/is/package.json @@ -1,27 +1,66 @@ { - "name": "@sindresorhus/is", - "version": "0.14.0", - "description": "Type check values: `is.string('🦄') //=> true`", - "license": "MIT", - "repository": "sindresorhus/is", + "_args": [ + [ + "@sindresorhus/is@0.14.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@sindresorhus/is@0.14.0", + "_id": "@sindresorhus/is@0.14.0", + "_inBundle": false, + "_integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "_location": "/@sindresorhus/is", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@sindresorhus/is@0.14.0", + "name": "@sindresorhus/is", + "escapedName": "@sindresorhus%2fis", + "scope": "@sindresorhus", + "rawSpec": "0.14.0", + "saveSpec": null, + "fetchSpec": "0.14.0" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "_spec": "0.14.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "main": "dist/index.js", + "bugs": { + "url": "https://github.com/sindresorhus/is/issues" + }, + "description": "Type check values: `is.string('🦄') //=> true`", + "devDependencies": { + "@sindresorhus/tsconfig": "^0.1.0", + "@types/jsdom": "^11.12.0", + "@types/node": "^10.12.10", + "@types/tempy": "^0.2.0", + "@types/zen-observable": "^0.8.0", + "ava": "^0.25.0", + "del-cli": "^1.1.0", + "jsdom": "^11.6.2", + "rxjs": "^6.3.3", + "tempy": "^0.2.1", + "tslint": "^5.9.1", + "tslint-xo": "^0.10.0", + "typescript": "^3.2.1", + "zen-observable": "^0.8.8" + }, "engines": { "node": ">=6" }, - "scripts": { - "lint": "tslint --format stylish --project .", - "build": "del dist && tsc", - "test": "npm run lint && npm run build && ava dist/tests", - "prepublish": "npm run build && del dist/tests" - }, "files": [ "dist" ], + "homepage": "https://github.com/sindresorhus/is#readme", "keywords": [ "type", "types", @@ -43,21 +82,19 @@ "verify", "compare" ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.1.0", - "@types/jsdom": "^11.12.0", - "@types/node": "^10.12.10", - "@types/tempy": "^0.2.0", - "@types/zen-observable": "^0.8.0", - "ava": "^0.25.0", - "del-cli": "^1.1.0", - "jsdom": "^11.6.2", - "rxjs": "^6.3.3", - "tempy": "^0.2.1", - "tslint": "^5.9.1", - "tslint-xo": "^0.10.0", - "typescript": "^3.2.1", - "zen-observable": "^0.8.8" + "license": "MIT", + "main": "dist/index.js", + "name": "@sindresorhus/is", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is.git" + }, + "scripts": { + "build": "del dist && tsc", + "lint": "tslint --format stylish --project .", + "prepublish": "npm run build && del dist/tests", + "test": "npm run lint && npm run build && ava dist/tests" }, - "types": "dist/index.d.ts" -} \ No newline at end of file + "types": "dist/index.d.ts", + "version": "0.14.0" +} diff --git a/node_modules/@szmarczak/http-timer/package.json b/node_modules/@szmarczak/http-timer/package.json index cf366a763..cc089bf38 100755 --- a/node_modules/@szmarczak/http-timer/package.json +++ b/node_modules/@szmarczak/http-timer/package.json @@ -1,47 +1,79 @@ { - "name": "@szmarczak/http-timer", - "version": "1.1.2", + "_args": [ + [ + "@szmarczak/http-timer@1.1.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@szmarczak/http-timer@1.1.2", + "_id": "@szmarczak/http-timer@1.1.2", + "_inBundle": false, + "_integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "_location": "/@szmarczak/http-timer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@szmarczak/http-timer@1.1.2", + "name": "@szmarczak/http-timer", + "escapedName": "@szmarczak%2fhttp-timer", + "scope": "@szmarczak", + "rawSpec": "1.1.2", + "saveSpec": null, + "fetchSpec": "1.1.2" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "_spec": "1.1.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Szymon Marczak" + }, + "bugs": { + "url": "https://github.com/szmarczak/http-timer/issues" + }, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, "description": "Timings for HTTP requests", - "main": "source", + "devDependencies": { + "ava": "^0.25.0", + "coveralls": "^3.0.2", + "nyc": "^12.0.2", + "p-event": "^2.1.0", + "xo": "^0.22.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && nyc ava", - "coveralls": "nyc report --reporter=text-lcov | coveralls" - }, "files": [ "source" ], + "homepage": "https://github.com/szmarczak/http-timer#readme", "keywords": [ "http", "https", "timer", "timings" ], + "license": "MIT", + "main": "source", + "name": "@szmarczak/http-timer", "repository": { "type": "git", "url": "git+https://github.com/szmarczak/http-timer.git" }, - "author": "Szymon Marczak", - "license": "MIT", - "bugs": { - "url": "https://github.com/szmarczak/http-timer/issues" + "scripts": { + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" }, - "homepage": "https://github.com/szmarczak/http-timer#readme", + "version": "1.1.2", "xo": { "rules": { "unicorn/filename-case": "camelCase" } - }, - "devDependencies": { - "ava": "^0.25.0", - "coveralls": "^3.0.2", - "p-event": "^2.1.0", - "nyc": "^12.0.2", - "xo": "^0.22.0" - }, - "dependencies": { - "defer-to-connect": "^1.0.1" } -} \ No newline at end of file +} diff --git a/node_modules/@types/color-name/package.json b/node_modules/@types/color-name/package.json index de213731b..22b8cdfc9 100644 --- a/node_modules/@types/color-name/package.json +++ b/node_modules/@types/color-name/package.json @@ -1,23 +1,61 @@ { - "name": "@types/color-name", - "version": "1.1.1", - "description": "TypeScript definitions for color-name", - "license": "MIT", + "_args": [ + [ + "@types/color-name@1.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/color-name@1.1.1", + "_id": "@types/color-name@1.1.1", + "_inBundle": false, + "_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", + "_location": "/@types/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/color-name@1.1.1", + "name": "@types/color-name", + "escapedName": "@types%2fcolor-name", + "scope": "@types", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/ava/ansi-styles", + "/boxen/ansi-styles", + "/ora/ansi-styles", + "/slice-ansi/ansi-styles", + "/update-notifier/ansi-styles", + "/wrap-ansi/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "Junyoung Clare Jang", - "url": "https://github.com/Ailrun", - "githubUsername": "Ailrun" + "url": "https://github.com/Ailrun" } ], + "dependencies": {}, + "description": "TypeScript definitions for color-name", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", - "types": "index", + "name": "@types/color-name", "repository": { "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "dependencies": {}, + "typeScriptVersion": "2.0", + "types": "index", "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "1.1.1" +} diff --git a/node_modules/@types/events/package.json b/node_modules/@types/events/package.json index 511653a8c..c6ae64cda 100644 --- a/node_modules/@types/events/package.json +++ b/node_modules/@types/events/package.json @@ -1,28 +1,60 @@ { - "name": "@types/events", - "version": "3.0.0", - "description": "TypeScript definitions for events", - "license": "MIT", + "_args": [ + [ + "@types/events@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/events@3.0.0", + "_id": "@types/events@3.0.0", + "_inBundle": false, + "_integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", + "_location": "/@types/events", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/events@3.0.0", + "name": "@types/events", + "escapedName": "@types%2fevents", + "scope": "@types", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/@types/glob" + ], + "_resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "Yasunori Ohoka", - "url": "https://github.com/yasupeke", - "githubUsername": "yasupeke" + "url": "https://github.com/yasupeke" }, { "name": "Shenwei Wang", - "url": "https://github.com/weareoutman", - "githubUsername": "weareoutman" + "url": "https://github.com/weareoutman" } ], + "dependencies": {}, + "description": "TypeScript definitions for events", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", - "types": "index", + "name": "@types/events", "repository": { "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "dependencies": {}, + "typeScriptVersion": "2.0", + "types": "index", "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "3.0.0" +} diff --git a/node_modules/@types/glob/package.json b/node_modules/@types/glob/package.json index 599e299a4..fcdea7634 100644 --- a/node_modules/@types/glob/package.json +++ b/node_modules/@types/glob/package.json @@ -1,36 +1,67 @@ { - "name": "@types/glob", - "version": "7.1.1", - "description": "TypeScript definitions for Glob", - "license": "MIT", + "_args": [ + [ + "@types/glob@7.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/glob@7.1.1", + "_id": "@types/glob@7.1.1", + "_inBundle": false, + "_integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "_location": "/@types/glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/glob@7.1.1", + "name": "@types/glob", + "escapedName": "@types%2fglob", + "scope": "@types", + "rawSpec": "7.1.1", + "saveSpec": null, + "fetchSpec": "7.1.1" + }, + "_requiredBy": [ + "/del/globby" + ], + "_resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", + "_spec": "7.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "vvakame", - "url": "https://github.com/vvakame", - "githubUsername": "vvakame" + "url": "https://github.com/vvakame" }, { "name": "voy", - "url": "https://github.com/voy", - "githubUsername": "voy" + "url": "https://github.com/voy" }, { "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff", - "githubUsername": "ajafff" + "url": "https://github.com/ajafff" } ], - "main": "", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, "dependencies": { "@types/events": "*", "@types/minimatch": "*", "@types/node": "*" }, + "description": "TypeScript definitions for Glob", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/glob", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "7.1.1" +} diff --git a/node_modules/@types/jszip/package.json b/node_modules/@types/jszip/package.json index 5712e3e9d..0926df052 100644 --- a/node_modules/@types/jszip/package.json +++ b/node_modules/@types/jszip/package.json @@ -1,31 +1,63 @@ { - "name": "@types/jszip", - "version": "3.1.6", - "description": "TypeScript definitions for JSZip", - "license": "MIT", + "_args": [ + [ + "@types/jszip@3.1.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/jszip@3.1.6", + "_id": "@types/jszip@3.1.6", + "_inBundle": false, + "_integrity": "sha512-m8uFcI+O2EupCfbEVQWsBM/4nhbegjOHL7cQgBpM95FeF98kdFJXzy9/8yhx4b3lCRl/gMBhcvyh30Qt3X+XPQ==", + "_location": "/@types/jszip", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/jszip@3.1.6", + "name": "@types/jszip", + "escapedName": "@types%2fjszip", + "scope": "@types", + "rawSpec": "3.1.6", + "saveSpec": null, + "fetchSpec": "3.1.6" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@types/jszip/-/jszip-3.1.6.tgz", + "_spec": "3.1.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "mzeiher", - "url": "https://github.com/mzeiher", - "githubUsername": "mzeiher" + "url": "https://github.com/mzeiher" }, { "name": "forabi", - "url": "https://github.com/forabi", - "githubUsername": "forabi" + "url": "https://github.com/forabi" } ], + "dependencies": { + "@types/node": "*" + }, + "description": "TypeScript definitions for JSZip", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", - "types": "index", + "name": "@types/jszip", "repository": { "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/jszip" }, "scripts": {}, - "dependencies": { - "@types/node": "*" - }, + "typeScriptVersion": "2.3", + "types": "index", "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", - "typeScriptVersion": "2.3" -} \ No newline at end of file + "version": "3.1.6" +} diff --git a/node_modules/@types/long/package.json b/node_modules/@types/long/package.json index 71fc5eae5..cd467c393 100644 --- a/node_modules/@types/long/package.json +++ b/node_modules/@types/long/package.json @@ -1,22 +1,55 @@ { - "name": "@types/long", - "version": "4.0.0", - "description": "TypeScript definitions for long.js", - "license": "MIT", + "_args": [ + [ + "@types/long@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/long@4.0.0", + "_id": "@types/long@4.0.0", + "_inBundle": false, + "_integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==", + "_location": "/@types/long", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/long@4.0.0", + "name": "@types/long", + "escapedName": "@types%2flong", + "scope": "@types", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "Peter Kooijmans", - "url": "https://github.com/peterkooijmans", - "githubUsername": "peterkooijmans" + "url": "https://github.com/peterkooijmans" } ], + "dependencies": {}, + "description": "TypeScript definitions for long.js", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", + "name": "@types/long", "repository": { "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "dependencies": {}, + "typeScriptVersion": "2.0", "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "4.0.0" +} diff --git a/node_modules/@types/minimatch/package.json b/node_modules/@types/minimatch/package.json index 85e258799..69e216828 100644 --- a/node_modules/@types/minimatch/package.json +++ b/node_modules/@types/minimatch/package.json @@ -1,27 +1,59 @@ { - "name": "@types/minimatch", - "version": "3.0.3", - "description": "TypeScript definitions for Minimatch", - "license": "MIT", + "_args": [ + [ + "@types/minimatch@3.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/minimatch@3.0.3", + "_id": "@types/minimatch@3.0.3", + "_inBundle": false, + "_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "_location": "/@types/minimatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/minimatch@3.0.3", + "name": "@types/minimatch", + "escapedName": "@types%2fminimatch", + "scope": "@types", + "rawSpec": "3.0.3", + "saveSpec": null, + "fetchSpec": "3.0.3" + }, + "_requiredBy": [ + "/@types/glob" + ], + "_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "_spec": "3.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "vvakame", - "url": "https://github.com/vvakame", - "githubUsername": "vvakame" + "url": "https://github.com/vvakame" }, { "name": "Shant Marouti", - "url": "https://github.com/shantmarouti", - "githubUsername": "shantmarouti" + "url": "https://github.com/shantmarouti" } ], + "dependencies": {}, + "description": "TypeScript definitions for Minimatch", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", + "name": "@types/minimatch", "repository": { "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "dependencies": {}, + "typeScriptVersion": "2.0", "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "3.0.3" +} diff --git a/node_modules/@types/nock/LICENSE b/node_modules/@types/nock/LICENSE new file mode 100644 index 000000000..4b1ad51b2 --- /dev/null +++ b/node_modules/@types/nock/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/node_modules/@types/nock/README.md b/node_modules/@types/nock/README.md new file mode 100644 index 000000000..35850f035 --- /dev/null +++ b/node_modules/@types/nock/README.md @@ -0,0 +1,3 @@ +This is a stub types definition for nock (https://github.com/nock/nock). + +nock provides its own type definitions, so you don't need @types/nock installed! \ No newline at end of file diff --git a/node_modules/@types/nock/package.json b/node_modules/@types/nock/package.json new file mode 100644 index 000000000..9873e4121 --- /dev/null +++ b/node_modules/@types/nock/package.json @@ -0,0 +1,48 @@ +{ + "_from": "@types/nock", + "_id": "@types/nock@11.1.0", + "_inBundle": false, + "_integrity": "sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==", + "_location": "/@types/nock", + "_phantomChildren": {}, + "_requested": { + "type": "tag", + "registry": true, + "raw": "@types/nock", + "name": "@types/nock", + "escapedName": "@types%2fnock", + "scope": "@types", + "rawSpec": "", + "saveSpec": null, + "fetchSpec": "latest" + }, + "_requiredBy": [ + "#DEV:/", + "#USER" + ], + "_resolved": "https://registry.npmjs.org/@types/nock/-/nock-11.1.0.tgz", + "_shasum": "0a8c1056a31ba32a959843abccf99626dd90a538", + "_spec": "@types/nock", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": "", + "bugs": { + "url": "https://github.com/nock/nock/issues" + }, + "bundleDependencies": false, + "dependencies": { + "nock": "*" + }, + "deprecated": "This is a stub types definition. nock provides its own type definitions, so you do not need this installed.", + "description": "Stub TypeScript definitions entry for nock, which provides its own types definitions", + "homepage": "https://github.com/nock/nock#readme", + "license": "MIT", + "main": "", + "name": "@types/nock", + "repository": { + "type": "git", + "url": "git+https://github.com/nock/nock.git" + }, + "scripts": {}, + "typings": null, + "version": "11.1.0" +} diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index f3863a09b..ae1878b4e 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -1,217 +1,220 @@ { - "name": "@types/node", - "version": "12.12.14", - "description": "TypeScript definitions for Node.js", - "license": "MIT", + "_args": [ + [ + "@types/node@12.12.14", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "@types/node@12.12.14", + "_id": "@types/node@12.12.14", + "_inBundle": false, + "_integrity": "sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA==", + "_location": "/@types/node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/node@12.12.14", + "name": "@types/node", + "escapedName": "@types%2fnode", + "scope": "@types", + "rawSpec": "12.12.14", + "saveSpec": null, + "fetchSpec": "12.12.14" + }, + "_requiredBy": [ + "#DEV:/", + "/@octokit/types", + "/@types/glob", + "/@types/jszip" + ], + "_resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.14.tgz", + "_spec": "12.12.14", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "Microsoft TypeScript", - "url": "https://github.com/Microsoft", - "githubUsername": "Microsoft" + "url": "https://github.com/Microsoft" }, { "name": "DefinitelyTyped", - "url": "https://github.com/DefinitelyTyped", - "githubUsername": "DefinitelyTyped" + "url": "https://github.com/DefinitelyTyped" }, { "name": "Alberto Schiabel", - "url": "https://github.com/jkomyno", - "githubUsername": "jkomyno" + "url": "https://github.com/jkomyno" }, { "name": "Alexander T.", - "url": "https://github.com/a-tarasyuk", - "githubUsername": "a-tarasyuk" + "url": "https://github.com/a-tarasyuk" }, { "name": "Alvis HT Tang", - "url": "https://github.com/alvis", - "githubUsername": "alvis" + "url": "https://github.com/alvis" }, { "name": "Andrew Makarov", - "url": "https://github.com/r3nya", - "githubUsername": "r3nya" + "url": "https://github.com/r3nya" }, { "name": "Benjamin Toueg", - "url": "https://github.com/btoueg", - "githubUsername": "btoueg" + "url": "https://github.com/btoueg" }, { "name": "Bruno Scheufler", - "url": "https://github.com/brunoscheufler", - "githubUsername": "brunoscheufler" + "url": "https://github.com/brunoscheufler" }, { "name": "Chigozirim C.", - "url": "https://github.com/smac89", - "githubUsername": "smac89" + "url": "https://github.com/smac89" }, { "name": "Christian Vaagland Tellnes", - "url": "https://github.com/tellnes", - "githubUsername": "tellnes" + "url": "https://github.com/tellnes" }, { "name": "David Junger", - "url": "https://github.com/touffy", - "githubUsername": "touffy" + "url": "https://github.com/touffy" }, { "name": "Deividas Bakanas", - "url": "https://github.com/DeividasBakanas", - "githubUsername": "DeividasBakanas" + "url": "https://github.com/DeividasBakanas" }, { "name": "Eugene Y. Q. Shen", - "url": "https://github.com/eyqs", - "githubUsername": "eyqs" + "url": "https://github.com/eyqs" }, { "name": "Flarna", - "url": "https://github.com/Flarna", - "githubUsername": "Flarna" + "url": "https://github.com/Flarna" }, { "name": "Hannes Magnusson", - "url": "https://github.com/Hannes-Magnusson-CK", - "githubUsername": "Hannes-Magnusson-CK" + "url": "https://github.com/Hannes-Magnusson-CK" }, { "name": "Hoàng Văn Khải", - "url": "https://github.com/KSXGitHub", - "githubUsername": "KSXGitHub" + "url": "https://github.com/KSXGitHub" }, { "name": "Huw", - "url": "https://github.com/hoo29", - "githubUsername": "hoo29" + "url": "https://github.com/hoo29" }, { "name": "Kelvin Jin", - "url": "https://github.com/kjin", - "githubUsername": "kjin" + "url": "https://github.com/kjin" }, { "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff", - "githubUsername": "ajafff" + "url": "https://github.com/ajafff" }, { "name": "Lishude", - "url": "https://github.com/islishude", - "githubUsername": "islishude" + "url": "https://github.com/islishude" }, { "name": "Mariusz Wiktorczyk", - "url": "https://github.com/mwiktorczyk", - "githubUsername": "mwiktorczyk" + "url": "https://github.com/mwiktorczyk" }, { "name": "Mohsen Azimi", - "url": "https://github.com/mohsen1", - "githubUsername": "mohsen1" + "url": "https://github.com/mohsen1" }, { "name": "Nicolas Even", - "url": "https://github.com/n-e", - "githubUsername": "n-e" + "url": "https://github.com/n-e" }, { "name": "Nicolas Voigt", - "url": "https://github.com/octo-sniffle", - "githubUsername": "octo-sniffle" + "url": "https://github.com/octo-sniffle" }, { "name": "Nikita Galkin", - "url": "https://github.com/galkin", - "githubUsername": "galkin" + "url": "https://github.com/galkin" }, { "name": "Parambir Singh", - "url": "https://github.com/parambirs", - "githubUsername": "parambirs" + "url": "https://github.com/parambirs" }, { "name": "Sebastian Silbermann", - "url": "https://github.com/eps1lon", - "githubUsername": "eps1lon" + "url": "https://github.com/eps1lon" }, { "name": "Simon Schick", - "url": "https://github.com/SimonSchick", - "githubUsername": "SimonSchick" + "url": "https://github.com/SimonSchick" }, { "name": "Thomas den Hollander", - "url": "https://github.com/ThomasdenH", - "githubUsername": "ThomasdenH" + "url": "https://github.com/ThomasdenH" }, { "name": "Wilco Bakker", - "url": "https://github.com/WilcoBakker", - "githubUsername": "WilcoBakker" + "url": "https://github.com/WilcoBakker" }, { "name": "wwwy3y3", - "url": "https://github.com/wwwy3y3", - "githubUsername": "wwwy3y3" + "url": "https://github.com/wwwy3y3" }, { "name": "Zane Hannan AU", - "url": "https://github.com/ZaneHannanAU", - "githubUsername": "ZaneHannanAU" + "url": "https://github.com/ZaneHannanAU" }, { "name": "Samuel Ainsworth", - "url": "https://github.com/samuela", - "githubUsername": "samuela" + "url": "https://github.com/samuela" }, { "name": "Kyle Uehlein", - "url": "https://github.com/kuehlein", - "githubUsername": "kuehlein" + "url": "https://github.com/kuehlein" }, { "name": "Jordi Oliveras Rovira", - "url": "https://github.com/j-oliveras", - "githubUsername": "j-oliveras" + "url": "https://github.com/j-oliveras" }, { "name": "Thanik Bhongbhibhat", - "url": "https://github.com/bhongy", - "githubUsername": "bhongy" + "url": "https://github.com/bhongy" }, { "name": "Marcin Kopacz", - "url": "https://github.com/chyzwar", - "githubUsername": "chyzwar" + "url": "https://github.com/chyzwar" }, { "name": "Trivikram Kamat", - "url": "https://github.com/trivikr", - "githubUsername": "trivikr" + "url": "https://github.com/trivikr" }, { "name": "Minh Son Nguyen", - "url": "https://github.com/nguymin4", - "githubUsername": "nguymin4" + "url": "https://github.com/nguymin4" }, { "name": "Junxiao Shi", - "url": "https://github.com/yoursunny", - "githubUsername": "yoursunny" + "url": "https://github.com/yoursunny" }, { "name": "Ilia Baryshnikov", - "url": "https://github.com/qwelias", - "githubUsername": "qwelias" + "url": "https://github.com/qwelias" } ], + "dependencies": {}, + "description": "TypeScript definitions for Node.js", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", + "name": "@types/node", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "typeScriptVersion": "2.8", "types": "index.d.ts", + "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", "typesVersions": { ">=3.2.0-0": { "*": [ @@ -219,13 +222,5 @@ ] } }, - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/node" - }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", - "typeScriptVersion": "2.8" -} \ No newline at end of file + "version": "12.12.14" +} diff --git a/node_modules/@types/normalize-package-data/package.json b/node_modules/@types/normalize-package-data/package.json index 830641a9d..145f70cd7 100755 --- a/node_modules/@types/normalize-package-data/package.json +++ b/node_modules/@types/normalize-package-data/package.json @@ -1,22 +1,55 @@ { - "name": "@types/normalize-package-data", - "version": "2.4.0", - "description": "TypeScript definitions for normalize-package-data", - "license": "MIT", + "_args": [ + [ + "@types/normalize-package-data@2.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "@types/normalize-package-data@2.4.0", + "_id": "@types/normalize-package-data@2.4.0", + "_inBundle": false, + "_integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "_location": "/@types/normalize-package-data", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/normalize-package-data@2.4.0", + "name": "@types/normalize-package-data", + "escapedName": "@types%2fnormalize-package-data", + "scope": "@types", + "rawSpec": "2.4.0", + "saveSpec": null, + "fetchSpec": "2.4.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "_spec": "2.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, "contributors": [ { "name": "Jeff Dickey", - "url": "https://github.com/jdxcode", - "githubUsername": "jdxcode" + "url": "https://github.com/jdxcode" } ], + "dependencies": {}, + "description": "TypeScript definitions for normalize-package-data", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", "main": "", + "name": "@types/normalize-package-data", "repository": { "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "dependencies": {}, + "typeScriptVersion": "2.0", "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", - "typeScriptVersion": "2.0" -} \ No newline at end of file + "version": "2.4.0" +} diff --git a/node_modules/@types/semver/LICENSE b/node_modules/@types/semver/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/node_modules/@types/semver/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/node_modules/@types/semver/README.md b/node_modules/@types/semver/README.md new file mode 100644 index 000000000..50e9995f7 --- /dev/null +++ b/node_modules/@types/semver/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/semver` + +# Summary +This package contains type definitions for semver (https://github.com/npm/node-semver). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver. + +### Additional Details + * Last updated: Wed, 13 May 2020 16:20:54 GMT + * Dependencies: [@types/node](https://npmjs.com/package/@types/node) + * Global values: none + +# Credits +These definitions were written by [Bart van der Schoor](https://github.com/Bartvds), [BendingBender](https://github.com/BendingBender), [Lucian Buzzo](https://github.com/LucianBuzzo), [Klaus Meinhardt](https://github.com/ajafff), [ExE Boss](https://github.com/ExE-Boss), and [Piotr Błażejewicz](https://github.com/peterblazejewicz). diff --git a/node_modules/@types/semver/classes/comparator.d.ts b/node_modules/@types/semver/classes/comparator.d.ts new file mode 100644 index 000000000..de7c21083 --- /dev/null +++ b/node_modules/@types/semver/classes/comparator.d.ts @@ -0,0 +1,17 @@ +import sermver = require('../'); +import SemVer = require('./semver'); + +declare class Comparator { + constructor(comp: string | Comparator, optionsOrLoose?: boolean | sermver.Options); + + semver: SemVer; + operator: '' | '=' | '<' | '>' | '<=' | '>='; + value: string; + loose: boolean; + options: sermver.Options; + parse(comp: string): void; + test(version: string | SemVer): boolean; + intersects(comp: Comparator, optionsOrLoose?: boolean | sermver.Options): boolean; +} + +export = Comparator; diff --git a/node_modules/@types/semver/classes/range.d.ts b/node_modules/@types/semver/classes/range.d.ts new file mode 100644 index 000000000..b61020c8a --- /dev/null +++ b/node_modules/@types/semver/classes/range.d.ts @@ -0,0 +1,21 @@ +import semver = require('../'); +import Comparator = require('./comparator'); +import SemVer = require('./semver'); + +declare class Range { + constructor(range: string | Range, optionsOrLoose?: boolean | semver.Options); + + range: string; + raw: string; + loose: boolean; + options: semver.Options; + includePrerelease: boolean; + format(): string; + inspect(): string; + + set: ReadonlyArray>; + parseRange(range: string): ReadonlyArray; + test(version: string | SemVer): boolean; + intersects(range: Range, optionsOrLoose?: boolean | semver.Options): boolean; +} +export = Range; diff --git a/node_modules/@types/semver/classes/semver.d.ts b/node_modules/@types/semver/classes/semver.d.ts new file mode 100644 index 000000000..fc0c49f00 --- /dev/null +++ b/node_modules/@types/semver/classes/semver.d.ts @@ -0,0 +1,62 @@ +import semver = require('../'); + +declare class SemVer { + constructor(version: string | SemVer, optionsOrLoose?: boolean | semver.Options); + + raw: string; + loose: boolean; + options: semver.Options; + format(): string; + inspect(): string; + + major: number; + minor: number; + patch: number; + version: string; + build: ReadonlyArray; + prerelease: ReadonlyArray; + + /** + * Compares two versions excluding build identifiers (the bit after `+` in the semantic version string). + * + * @return + * - `0` if `this` == `other` + * - `1` if `this` is greater + * - `-1` if `other` is greater. + */ + compare(other: string | SemVer): 1 | 0 | -1; + + /** + * Compares the release portion of two versions. + * + * @return + * - `0` if `this` == `other` + * - `1` if `this` is greater + * - `-1` if `other` is greater. + */ + compareMain(other: string | SemVer): 1 | 0 | -1; + + /** + * Compares the prerelease portion of two versions. + * + * @return + * - `0` if `this` == `other` + * - `1` if `this` is greater + * - `-1` if `other` is greater. + */ + comparePre(other: string | SemVer): 1 | 0 | -1; + + /** + * Compares the build identifier of two versions. + * + * @return + * - `0` if `this` == `other` + * - `1` if `this` is greater + * - `-1` if `other` is greater. + */ + compareBuild(other: string | SemVer): 1 | 0 | -1; + + inc(release: semver.ReleaseType, identifier?: string): SemVer; +} + +export = SemVer; diff --git a/node_modules/@types/semver/functions/clean.d.ts b/node_modules/@types/semver/functions/clean.d.ts new file mode 100644 index 000000000..b2ec9e5dd --- /dev/null +++ b/node_modules/@types/semver/functions/clean.d.ts @@ -0,0 +1,8 @@ +import semver = require('../'); + +/** + * Returns cleaned (removed leading/trailing whitespace, remove '=v' prefix) and parsed version, or null if version is invalid. + */ +declare function clean(version: string, optionsOrLoose?: boolean | semver.Options): string | null; + +export = clean; diff --git a/node_modules/@types/semver/functions/cmp.d.ts b/node_modules/@types/semver/functions/cmp.d.ts new file mode 100644 index 000000000..f74fd68af --- /dev/null +++ b/node_modules/@types/semver/functions/cmp.d.ts @@ -0,0 +1,16 @@ +import semver = require('../'); +import SemVer = require('../classes/semver'); + +/** + * Pass in a comparison string, and it'll call the corresponding semver comparison function. + * "===" and "!==" do simple string comparison, but are included for completeness. + * Throws if an invalid comparison string is provided. + */ +declare function cmp( + v1: string | SemVer, + operator: semver.Operator, + v2: string | SemVer, + optionsOrLoose?: boolean | semver.Options, +): boolean; + +export = cmp; diff --git a/node_modules/@types/semver/functions/coerce.d.ts b/node_modules/@types/semver/functions/coerce.d.ts new file mode 100644 index 000000000..b8f71e10f --- /dev/null +++ b/node_modules/@types/semver/functions/coerce.d.ts @@ -0,0 +1,12 @@ +import semver = require('../'); +import SemVer = require('../classes/semver'); + +/** + * Coerces a string to SemVer if possible + */ +declare function coerce( + version: string | number | SemVer | null | undefined, + options?: semver.CoerceOptions, +): SemVer | null; + +export = coerce; diff --git a/node_modules/@types/semver/functions/compare-build.d.ts b/node_modules/@types/semver/functions/compare-build.d.ts new file mode 100644 index 000000000..389ff000d --- /dev/null +++ b/node_modules/@types/semver/functions/compare-build.d.ts @@ -0,0 +1,16 @@ +import SemVer = require('../classes/semver'); + +/** + * Compares two versions including build identifiers (the bit after `+` in the semantic version string). + * + * Sorts in ascending order when passed to `Array.sort()`. + * + * @return + * - `0` if `v1` == `v2` + * - `1` if `v1` is greater + * - `-1` if `v2` is greater. + * + * @since 6.1.0 + */ +declare function compareBuild(a: string | SemVer, b: string | SemVer): 1 | 0 | -1; +export = compareBuild; diff --git a/node_modules/@types/semver/functions/compare-loose.d.ts b/node_modules/@types/semver/functions/compare-loose.d.ts new file mode 100644 index 000000000..db520f1f0 --- /dev/null +++ b/node_modules/@types/semver/functions/compare-loose.d.ts @@ -0,0 +1,5 @@ +import SemVer = require('../classes/semver'); + +declare function compareLoose(v1: string | SemVer, v2: string | SemVer): 1 | 0 | -1; + +export = compareLoose; diff --git a/node_modules/@types/semver/functions/compare.d.ts b/node_modules/@types/semver/functions/compare.d.ts new file mode 100644 index 000000000..d7b72d064 --- /dev/null +++ b/node_modules/@types/semver/functions/compare.d.ts @@ -0,0 +1,20 @@ +import semver = require('../'); +import SemVer = require('../classes/semver'); + +/** + * Compares two versions excluding build identifiers (the bit after `+` in the semantic version string). + * + * Sorts in ascending order when passed to `Array.sort()`. + * + * @return + * - `0` if `v1` == `v2` + * - `1` if `v1` is greater + * - `-1` if `v2` is greater. + */ +declare function compare( + v1: string | SemVer, + v2: string | SemVer, + optionsOrLoose?: boolean | semver.Options, +): 1 | 0 | -1; + +export = compare; diff --git a/node_modules/@types/semver/functions/diff.d.ts b/node_modules/@types/semver/functions/diff.d.ts new file mode 100644 index 000000000..52f7676c1 --- /dev/null +++ b/node_modules/@types/semver/functions/diff.d.ts @@ -0,0 +1,13 @@ +import semver = require('../'); +import SemVer = require('../classes/semver'); + +/** + * Returns difference between two versions by the release type (major, premajor, minor, preminor, patch, prepatch, or prerelease), or null if the versions are the same. + */ +declare function diff( + v1: string | SemVer, + v2: string | SemVer, + optionsOrLoose?: boolean | semver.Options, +): semver.ReleaseType | null; + +export = diff; diff --git a/node_modules/@types/semver/functions/eq.d.ts b/node_modules/@types/semver/functions/eq.d.ts new file mode 100644 index 000000000..e01aa6fa4 --- /dev/null +++ b/node_modules/@types/semver/functions/eq.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 == v2 This is true if they're logically equivalent, even if they're not the exact same string. You already know how to compare strings. + */ +declare function eq(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; + +export = eq; diff --git a/node_modules/@types/semver/functions/gt.d.ts b/node_modules/@types/semver/functions/gt.d.ts new file mode 100644 index 000000000..aa973794b --- /dev/null +++ b/node_modules/@types/semver/functions/gt.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 > v2 + */ +declare function gt(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; + +export = gt; diff --git a/node_modules/@types/semver/functions/gte.d.ts b/node_modules/@types/semver/functions/gte.d.ts new file mode 100644 index 000000000..bfcf4d63c --- /dev/null +++ b/node_modules/@types/semver/functions/gte.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 >= v2 + */ +declare function gte(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; + +export = gte; diff --git a/node_modules/@types/semver/functions/inc.d.ts b/node_modules/@types/semver/functions/inc.d.ts new file mode 100644 index 000000000..16fc33f30 --- /dev/null +++ b/node_modules/@types/semver/functions/inc.d.ts @@ -0,0 +1,15 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the version incremented by the release type (major, minor, patch, or prerelease), or null if it's not valid. + */ +declare function inc( + version: string | SemVer, + release: semver.ReleaseType, + optionsOrLoose?: boolean | semver.Options, + identifier?: string, +): string | null; +declare function inc(version: string | SemVer, release: semver.ReleaseType, identifier?: string): string | null; + +export = inc; diff --git a/node_modules/@types/semver/functions/lt.d.ts b/node_modules/@types/semver/functions/lt.d.ts new file mode 100644 index 000000000..25bb05395 --- /dev/null +++ b/node_modules/@types/semver/functions/lt.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 < v2 + */ +declare function lt(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; + +export = lt; diff --git a/node_modules/@types/semver/functions/lte.d.ts b/node_modules/@types/semver/functions/lte.d.ts new file mode 100644 index 000000000..0a16e77b6 --- /dev/null +++ b/node_modules/@types/semver/functions/lte.d.ts @@ -0,0 +1,8 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 <= v2 + */ +declare function lte(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; +export = lte; diff --git a/node_modules/@types/semver/functions/major.d.ts b/node_modules/@types/semver/functions/major.d.ts new file mode 100644 index 000000000..b86e7217e --- /dev/null +++ b/node_modules/@types/semver/functions/major.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the major version number. + */ +declare function major(version: string | SemVer, optionsOrLoose?: boolean | semver.Options): number; + +export = major; diff --git a/node_modules/@types/semver/functions/minor.d.ts b/node_modules/@types/semver/functions/minor.d.ts new file mode 100644 index 000000000..1a99e0462 --- /dev/null +++ b/node_modules/@types/semver/functions/minor.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the minor version number. + */ +declare function minor(version: string | SemVer, optionsOrLoose?: boolean | semver.Options): number; + +export = minor; diff --git a/node_modules/@types/semver/functions/neq.d.ts b/node_modules/@types/semver/functions/neq.d.ts new file mode 100644 index 000000000..5ce800cbe --- /dev/null +++ b/node_modules/@types/semver/functions/neq.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * v1 != v2 The opposite of eq. + */ +declare function neq(v1: string | SemVer, v2: string | SemVer, optionsOrLoose?: boolean | semver.Options): boolean; + +export = neq; diff --git a/node_modules/@types/semver/functions/parse.d.ts b/node_modules/@types/semver/functions/parse.d.ts new file mode 100644 index 000000000..2bfc5f6e9 --- /dev/null +++ b/node_modules/@types/semver/functions/parse.d.ts @@ -0,0 +1,12 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the parsed version as a SemVer object, or null if it's not valid. + */ +declare function parse( + version: string | SemVer | null | undefined, + optionsOrLoose?: boolean | semver.Options, +): SemVer | null; + +export = parse; diff --git a/node_modules/@types/semver/functions/patch.d.ts b/node_modules/@types/semver/functions/patch.d.ts new file mode 100644 index 000000000..da3805157 --- /dev/null +++ b/node_modules/@types/semver/functions/patch.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the patch version number. + */ +declare function patch(version: string | SemVer, optionsOrLoose?: boolean | semver.Options): number; + +export = patch; diff --git a/node_modules/@types/semver/functions/prerelease.d.ts b/node_modules/@types/semver/functions/prerelease.d.ts new file mode 100644 index 000000000..56e8f297a --- /dev/null +++ b/node_modules/@types/semver/functions/prerelease.d.ts @@ -0,0 +1,12 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Returns an array of prerelease components, or null if none exist. + */ +declare function prerelease( + version: string | SemVer, + optionsOrLoose?: boolean | semver.Options, +): ReadonlyArray | null; + +export = prerelease; diff --git a/node_modules/@types/semver/functions/rcompare.d.ts b/node_modules/@types/semver/functions/rcompare.d.ts new file mode 100644 index 000000000..aca59b5e9 --- /dev/null +++ b/node_modules/@types/semver/functions/rcompare.d.ts @@ -0,0 +1,15 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * The reverse of compare. + * + * Sorts in descending order when passed to `Array.sort()`. + */ +declare function rcompare( + v1: string | SemVer, + v2: string | SemVer, + optionsOrLoose?: boolean | semver.Options, +): 1 | 0 | -1; + +export = rcompare; diff --git a/node_modules/@types/semver/functions/rsort.d.ts b/node_modules/@types/semver/functions/rsort.d.ts new file mode 100644 index 000000000..ac0d4c800 --- /dev/null +++ b/node_modules/@types/semver/functions/rsort.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Sorts an array of semver entries in descending order using `compareBuild()`. + */ +declare function rsort(list: T[], optionsOrLoose?: boolean | semver.Options): T[]; + +export = rsort; diff --git a/node_modules/@types/semver/functions/satisfies.d.ts b/node_modules/@types/semver/functions/satisfies.d.ts new file mode 100644 index 000000000..81433820d --- /dev/null +++ b/node_modules/@types/semver/functions/satisfies.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return true if the version satisfies the range. + */ +declare function satisfies( + version: string | SemVer, + range: string | Range, + optionsOrLoose?: boolean | semver.Options, +): boolean; + +export = satisfies; diff --git a/node_modules/@types/semver/functions/sort.d.ts b/node_modules/@types/semver/functions/sort.d.ts new file mode 100644 index 000000000..bbc9b89fc --- /dev/null +++ b/node_modules/@types/semver/functions/sort.d.ts @@ -0,0 +1,9 @@ +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Sorts an array of semver entries in ascending order using `compareBuild()`. + */ +declare function sort(list: T[], optionsOrLoose?: boolean | semver.Options): T[]; + +export = sort; diff --git a/node_modules/@types/semver/functions/valid.d.ts b/node_modules/@types/semver/functions/valid.d.ts new file mode 100644 index 000000000..77d8a0ec9 --- /dev/null +++ b/node_modules/@types/semver/functions/valid.d.ts @@ -0,0 +1,11 @@ +import semver = require('../'); +import SemVer = require('../classes/semver'); +/** + * Return the parsed version as a string, or null if it's not valid. + */ +declare function valid( + version: string | SemVer | null | undefined, + optionsOrLoose?: boolean | semver.Options, +): string | null; + +export = valid; diff --git a/node_modules/@types/semver/index.d.ts b/node_modules/@types/semver/index.d.ts new file mode 100644 index 000000000..b2f453610 --- /dev/null +++ b/node_modules/@types/semver/index.d.ts @@ -0,0 +1,133 @@ +// Type definitions for semver 7.2 +// Project: https://github.com/npm/node-semver +// Definitions by: Bart van der Schoor +// BendingBender +// Lucian Buzzo +// Klaus Meinhardt +// ExE Boss +// Piotr Błażejewicz +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/semver + +/// + +// re-exports for index file + +// functions for working with versions +import semverParse = require('./functions/parse'); +import semverValid = require('./functions/valid'); +import semverClean = require('./functions/clean'); +import semverInc = require('./functions/inc'); +import semverDiff = require('./functions/diff'); +import semverMajor = require('./functions/major'); +import semverMinor = require('./functions/minor'); +import semverPatch = require('./functions/patch'); +import semverPrerelease = require('./functions/prerelease'); +import semverCompare = require('./functions/compare'); +import semverRcompare = require('./functions/rcompare'); +import semverCompareLoose = require('./functions/compare-loose'); +import semverCompareBuild = require('./functions/compare-build'); +import semverSort = require('./functions/sort'); +import semverRsort = require('./functions/rsort'); + +export { + semverParse as parse, + semverValid as valid, + semverClean as clean, + semverInc as inc, + semverDiff as diff, + semverMajor as major, + semverMinor as minor, + semverPatch as patch, + semverPrerelease as prerelease, + semverCompare as compare, + semverRcompare as rcompare, + semverCompareLoose as compareLoose, + semverCompareBuild as compareBuild, + semverSort as sort, + semverRsort as rsort, +}; + +// low-level comparators between versions +import semverGt = require('./functions/gt'); +import semverLt = require('./functions/lt'); +import semverEq = require('./functions/eq'); +import semverNeq = require('./functions/neq'); +import semverGte = require('./functions/gte'); +import semverLte = require('./functions/lte'); +import semverCmp = require('./functions/cmp'); +import semverCoerce = require('./functions/coerce'); + +export { + semverGt as gt, + semverLt as lt, + semverEq as eq, + semverNeq as neq, + semverGte as gte, + semverLte as lte, + semverCmp as cmp, + semverCoerce as coerce, +}; + +// working with ranges +import semverSatisfies = require('./functions/satisfies'); +import semverMaxSatisfying = require('./ranges/max-satisfying'); +import semverMinSatisfying = require('./ranges/min-satisfying'); +import semverToComparators = require('./ranges/to-comparators'); +import semverMinVersion = require('./ranges/min-version'); +import semverValidRange = require('./ranges/valid'); +import semverOutside = require('./ranges/outside'); +import semverGtr = require('./ranges/gtr'); +import semverLtr = require('./ranges/ltr'); +import semverIntersects = require('./ranges/intersects'); +import simplifyRange = require('./ranges/simplify'); + +export { + semverSatisfies as satisfies, + semverMaxSatisfying as maxSatisfying, + semverMinSatisfying as minSatisfying, + semverToComparators as toComparators, + semverMinVersion as minVersion, + semverValidRange as validRange, + semverOutside as outside, + semverGtr as gtr, + semverLtr as ltr, + semverIntersects as intersects, + simplifyRange as simplify, +}; + +// classes +import SemVer = require('./classes/semver'); +import Range = require('./classes/range'); +import Comparator = require('./classes/comparator'); + +export { SemVer, Range, Comparator }; + +// internals +import identifiers = require('./internals/identifiers'); +export import compareIdentifiers = identifiers.compareIdentifiers; +export import rcompareIdentifiers = identifiers.rcompareIdentifiers; + +export const SEMVER_SPEC_VERSION: '2.0.0'; + +export type ReleaseType = 'major' | 'premajor' | 'minor' | 'preminor' | 'patch' | 'prepatch' | 'prerelease'; + +export interface Options { + loose?: boolean; + includePrerelease?: boolean; +} +export interface CoerceOptions extends Options { + /** + * Used by `coerce()` to coerce from right to left. + * + * @default false + * + * @example + * coerce('1.2.3.4', { rtl: true }); + * // => SemVer { version: '2.3.4', ... } + * + * @since 6.2.0 + */ + rtl?: boolean; +} + +export type Operator = '===' | '!==' | '' | '=' | '==' | '!=' | '>' | '>=' | '<' | '<='; diff --git a/node_modules/@types/semver/internals/identifiers.d.ts b/node_modules/@types/semver/internals/identifiers.d.ts new file mode 100644 index 000000000..3666114ea --- /dev/null +++ b/node_modules/@types/semver/internals/identifiers.d.ts @@ -0,0 +1,13 @@ +/** + * Compares two identifiers, must be numeric strings or truthy/falsy values. + * + * Sorts in ascending order when passed to `Array.sort()`. + */ +export function compareIdentifiers(a: string | null | undefined, b: string | null | undefined): 1 | 0 | -1; + +/** + * The reverse of compareIdentifiers. + * + * Sorts in descending order when passed to `Array.sort()`. + */ +export function rcompareIdentifiers(a: string | null | undefined, b: string | null | undefined): 1 | 0 | -1; diff --git a/node_modules/@types/semver/package.json b/node_modules/@types/semver/package.json new file mode 100644 index 000000000..26cbaed8d --- /dev/null +++ b/node_modules/@types/semver/package.json @@ -0,0 +1,76 @@ +{ + "_from": "@types/semver", + "_id": "@types/semver@7.2.0", + "_inBundle": false, + "_integrity": "sha512-TbB0A8ACUWZt3Y6bQPstW9QNbhNeebdgLX4T/ZfkrswAfUzRiXrgd9seol+X379Wa589Pu4UEx9Uok0D4RjRCQ==", + "_location": "/@types/semver", + "_phantomChildren": {}, + "_requested": { + "type": "tag", + "registry": true, + "raw": "@types/semver", + "name": "@types/semver", + "escapedName": "@types%2fsemver", + "scope": "@types", + "rawSpec": "", + "saveSpec": null, + "fetchSpec": "latest" + }, + "_requiredBy": [ + "#DEV:/", + "#USER" + ], + "_resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.2.0.tgz", + "_shasum": "0d72066965e910531e1db4621c15d0ca36b8d83b", + "_spec": "@types/semver", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "bundleDependencies": false, + "contributors": [ + { + "name": "Bart van der Schoor", + "url": "https://github.com/Bartvds" + }, + { + "name": "BendingBender", + "url": "https://github.com/BendingBender" + }, + { + "name": "Lucian Buzzo", + "url": "https://github.com/LucianBuzzo" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss" + }, + { + "name": "Piotr Błażejewicz", + "url": "https://github.com/peterblazejewicz" + } + ], + "dependencies": { + "@types/node": "*" + }, + "deprecated": false, + "description": "TypeScript definitions for semver", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/semver", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/semver" + }, + "scripts": {}, + "typeScriptVersion": "2.9", + "types": "index.d.ts", + "typesPublisherContentHash": "a85c812786f6121af7012f9234a35445623e4933797ddf4b52584d65deaec9ef", + "version": "7.2.0" +} diff --git a/node_modules/@types/semver/preload.d.ts b/node_modules/@types/semver/preload.d.ts new file mode 100644 index 000000000..bc79de6ca --- /dev/null +++ b/node_modules/@types/semver/preload.d.ts @@ -0,0 +1,2 @@ +import semver = require('.'); +export = semver; diff --git a/node_modules/@types/semver/ranges/gtr.d.ts b/node_modules/@types/semver/ranges/gtr.d.ts new file mode 100644 index 000000000..f61362f41 --- /dev/null +++ b/node_modules/@types/semver/ranges/gtr.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return true if version is greater than all the versions possible in the range. + */ +declare function gtr( + version: string | SemVer, + range: string | Range, + optionsOrLoose?: boolean | semver.Options, +): boolean; + +export = gtr; diff --git a/node_modules/@types/semver/ranges/intersects.d.ts b/node_modules/@types/semver/ranges/intersects.d.ts new file mode 100644 index 000000000..264f2d49e --- /dev/null +++ b/node_modules/@types/semver/ranges/intersects.d.ts @@ -0,0 +1,13 @@ +import Range = require('../classes/range'); +import semver = require('../'); + +/** + * Return true if any of the ranges comparators intersect + */ +declare function intersects( + range1: string | Range, + range2: string | Range, + optionsOrLoose?: boolean | semver.Options, +): boolean; + +export = intersects; diff --git a/node_modules/@types/semver/ranges/ltr.d.ts b/node_modules/@types/semver/ranges/ltr.d.ts new file mode 100644 index 000000000..6cf9279ca --- /dev/null +++ b/node_modules/@types/semver/ranges/ltr.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return true if version is less than all the versions possible in the range. + */ +declare function ltr( + version: string | SemVer, + range: string | Range, + optionsOrLoose?: boolean | semver.Options, +): boolean; + +export = ltr; diff --git a/node_modules/@types/semver/ranges/max-satisfying.d.ts b/node_modules/@types/semver/ranges/max-satisfying.d.ts new file mode 100644 index 000000000..0150f8b31 --- /dev/null +++ b/node_modules/@types/semver/ranges/max-satisfying.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the highest version in the list that satisfies the range, or null if none of them do. + */ +declare function maxSatisfying( + versions: ReadonlyArray, + range: string | Range, + optionsOrLoose?: boolean | semver.Options, +): T | null; + +export = maxSatisfying; diff --git a/node_modules/@types/semver/ranges/min-satisfying.d.ts b/node_modules/@types/semver/ranges/min-satisfying.d.ts new file mode 100644 index 000000000..4fe1ab835 --- /dev/null +++ b/node_modules/@types/semver/ranges/min-satisfying.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the lowest version in the list that satisfies the range, or null if none of them do. + */ +declare function minSatisfying( + versions: ReadonlyArray, + range: string | Range, + optionsOrLoose?: boolean | semver.Options, +): T | null; + +export = minSatisfying; diff --git a/node_modules/@types/semver/ranges/min-version.d.ts b/node_modules/@types/semver/ranges/min-version.d.ts new file mode 100644 index 000000000..c2f590e72 --- /dev/null +++ b/node_modules/@types/semver/ranges/min-version.d.ts @@ -0,0 +1,10 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return the lowest version that can possibly match the given range. + */ +declare function minVersion(range: string | Range, optionsOrLoose?: boolean | semver.Options): SemVer | null; + +export = minVersion; diff --git a/node_modules/@types/semver/ranges/outside.d.ts b/node_modules/@types/semver/ranges/outside.d.ts new file mode 100644 index 000000000..9d45339fa --- /dev/null +++ b/node_modules/@types/semver/ranges/outside.d.ts @@ -0,0 +1,15 @@ +import Range = require('../classes/range'); +import SemVer = require('../classes/semver'); +import semver = require('../'); + +/** + * Return true if the version is outside the bounds of the range in either the high or low direction. + * The hilo argument must be either the string '>' or '<'. (This is the function called by gtr and ltr.) + */ +declare function outside( + version: string | SemVer, + range: string | Range, + hilo: '>' | '<', + optionsOrLoose?: boolean | semver.Options, +): boolean; +export = outside; diff --git a/node_modules/@types/semver/ranges/simplify.d.ts b/node_modules/@types/semver/ranges/simplify.d.ts new file mode 100644 index 000000000..6f42e8e75 --- /dev/null +++ b/node_modules/@types/semver/ranges/simplify.d.ts @@ -0,0 +1,14 @@ +import Range = require('../classes/range'); +import semver = require('../'); + +/** + * Return a "simplified" range that matches the same items in `versions` list as the range specified. + * Note that it does *not* guarantee that it would match the same versions in all cases, + * only for the set of versions provided. + * This is useful when generating ranges by joining together multiple versions with `||` programmatically, + * to provide the user with something a bit more ergonomic. + * If the provided range is shorter in string-length than the generated range, then that is returned. + */ +declare function simplify(ranges: string[], range: string | Range, options?: semver.Options): string | Range; + +export = simplify; diff --git a/node_modules/@types/semver/ranges/to-comparators.d.ts b/node_modules/@types/semver/ranges/to-comparators.d.ts new file mode 100644 index 000000000..96860288a --- /dev/null +++ b/node_modules/@types/semver/ranges/to-comparators.d.ts @@ -0,0 +1,9 @@ +import Range = require('../classes/range'); +import semver = require('../'); + +/** + * Mostly just for testing and legacy API reasons + */ +declare function toComparators(range: string | Range, optionsOrLoose?: boolean | semver.Options): string; + +export = toComparators; diff --git a/node_modules/@types/semver/ranges/valid.d.ts b/node_modules/@types/semver/ranges/valid.d.ts new file mode 100644 index 000000000..87afc432c --- /dev/null +++ b/node_modules/@types/semver/ranges/valid.d.ts @@ -0,0 +1,12 @@ +import Range = require('../classes/range'); +import semver = require('../'); + +/** + * Return the valid range or null if it's not valid + */ +declare function validRange( + range: string | Range | null | undefined, + optionsOrLoose?: boolean | semver.Options, +): string; + +export = validRange; diff --git a/node_modules/acorn/package.json b/node_modules/acorn/package.json index 40a5beda7..9c16c3498 100644 --- a/node_modules/acorn/package.json +++ b/node_modules/acorn/package.json @@ -1,39 +1,71 @@ { - "name": "acorn", + "_args": [ + [ + "acorn@7.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "acorn@7.1.1", + "_id": "acorn@7.1.1", + "_inBundle": false, + "_integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==", + "_location": "/acorn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn@7.1.1", + "name": "acorn", + "escapedName": "acorn", + "rawSpec": "7.1.1", + "saveSpec": null, + "fetchSpec": "7.1.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", + "_spec": "7.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "acorn": "bin/acorn" + }, + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, "description": "ECMAScript parser", - "homepage": "https://github.com/acornjs/acorn", - "main": "dist/acorn.js", - "types": "dist/acorn.d.ts", - "module": "dist/acorn.mjs", - "version": "7.1.1", "engines": { "node": ">=0.4.0" }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/acorn.js", "maintainers": [ { "name": "Marijn Haverbeke", "email": "marijnh@gmail.com", - "web": "https://marijnhaverbeke.nl" + "url": "https://marijnhaverbeke.nl" }, { "name": "Ingvar Stepanyan", "email": "me@rreverser.com", - "web": "https://rreverser.com/" + "url": "https://rreverser.com/" }, { "name": "Adrian Heine", - "web": "http://adrianheine.de" + "url": "http://adrianheine.de" } ], + "module": "dist/acorn.mjs", + "name": "acorn", "repository": { "type": "git", - "url": "https://github.com/acornjs/acorn.git" + "url": "git+https://github.com/acornjs/acorn.git" }, - "license": "MIT", "scripts": { "prepare": "cd ..; npm run build:main && npm run build:bin" }, - "bin": { - "acorn": "./bin/acorn" - } -} \ No newline at end of file + "types": "dist/acorn.d.ts", + "version": "7.1.1" +} diff --git a/node_modules/aggregate-error/package.json b/node_modules/aggregate-error/package.json index 975b087d9..623ad38bf 100644 --- a/node_modules/aggregate-error/package.json +++ b/node_modules/aggregate-error/package.json @@ -1,24 +1,60 @@ { - "name": "aggregate-error", - "version": "3.0.1", - "description": "Create an error from multiple errors", - "license": "MIT", - "repository": "sindresorhus/aggregate-error", + "_args": [ + [ + "aggregate-error@3.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "aggregate-error@3.0.1", + "_id": "aggregate-error@3.0.1", + "_inBundle": false, + "_integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", + "_location": "/aggregate-error", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "aggregate-error@3.0.1", + "name": "aggregate-error", + "escapedName": "aggregate-error", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/del/p-map", + "/p-map" + ], + "_resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/aggregate-error/issues" + }, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "description": "Create an error from multiple errors", + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.7.1", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/aggregate-error#readme", "keywords": [ "aggregate", "error", @@ -29,13 +65,14 @@ "iterable", "iterator" ], - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "license": "MIT", + "name": "aggregate-error", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/aggregate-error.git" }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.7.1", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.1" +} diff --git a/node_modules/ansi-align/node_modules/emoji-regex/package.json b/node_modules/ansi-align/node_modules/emoji-regex/package.json index 9b1f7fa11..2391b4dc1 100644 --- a/node_modules/ansi-align/node_modules/emoji-regex/package.json +++ b/node_modules/ansi-align/node_modules/emoji-regex/package.json @@ -1,10 +1,60 @@ { - "name": "emoji-regex", - "version": "7.0.3", + "_args": [ + [ + "emoji-regex@7.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "emoji-regex@7.0.3", + "_id": "emoji-regex@7.0.3", + "_inBundle": false, + "_integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "_location": "/ansi-align/emoji-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "emoji-regex@7.0.3", + "name": "emoji-regex", + "escapedName": "emoji-regex", + "rawSpec": "7.0.3", + "saveSpec": null, + "fetchSpec": "7.0.3" + }, + "_requiredBy": [ + "/ansi-align/string-width" + ], + "_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "_spec": "7.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "bugs": { + "url": "https://github.com/mathiasbynens/emoji-regex/issues" + }, "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "mocha": "^5.2.0", + "regexgen": "^1.3.0", + "unicode-11.0.0": "^0.7.7", + "unicode-tr51": "^9.0.1" + }, + "files": [ + "LICENSE-MIT.txt", + "index.js", + "index.d.ts", + "text.js", + "es2015/index.js", + "es2015/text.js" + ], "homepage": "https://mths.be/emoji-regex", - "main": "index.js", - "types": "index.d.ts", "keywords": [ "unicode", "regex", @@ -16,36 +66,17 @@ "emoji" ], "license": "MIT", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, + "main": "index.js", + "name": "emoji-regex", "repository": { "type": "git", - "url": "https://github.com/mathiasbynens/emoji-regex.git" + "url": "git+https://github.com/mathiasbynens/emoji-regex.git" }, - "bugs": "https://github.com/mathiasbynens/emoji-regex/issues", - "files": [ - "LICENSE-MIT.txt", - "index.js", - "index.d.ts", - "text.js", - "es2015/index.js", - "es2015/text.js" - ], "scripts": { "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js", "test": "mocha", "test:watch": "npm run test -- --watch" }, - "devDependencies": { - "@babel/cli": "^7.0.0", - "@babel/core": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.0.0", - "@babel/preset-env": "^7.0.0", - "mocha": "^5.2.0", - "regexgen": "^1.3.0", - "unicode-11.0.0": "^0.7.7", - "unicode-tr51": "^9.0.1" - } -} \ No newline at end of file + "types": "index.d.ts", + "version": "7.0.3" +} diff --git a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json index 26bde6763..ee98786f7 100644 --- a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json @@ -1,23 +1,53 @@ { - "name": "is-fullwidth-code-point", - "version": "2.0.0", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "license": "MIT", - "repository": "sindresorhus/is-fullwidth-code-point", + "_args": [ + [ + "is-fullwidth-code-point@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@2.0.0", + "_id": "is-fullwidth-code-point@2.0.0", + "_inBundle": false, + "_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "_location": "/ansi-align/is-fullwidth-code-point", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-fullwidth-code-point@2.0.0", + "name": "is-fullwidth-code-point", + "escapedName": "is-fullwidth-code-point", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/ansi-align/string-width" + ], + "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", "keywords": [ "fullwidth", "full-width", @@ -35,11 +65,17 @@ "detect", "check" ], - "devDependencies": { - "ava": "*", - "xo": "*" + "license": "MIT", + "name": "is-fullwidth-code-point", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "2.0.0", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/ansi-align/node_modules/string-width/package.json b/node_modules/ansi-align/node_modules/string-width/package.json index 999be2234..9a5ea2b71 100644 --- a/node_modules/ansi-align/node_modules/string-width/package.json +++ b/node_modules/ansi-align/node_modules/string-width/package.json @@ -1,23 +1,58 @@ { - "name": "string-width", - "version": "3.1.0", - "description": "Get the visual width of a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/string-width", + "_args": [ + [ + "string-width@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "string-width@3.1.0", + "_id": "string-width@3.1.0", + "_inBundle": false, + "_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "_location": "/ansi-align/string-width", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string-width@3.1.0", + "name": "string-width", + "escapedName": "string-width", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/ansi-align" + ], + "_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/string-width/issues" + }, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "description": "Get the visual width of a string - the number of columns required to display it", + "devDependencies": { + "ava": "^1.0.1", + "xo": "^0.23.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/string-width#readme", "keywords": [ "string", "str", @@ -44,13 +79,14 @@ "korean", "fixed-width" ], - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "license": "MIT", + "name": "string-width", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/string-width.git" }, - "devDependencies": { - "ava": "^1.0.1", - "xo": "^0.23.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.1.0" +} diff --git a/node_modules/ansi-align/node_modules/strip-ansi/package.json b/node_modules/ansi-align/node_modules/strip-ansi/package.json index 8da283c17..89103e49b 100644 --- a/node_modules/ansi-align/node_modules/strip-ansi/package.json +++ b/node_modules/ansi-align/node_modules/strip-ansi/package.json @@ -1,24 +1,58 @@ { - "name": "strip-ansi", - "version": "5.2.0", - "description": "Strip ANSI escape codes from a string", - "license": "MIT", - "repository": "chalk/strip-ansi", + "_args": [ + [ + "strip-ansi@5.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "strip-ansi@5.2.0", + "_id": "strip-ansi@5.2.0", + "_inBundle": false, + "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "_location": "/ansi-align/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@5.2.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/ansi-align/string-width" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "description": "Strip ANSI escape codes from a string", + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -43,12 +77,14 @@ "command-line", "text" ], - "dependencies": { - "ansi-regex": "^4.1.0" + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" }, - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "5.2.0" +} diff --git a/node_modules/ansi-align/package.json b/node_modules/ansi-align/package.json index dd0ee2023..b35be3e08 100644 --- a/node_modules/ansi-align/package.json +++ b/node_modules/ansi-align/package.json @@ -1,37 +1,45 @@ { - "name": "ansi-align", - "version": "3.0.0", - "description": "align-text with ANSI support for CLIs", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "release": "standard-version" - }, - "files": [ - "index.js" + "_args": [ + [ + "ansi-align@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": { - "type": "git", - "url": "git+https://github.com/nexdrew/ansi-align.git" + "_development": true, + "_from": "ansi-align@3.0.0", + "_id": "ansi-align@3.0.0", + "_inBundle": false, + "_integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "_location": "/ansi-align", + "_phantomChildren": { + "ansi-regex": "4.1.0" }, - "keywords": [ - "ansi", - "align", - "cli", - "center", - "pad" + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-align@3.0.0", + "name": "ansi-align", + "escapedName": "ansi-align", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/boxen" ], - "author": "nexdrew", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "nexdrew" + }, "bugs": { "url": "https://github.com/nexdrew/ansi-align/issues" }, - "homepage": "https://github.com/nexdrew/ansi-align#readme", "dependencies": { "string-width": "^3.0.0" }, + "description": "align-text with ANSI support for CLIs", "devDependencies": { "ava": "^1.0.1", "chalk": "^2.4.1", @@ -39,5 +47,30 @@ "nyc": "^13.1.0", "standard": "^12.0.1", "standard-version": "^4.4.0" - } -} \ No newline at end of file + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/nexdrew/ansi-align#readme", + "keywords": [ + "ansi", + "align", + "cli", + "center", + "pad" + ], + "license": "ISC", + "main": "index.js", + "name": "ansi-align", + "repository": { + "type": "git", + "url": "git+https://github.com/nexdrew/ansi-align.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/ansi-regex/package.json b/node_modules/ansi-regex/package.json index cbf44fadd..a9fc4330f 100644 --- a/node_modules/ansi-regex/package.json +++ b/node_modules/ansi-regex/package.json @@ -1,24 +1,53 @@ { - "name": "ansi-regex", - "version": "4.1.0", - "description": "Regular expression for matching ANSI escape codes", - "license": "MIT", - "repository": "chalk/ansi-regex", + "_args": [ + [ + "ansi-regex@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-regex@4.1.0", + "_id": "ansi-regex@4.1.0", + "_inBundle": false, + "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "_location": "/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@4.1.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/ansi-align/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "^0.25.0", + "xo": "^0.23.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava", - "view-supported": "node fixtures/view-codes.js" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/ansi-regex#readme", "keywords": [ "ansi", "styles", @@ -46,8 +75,15 @@ "find", "pattern" ], - "devDependencies": { - "ava": "^0.25.0", - "xo": "^0.23.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "4.1.0" +} diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json index a5eb4ff0f..50da3cacd 100644 --- a/node_modules/ansi-styles/package.json +++ b/node_modules/ansi-styles/package.json @@ -1,24 +1,61 @@ { - "name": "ansi-styles", - "version": "3.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", + "_args": [ + [ + "ansi-styles@3.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@3.2.1", + "_id": "ansi-styles@3.2.1", + "_inBundle": false, + "_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "_location": "/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@3.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "3.2.1", + "saveSpec": null, + "fetchSpec": "3.2.1" + }, + "_requiredBy": [ + "/chalk" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "_spec": "3.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "ava": { + "require": "babel-polyfill" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "color-convert": "^1.9.0" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -41,16 +78,15 @@ "command-line", "text" ], - "dependencies": { - "color-convert": "^1.9.0" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "ava": "*", - "babel-polyfill": "^6.23.0", - "svg-term-cli": "^2.1.1", - "xo": "*" + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava" }, - "ava": { - "require": "babel-polyfill" - } -} \ No newline at end of file + "version": "3.2.1" +} diff --git a/node_modules/argparse/package.json b/node_modules/argparse/package.json index b16de2518..8a3557e90 100644 --- a/node_modules/argparse/package.json +++ b/node_modules/argparse/package.json @@ -1,7 +1,58 @@ { - "name": "argparse", + "_args": [ + [ + "argparse@1.0.10", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "argparse@1.0.10", + "_id": "argparse@1.0.10", + "_inBundle": false, + "_integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "_location": "/argparse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "argparse@1.0.10", + "name": "argparse", + "escapedName": "argparse", + "rawSpec": "1.0.10", + "saveSpec": null, + "fetchSpec": "1.0.10" + }, + "_requiredBy": [ + "/js-yaml" + ], + "_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "_spec": "1.0.10", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/nodeca/argparse/issues" + }, + "contributors": [ + { + "name": "Eugene Shkuropat" + }, + { + "name": "Paul Jacobson" + } + ], + "dependencies": { + "sprintf-js": "~1.0.2" + }, "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", - "version": "1.0.10", + "devDependencies": { + "eslint": "^2.13.1", + "istanbul": "^0.4.5", + "mocha": "^3.1.0", + "ndoc": "^5.0.1" + }, + "files": [ + "index.js", + "lib/" + ], + "homepage": "https://github.com/nodeca/argparse#readme", "keywords": [ "cli", "parser", @@ -9,26 +60,14 @@ "option", "args" ], - "contributors": [ - "Eugene Shkuropat", - "Paul Jacobson" - ], - "files": [ - "index.js", - "lib/" - ], "license": "MIT", - "repository": "nodeca/argparse", + "name": "argparse", + "repository": { + "type": "git", + "url": "git+https://github.com/nodeca/argparse.git" + }, "scripts": { "test": "make test" }, - "dependencies": { - "sprintf-js": "~1.0.2" - }, - "devDependencies": { - "eslint": "^2.13.1", - "istanbul": "^0.4.5", - "mocha": "^3.1.0", - "ndoc": "^5.0.1" - } -} \ No newline at end of file + "version": "1.0.10" +} diff --git a/node_modules/array-find-index/package.json b/node_modules/array-find-index/package.json index ed7544350..a2b1eafdc 100644 --- a/node_modules/array-find-index/package.json +++ b/node_modules/array-find-index/package.json @@ -1,23 +1,53 @@ { - "name": "array-find-index", - "version": "1.0.2", - "description": "ES2015 `Array#findIndex()` ponyfill", - "license": "MIT", - "repository": "sindresorhus/array-find-index", + "_args": [ + [ + "array-find-index@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "array-find-index@1.0.2", + "_id": "array-find-index@1.0.2", + "_inBundle": false, + "_integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "_location": "/array-find-index", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "array-find-index@1.0.2", + "name": "array-find-index", + "escapedName": "array-find-index", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/currently-unhandled" + ], + "_resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/array-find-index/issues" + }, + "description": "ES2015 `Array#findIndex()` ponyfill", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/array-find-index#readme", "keywords": [ "es2015", "ponyfill", @@ -28,8 +58,14 @@ "findindex", "array" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "array-find-index", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/array-find-index.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.2" +} diff --git a/node_modules/array-union/package.json b/node_modules/array-union/package.json index ca61e74cb..47c91f2c4 100644 --- a/node_modules/array-union/package.json +++ b/node_modules/array-union/package.json @@ -1,24 +1,56 @@ { - "name": "array-union", - "version": "2.1.0", - "description": "Create an array of unique values, in order, from the input arrays", - "license": "MIT", - "repository": "sindresorhus/array-union", + "_args": [ + [ + "array-union@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "array-union@2.1.0", + "_id": "array-union@2.1.0", + "_inBundle": false, + "_integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "_location": "/array-union", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "array-union@2.1.0", + "name": "array-union", + "escapedName": "array-union", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/del/globby", + "/globby" + ], + "_resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/array-union/issues" + }, + "description": "Create an array of unique values, in order, from the input arrays", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/array-union#readme", "keywords": [ "array", "set", @@ -30,9 +62,14 @@ "combine", "merge" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "array-union", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/array-union.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/arrgv/package.json b/node_modules/arrgv/package.json index 620775aeb..7de924368 100644 --- a/node_modules/arrgv/package.json +++ b/node_modules/arrgv/package.json @@ -1,25 +1,52 @@ { - "name": "arrgv", - "version": "1.0.2", - "description": "Parsing string to array of args like node on bash do.", - "main": "index.js", - "author": "astur (http://kozlov.am/)", - "scripts": { - "test": "eslint . && nyc ava -v" + "_args": [ + [ + "arrgv@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "arrgv@1.0.2", + "_id": "arrgv@1.0.2", + "_inBundle": false, + "_integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", + "_location": "/arrgv", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arrgv@1.0.2", + "name": "arrgv", + "escapedName": "arrgv", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" }, - "repository": { - "type": "git", - "url": "https://github.com/astur/arrgv.git" + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "astur", + "email": "astur@yandex.ru", + "url": "http://kozlov.am/" }, - "engines": { - "node": ">=8.0.0" + "bugs": { + "url": "https://github.com/astur/arrgv/issues" }, + "description": "Parsing string to array of args like node on bash do.", "devDependencies": { "ava": "^0.25.0", "eslint": "^5.4.0", "eslint-config-astur": "^1.6.1", "nyc": "^12.0.2" }, + "engines": { + "node": ">=8.0.0" + }, + "homepage": "https://github.com/astur/arrgv#readme", "keywords": [ "arguments", "cli", @@ -29,5 +56,15 @@ "args", "argv" ], - "license": "MIT" -} \ No newline at end of file + "license": "MIT", + "main": "index.js", + "name": "arrgv", + "repository": { + "type": "git", + "url": "git+https://github.com/astur/arrgv.git" + }, + "scripts": { + "test": "eslint . && nyc ava -v" + }, + "version": "1.0.2" +} diff --git a/node_modules/arrify/package.json b/node_modules/arrify/package.json index 223b18354..30aff4cb8 100644 --- a/node_modules/arrify/package.json +++ b/node_modules/arrify/package.json @@ -1,24 +1,55 @@ { - "name": "arrify", - "version": "2.0.1", - "description": "Convert a value to an array", - "license": "MIT", - "repository": "sindresorhus/arrify", + "_args": [ + [ + "arrify@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "arrify@2.0.1", + "_id": "arrify@2.0.1", + "_inBundle": false, + "_integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "_location": "/arrify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arrify@2.0.1", + "name": "arrify", + "escapedName": "arrify", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/arrify/issues" + }, + "description": "Convert a value to an array", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/arrify#readme", "keywords": [ "array", "arrify", @@ -27,9 +58,14 @@ "value", "ensure" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "arrify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/arrify.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.1" +} diff --git a/node_modules/ava/node_modules/acorn-walk/package.json b/node_modules/ava/node_modules/acorn-walk/package.json index 1cbd11682..a0de0d67c 100644 --- a/node_modules/ava/node_modules/acorn-walk/package.json +++ b/node_modules/ava/node_modules/acorn-walk/package.json @@ -1,36 +1,68 @@ { - "name": "acorn-walk", + "_args": [ + [ + "acorn-walk@7.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "acorn-walk@7.1.1", + "_id": "acorn-walk@7.1.1", + "_inBundle": false, + "_integrity": "sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==", + "_location": "/ava/acorn-walk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn-walk@7.1.1", + "name": "acorn-walk", + "escapedName": "acorn-walk", + "rawSpec": "7.1.1", + "saveSpec": null, + "fetchSpec": "7.1.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.1.1.tgz", + "_spec": "7.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, "description": "ECMAScript (ESTree) AST walker", - "homepage": "https://github.com/acornjs/acorn", - "main": "dist/walk.js", - "types": "dist/walk.d.ts", - "module": "dist/walk.mjs", - "version": "7.1.1", "engines": { "node": ">=0.4.0" }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/walk.js", "maintainers": [ { "name": "Marijn Haverbeke", "email": "marijnh@gmail.com", - "web": "https://marijnhaverbeke.nl" + "url": "https://marijnhaverbeke.nl" }, { "name": "Ingvar Stepanyan", "email": "me@rreverser.com", - "web": "https://rreverser.com/" + "url": "https://rreverser.com/" }, { "name": "Adrian Heine", - "web": "http://adrianheine.de" + "url": "http://adrianheine.de" } ], + "module": "dist/walk.mjs", + "name": "acorn-walk", "repository": { "type": "git", - "url": "https://github.com/acornjs/acorn.git" + "url": "git+https://github.com/acornjs/acorn.git" }, "scripts": { "prepare": "cd ..; npm run build:walk" }, - "license": "MIT" -} \ No newline at end of file + "types": "dist/walk.d.ts", + "version": "7.1.1" +} diff --git a/node_modules/ava/node_modules/ansi-styles/package.json b/node_modules/ava/node_modules/ansi-styles/package.json index 1a7731952..a65916a36 100644 --- a/node_modules/ava/node_modules/ansi-styles/package.json +++ b/node_modules/ava/node_modules/ansi-styles/package.json @@ -1,26 +1,63 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/ava/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/ava", + "/ava/chalk" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +80,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/ava/node_modules/chalk/package.json b/node_modules/ava/node_modules/chalk/package.json index bb745bb89..192382986 100644 --- a/node_modules/ava/node_modules/chalk/package.json +++ b/node_modules/ava/node_modules/chalk/package.json @@ -1,22 +1,61 @@ { - "name": "chalk", - "version": "4.0.0", + "_args": [ + [ + "chalk@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "chalk@4.0.0", + "_id": "chalk@4.0.0", + "_inBundle": false, + "_integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", + "_location": "/ava/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@4.0.0", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "funding": "https://github.com/chalk/chalk?sponsor=1", - "main": "source", + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^4.0.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^15.0.0", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.28.2" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, "files": [ "source", "index.d.ts" ], + "funding": "https://github.com/chalk/chalk?sponsor=1", + "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -40,21 +79,18 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "license": "MIT", + "main": "source", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^4.0.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^15.0.0", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.28.2" + "scripts": { + "bench": "matcha benchmark.js", + "test": "xo && nyc ava && tsd" }, + "version": "4.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", @@ -65,4 +101,4 @@ "unicorn/better-regex": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/ava/node_modules/color-convert/package.json b/node_modules/ava/node_modules/color-convert/package.json index d169f869b..e97b21293 100644 --- a/node_modules/ava/node_modules/color-convert/package.json +++ b/node_modules/ava/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/ava/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/ava/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/ava/node_modules/color-name/package.json b/node_modules/ava/node_modules/color-name/package.json index fecb8dcfb..72b1ad495 100644 --- a/node_modules/ava/node_modules/color-name/package.json +++ b/node_modules/ava/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/ava/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/ava/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/ava/node_modules/escape-string-regexp/package.json b/node_modules/ava/node_modules/escape-string-regexp/package.json index d7bec7c3d..0e87af48a 100644 --- a/node_modules/ava/node_modules/escape-string-regexp/package.json +++ b/node_modules/ava/node_modules/escape-string-regexp/package.json @@ -1,28 +1,55 @@ { - "name": "escape-string-regexp", - "version": "2.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", + "_args": [ + [ + "escape-string-regexp@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "escape-string-regexp@2.0.0", + "_id": "escape-string-regexp@2.0.0", + "_inBundle": false, + "_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "_location": "/ava/escape-string-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-string-regexp@2.0.0", + "name": "escape-string-regexp", + "escapedName": "escape-string-regexp", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/ava/stack-utils" + ], + "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "maintainers": [ - "Sindre Sorhus (sindresorhus.com)", - "Joshua Boy Nicolai Appelman (jbna.nl)" - ], + "bugs": { + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + "description": "Escape RegExp special characters", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -35,9 +62,26 @@ "special", "characters" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Boy Nicolai Appelman", + "email": "joshua@jbna.nl", + "url": "jbna.nl" + } + ], + "name": "escape-string-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/ava/node_modules/has-flag/package.json b/node_modules/ava/node_modules/has-flag/package.json index 55d0058e4..3ab4b51fc 100644 --- a/node_modules/ava/node_modules/has-flag/package.json +++ b/node_modules/ava/node_modules/has-flag/package.json @@ -1,24 +1,55 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", + "_args": [ + [ + "has-flag@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-flag@4.0.0", + "_id": "has-flag@4.0.0", + "_inBundle": false, + "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "_location": "/ava/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@4.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/ava/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -38,9 +69,14 @@ "minimist", "optimist" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/ava/node_modules/source-map-support/package.json b/node_modules/ava/node_modules/source-map-support/package.json index f15f25283..cfe0d3ea7 100644 --- a/node_modules/ava/node_modules/source-map-support/package.json +++ b/node_modules/ava/node_modules/source-map-support/package.json @@ -1,18 +1,41 @@ { - "name": "source-map-support", - "description": "Fixes stack traces for files with source maps", - "version": "0.5.19", - "main": "./source-map-support.js", - "scripts": { - "build": "node build.js", - "serve-tests": "http-server -p 1336", - "prepublish": "npm run build", - "test": "mocha" + "_args": [ + [ + "source-map-support@0.5.19", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "source-map-support@0.5.19", + "_id": "source-map-support@0.5.19", + "_inBundle": false, + "_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "_location": "/ava/source-map-support", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map-support@0.5.19", + "name": "source-map-support", + "escapedName": "source-map-support", + "rawSpec": "0.5.19", + "saveSpec": null, + "fetchSpec": "0.5.19" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "_spec": "0.5.19", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/evanw/node-source-map-support/issues" }, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" }, + "description": "Fixes stack traces for files with source maps", "devDependencies": { "browserify": "^4.2.3", "coffeescript": "^1.12.7", @@ -20,12 +43,19 @@ "mocha": "^3.5.3", "webpack": "^1.15.0" }, + "homepage": "https://github.com/evanw/node-source-map-support#readme", + "license": "MIT", + "main": "./source-map-support.js", + "name": "source-map-support", "repository": { "type": "git", - "url": "https://github.com/evanw/node-source-map-support" + "url": "git+https://github.com/evanw/node-source-map-support.git" }, - "bugs": { - "url": "https://github.com/evanw/node-source-map-support/issues" + "scripts": { + "build": "node build.js", + "prepublish": "npm run build", + "serve-tests": "http-server -p 1336", + "test": "mocha" }, - "license": "MIT" -} \ No newline at end of file + "version": "0.5.19" +} diff --git a/node_modules/ava/node_modules/stack-utils/package.json b/node_modules/ava/node_modules/stack-utils/package.json index 186d32844..3674c4d75 100644 --- a/node_modules/ava/node_modules/stack-utils/package.json +++ b/node_modules/ava/node_modules/stack-utils/package.json @@ -1,29 +1,45 @@ { - "name": "stack-utils", - "version": "2.0.2", - "description": "Captures and cleans stack traces", - "license": "MIT", - "repository": "tapjs/stack-utils", + "_args": [ + [ + "stack-utils@2.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "stack-utils@2.0.2", + "_id": "stack-utils@2.0.2", + "_inBundle": false, + "_integrity": "sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==", + "_location": "/ava/stack-utils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "stack-utils@2.0.2", + "name": "stack-utils", + "escapedName": "stack-utils", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "engines": { - "node": ">=10" + "bugs": { + "url": "https://github.com/tapjs/stack-utils/issues" }, - "scripts": { - "test": "tap --no-esm --100", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" - }, - "files": [ - "index.js" - ], "dependencies": { "escape-string-regexp": "^2.0.0" }, + "description": "Captures and cleans stack traces", "devDependencies": { "bluebird": "^3.7.2", "coveralls": "^3.0.9", @@ -31,5 +47,25 @@ "pify": "^4.0.1", "q": "^1.5.1", "tap": "=14.10.2-unbundled" - } -} \ No newline at end of file + }, + "engines": { + "node": ">=10" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/tapjs/stack-utils#readme", + "license": "MIT", + "name": "stack-utils", + "repository": { + "type": "git", + "url": "git+https://github.com/tapjs/stack-utils.git" + }, + "scripts": { + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "preversion": "npm test", + "test": "tap --no-esm --100" + }, + "version": "2.0.2" +} diff --git a/node_modules/ava/node_modules/supports-color/package.json b/node_modules/ava/node_modules/supports-color/package.json index 79856038d..421e1ca02 100644 --- a/node_modules/ava/node_modules/supports-color/package.json +++ b/node_modules/ava/node_modules/supports-color/package.json @@ -1,24 +1,59 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", + "_args": [ + [ + "supports-color@7.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supports-color@7.1.0", + "_id": "supports-color@7.1.0", + "_inBundle": false, + "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "_location": "/ava/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@7.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "7.1.0", + "saveSpec": null, + "fetchSpec": "7.1.0" + }, + "_requiredBy": [ + "/ava/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "_spec": "7.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^4.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -41,13 +76,14 @@ "truecolor", "16m" ], - "dependencies": { - "has-flag": "^4.0.0" + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "7.1.0" +} diff --git a/node_modules/ava/package.json b/node_modules/ava/package.json index 03146bb13..a9d513e3b 100644 --- a/node_modules/ava/package.json +++ b/node_modules/ava/package.json @@ -1,59 +1,43 @@ { - "name": "ava", - "version": "3.8.1", - "description": "Testing can be a drag. AVA helps you get it done.", - "license": "MIT", - "repository": "avajs/ava", - "homepage": "https://avajs.dev", - "bin": "cli.js", - "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" + "_args": [ + [ + "ava@3.8.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ava@3.8.1", + "_id": "ava@3.8.1", + "_inBundle": false, + "_integrity": "sha512-OPWrTxcf1EbtAaGGFQPLbx4AaVqPrFMumKOKn2SzIRo+RTKb33lF2aoVnWqBeZaJ68uSc9R6jqIE7qkG6O33uQ==", + "_location": "/ava", + "_phantomChildren": { + "@types/color-name": "1.1.1", + "buffer-from": "1.1.1", + "source-map": "0.6.1" }, - "scripts": { - "test": "xo && tsd && c8 tap" + "_requested": { + "type": "version", + "registry": true, + "raw": "ava@3.8.1", + "name": "ava", + "escapedName": "ava", + "rawSpec": "3.8.1", + "saveSpec": null, + "fetchSpec": "3.8.1" }, - "files": [ - "lib", - "*.js", - "!*.config.js", - "index.d.ts" - ], - "keywords": [ - "🦄", - "test", - "runner", - "testing", - "ava", - "concurrent", - "parallel", - "fast", - "tdd", - "cli-app", - "cli", - "jest", - "mocha", - "tape", - "tap", - "qunit", - "jasmine", - "babel", - "assert", - "assertion", - "promise", - "promises", - "async", - "function", - "await", - "generator", - "generators", - "yield", - "observable", - "observables", - "unit", - "snapshot", - "expect", - "typescript" + "_requiredBy": [ + "#DEV:/" ], + "_resolved": "https://registry.npmjs.org/ava/-/ava-3.8.1.tgz", + "_spec": "3.8.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "ava": "cli.js" + }, + "bugs": { + "url": "https://github.com/avajs/ava/issues" + }, "dependencies": { "@concordance/react": "^2.0.0", "acorn": "^7.1.1", @@ -111,6 +95,7 @@ "write-file-atomic": "^3.0.3", "yargs": "^15.3.1" }, + "description": "Testing can be a drag. AVA helps you get it done.", "devDependencies": { "@ava/babel": "^1.0.1", "@babel/plugin-proposal-do-expressions": "^7.8.3", @@ -136,5 +121,61 @@ "typescript": "^3.8.3", "xo": "^0.30.0", "zen-observable": "^0.8.15" - } -} \ No newline at end of file + }, + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" + }, + "files": [ + "lib", + "*.js", + "!*.config.js", + "index.d.ts" + ], + "homepage": "https://avajs.dev", + "keywords": [ + "🦄", + "test", + "runner", + "testing", + "ava", + "concurrent", + "parallel", + "fast", + "tdd", + "cli-app", + "cli", + "jest", + "mocha", + "tape", + "tap", + "qunit", + "jasmine", + "babel", + "assert", + "assertion", + "promise", + "promises", + "async", + "function", + "await", + "generator", + "generators", + "yield", + "observable", + "observables", + "unit", + "snapshot", + "expect", + "typescript" + ], + "license": "MIT", + "name": "ava", + "repository": { + "type": "git", + "url": "git+https://github.com/avajs/ava.git" + }, + "scripts": { + "test": "xo && tsd && c8 tap" + }, + "version": "3.8.1" +} diff --git a/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json index 55ba6f00e..2ebc34e51 100644 --- a/node_modules/balanced-match/package.json +++ b/node_modules/balanced-match/package.json @@ -1,22 +1,48 @@ { - "name": "balanced-match", - "description": "Match balanced character pairs, like \"{\" and \"}\"", - "version": "1.0.0", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/balanced-match.git" + "_args": [ + [ + "balanced-match@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "balanced-match@1.0.0", + "_id": "balanced-match@1.0.0", + "_inBundle": false, + "_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "_location": "/balanced-match", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "balanced-match@1.0.0", + "name": "balanced-match", + "escapedName": "balanced-match", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" }, - "homepage": "https://github.com/juliangruber/balanced-match", - "main": "index.js", - "scripts": { - "test": "make test", - "bench": "make bench" + "_requiredBy": [ + "/brace-expansion" + ], + "_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" }, "dependencies": {}, + "description": "Match balanced character pairs, like \"{\" and \"}\"", "devDependencies": { "matcha": "^0.7.0", "tape": "^4.6.0" }, + "homepage": "https://github.com/juliangruber/balanced-match", "keywords": [ "match", "regexp", @@ -24,12 +50,17 @@ "balanced", "parse" ], - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" - }, "license": "MIT", + "main": "index.js", + "name": "balanced-match", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "scripts": { + "bench": "make bench", + "test": "make test" + }, "testling": { "files": "test/*.js", "browsers": [ @@ -45,5 +76,6 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - } -} \ No newline at end of file + }, + "version": "1.0.0" +} diff --git a/node_modules/before-after-hook/package.json b/node_modules/before-after-hook/package.json index ddd5acbe7..255d01315 100644 --- a/node_modules/before-after-hook/package.json +++ b/node_modules/before-after-hook/package.json @@ -1,45 +1,40 @@ { - "name": "before-after-hook", - "version": "2.1.0", - "description": "asynchronous before/error/after hooks for internal functionality", - "files": [ - "index.js", - "index.d.ts", - "lib" + "_args": [ + [ + "before-after-hook@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "types": "./index.d.ts", - "scripts": { - "prebuild": "rimraf dist && mkdirp dist", - "build": "browserify index.js --standalone=Hook > dist/before-after-hook.js", - "postbuild": "uglifyjs dist/before-after-hook.js -mc > dist/before-after-hook.min.js", - "pretest": "standard", - "test": "npm run -s test:node | tap-spec", - "posttest": "npm run validate:ts", - "test:node": "node test", - "test:watch": "gaze 'clear && node test | tap-min' 'test/**/*.js' 'index.js' 'lib/**/*.js'", - "test:coverage": "istanbul cover test", - "test:coverage:upload": "istanbul-coveralls", - "validate:ts": "tsc --strict --target es6 index.d.ts", - "postvalidate:ts": "tsc --noEmit --strict --target es6 test/typescript-validate.ts", - "presemantic-release": "npm run build", - "semantic-release": "semantic-release" - }, - "repository": { - "type": "git", - "url": "https://github.com/gr2m/before-after-hook.git" + "_from": "before-after-hook@2.1.0", + "_id": "before-after-hook@2.1.0", + "_inBundle": false, + "_integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==", + "_location": "/before-after-hook", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "before-after-hook@2.1.0", + "name": "before-after-hook", + "escapedName": "before-after-hook", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" }, - "keywords": [ - "hook", - "hooks", - "api" + "_requiredBy": [ + "/@octokit/core" ], - "author": "Gregor Martynus", - "license": "Apache-2.0", + "_resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Gregor Martynus" + }, "bugs": { "url": "https://github.com/gr2m/before-after-hook/issues" }, - "homepage": "https://github.com/gr2m/before-after-hook#readme", "dependencies": {}, + "description": "asynchronous before/error/after hooks for internal functionality", "devDependencies": { "browserify": "^16.0.0", "gaze-cli": "^0.2.0", @@ -56,6 +51,19 @@ "typescript": "^3.5.3", "uglify-js": "^3.0.0" }, + "files": [ + "index.js", + "index.d.ts", + "lib" + ], + "homepage": "https://github.com/gr2m/before-after-hook#readme", + "keywords": [ + "hook", + "hooks", + "api" + ], + "license": "Apache-2.0", + "name": "before-after-hook", "release": { "publish": [ "@semantic-release/npm", @@ -66,5 +74,27 @@ ] } ] - } -} \ No newline at end of file + }, + "repository": { + "type": "git", + "url": "git+https://github.com/gr2m/before-after-hook.git" + }, + "scripts": { + "build": "browserify index.js --standalone=Hook > dist/before-after-hook.js", + "postbuild": "uglifyjs dist/before-after-hook.js -mc > dist/before-after-hook.min.js", + "posttest": "npm run validate:ts", + "postvalidate:ts": "tsc --noEmit --strict --target es6 test/typescript-validate.ts", + "prebuild": "rimraf dist && mkdirp dist", + "presemantic-release": "npm run build", + "pretest": "standard", + "semantic-release": "semantic-release", + "test": "npm run -s test:node | tap-spec", + "test:coverage": "istanbul cover test", + "test:coverage:upload": "istanbul-coveralls", + "test:node": "node test", + "test:watch": "gaze 'clear && node test | tap-min' 'test/**/*.js' 'index.js' 'lib/**/*.js'", + "validate:ts": "tsc --strict --target es6 index.d.ts" + }, + "types": "./index.d.ts", + "version": "2.1.0" +} diff --git a/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json index e1ec6292f..1f141aba2 100644 --- a/node_modules/binary-extensions/package.json +++ b/node_modules/binary-extensions/package.json @@ -1,26 +1,57 @@ { - "name": "binary-extensions", - "version": "2.0.0", - "description": "List of binary file extensions", - "license": "MIT", - "repository": "sindresorhus/binary-extensions", + "_args": [ + [ + "binary-extensions@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "binary-extensions@2.0.0", + "_id": "binary-extensions@2.0.0", + "_inBundle": false, + "_integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", + "_location": "/binary-extensions", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "binary-extensions@2.0.0", + "name": "binary-extensions", + "escapedName": "binary-extensions", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/is-binary-path" + ], + "_resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/binary-extensions/issues" + }, + "description": "List of binary file extensions", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "binary-extensions.json", "binary-extensions.json.d.ts" ], + "homepage": "https://github.com/sindresorhus/binary-extensions#readme", "keywords": [ "binary", "extensions", @@ -30,9 +61,14 @@ "list", "array" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "binary-extensions", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/binary-extensions.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/blueimp-md5/package.json b/node_modules/blueimp-md5/package.json index c7b89fc14..38d1733d8 100644 --- a/node_modules/blueimp-md5/package.json +++ b/node_modules/blueimp-md5/package.json @@ -1,28 +1,47 @@ { - "name": "blueimp-md5", - "version": "2.15.0", - "title": "JavaScript MD5", - "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.", - "keywords": [ - "javascript", - "md5" + "_args": [ + [ + "blueimp-md5@2.15.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "homepage": "https://github.com/blueimp/JavaScript-MD5", + "_development": true, + "_from": "blueimp-md5@2.15.0", + "_id": "blueimp-md5@2.15.0", + "_inBundle": false, + "_integrity": "sha512-Zc6sowqlCWu3+V0bocZwdaPPXlRv14EHtYcQDCOghj9EdyKLMkAOODBh3HHAx5r7QRylDYCOaXa/b/edgBLDpA==", + "_location": "/blueimp-md5", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "blueimp-md5@2.15.0", + "name": "blueimp-md5", + "escapedName": "blueimp-md5", + "rawSpec": "2.15.0", + "saveSpec": null, + "fetchSpec": "2.15.0" + }, + "_requiredBy": [ + "/md5-hex" + ], + "_resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.15.0.tgz", + "_spec": "2.15.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sebastian Tschan", "url": "https://blueimp.net" }, + "bugs": { + "url": "https://github.com/blueimp/JavaScript-MD5/issues" + }, "contributors": [ { "name": "Paul Johnston", "url": "http://pajhome.org.uk/crypt/md5" } ], - "repository": { - "type": "git", - "url": "git://github.com/blueimp/JavaScript-MD5.git" - }, - "license": "MIT", + "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.", "devDependencies": { "chai": "4", "eslint": "6", @@ -49,6 +68,18 @@ "js/*.min.js", "test/vendor" ], + "files": [ + "js/*.js", + "js/*.js.map" + ], + "homepage": "https://github.com/blueimp/JavaScript-MD5", + "keywords": [ + "javascript", + "md5" + ], + "license": "MIT", + "main": "js/md5.js", + "name": "blueimp-md5", "prettier": { "arrowParens": "avoid", "proseWrap": "always", @@ -56,18 +87,19 @@ "singleQuote": true, "trailingComma": "none" }, + "repository": { + "type": "git", + "url": "git://github.com/blueimp/JavaScript-MD5.git" + }, "scripts": { - "lint": "eslint .", - "unit": "mocha", - "test": "npm run lint && npm run unit", "build": "cd js && uglifyjs md5.js -c -m -o md5.min.js --source-map url=md5.min.js.map", + "lint": "eslint .", + "postversion": "git push --tags origin master master:gh-pages && npm publish", "preversion": "npm test", - "version": "npm run build && git add -A js", - "postversion": "git push --tags origin master master:gh-pages && npm publish" + "test": "npm run lint && npm run unit", + "unit": "mocha", + "version": "npm run build && git add -A js" }, - "files": [ - "js/*.js", - "js/*.js.map" - ], - "main": "js/md5.js" -} \ No newline at end of file + "title": "JavaScript MD5", + "version": "2.15.0" +} diff --git a/node_modules/boxen/node_modules/ansi-styles/package.json b/node_modules/boxen/node_modules/ansi-styles/package.json index 1a7731952..56a2df4ab 100644 --- a/node_modules/boxen/node_modules/ansi-styles/package.json +++ b/node_modules/boxen/node_modules/ansi-styles/package.json @@ -1,26 +1,62 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/boxen/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/boxen/chalk" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +79,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/boxen/node_modules/chalk/package.json b/node_modules/boxen/node_modules/chalk/package.json index b68e931e7..54e4f32e4 100644 --- a/node_modules/boxen/node_modules/chalk/package.json +++ b/node_modules/boxen/node_modules/chalk/package.json @@ -1,21 +1,60 @@ { - "name": "chalk", - "version": "3.0.0", + "_args": [ + [ + "chalk@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "chalk@3.0.0", + "_id": "chalk@3.0.0", + "_inBundle": false, + "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "_location": "/boxen/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@3.0.0", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/boxen" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, "files": [ "source", "index.d.ts" ], + "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -39,25 +78,22 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "license": "MIT", + "main": "source", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" + "scripts": { + "bench": "matcha benchmark.js", + "test": "xo && nyc ava && tsd" }, + "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", "unicorn/prefer-includes": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/boxen/node_modules/color-convert/package.json b/node_modules/boxen/node_modules/color-convert/package.json index d169f869b..a57c5fd66 100644 --- a/node_modules/boxen/node_modules/color-convert/package.json +++ b/node_modules/boxen/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/boxen/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/boxen/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/boxen/node_modules/color-name/package.json b/node_modules/boxen/node_modules/color-name/package.json index fecb8dcfb..03a6f45f2 100644 --- a/node_modules/boxen/node_modules/color-name/package.json +++ b/node_modules/boxen/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/boxen/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/boxen/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/boxen/node_modules/has-flag/package.json b/node_modules/boxen/node_modules/has-flag/package.json index 55d0058e4..a90aa7cbc 100644 --- a/node_modules/boxen/node_modules/has-flag/package.json +++ b/node_modules/boxen/node_modules/has-flag/package.json @@ -1,24 +1,55 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", + "_args": [ + [ + "has-flag@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-flag@4.0.0", + "_id": "has-flag@4.0.0", + "_inBundle": false, + "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "_location": "/boxen/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@4.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/boxen/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -38,9 +69,14 @@ "minimist", "optimist" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/boxen/node_modules/supports-color/package.json b/node_modules/boxen/node_modules/supports-color/package.json index 79856038d..4d0e14470 100644 --- a/node_modules/boxen/node_modules/supports-color/package.json +++ b/node_modules/boxen/node_modules/supports-color/package.json @@ -1,24 +1,59 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", + "_args": [ + [ + "supports-color@7.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supports-color@7.1.0", + "_id": "supports-color@7.1.0", + "_inBundle": false, + "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "_location": "/boxen/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@7.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "7.1.0", + "saveSpec": null, + "fetchSpec": "7.1.0" + }, + "_requiredBy": [ + "/boxen/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "_spec": "7.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^4.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -41,13 +76,14 @@ "truecolor", "16m" ], - "dependencies": { - "has-flag": "^4.0.0" + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "7.1.0" +} diff --git a/node_modules/boxen/node_modules/type-fest/package.json b/node_modules/boxen/node_modules/type-fest/package.json index 4ae131df3..6a9ce2409 100644 --- a/node_modules/boxen/node_modules/type-fest/package.json +++ b/node_modules/boxen/node_modules/type-fest/package.json @@ -1,24 +1,58 @@ { - "name": "type-fest", - "version": "0.8.1", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", + "_args": [ + [ + "type-fest@0.8.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "type-fest@0.8.1", + "_id": "type-fest@0.8.1", + "_inBundle": false, + "_integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "_location": "/boxen/type-fest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "type-fest@0.8.1", + "name": "type-fest", + "escapedName": "type-fest", + "rawSpec": "0.8.1", + "saveSpec": null, + "fetchSpec": "0.8.1" + }, + "_requiredBy": [ + "/boxen" + ], + "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "_spec": "0.8.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/type-fest/issues" + }, + "description": "A collection of essential TypeScript types", + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^2.2.0", + "@typescript-eslint/parser": "^2.2.0", + "eslint-config-xo-typescript": "^0.18.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && tsd" - }, "files": [ "index.d.ts", "source" ], + "homepage": "https://github.com/sindresorhus/type-fest#readme", "keywords": [ "typescript", "ts", @@ -30,14 +64,16 @@ "merge", "json" ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^2.2.0", - "@typescript-eslint/parser": "^2.2.0", - "eslint-config-xo-typescript": "^0.18.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "license": "(MIT OR CC0-1.0)", + "name": "type-fest", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/type-fest.git" }, + "scripts": { + "test": "xo && tsd" + }, + "version": "0.8.1", "xo": { "extends": "xo-typescript", "extensions": [ @@ -48,4 +84,4 @@ "@typescript-eslint/indent": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/boxen/package.json b/node_modules/boxen/package.json index 9ecbd6db5..2dc70f5bd 100644 --- a/node_modules/boxen/package.json +++ b/node_modules/boxen/package.json @@ -1,25 +1,69 @@ { - "name": "boxen", - "version": "4.2.0", - "description": "Create boxes in the terminal", - "license": "MIT", - "repository": "sindresorhus/boxen", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "boxen@4.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "boxen@4.2.0", + "_id": "boxen@4.2.0", + "_inBundle": false, + "_integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", + "_location": "/boxen", + "_phantomChildren": { + "@types/color-name": "1.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "boxen@4.2.0", + "name": "boxen", + "escapedName": "boxen", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/boxen/issues" + }, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "description": "Create boxes in the terminal", + "devDependencies": { + "ava": "^2.1.0", + "nyc": "^14.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/boxen#readme", "keywords": [ "cli", "box", @@ -32,20 +76,14 @@ "border", "text" ], - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" + "license": "MIT", + "name": "boxen", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/boxen.git" }, - "devDependencies": { - "ava": "^2.1.0", - "nyc": "^14.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "version": "4.2.0" +} diff --git a/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json index c8e652883..16086abc3 100644 --- a/node_modules/brace-expansion/package.json +++ b/node_modules/brace-expansion/package.json @@ -1,33 +1,64 @@ { - "name": "brace-expansion", - "description": "Brace expansion as known from sh/bash", - "version": "1.1.11", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/brace-expansion.git" + "_args": [ + [ + "brace-expansion@1.1.11", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "brace-expansion@1.1.11", + "_id": "brace-expansion@1.1.11", + "_inBundle": false, + "_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "_location": "/brace-expansion", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "brace-expansion@1.1.11", + "name": "brace-expansion", + "escapedName": "brace-expansion", + "rawSpec": "1.1.11", + "saveSpec": null, + "fetchSpec": "1.1.11" }, - "homepage": "https://github.com/juliangruber/brace-expansion", - "main": "index.js", - "scripts": { - "test": "tape test/*.js", - "gentest": "bash test/generate.sh", - "bench": "matcha test/perf/bench.js" + "_requiredBy": [ + "/minimatch" + ], + "_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "_spec": "1.1.11", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "bugs": { + "url": "https://github.com/juliangruber/brace-expansion/issues" }, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" }, + "description": "Brace expansion as known from sh/bash", "devDependencies": { "matcha": "^0.7.0", "tape": "^4.6.0" }, + "homepage": "https://github.com/juliangruber/brace-expansion", "keywords": [], - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" - }, "license": "MIT", + "main": "index.js", + "name": "brace-expansion", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/brace-expansion.git" + }, + "scripts": { + "bench": "matcha test/perf/bench.js", + "gentest": "bash test/generate.sh", + "test": "tape test/*.js" + }, "testling": { "files": "test/*.js", "browsers": [ @@ -43,5 +74,6 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - } -} \ No newline at end of file + }, + "version": "1.1.11" +} diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json index da327631e..a43034b37 100644 --- a/node_modules/braces/package.json +++ b/node_modules/braces/package.json @@ -1,42 +1,81 @@ { - "name": "braces", - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", - "version": "3.0.2", - "homepage": "https://github.com/micromatch/braces", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Brian Woodward (https://twitter.com/doowb)", - "Elan Shanker (https://github.com/es128)", - "Eugene Sharygin (https://github.com/eush77)", - "hemanth.hm (http://h3manth.com)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)" + "_args": [ + [ + "braces@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "micromatch/braces", - "bugs": { - "url": "https://github.com/micromatch/braces/issues" + "_development": true, + "_from": "braces@3.0.2", + "_id": "braces@3.0.2", + "_inBundle": false, + "_integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "_location": "/braces", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "braces@3.0.2", + "name": "braces", + "escapedName": "braces", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" }, - "license": "MIT", - "files": [ - "index.js", - "lib" + "_requiredBy": [ + "/chokidar", + "/micromatch" ], - "main": "index.js", - "engines": { - "node": ">=8" + "_resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha", - "benchmark": "node benchmark" + "bugs": { + "url": "https://github.com/micromatch/braces/issues" }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Eugene Sharygin", + "url": "https://github.com/eush77" + }, + { + "name": "hemanth.hm", + "url": "http://h3manth.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], "dependencies": { "fill-range": "^7.0.1" }, + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", "devDependencies": { "ansi-colors": "^3.2.4", "bash-path": "^2.0.1", "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/micromatch/braces", "keywords": [ "alpha", "alphabetical", @@ -61,6 +100,17 @@ "ranges", "sh" ], + "license": "MIT", + "main": "index.js", + "name": "braces", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/braces.git" + }, + "scripts": { + "benchmark": "node benchmark", + "test": "mocha" + }, "verb": { "toc": false, "layout": "default", @@ -73,5 +123,6 @@ "plugins": [ "gulp-format-md" ] - } -} \ No newline at end of file + }, + "version": "3.0.2" +} diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json index 22277b00f..cd543504c 100644 --- a/node_modules/buffer-from/package.json +++ b/node_modules/buffer-from/package.json @@ -1,19 +1,56 @@ { - "name": "buffer-from", - "version": "1.1.1", - "license": "MIT", - "repository": "LinusU/buffer-from", - "files": [ - "index.js" + "_args": [ + [ + "buffer-from@1.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "test": "standard && node test" + "_development": true, + "_from": "buffer-from@1.1.1", + "_id": "buffer-from@1.1.1", + "_inBundle": false, + "_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "_location": "/buffer-from", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "buffer-from@1.1.1", + "name": "buffer-from", + "escapedName": "buffer-from", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/ava/source-map-support" + ], + "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/LinusU/buffer-from/issues" }, + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", "devDependencies": { "standard": "^7.1.2" }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/LinusU/buffer-from#readme", "keywords": [ "buffer", "buffer from" - ] -} \ No newline at end of file + ], + "license": "MIT", + "name": "buffer-from", + "repository": { + "type": "git", + "url": "git+https://github.com/LinusU/buffer-from.git" + }, + "scripts": { + "test": "standard && node test" + }, + "version": "1.1.1" +} diff --git a/node_modules/builtin-modules/package.json b/node_modules/builtin-modules/package.json index 3ea9033b3..f10471cbc 100644 --- a/node_modules/builtin-modules/package.json +++ b/node_modules/builtin-modules/package.json @@ -1,26 +1,55 @@ { - "name": "builtin-modules", - "version": "1.1.1", - "description": "List of the Node.js builtin modules", - "license": "MIT", - "repository": "sindresorhus/builtin-modules", + "_args": [ + [ + "builtin-modules@1.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "builtin-modules@1.1.1", + "_id": "builtin-modules@1.1.1", + "_inBundle": false, + "_integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "_location": "/builtin-modules", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "builtin-modules@1.1.1", + "name": "builtin-modules", + "escapedName": "builtin-modules", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/builtin-modules/issues" + }, + "description": "List of the Node.js builtin modules", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava", - "make": "node make.js" - }, "files": [ "index.js", "static.js", "builtin-modules.json" ], + "homepage": "https://github.com/sindresorhus/builtin-modules#readme", "keywords": [ "builtin", "built-in", @@ -33,8 +62,15 @@ "array", "names" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "builtin-modules", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/builtin-modules.git" + }, + "scripts": { + "make": "node make.js", + "test": "xo && ava" + }, + "version": "1.1.1" +} diff --git a/node_modules/cacheable-request/node_modules/get-stream/package.json b/node_modules/cacheable-request/node_modules/get-stream/package.json index 7c86cfc9f..00685f525 100644 --- a/node_modules/cacheable-request/node_modules/get-stream/package.json +++ b/node_modules/cacheable-request/node_modules/get-stream/package.json @@ -1,25 +1,61 @@ { - "name": "get-stream", - "version": "5.1.0", - "description": "Get a stream as a string, buffer, or array", - "license": "MIT", - "repository": "sindresorhus/get-stream", + "_args": [ + [ + "get-stream@5.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "get-stream@5.1.0", + "_id": "get-stream@5.1.0", + "_inBundle": false, + "_integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", + "_location": "/cacheable-request/get-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-stream@5.1.0", + "name": "get-stream", + "escapedName": "get-stream", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/cacheable-request" + ], + "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/get-stream/issues" + }, + "dependencies": { + "pump": "^3.0.0" + }, + "description": "Get a stream as a string, buffer, or array", + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "into-stream": "^5.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "buffer-stream.js" ], + "homepage": "https://github.com/sindresorhus/get-stream#readme", "keywords": [ "get", "stream", @@ -36,14 +72,14 @@ "array", "object" ], - "dependencies": { - "pump": "^3.0.0" + "license": "MIT", + "name": "get-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/get-stream.git" }, - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "into-stream": "^5.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.1.0" +} diff --git a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json index f9e75a348..adf901030 100644 --- a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json +++ b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json @@ -1,24 +1,55 @@ { - "name": "lowercase-keys", - "version": "2.0.0", - "description": "Lowercase the keys of an object", - "license": "MIT", - "repository": "sindresorhus/lowercase-keys", + "_args": [ + [ + "lowercase-keys@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lowercase-keys@2.0.0", + "_id": "lowercase-keys@2.0.0", + "_inBundle": false, + "_integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "_location": "/cacheable-request/lowercase-keys", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lowercase-keys@2.0.0", + "name": "lowercase-keys", + "escapedName": "lowercase-keys", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/cacheable-request" + ], + "_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/lowercase-keys/issues" + }, + "description": "Lowercase the keys of an object", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/lowercase-keys#readme", "keywords": [ "object", "assign", @@ -30,9 +61,14 @@ "keys", "key" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "lowercase-keys", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/lowercase-keys.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/cacheable-request/package.json b/node_modules/cacheable-request/package.json index ba9468bd6..aa7e57256 100644 --- a/node_modules/cacheable-request/package.json +++ b/node_modules/cacheable-request/package.json @@ -1,33 +1,43 @@ { - "name": "cacheable-request", - "version": "6.1.0", - "description": "Wrap native HTTP requests with RFC compliant cache support", - "license": "MIT", - "repository": "lukechilds/cacheable-request", - "author": "Luke Childs (http://lukechilds.co.uk)", - "main": "src/index.js", - "engines": { - "node": ">=8" + "_args": [ + [ + "cacheable-request@6.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cacheable-request@6.1.0", + "_id": "cacheable-request@6.1.0", + "_inBundle": false, + "_integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "_location": "/cacheable-request", + "_phantomChildren": { + "pump": "3.0.0" }, - "scripts": { - "test": "xo && nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls" + "_requested": { + "type": "version", + "registry": true, + "raw": "cacheable-request@6.1.0", + "name": "cacheable-request", + "escapedName": "cacheable-request", + "rawSpec": "6.1.0", + "saveSpec": null, + "fetchSpec": "6.1.0" }, - "files": [ - "src" - ], - "keywords": [ - "HTTP", - "HTTPS", - "cache", - "caching", - "layer", - "cacheable", - "RFC 7234", - "RFC", - "7234", - "compliant" + "_requiredBy": [ + "/got" ], + "_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "_spec": "6.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Luke Childs", + "email": "lukechilds123@gmail.com", + "url": "http://lukechilds.co.uk" + }, + "bugs": { + "url": "https://github.com/lukechilds/cacheable-request/issues" + }, "dependencies": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -37,6 +47,7 @@ "normalize-url": "^4.1.0", "responselike": "^1.0.2" }, + "description": "Wrap native HTTP requests with RFC compliant cache support", "devDependencies": { "@keyv/sqlite": "^2.0.0", "ava": "^1.1.0", @@ -50,7 +61,38 @@ "this": "^1.0.2", "xo": "^0.23.0" }, + "engines": { + "node": ">=8" + }, + "files": [ + "src" + ], + "homepage": "https://github.com/lukechilds/cacheable-request#readme", + "keywords": [ + "HTTP", + "HTTPS", + "cache", + "caching", + "layer", + "cacheable", + "RFC 7234", + "RFC", + "7234", + "compliant" + ], + "license": "MIT", + "main": "src/index.js", + "name": "cacheable-request", + "repository": { + "type": "git", + "url": "git+https://github.com/lukechilds/cacheable-request.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" + }, + "version": "6.1.0", "xo": { "extends": "xo-lukechilds" } -} \ No newline at end of file +} diff --git a/node_modules/callsites/package.json b/node_modules/callsites/package.json index 46b1de0c6..f3cb8e843 100644 --- a/node_modules/callsites/package.json +++ b/node_modules/callsites/package.json @@ -1,24 +1,55 @@ { - "name": "callsites", - "version": "3.1.0", - "description": "Get callsites from the V8 stack trace API", - "license": "MIT", - "repository": "sindresorhus/callsites", + "_args": [ + [ + "callsites@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "callsites@3.1.0", + "_id": "callsites@3.1.0", + "_inBundle": false, + "_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "_location": "/callsites", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "callsites@3.1.0", + "name": "callsites", + "escapedName": "callsites", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/callsites/issues" + }, + "description": "Get callsites from the V8 stack trace API", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/callsites#readme", "keywords": [ "stacktrace", "v8", @@ -31,9 +62,14 @@ "line", "debug" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "callsites", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/callsites.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/camelcase/package.json b/node_modules/camelcase/package.json index 1b48bb0da..8a8b5bcb0 100644 --- a/node_modules/camelcase/package.json +++ b/node_modules/camelcase/package.json @@ -1,24 +1,56 @@ { - "name": "camelcase", - "version": "5.3.1", - "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", - "license": "MIT", - "repository": "sindresorhus/camelcase", + "_args": [ + [ + "camelcase@5.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "camelcase@5.3.1", + "_id": "camelcase@5.3.1", + "_inBundle": false, + "_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "_location": "/camelcase", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "camelcase@5.3.1", + "name": "camelcase", + "escapedName": "camelcase", + "rawSpec": "5.3.1", + "saveSpec": null, + "fetchSpec": "5.3.1" + }, + "_requiredBy": [ + "/boxen", + "/yargs-parser" + ], + "_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "_spec": "5.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/camelcase#readme", "keywords": [ "camelcase", "camel-case", @@ -35,9 +67,14 @@ "pascalcase", "pascal-case" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "camelcase", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/camelcase.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.3.1" +} diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json index aed521aec..aa96604ea 100644 --- a/node_modules/chalk/package.json +++ b/node_modules/chalk/package.json @@ -1,23 +1,66 @@ { - "name": "chalk", - "version": "2.4.2", + "_args": [ + [ + "chalk@2.4.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "chalk@2.4.2", + "_id": "chalk@2.4.2", + "_inBundle": false, + "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "_location": "/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@2.4.2", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "2.4.2", + "saveSpec": null, + "fetchSpec": "2.4.2" + }, + "_requiredBy": [ + "/@babel/highlight", + "/log-symbols", + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "_spec": "2.4.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava", - "bench": "matcha benchmark.js", - "coveralls": "nyc report --reporter=text-lcov | coveralls" - }, "files": [ "index.js", "templates.js", "types/index.d.ts", "index.js.flow" ], + "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -41,24 +84,19 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "license": "MIT", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" }, - "devDependencies": { - "ava": "*", - "coveralls": "^3.0.0", - "execa": "^0.9.0", - "flow-bin": "^0.68.0", - "import-fresh": "^2.0.0", - "matcha": "^0.7.0", - "nyc": "^11.0.2", - "resolve-from": "^4.0.0", - "typescript": "^2.5.3", - "xo": "*" + "scripts": { + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" }, "types": "types/index.d.ts", + "version": "2.4.2", "xo": { "envs": [ "node", @@ -68,4 +106,4 @@ "test/_flow.js" ] } -} \ No newline at end of file +} diff --git a/node_modules/charenc/package.json b/node_modules/charenc/package.json index 80ac698de..064782a71 100644 --- a/node_modules/charenc/package.json +++ b/node_modules/charenc/package.json @@ -1,24 +1,57 @@ { - "author": "Paul Vorbach (http://vorb.de)", - "name": "charenc", - "description": "character encoding utilities", - "tags": [ - "utf8", - "binary", - "byte", - "string" + "_args": [ + [ + "charenc@0.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "version": "0.0.2", - "license": "BSD-3-Clause", - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-charenc.git" + "_from": "charenc@0.0.2", + "_id": "charenc@0.0.2", + "_inBundle": false, + "_integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "_location": "/charenc", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "charenc@0.0.2", + "name": "charenc", + "escapedName": "charenc", + "rawSpec": "0.0.2", + "saveSpec": null, + "fetchSpec": "0.0.2" + }, + "_requiredBy": [ + "/md5" + ], + "_resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "_spec": "0.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" }, "bugs": { "url": "https://github.com/pvorb/node-charenc/issues" }, - "main": "charenc.js", + "description": "character encoding utilities", "engines": { "node": "*" - } -} \ No newline at end of file + }, + "homepage": "https://github.com/pvorb/node-charenc#readme", + "license": "BSD-3-Clause", + "main": "charenc.js", + "name": "charenc", + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-charenc.git" + }, + "tags": [ + "utf8", + "binary", + "byte", + "string" + ], + "version": "0.0.2" +} diff --git a/node_modules/chokidar/node_modules/anymatch/package.json b/node_modules/chokidar/node_modules/anymatch/package.json index aa33dbcdb..3c627c62a 100644 --- a/node_modules/chokidar/node_modules/anymatch/package.json +++ b/node_modules/chokidar/node_modules/anymatch/package.json @@ -1,25 +1,57 @@ { - "name": "anymatch", - "version": "3.1.1", - "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", - "files": [ - "index.js", - "index.d.ts" + "_args": [ + [ + "anymatch@3.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "_development": true, + "_from": "anymatch@3.1.1", + "_id": "anymatch@3.1.1", + "_inBundle": false, + "_integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "_location": "/chokidar/anymatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "anymatch@3.1.1", + "name": "anymatch", + "escapedName": "anymatch", + "rawSpec": "3.1.1", + "saveSpec": null, + "fetchSpec": "3.1.1" }, + "_requiredBy": [ + "/chokidar" + ], + "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "_spec": "3.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Elan Shanker", "url": "https://github.com/es128" }, - "license": "ISC", - "homepage": "https://github.com/micromatch/anymatch", - "repository": { - "type": "git", - "url": "https://github.com/micromatch/anymatch" + "bugs": { + "url": "https://github.com/micromatch/anymatch/issues" + }, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "devDependencies": { + "mocha": "^6.1.3", + "nyc": "^14.0.0" + }, + "engines": { + "node": ">= 8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/micromatch/anymatch", "keywords": [ "match", "any", @@ -34,15 +66,15 @@ "expression", "function" ], - "scripts": { - "test": "nyc mocha", - "mocha": "mocha" + "license": "ISC", + "name": "anymatch", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/anymatch.git" }, - "devDependencies": { - "mocha": "^6.1.3", - "nyc": "^14.0.0" + "scripts": { + "mocha": "mocha", + "test": "nyc mocha" }, - "engines": { - "node": ">= 8" - } -} \ No newline at end of file + "version": "3.1.1" +} diff --git a/node_modules/chokidar/node_modules/normalize-path/package.json b/node_modules/chokidar/node_modules/normalize-path/package.json index 101634b95..b4d6cddba 100644 --- a/node_modules/chokidar/node_modules/normalize-path/package.json +++ b/node_modules/chokidar/node_modules/normalize-path/package.json @@ -1,33 +1,64 @@ { - "name": "normalize-path", - "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", - "version": "3.0.0", - "homepage": "https://github.com/jonschlinkert/normalize-path", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Blaine Bublitz (https://twitter.com/BlaineBublitz)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)" + "_args": [ + [ + "normalize-path@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "jonschlinkert/normalize-path", - "bugs": { - "url": "https://github.com/jonschlinkert/normalize-path/issues" + "_development": true, + "_from": "normalize-path@3.0.0", + "_id": "normalize-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "_location": "/chokidar/normalize-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "normalize-path@3.0.0", + "name": "normalize-path", + "escapedName": "normalize-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/chokidar", + "/chokidar/anymatch" ], - "main": "index.js", - "engines": { - "node": ">=0.10.0" + "_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/jonschlinkert/normalize-path/issues" }, + "contributors": [ + { + "name": "Blaine Bublitz", + "url": "https://twitter.com/BlaineBublitz" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", "devDependencies": { "gulp-format-md": "^1.0.0", "minimist": "^1.2.0", "mocha": "^3.5.3" }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/normalize-path", "keywords": [ "absolute", "backslash", @@ -49,6 +80,16 @@ "unix", "urix" ], + "license": "MIT", + "main": "index.js", + "name": "normalize-path", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/normalize-path.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "toc": false, "layout": "default", @@ -73,5 +114,6 @@ "lint": { "reflinks": true } - } -} \ No newline at end of file + }, + "version": "3.0.0" +} diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json index 84d082a47..b8456e1b3 100644 --- a/node_modules/chokidar/package.json +++ b/node_modules/chokidar/package.json @@ -1,29 +1,62 @@ { - "name": "chokidar", - "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", - "version": "3.4.0", - "homepage": "https://github.com/paulmillr/chokidar", - "author": "Paul Miller (https://paulmillr.com)", - "contributors": [ - "Paul Miller (https://paulmillr.com)", - "Elan Shanker" + "_args": [ + [ + "chokidar@3.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": ">= 8.10.0" + "_development": true, + "_from": "chokidar@3.4.0", + "_id": "chokidar@3.4.0", + "_inBundle": false, + "_integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==", + "_location": "/chokidar", + "_phantomChildren": { + "picomatch": "2.2.2" }, - "main": "index.js", + "_requested": { + "type": "version", + "registry": true, + "raw": "chokidar@3.4.0", + "name": "chokidar", + "escapedName": "chokidar", + "rawSpec": "3.4.0", + "saveSpec": null, + "fetchSpec": "3.4.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz", + "_spec": "3.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Paul Miller", + "url": "https://paulmillr.com" + }, + "bugs": { + "url": "https://github.com/paulmillr/chokidar/issues" + }, + "contributors": [ + { + "name": "Paul Miller", + "url": "https://paulmillr.com" + }, + { + "name": "Elan Shanker" + } + ], "dependencies": { "anymatch": "~3.1.1", "braces": "~3.0.2", + "fsevents": "~2.1.2", "glob-parent": "~5.1.0", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.4.0" }, - "optionalDependencies": { - "fsevents": "~2.1.2" - }, + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", "devDependencies": { "@types/node": "^13", "chai": "^4.2", @@ -36,35 +69,9 @@ "sinon-chai": "^3.3.0", "upath": "^1.2.0" }, - "files": [ - "index.js", - "lib/*.js", - "types/index.d.ts" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/paulmillr/chokidar.git" - }, - "bugs": { - "url": "https://github.com/paulmillr/chokidar/issues" - }, - "license": "MIT", - "scripts": { - "dtslint": "dtslint types", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --exit --timeout 60000", - "test": "npm run lint && npm run mocha" + "engines": { + "node": ">= 8.10.0" }, - "keywords": [ - "fs", - "watch", - "watchFile", - "watcher", - "watching", - "file", - "fsevents" - ], - "types": "./types/index.d.ts", "eslintConfig": { "extends": "eslint:recommended", "parserOptions": { @@ -115,6 +122,24 @@ ] } }, + "files": [ + "index.js", + "lib/*.js", + "types/index.d.ts" + ], + "homepage": "https://github.com/paulmillr/chokidar", + "keywords": [ + "fs", + "watch", + "watchFile", + "watcher", + "watching", + "file", + "fsevents" + ], + "license": "MIT", + "main": "index.js", + "name": "chokidar", "nyc": { "include": [ "index.js", @@ -124,5 +149,20 @@ "html", "text" ] - } -} \ No newline at end of file + }, + "optionalDependencies": { + "fsevents": "~2.1.2" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/paulmillr/chokidar.git" + }, + "scripts": { + "dtslint": "dtslint types", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --exit --timeout 60000", + "test": "npm run lint && npm run mocha" + }, + "types": "./types/index.d.ts", + "version": "3.4.0" +} diff --git a/node_modules/chunkd/package.json b/node_modules/chunkd/package.json index 6dfab968b..7a5cd437c 100644 --- a/node_modules/chunkd/package.json +++ b/node_modules/chunkd/package.json @@ -1,28 +1,50 @@ { - "name": "chunkd", - "version": "2.0.1", - "description": "Get a chunk of an array based on the total number of chunks and current index", - "main": "dist/chunkd.js", - "repository": "jamiebuilds/chunkd", - "author": "Jamie Kyle ", - "license": "MIT", - "keywords": [ - "util", - "chunk", - "index", - "total" + "_args": [ + [ + "chunkd@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "files": [ - "dist" + "_development": true, + "_from": "chunkd@2.0.1", + "_id": "chunkd@2.0.1", + "_inBundle": false, + "_integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", + "_location": "/chunkd", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chunkd@2.0.1", + "name": "chunkd", + "escapedName": "chunkd", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/ava" ], - "scripts": { - "check:typescript": "tsc --noEmit", - "check:prettier": "prettier --check '**'", - "build": "rm -rf dist && tsc", - "format": "prettier --write '**'", - "test": "ava", - "prepublishOnly": "npm run -s build" + "_resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jamie Kyle", + "email": "me@thejameskyle.com" + }, + "ava": { + "compileEnhancements": false, + "extensions": [ + "ts" + ], + "require": [ + "ts-node/register" + ] + }, + "bugs": { + "url": "https://github.com/jamiebuilds/chunkd/issues" }, + "description": "Get a chunk of an array based on the total number of chunks and current index", "devDependencies": { "ava": "^2.4.0", "husky": "^3.1.0", @@ -31,24 +53,41 @@ "ts-node": "^8.5.2", "typescript": "^3.7.2" }, + "files": [ + "dist" + ], + "homepage": "https://github.com/jamiebuilds/chunkd#readme", "husky": { "hooks": { "pre-commit": "lint-staged" } }, + "keywords": [ + "util", + "chunk", + "index", + "total" + ], + "license": "MIT", "lint-staged": { "*": [ "prettier --write", "git add" ] }, - "ava": { - "compileEnhancements": false, - "extensions": [ - "ts" - ], - "require": [ - "ts-node/register" - ] - } -} \ No newline at end of file + "main": "dist/chunkd.js", + "name": "chunkd", + "repository": { + "type": "git", + "url": "git+https://github.com/jamiebuilds/chunkd.git" + }, + "scripts": { + "build": "rm -rf dist && tsc", + "check:prettier": "prettier --check '**'", + "check:typescript": "tsc --noEmit", + "format": "prettier --write '**'", + "prepublishOnly": "npm run -s build", + "test": "ava" + }, + "version": "2.0.1" +} diff --git a/node_modules/ci-info/package.json b/node_modules/ci-info/package.json index b3f5c2ca9..52b5376be 100644 --- a/node_modules/ci-info/package.json +++ b/node_modules/ci-info/package.json @@ -1,21 +1,54 @@ { - "name": "ci-info", - "version": "2.0.0", - "description": "Get details about the current Continuous Integration environment", - "main": "index.js", + "_args": [ + [ + "ci-info@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ci-info@2.0.0", + "_id": "ci-info@2.0.0", + "_inBundle": false, + "_integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "_location": "/ci-info", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ci-info@2.0.0", + "name": "ci-info", + "escapedName": "ci-info", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/ava", + "/is-ci" + ], + "_resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Thomas Watson Steen", + "email": "w@tson.dk", + "url": "https://twitter.com/wa7son" + }, + "bugs": { + "url": "https://github.com/watson/ci-info/issues" + }, + "coordinates": [ + 55.778231, + 12.593179 + ], "dependencies": {}, + "description": "Get details about the current Continuous Integration environment", "devDependencies": { "clear-require": "^1.0.1", "standard": "^12.0.1", "tape": "^4.9.1" }, - "scripts": { - "test": "standard && node test.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/watson/ci-info.git" - }, + "homepage": "https://github.com/watson/ci-info", "keywords": [ "ci", "continuous", @@ -23,14 +56,15 @@ "test", "detect" ], - "author": "Thomas Watson Steen (https://twitter.com/wa7son)", "license": "MIT", - "bugs": { - "url": "https://github.com/watson/ci-info/issues" + "main": "index.js", + "name": "ci-info", + "repository": { + "type": "git", + "url": "git+https://github.com/watson/ci-info.git" }, - "homepage": "https://github.com/watson/ci-info", - "coordinates": [ - 55.778231, - 12.593179 - ] -} \ No newline at end of file + "scripts": { + "test": "standard && node test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/ci-parallel-vars/package.json b/node_modules/ci-parallel-vars/package.json index 5e6cc758a..b3503f081 100644 --- a/node_modules/ci-parallel-vars/package.json +++ b/node_modules/ci-parallel-vars/package.json @@ -1,11 +1,50 @@ { - "name": "ci-parallel-vars", - "version": "1.0.0", + "_args": [ + [ + "ci-parallel-vars@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ci-parallel-vars@1.0.0", + "_id": "ci-parallel-vars@1.0.0", + "_inBundle": false, + "_integrity": "sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g==", + "_location": "/ci-parallel-vars", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ci-parallel-vars@1.0.0", + "name": "ci-parallel-vars", + "escapedName": "ci-parallel-vars", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jamie Kyle", + "email": "me@thejameskyle.com" + }, + "bugs": { + "url": "https://github.com/jamiebuilds/ci-parallel-vars/issues" + }, "description": "Get CI environment variables for parallelizing builds", - "main": "index.js", - "repository": "https://github.com/jamiebuilds/ci-parallel-vars", - "author": "Jamie Kyle ", - "license": "MIT", + "devDependencies": { + "ava": "^0.25.0", + "flow-bin": "^0.73.0", + "spawndamnit": "^2.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jamiebuilds/ci-parallel-vars#readme", "keywords": [ "ci", "env", @@ -22,15 +61,15 @@ "pipelines", "knapsack" ], - "files": [ - "index.js" - ], + "license": "MIT", + "main": "index.js", + "name": "ci-parallel-vars", + "repository": { + "type": "git", + "url": "git+https://github.com/jamiebuilds/ci-parallel-vars.git" + }, "scripts": { "test": "ava" }, - "devDependencies": { - "ava": "^0.25.0", - "flow-bin": "^0.73.0", - "spawndamnit": "^2.0.0" - } -} \ No newline at end of file + "version": "1.0.0" +} diff --git a/node_modules/clean-stack/package.json b/node_modules/clean-stack/package.json index fb9bd0b77..47a21a6c0 100644 --- a/node_modules/clean-stack/package.json +++ b/node_modules/clean-stack/package.json @@ -1,24 +1,58 @@ { - "name": "clean-stack", - "version": "2.2.0", - "description": "Clean up error stack traces", - "license": "MIT", - "repository": "sindresorhus/clean-stack", + "_args": [ + [ + "clean-stack@2.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "clean-stack@2.2.0", + "_id": "clean-stack@2.2.0", + "_inBundle": false, + "_integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "_location": "/clean-stack", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "clean-stack@2.2.0", + "name": "clean-stack", + "escapedName": "clean-stack", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/aggregate-error" + ], + "_resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": { + "os": false + }, + "bugs": { + "url": "https://github.com/sindresorhus/clean-stack/issues" + }, + "description": "Clean up error stack traces", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/clean-stack#readme", "keywords": [ "clean", "stack", @@ -28,12 +62,14 @@ "err", "electron" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "license": "MIT", + "name": "clean-stack", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/clean-stack.git" }, - "browser": { - "os": false - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/clean-yaml-object/package.json b/node_modules/clean-yaml-object/package.json index 27a6564ba..9d6634303 100644 --- a/node_modules/clean-yaml-object/package.json +++ b/node_modules/clean-yaml-object/package.json @@ -1,23 +1,56 @@ { - "name": "clean-yaml-object", - "version": "0.1.0", - "description": "Clean up an object prior to serialization", - "license": "MIT", - "repository": "tapjs/clean-yaml-object", + "_args": [ + [ + "clean-yaml-object@0.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "clean-yaml-object@0.1.0", + "_id": "clean-yaml-object@0.1.0", + "_inBundle": false, + "_integrity": "sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=", + "_location": "/clean-yaml-object", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "clean-yaml-object@0.1.0", + "name": "clean-yaml-object", + "escapedName": "clean-yaml-object", + "rawSpec": "0.1.0", + "saveSpec": null, + "fetchSpec": "0.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz", + "_spec": "0.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, + "bugs": { + "url": "https://github.com/tapjs/clean-yaml-object/issues" + }, + "dependencies": {}, + "description": "Clean up an object prior to serialization", + "devDependencies": { + "ava": "^0.10.0", + "coveralls": "^2.11.6", + "nyc": "^5.3.0", + "xo": "^0.12.1" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && nyc --cache --reporter=lcov --reporter=text ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/tapjs/clean-yaml-object#readme", "keywords": [ "serialize", "clean", @@ -27,11 +60,14 @@ "json", "error" ], - "dependencies": {}, - "devDependencies": { - "ava": "^0.10.0", - "coveralls": "^2.11.6", - "nyc": "^5.3.0", - "xo": "^0.12.1" - } -} \ No newline at end of file + "license": "MIT", + "name": "clean-yaml-object", + "repository": { + "type": "git", + "url": "git+https://github.com/tapjs/clean-yaml-object.git" + }, + "scripts": { + "test": "xo && nyc --cache --reporter=lcov --reporter=text ava" + }, + "version": "0.1.0" +} diff --git a/node_modules/cli-boxes/package.json b/node_modules/cli-boxes/package.json index f77701b7e..3723a532c 100644 --- a/node_modules/cli-boxes/package.json +++ b/node_modules/cli-boxes/package.json @@ -1,25 +1,56 @@ { - "name": "cli-boxes", - "version": "2.2.0", - "description": "Boxes for use in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-boxes", + "_args": [ + [ + "cli-boxes@2.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cli-boxes@2.2.0", + "_id": "cli-boxes@2.2.0", + "_inBundle": false, + "_integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==", + "_location": "/cli-boxes", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cli-boxes@2.2.0", + "name": "cli-boxes", + "escapedName": "cli-boxes", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/boxen" + ], + "_resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/cli-boxes/issues" + }, + "description": "Boxes for use in the terminal", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "boxes.json" ], + "homepage": "https://github.com/sindresorhus/cli-boxes#readme", "keywords": [ "cli", "box", @@ -33,9 +64,14 @@ "text", "json" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "cli-boxes", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/cli-boxes.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/cli-cursor/package.json b/node_modules/cli-cursor/package.json index 38d50d2c4..2f18ca637 100644 --- a/node_modules/cli-cursor/package.json +++ b/node_modules/cli-cursor/package.json @@ -1,24 +1,60 @@ { - "name": "cli-cursor", - "version": "3.1.0", - "description": "Toggle the CLI cursor", - "license": "MIT", - "repository": "sindresorhus/cli-cursor", + "_args": [ + [ + "cli-cursor@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cli-cursor@3.1.0", + "_id": "cli-cursor@3.1.0", + "_inBundle": false, + "_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "_location": "/cli-cursor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cli-cursor@3.1.0", + "name": "cli-cursor", + "escapedName": "cli-cursor", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/ava", + "/ora" + ], + "_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/cli-cursor/issues" + }, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "description": "Toggle the CLI cursor", + "devDependencies": { + "@types/node": "^12.0.7", + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/cli-cursor#readme", "keywords": [ "cli", "cursor", @@ -34,13 +70,14 @@ "shell", "command-line" ], - "dependencies": { - "restore-cursor": "^3.1.0" + "license": "MIT", + "name": "cli-cursor", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/cli-cursor.git" }, - "devDependencies": { - "@types/node": "^12.0.7", - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/cli-spinners/package.json b/node_modules/cli-spinners/package.json index 23323c5f4..92e3e4cd9 100644 --- a/node_modules/cli-spinners/package.json +++ b/node_modules/cli-spinners/package.json @@ -1,26 +1,57 @@ { - "name": "cli-spinners", - "version": "2.3.0", - "description": "Spinners for use in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-spinners", + "_args": [ + [ + "cli-spinners@2.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cli-spinners@2.3.0", + "_id": "cli-spinners@2.3.0", + "_inBundle": false, + "_integrity": "sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w==", + "_location": "/cli-spinners", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cli-spinners@2.3.0", + "name": "cli-spinners", + "escapedName": "cli-spinners", + "rawSpec": "2.3.0", + "saveSpec": null, + "fetchSpec": "2.3.0" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz", + "_spec": "2.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/cli-spinners/issues" + }, + "description": "Spinners for use in the terminal", + "devDependencies": { + "ava": "^1.4.1", + "log-update": "^3.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd", - "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet" - }, "files": [ "index.js", "index.d.ts", "spinners.json" ], + "homepage": "https://github.com/sindresorhus/cli-spinners#readme", "keywords": [ "cli", "spinner", @@ -38,10 +69,15 @@ "idle", "json" ], - "devDependencies": { - "ava": "^1.4.1", - "log-update": "^3.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "cli-spinners", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/cli-spinners.git" + }, + "scripts": { + "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet", + "test": "xo && ava && tsd" + }, + "version": "2.3.0" +} diff --git a/node_modules/cli-truncate/package.json b/node_modules/cli-truncate/package.json index 0d9e9a141..461f79810 100644 --- a/node_modules/cli-truncate/package.json +++ b/node_modules/cli-truncate/package.json @@ -1,25 +1,60 @@ { - "name": "cli-truncate", - "version": "2.1.0", - "description": "Truncate a string to a specific width in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-truncate", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "cli-truncate@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cli-truncate@2.1.0", + "_id": "cli-truncate@2.1.0", + "_inBundle": false, + "_integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "_location": "/cli-truncate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cli-truncate@2.1.0", + "name": "cli-truncate", + "escapedName": "cli-truncate", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/cli-truncate/issues" + }, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "description": "Truncate a string to a specific width in the terminal", + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/cli-truncate#readme", "keywords": [ "truncate", "ellipsis", @@ -34,13 +69,14 @@ "ansi", "string" ], - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "license": "MIT", + "name": "cli-truncate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/cli-truncate.git" }, - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json index 2869089cc..3fe4495c5 100644 --- a/node_modules/cliui/package.json +++ b/node_modules/cliui/package.json @@ -1,16 +1,39 @@ { - "name": "cliui", - "version": "6.0.0", - "description": "easily create complex multi-column command-line-interfaces", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "nyc mocha", - "coverage": "nyc --reporter=text-lcov mocha | coveralls" + "_args": [ + [ + "cliui@6.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "cliui@6.0.0", + "_id": "cliui@6.0.0", + "_inBundle": false, + "_integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "_location": "/cliui", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cliui@6.0.0", + "name": "cliui", + "escapedName": "cliui", + "rawSpec": "6.0.0", + "saveSpec": null, + "fetchSpec": "6.0.0" }, - "repository": { - "type": "git", - "url": "http://github.com/yargs/cliui.git" + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "_spec": "6.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/cliui/issues" }, "config": { "blanket": { @@ -24,30 +47,12 @@ "output-reporter": "spec" } }, - "standard": { - "ignore": [ - "**/example/**" - ], - "globals": [ - "it" - ] - }, - "keywords": [ - "cli", - "command-line", - "layout", - "design", - "console", - "wrap", - "table" - ], - "author": "Ben Coe ", - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" }, + "description": "easily create complex multi-column command-line-interfaces", "devDependencies": { "chai": "^4.2.0", "chalk": "^3.0.0", @@ -56,10 +61,41 @@ "nyc": "^14.1.1", "standard": "^12.0.1" }, + "engine": { + "node": ">=8" + }, "files": [ "index.js" ], - "engine": { - "node": ">=8" - } -} \ No newline at end of file + "homepage": "https://github.com/yargs/cliui#readme", + "keywords": [ + "cli", + "command-line", + "layout", + "design", + "console", + "wrap", + "table" + ], + "license": "ISC", + "main": "index.js", + "name": "cliui", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/cliui.git" + }, + "scripts": { + "coverage": "nyc --reporter=text-lcov mocha | coveralls", + "pretest": "standard", + "test": "nyc mocha" + }, + "standard": { + "ignore": [ + "**/example/**" + ], + "globals": [ + "it" + ] + }, + "version": "6.0.0" +} diff --git a/node_modules/clone-response/package.json b/node_modules/clone-response/package.json index 24e834356..edb468f4f 100644 --- a/node_modules/clone-response/package.json +++ b/node_modules/clone-response/package.json @@ -1,36 +1,45 @@ { - "name": "clone-response", - "version": "1.0.2", - "description": "Clone a Node.js HTTP response stream", - "main": "src/index.js", - "scripts": { - "test": "xo && nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls" - }, - "xo": { - "extends": "xo-lukechilds" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/lukechilds/clone-response.git" + "_args": [ + [ + "clone-response@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "clone-response@1.0.2", + "_id": "clone-response@1.0.2", + "_inBundle": false, + "_integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "_location": "/clone-response", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "clone-response@1.0.2", + "name": "clone-response", + "escapedName": "clone-response", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" }, - "keywords": [ - "clone", - "duplicate", - "copy", - "response", - "HTTP", - "stream" + "_requiredBy": [ + "/cacheable-request" ], - "author": "Luke Childs (http://lukechilds.co.uk)", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Luke Childs", + "email": "lukechilds123@gmail.com", + "url": "http://lukechilds.co.uk" + }, "bugs": { "url": "https://github.com/lukechilds/clone-response/issues" }, - "homepage": "https://github.com/lukechilds/clone-response", "dependencies": { "mimic-response": "^1.0.0" }, + "description": "Clone a Node.js HTTP response stream", "devDependencies": { "ava": "^0.22.0", "coveralls": "^2.13.1", @@ -40,5 +49,29 @@ "nyc": "^11.0.2", "pify": "^3.0.0", "xo": "^0.19.0" + }, + "homepage": "https://github.com/lukechilds/clone-response", + "keywords": [ + "clone", + "duplicate", + "copy", + "response", + "HTTP", + "stream" + ], + "license": "MIT", + "main": "src/index.js", + "name": "clone-response", + "repository": { + "type": "git", + "url": "git+https://github.com/lukechilds/clone-response.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" + }, + "version": "1.0.2", + "xo": { + "extends": "xo-lukechilds" } -} \ No newline at end of file +} diff --git a/node_modules/clone/package.json b/node_modules/clone/package.json index 9305b656e..e2b43da8a 100644 --- a/node_modules/clone/package.json +++ b/node_modules/clone/package.json @@ -1,51 +1,141 @@ { - "name": "clone", - "description": "deep cloning of objects and arrays", - "tags": [ - "clone", - "object", - "array", - "function", - "date" + "_args": [ + [ + "clone@1.0.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "version": "1.0.4", - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-clone.git" + "_development": true, + "_from": "clone@1.0.4", + "_id": "clone@1.0.4", + "_inBundle": false, + "_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "_location": "/clone", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "clone@1.0.4", + "name": "clone", + "escapedName": "clone", + "rawSpec": "1.0.4", + "saveSpec": null, + "fetchSpec": "1.0.4" + }, + "_requiredBy": [ + "/defaults" + ], + "_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "_spec": "1.0.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Paul Vorbach", + "email": "paul@vorba.ch", + "url": "http://paul.vorba.ch/" }, "bugs": { "url": "https://github.com/pvorb/node-clone/issues" }, - "main": "clone.js", - "author": "Paul Vorbach (http://paul.vorba.ch/)", "contributors": [ - "Blake Miner (http://www.blakeminer.com/)", - "Tian You (http://blog.axqd.net/)", - "George Stagas (http://stagas.com/)", - "Tobiasz Cudnik (https://github.com/TobiaszCudnik)", - "Pavel Lang (https://github.com/langpavel)", - "Dan MacTough (http://yabfog.com/)", - "w1nk (https://github.com/w1nk)", - "Hugh Kennedy (http://twitter.com/hughskennedy)", - "Dustin Diaz (http://dustindiaz.com)", - "Ilya Shaisultanov (https://github.com/diversario)", - "Nathan MacInnes (http://macinn.es/)", - "Benjamin E. Coe (https://twitter.com/benjamincoe)", - "Nathan Zadoks (https://github.com/nathan7)", - "Róbert Oroszi (https://github.com/oroce)", - "Aurélio A. Heckert (http://softwarelivre.org/aurium)", - "Guy Ellis (http://www.guyellisrocks.com/)" + { + "name": "Blake Miner", + "email": "miner.blake@gmail.com", + "url": "http://www.blakeminer.com/" + }, + { + "name": "Tian You", + "email": "axqd001@gmail.com", + "url": "http://blog.axqd.net/" + }, + { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + { + "name": "Tobiasz Cudnik", + "email": "tobiasz.cudnik@gmail.com", + "url": "https://github.com/TobiaszCudnik" + }, + { + "name": "Pavel Lang", + "email": "langpavel@phpskelet.org", + "url": "https://github.com/langpavel" + }, + { + "name": "Dan MacTough", + "url": "http://yabfog.com/" + }, + { + "name": "w1nk", + "url": "https://github.com/w1nk" + }, + { + "name": "Hugh Kennedy", + "url": "http://twitter.com/hughskennedy" + }, + { + "name": "Dustin Diaz", + "url": "http://dustindiaz.com" + }, + { + "name": "Ilya Shaisultanov", + "url": "https://github.com/diversario" + }, + { + "name": "Nathan MacInnes", + "email": "nathan@macinn.es", + "url": "http://macinn.es/" + }, + { + "name": "Benjamin E. Coe", + "email": "ben@npmjs.com", + "url": "https://twitter.com/benjamincoe" + }, + { + "name": "Nathan Zadoks", + "url": "https://github.com/nathan7" + }, + { + "name": "Róbert Oroszi", + "email": "robert+gh@oroszi.net", + "url": "https://github.com/oroce" + }, + { + "name": "Aurélio A. Heckert", + "url": "http://softwarelivre.org/aurium" + }, + { + "name": "Guy Ellis", + "url": "http://www.guyellisrocks.com/" + } ], - "license": "MIT", - "engines": { - "node": ">=0.8" - }, "dependencies": {}, + "description": "deep cloning of objects and arrays", "devDependencies": { "nodeunit": "~0.9.0" }, + "engines": { + "node": ">=0.8" + }, + "homepage": "https://github.com/pvorb/node-clone#readme", + "license": "MIT", + "main": "clone.js", + "name": "clone", "optionalDependencies": {}, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-clone.git" + }, "scripts": { "test": "nodeunit test.js" - } -} \ No newline at end of file + }, + "tags": [ + "clone", + "object", + "array", + "function", + "date" + ], + "version": "1.0.4" +} diff --git a/node_modules/code-excerpt/package.json b/node_modules/code-excerpt/package.json index 1f55433e7..e1bd6c5ee 100644 --- a/node_modules/code-excerpt/package.json +++ b/node_modules/code-excerpt/package.json @@ -1,31 +1,67 @@ { - "name": "code-excerpt", - "version": "2.1.1", - "description": "Extract code excerpts", - "license": "MIT", - "repository": "vadimdemedes/code-excerpt", + "_args": [ + [ + "code-excerpt@2.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "code-excerpt@2.1.1", + "_id": "code-excerpt@2.1.1", + "_inBundle": false, + "_integrity": "sha512-tJLhH3EpFm/1x7heIW0hemXJTUU5EWl2V0EIX558jp05Mt1U6DVryCgkp3l37cxqs+DNbNgxG43SkwJXpQ14Jw==", + "_location": "/code-excerpt", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "code-excerpt@2.1.1", + "name": "code-excerpt", + "escapedName": "code-excerpt", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "vdemedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && ava" + "bugs": { + "url": "https://github.com/vadimdemedes/code-excerpt/issues" }, - "files": [ - "index.js" - ], "dependencies": { "convert-to-spaces": "^1.0.1" }, + "description": "Extract code excerpts", "devDependencies": { "ava": "^0.16.0", "xo": "^0.17.1" }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/vadimdemedes/code-excerpt#readme", + "license": "MIT", + "name": "code-excerpt", + "repository": { + "type": "git", + "url": "git+https://github.com/vadimdemedes/code-excerpt.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.1", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json index 6446c22d5..d63a6ab92 100644 --- a/node_modules/color-convert/package.json +++ b/node_modules/color-convert/package.json @@ -1,14 +1,55 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@1.9.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@1.9.3", + "_id": "color-convert@1.9.3", + "_inBundle": false, + "_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "_location": "/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@1.9.3", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "1.9.3", + "saveSpec": null, + "fetchSpec": "1.9.3" + }, + "_requiredBy": [ + "/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "_spec": "1.9.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "1.1.3" + }, "description": "Plain color conversion functions", - "version": "1.9.3", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "1.1.1", + "xo": "0.11.2" }, + "files": [ + "index.js", + "conversions.js", + "css-keywords.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -23,24 +64,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "css-keywords.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "1.9.3", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "1.1.1", - "xo": "0.11.2" - }, - "dependencies": { - "color-name": "1.1.3" } -} \ No newline at end of file +} diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json index 40d588535..205650d2e 100644 --- a/node_modules/color-name/package.json +++ b/node_modules/color-name/package.json @@ -1,25 +1,57 @@ { - "name": "color-name", - "version": "1.1.3", - "description": "A list of color names and its values", - "main": "index.js", - "scripts": { - "test": "node test.js" + "_args": [ + [ + "color-name@1.1.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.3", + "_id": "color-name@1.1.3", + "_inBundle": false, + "_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "_location": "/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.3", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.3", + "saveSpec": null, + "fetchSpec": "1.1.3" }, - "repository": { - "type": "git", - "url": "git@github.com:dfcreative/color-name.git" + "_requiredBy": [ + "/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "_spec": "1.1.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/dfcreative/color-name/issues" }, + "description": "A list of color names and its values", + "homepage": "https://github.com/dfcreative/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/dfcreative/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/dfcreative/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/dfcreative/color-name" -} \ No newline at end of file + "version": "1.1.3" +} diff --git a/node_modules/commander/package.json b/node_modules/commander/package.json index 8b14f0069..5bad4c964 100644 --- a/node_modules/commander/package.json +++ b/node_modules/commander/package.json @@ -1,38 +1,74 @@ { - "name": "commander", - "version": "2.20.3", + "_args": [ + [ + "commander@2.20.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "commander@2.20.3", + "_id": "commander@2.20.3", + "_inBundle": false, + "_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "_location": "/commander", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "commander@2.20.3", + "name": "commander", + "escapedName": "commander", + "rawSpec": "2.20.3", + "saveSpec": null, + "fetchSpec": "2.20.3" + }, + "_requiredBy": [ + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "_spec": "2.20.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "bugs": { + "url": "https://github.com/tj/commander.js/issues" + }, + "dependencies": {}, "description": "the complete solution for node.js command-line programs", + "devDependencies": { + "@types/node": "^12.7.8", + "eslint": "^6.4.0", + "should": "^13.2.3", + "sinon": "^7.5.0", + "standard": "^14.3.1", + "ts-node": "^8.4.1", + "typescript": "^3.6.3" + }, + "files": [ + "index.js", + "typings/index.d.ts" + ], + "homepage": "https://github.com/tj/commander.js#readme", "keywords": [ "commander", "command", "option", "parser" ], - "author": "TJ Holowaychuk ", "license": "MIT", + "main": "index", + "name": "commander", "repository": { "type": "git", - "url": "https://github.com/tj/commander.js.git" + "url": "git+https://github.com/tj/commander.js.git" }, "scripts": { "lint": "eslint index.js", "test": "node test/run.js && npm run test-typings", "test-typings": "tsc -p tsconfig.json" }, - "main": "index", - "files": [ - "index.js", - "typings/index.d.ts" - ], - "dependencies": {}, - "devDependencies": { - "@types/node": "^12.7.8", - "eslint": "^6.4.0", - "should": "^13.2.3", - "sinon": "^7.5.0", - "standard": "^14.3.1", - "ts-node": "^8.4.1", - "typescript": "^3.6.3" - }, - "typings": "typings/index.d.ts" -} \ No newline at end of file + "typings": "typings/index.d.ts", + "version": "2.20.3" +} diff --git a/node_modules/common-path-prefix/package.json b/node_modules/common-path-prefix/package.json index 5fbc77c3a..22fe0c323 100644 --- a/node_modules/common-path-prefix/package.json +++ b/node_modules/common-path-prefix/package.json @@ -1,24 +1,50 @@ { - "name": "common-path-prefix", - "version": "3.0.0", - "description": "Computes the longest prefix string that is common to each path, excluding the base component", - "main": "index.js", - "files": [ - "index.d.ts", - "index.js" + "_args": [ + [ + "common-path-prefix@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "test": "standard && nyc ava" + "_development": true, + "_from": "common-path-prefix@3.0.0", + "_id": "common-path-prefix@3.0.0", + "_inBundle": false, + "_integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "_location": "/common-path-prefix", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "common-path-prefix@3.0.0", + "name": "common-path-prefix", + "escapedName": "common-path-prefix", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" }, - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/common-path-prefix.git" + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net/" }, - "author": "Mark Wubben (https://novemberborn.net/)", - "license": "ISC", "bugs": { "url": "https://github.com/novemberborn/common-path-prefix/issues" }, + "description": "Computes the longest prefix string that is common to each path, excluding the base component", + "devDependencies": { + "ava": "^2.3.0", + "nyc": "^14.1.1", + "standard": "^14.0.2" + }, + "files": [ + "index.d.ts", + "index.js" + ], "homepage": "https://github.com/novemberborn/common-path-prefix#readme", "keywords": [ "common", @@ -33,9 +59,15 @@ "common path start", "common root" ], - "devDependencies": { - "ava": "^2.3.0", - "nyc": "^14.1.1", - "standard": "^14.0.2" - } -} \ No newline at end of file + "license": "ISC", + "main": "index.js", + "name": "common-path-prefix", + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/common-path-prefix.git" + }, + "scripts": { + "test": "standard && nyc ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/concat-map/package.json b/node_modules/concat-map/package.json index 396f2c1b9..70e0a4f09 100644 --- a/node_modules/concat-map/package.json +++ b/node_modules/concat-map/package.json @@ -1,12 +1,50 @@ { - "name": "concat-map", + "_args": [ + [ + "concat-map@0.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "concat-map@0.0.1", + "_id": "concat-map@0.0.1", + "_inBundle": false, + "_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "_location": "/concat-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "concat-map@0.0.1", + "name": "concat-map", + "escapedName": "concat-map", + "rawSpec": "0.0.1", + "saveSpec": null, + "fetchSpec": "0.0.1" + }, + "_requiredBy": [ + "/brace-expansion" + ], + "_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "_spec": "0.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-concat-map/issues" + }, "description": "concatenative mapdashery", - "version": "0.0.1", - "repository": { - "type": "git", - "url": "git://github.com/substack/node-concat-map.git" + "devDependencies": { + "tape": "~2.4.0" }, - "main": "index.js", + "directories": { + "example": "example", + "test": "test" + }, + "homepage": "https://github.com/substack/node-concat-map#readme", "keywords": [ "concat", "concatMap", @@ -14,22 +52,16 @@ "functional", "higher-order" ], - "directories": { - "example": "example", - "test": "test" + "license": "MIT", + "main": "index.js", + "name": "concat-map", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-concat-map.git" }, "scripts": { "test": "tape test/*.js" }, - "devDependencies": { - "tape": "~2.4.0" - }, - "license": "MIT", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, "testling": { "files": "test/*.js", "browsers": { @@ -55,5 +87,6 @@ 12 ] } - } -} \ No newline at end of file + }, + "version": "0.0.1" +} diff --git a/node_modules/concordance/node_modules/.bin/semver b/node_modules/concordance/node_modules/.bin/semver new file mode 120000 index 000000000..317eb293d --- /dev/null +++ b/node_modules/concordance/node_modules/.bin/semver @@ -0,0 +1 @@ +../semver/bin/semver \ No newline at end of file diff --git a/node_modules/concordance/node_modules/md5-hex/package.json b/node_modules/concordance/node_modules/md5-hex/package.json index f45fb17da..366ffe5c6 100644 --- a/node_modules/concordance/node_modules/md5-hex/package.json +++ b/node_modules/concordance/node_modules/md5-hex/package.json @@ -1,24 +1,58 @@ { - "name": "md5-hex", - "version": "2.0.0", - "description": "Create a MD5 hash with hex encoding", - "license": "MIT", - "repository": "sindresorhus/md5-hex", + "_args": [ + [ + "md5-hex@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "md5-hex@2.0.0", + "_id": "md5-hex@2.0.0", + "_inBundle": false, + "_integrity": "sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM=", + "_location": "/concordance/md5-hex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "md5-hex@2.0.0", + "name": "md5-hex", + "escapedName": "md5-hex", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/sindresorhus/md5-hex/issues" + }, + "dependencies": { + "md5-o-matic": "^0.1.1" + }, + "description": "Create a MD5 hash with hex encoding", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/sindresorhus/md5-hex#readme", "keywords": [ "hash", "crypto", @@ -28,12 +62,14 @@ "browser", "browserify" ], - "dependencies": { - "md5-o-matic": "^0.1.1" + "license": "MIT", + "name": "md5-hex", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/md5-hex.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "2.0.0" +} diff --git a/node_modules/concordance/node_modules/semver/CHANGELOG.md b/node_modules/concordance/node_modules/semver/CHANGELOG.md new file mode 100644 index 000000000..66304fdd2 --- /dev/null +++ b/node_modules/concordance/node_modules/semver/CHANGELOG.md @@ -0,0 +1,39 @@ +# changes log + +## 5.7 + +* Add `minVersion` method + +## 5.6 + +* Move boolean `loose` param to an options object, with + backwards-compatibility protection. +* Add ability to opt out of special prerelease version handling with + the `includePrerelease` option flag. + +## 5.5 + +* Add version coercion capabilities + +## 5.4 + +* Add intersection checking + +## 5.3 + +* Add `minSatisfying` method + +## 5.2 + +* Add `prerelease(v)` that returns prerelease components + +## 5.1 + +* Add Backus-Naur for ranges +* Remove excessively cute inspection methods + +## 5.0 + +* Remove AMD/Browserified build artifacts +* Fix ltr and gtr when using the `*` range +* Fix for range `*` with a prerelease identifier diff --git a/node_modules/concordance/node_modules/semver/LICENSE b/node_modules/concordance/node_modules/semver/LICENSE new file mode 100644 index 000000000..19129e315 --- /dev/null +++ b/node_modules/concordance/node_modules/semver/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/concordance/node_modules/semver/README.md b/node_modules/concordance/node_modules/semver/README.md new file mode 100644 index 000000000..f8dfa5a0d --- /dev/null +++ b/node_modules/concordance/node_modules/semver/README.md @@ -0,0 +1,412 @@ +semver(1) -- The semantic versioner for npm +=========================================== + +## Install + +```bash +npm install --save semver +```` + +## Usage + +As a node module: + +```js +const semver = require('semver') + +semver.valid('1.2.3') // '1.2.3' +semver.valid('a.b.c') // null +semver.clean(' =v1.2.3 ') // '1.2.3' +semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true +semver.gt('1.2.3', '9.8.7') // false +semver.lt('1.2.3', '9.8.7') // true +semver.minVersion('>=1.0.0') // '1.0.0' +semver.valid(semver.coerce('v2')) // '2.0.0' +semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7' +``` + +As a command-line utility: + +``` +$ semver -h + +A JavaScript implementation of the https://semver.org/ specification +Copyright Isaac Z. Schlueter + +Usage: semver [options] [ [...]] +Prints valid versions sorted by SemVer precedence + +Options: +-r --range + Print versions that match the specified range. + +-i --increment [] + Increment a version by the specified level. Level can + be one of: major, minor, patch, premajor, preminor, + prepatch, or prerelease. Default level is 'patch'. + Only one version may be specified. + +--preid + Identifier to be used to prefix premajor, preminor, + prepatch or prerelease version increments. + +-l --loose + Interpret versions and ranges loosely + +-p --include-prerelease + Always include prerelease versions in range matching + +-c --coerce + Coerce a string into SemVer if possible + (does not imply --loose) + +Program exits successfully if any valid version satisfies +all supplied ranges, and prints all satisfying versions. + +If no satisfying versions are found, then exits failure. + +Versions are printed in ascending order, so supplying +multiple versions to the utility will just sort them. +``` + +## Versions + +A "version" is described by the `v2.0.0` specification found at +. + +A leading `"="` or `"v"` character is stripped off and ignored. + +## Ranges + +A `version range` is a set of `comparators` which specify versions +that satisfy the range. + +A `comparator` is composed of an `operator` and a `version`. The set +of primitive `operators` is: + +* `<` Less than +* `<=` Less than or equal to +* `>` Greater than +* `>=` Greater than or equal to +* `=` Equal. If no operator is specified, then equality is assumed, + so this operator is optional, but MAY be included. + +For example, the comparator `>=1.2.7` would match the versions +`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6` +or `1.1.0`. + +Comparators can be joined by whitespace to form a `comparator set`, +which is satisfied by the **intersection** of all of the comparators +it includes. + +A range is composed of one or more comparator sets, joined by `||`. A +version matches a range if and only if every comparator in at least +one of the `||`-separated comparator sets is satisfied by the version. + +For example, the range `>=1.2.7 <1.3.0` would match the versions +`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`, +or `1.1.0`. + +The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`, +`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`. + +### Prerelease Tags + +If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then +it will only be allowed to satisfy comparator sets if at least one +comparator with the same `[major, minor, patch]` tuple also has a +prerelease tag. + +For example, the range `>1.2.3-alpha.3` would be allowed to match the +version `1.2.3-alpha.7`, but it would *not* be satisfied by +`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater +than" `1.2.3-alpha.3` according to the SemVer sort rules. The version +range only accepts prerelease tags on the `1.2.3` version. The +version `3.4.5` *would* satisfy the range, because it does not have a +prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`. + +The purpose for this behavior is twofold. First, prerelease versions +frequently are updated very quickly, and contain many breaking changes +that are (by the author's design) not yet fit for public consumption. +Therefore, by default, they are excluded from range matching +semantics. + +Second, a user who has opted into using a prerelease version has +clearly indicated the intent to use *that specific* set of +alpha/beta/rc versions. By including a prerelease tag in the range, +the user is indicating that they are aware of the risk. However, it +is still not appropriate to assume that they have opted into taking a +similar risk on the *next* set of prerelease versions. + +Note that this behavior can be suppressed (treating all prerelease +versions as if they were normal versions, for the purpose of range +matching) by setting the `includePrerelease` flag on the options +object to any +[functions](https://github.com/npm/node-semver#functions) that do +range matching. + +#### Prerelease Identifiers + +The method `.inc` takes an additional `identifier` string argument that +will append the value of the string as a prerelease identifier: + +```javascript +semver.inc('1.2.3', 'prerelease', 'beta') +// '1.2.4-beta.0' +``` + +command-line example: + +```bash +$ semver 1.2.3 -i prerelease --preid beta +1.2.4-beta.0 +``` + +Which then can be used to increment further: + +```bash +$ semver 1.2.4-beta.0 -i prerelease +1.2.4-beta.1 +``` + +### Advanced Range Syntax + +Advanced range syntax desugars to primitive comparators in +deterministic ways. + +Advanced ranges may be combined in the same way as primitive +comparators using white space or `||`. + +#### Hyphen Ranges `X.Y.Z - A.B.C` + +Specifies an inclusive set. + +* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4` + +If a partial version is provided as the first version in the inclusive +range, then the missing pieces are replaced with zeroes. + +* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4` + +If a partial version is provided as the second version in the +inclusive range, then all versions that start with the supplied parts +of the tuple are accepted, but nothing that would be greater than the +provided tuple parts. + +* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` +* `1.2.3 - 2` := `>=1.2.3 <3.0.0` + +#### X-Ranges `1.2.x` `1.X` `1.2.*` `*` + +Any of `X`, `x`, or `*` may be used to "stand in" for one of the +numeric values in the `[major, minor, patch]` tuple. + +* `*` := `>=0.0.0` (Any version satisfies) +* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) +* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) + +A partial version range is treated as an X-Range, so the special +character is in fact optional. + +* `""` (empty string) := `*` := `>=0.0.0` +* `1` := `1.x.x` := `>=1.0.0 <2.0.0` +* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` + +#### Tilde Ranges `~1.2.3` `~1.2` `~1` + +Allows patch-level changes if a minor version is specified on the +comparator. Allows minor-level changes if not. + +* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` +* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) +* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) +* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` +* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) +* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) +* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. + +#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` + +Allows changes that do not modify the left-most non-zero digit in the +`[major, minor, patch]` tuple. In other words, this allows patch and +minor updates for versions `1.0.0` and above, patch updates for +versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. + +Many authors treat a `0.x` version as if the `x` were the major +"breaking-change" indicator. + +Caret ranges are ideal when an author may make breaking changes +between `0.2.4` and `0.3.0` releases, which is a common practice. +However, it presumes that there will *not* be breaking changes between +`0.2.4` and `0.2.5`. It allows for changes that are presumed to be +additive (but non-breaking), according to commonly observed practices. + +* `^1.2.3` := `>=1.2.3 <2.0.0` +* `^0.2.3` := `>=0.2.3 <0.3.0` +* `^0.0.3` := `>=0.0.3 <0.0.4` +* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. +* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the + `0.0.3` version *only* will be allowed, if they are greater than or + equal to `beta`. So, `0.0.3-pr.2` would be allowed. + +When parsing caret ranges, a missing `patch` value desugars to the +number `0`, but will allow flexibility within that value, even if the +major and minor versions are both `0`. + +* `^1.2.x` := `>=1.2.0 <2.0.0` +* `^0.0.x` := `>=0.0.0 <0.1.0` +* `^0.0` := `>=0.0.0 <0.1.0` + +A missing `minor` and `patch` values will desugar to zero, but also +allow flexibility within those values, even if the major version is +zero. + +* `^1.x` := `>=1.0.0 <2.0.0` +* `^0.x` := `>=0.0.0 <1.0.0` + +### Range Grammar + +Putting all this together, here is a Backus-Naur grammar for ranges, +for the benefit of parser authors: + +```bnf +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ +``` + +## Functions + +All methods and classes take a final `options` object argument. All +options in this object are `false` by default. The options supported +are: + +- `loose` Be more forgiving about not-quite-valid semver strings. + (Any resulting output will always be 100% strict compliant, of + course.) For backwards compatibility reasons, if the `options` + argument is a boolean value instead of an object, it is interpreted + to be the `loose` param. +- `includePrerelease` Set to suppress the [default + behavior](https://github.com/npm/node-semver#prerelease-tags) of + excluding prerelease tagged versions from ranges unless they are + explicitly opted into. + +Strict-mode Comparators and Ranges will be strict about the SemVer +strings that they parse. + +* `valid(v)`: Return the parsed version, or null if it's not valid. +* `inc(v, release)`: Return the version incremented by the release + type (`major`, `premajor`, `minor`, `preminor`, `patch`, + `prepatch`, or `prerelease`), or null if it's not valid + * `premajor` in one call will bump the version up to the next major + version and down to a prerelease of that major version. + `preminor`, and `prepatch` work the same way. + * If called from a non-prerelease version, the `prerelease` will work the + same as `prepatch`. It increments the patch version, then makes a + prerelease. If the input version is already a prerelease it simply + increments it. +* `prerelease(v)`: Returns an array of prerelease components, or null + if none exist. Example: `prerelease('1.2.3-alpha.1') -> ['alpha', 1]` +* `major(v)`: Return the major version number. +* `minor(v)`: Return the minor version number. +* `patch(v)`: Return the patch version number. +* `intersects(r1, r2, loose)`: Return true if the two supplied ranges + or comparators intersect. +* `parse(v)`: Attempt to parse a string as a semantic version, returning either + a `SemVer` object or `null`. + +### Comparison + +* `gt(v1, v2)`: `v1 > v2` +* `gte(v1, v2)`: `v1 >= v2` +* `lt(v1, v2)`: `v1 < v2` +* `lte(v1, v2)`: `v1 <= v2` +* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent, + even if they're not the exact same string. You already know how to + compare strings. +* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`. +* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call + the corresponding function above. `"==="` and `"!=="` do simple + string comparison, but are included for completeness. Throws if an + invalid comparison string is provided. +* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if + `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. +* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions + in descending order when passed to `Array.sort()`. +* `diff(v1, v2)`: Returns difference between two versions by the release type + (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), + or null if the versions are the same. + +### Comparators + +* `intersects(comparator)`: Return true if the comparators intersect + +### Ranges + +* `validRange(range)`: Return the valid range or null if it's not valid +* `satisfies(version, range)`: Return true if the version satisfies the + range. +* `maxSatisfying(versions, range)`: Return the highest version in the list + that satisfies the range, or `null` if none of them do. +* `minSatisfying(versions, range)`: Return the lowest version in the list + that satisfies the range, or `null` if none of them do. +* `minVersion(range)`: Return the lowest version that can possibly match + the given range. +* `gtr(version, range)`: Return `true` if version is greater than all the + versions possible in the range. +* `ltr(version, range)`: Return `true` if version is less than all the + versions possible in the range. +* `outside(version, range, hilo)`: Return true if the version is outside + the bounds of the range in either the high or low direction. The + `hilo` argument must be either the string `'>'` or `'<'`. (This is + the function called by `gtr` and `ltr`.) +* `intersects(range)`: Return true if any of the ranges comparators intersect + +Note that, since ranges may be non-contiguous, a version might not be +greater than a range, less than a range, *or* satisfy a range! For +example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9` +until `2.0.0`, so the version `1.2.10` would not be greater than the +range (because `2.0.1` satisfies, which is higher), nor less than the +range (since `1.2.8` satisfies, which is lower), and it also does not +satisfy the range. + +If you want to know if a version satisfies or does not satisfy a +range, use the `satisfies(version, range)` function. + +### Coercion + +* `coerce(version)`: Coerces a string to semver if possible + +This aims to provide a very forgiving translation of a non-semver string to +semver. It looks for the first digit in a string, and consumes all +remaining characters which satisfy at least a partial semver (e.g., `1`, +`1.2`, `1.2.3`) up to the max permitted length (256 characters). Longer +versions are simply truncated (`4.6.3.9.2-alpha2` becomes `4.6.3`). All +surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes +`3.4.0`). Only text which lacks digits will fail coercion (`version one` +is not valid). The maximum length for any semver component considered for +coercion is 16 characters; longer components will be ignored +(`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any +semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value +components are invalid (`9999999999999999.4.7.4` is likely invalid). diff --git a/node_modules/semver/bin/semver b/node_modules/concordance/node_modules/semver/bin/semver similarity index 100% rename from node_modules/semver/bin/semver rename to node_modules/concordance/node_modules/semver/bin/semver diff --git a/node_modules/concordance/node_modules/semver/package.json b/node_modules/concordance/node_modules/semver/package.json new file mode 100644 index 000000000..af07c865c --- /dev/null +++ b/node_modules/concordance/node_modules/semver/package.json @@ -0,0 +1,60 @@ +{ + "_from": "semver@^5.5.1", + "_id": "semver@5.7.1", + "_inBundle": false, + "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "_location": "/concordance/semver", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "semver@^5.5.1", + "name": "semver", + "escapedName": "semver", + "rawSpec": "^5.5.1", + "saveSpec": null, + "fetchSpec": "^5.5.1" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", + "_spec": "semver@^5.5.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/concordance", + "bin": { + "semver": "bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.1" +} diff --git a/node_modules/concordance/node_modules/semver/range.bnf b/node_modules/concordance/node_modules/semver/range.bnf new file mode 100644 index 000000000..d4c6ae0d7 --- /dev/null +++ b/node_modules/concordance/node_modules/semver/range.bnf @@ -0,0 +1,16 @@ +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | [1-9] ( [0-9] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ diff --git a/node_modules/semver/semver.js b/node_modules/concordance/node_modules/semver/semver.js similarity index 100% rename from node_modules/semver/semver.js rename to node_modules/concordance/node_modules/semver/semver.js diff --git a/node_modules/concordance/package.json b/node_modules/concordance/package.json index 6c8901446..8df836287 100644 --- a/node_modules/concordance/package.json +++ b/node_modules/concordance/package.json @@ -1,29 +1,48 @@ { - "name": "concordance", - "version": "4.0.0", - "description": "Compare, format, diff and serialize any JavaScript value", - "main": "index.js", - "files": [ - "lib", - "index.js" + "_args": [ + [ + "concordance@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" + "_development": true, + "_from": "concordance@4.0.0", + "_id": "concordance@4.0.0", + "_inBundle": false, + "_integrity": "sha512-l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ==", + "_location": "/concordance", + "_phantomChildren": { + "md5-o-matic": "0.1.1" }, - "scripts": { - "lint": "as-i-preach", - "test": "npm run -s lint && nyc ava" + "_requested": { + "type": "version", + "registry": true, + "raw": "concordance@4.0.0", + "name": "concordance", + "escapedName": "concordance", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" }, - "repository": { - "type": "git", - "url": "git+https://github.com/concordancejs/concordance.git" + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/concordance/-/concordance-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "as-i-preach": { + "allowDevDependencies": [ + "perf/**/*.js", + "test/**/*.js" + ] + }, + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net/" }, - "author": "Mark Wubben (https://novemberborn.net/)", - "license": "ISC", "bugs": { "url": "https://github.com/concordancejs/concordance/issues" }, - "homepage": "https://github.com/concordancejs/concordance#readme", "dependencies": { "date-time": "^2.1.0", "esutils": "^2.0.2", @@ -37,6 +56,7 @@ "semver": "^5.5.1", "well-known-symbols": "^2.0.0" }, + "description": "Compare, format, diff and serialize any JavaScript value", "devDependencies": { "@novemberborn/as-i-preach": "^10.0.1", "ava": "1.0.0-beta.8", @@ -47,12 +67,17 @@ "nyc": "^13.0.1", "pretty-format": "^23.6.0" }, - "as-i-preach": { - "allowDevDependencies": [ - "perf/**/*.js", - "test/**/*.js" - ] + "engines": { + "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/concordancejs/concordance#readme", + "license": "ISC", + "main": "index.js", + "name": "concordance", "nyc": { "reporter": [ "html", @@ -60,5 +85,14 @@ "text" ] }, - "standard-engine": "@novemberborn/as-i-preach" -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git+https://github.com/concordancejs/concordance.git" + }, + "scripts": { + "lint": "as-i-preach", + "test": "npm run -s lint && nyc ava" + }, + "standard-engine": "@novemberborn/as-i-preach", + "version": "4.0.0" +} diff --git a/node_modules/configstore/package.json b/node_modules/configstore/package.json index 08dd5b83a..64739a64a 100644 --- a/node_modules/configstore/package.json +++ b/node_modules/configstore/package.json @@ -1,23 +1,61 @@ { - "name": "configstore", - "version": "5.0.1", - "description": "Easily load and save config without having to think about where and how", - "license": "BSD-2-Clause", - "repository": "yeoman/configstore", + "_args": [ + [ + "configstore@5.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "configstore@5.0.1", + "_id": "configstore@5.0.1", + "_inBundle": false, + "_integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "_location": "/configstore", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "configstore@5.0.1", + "name": "configstore", + "escapedName": "configstore", + "rawSpec": "5.0.1", + "saveSpec": null, + "fetchSpec": "5.0.1" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "_spec": "5.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/yeoman/configstore/issues" + }, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "description": "Easily load and save config without having to think about where and how", + "devDependencies": { + "ava": "^2.1.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/yeoman/configstore#readme", "keywords": [ "config", "store", @@ -31,16 +69,14 @@ "persistent", "save" ], - "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" + "license": "BSD-2-Clause", + "name": "configstore", + "repository": { + "type": "git", + "url": "git+https://github.com/yeoman/configstore.git" }, - "devDependencies": { - "ava": "^2.1.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "5.0.1" +} diff --git a/node_modules/console-log-level/package.json b/node_modules/console-log-level/package.json index 55a7bcc1c..311fa90ee 100644 --- a/node_modules/console-log-level/package.json +++ b/node_modules/console-log-level/package.json @@ -1,15 +1,50 @@ { - "name": "console-log-level", - "version": "1.4.1", - "description": "The most simple logger imaginable", - "main": "index.js", - "scripts": { - "test": "standard && tape test.js" + "_args": [ + [ + "console-log-level@1.4.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "console-log-level@1.4.1", + "_id": "console-log-level@1.4.1", + "_inBundle": false, + "_integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==", + "_location": "/console-log-level", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "console-log-level@1.4.1", + "name": "console-log-level", + "escapedName": "console-log-level", + "rawSpec": "1.4.1", + "saveSpec": null, + "fetchSpec": "1.4.1" }, - "repository": { - "type": "git", - "url": "https://github.com/watson/console-log-level.git" + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz", + "_spec": "1.4.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Thomas Watson Steen", + "email": "w@tson.dk" + }, + "bugs": { + "url": "https://github.com/watson/console-log-level/issues" }, + "coordinates": [ + 55.778253, + 12.593208 + ], + "dependencies": {}, + "description": "The most simple logger imaginable", + "devDependencies": { + "standard": "^12.0.1", + "tape": "^4.10.1" + }, + "homepage": "https://github.com/watson/console-log-level", "keywords": [ "log", "logging", @@ -19,19 +54,15 @@ "stdout", "stderr" ], - "author": "Thomas Watson Steen ", "license": "MIT", - "bugs": { - "url": "https://github.com/watson/console-log-level/issues" + "main": "index.js", + "name": "console-log-level", + "repository": { + "type": "git", + "url": "git+https://github.com/watson/console-log-level.git" }, - "homepage": "https://github.com/watson/console-log-level", - "dependencies": {}, - "devDependencies": { - "standard": "^12.0.1", - "tape": "^4.10.1" + "scripts": { + "test": "standard && tape test.js" }, - "coordinates": [ - 55.778253, - 12.593208 - ] -} \ No newline at end of file + "version": "1.4.1" +} diff --git a/node_modules/convert-source-map/package.json b/node_modules/convert-source-map/package.json index 40ec9f5af..9093a2ec0 100644 --- a/node_modules/convert-source-map/package.json +++ b/node_modules/convert-source-map/package.json @@ -1,23 +1,59 @@ { - "name": "convert-source-map", - "version": "1.7.0", - "description": "Converts a source-map from/to different formats and allows adding/changing properties.", - "main": "index.js", - "scripts": { - "test": "tap test/*.js --color" + "_args": [ + [ + "convert-source-map@1.7.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "convert-source-map@1.7.0", + "_id": "convert-source-map@1.7.0", + "_inBundle": false, + "_integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "_location": "/convert-source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "convert-source-map@1.7.0", + "name": "convert-source-map", + "escapedName": "convert-source-map", + "rawSpec": "1.7.0", + "saveSpec": null, + "fetchSpec": "1.7.0" }, - "repository": { - "type": "git", - "url": "git://github.com/thlorenz/convert-source-map.git" + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "_spec": "1.7.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "http://thlorenz.com" + }, + "browser": { + "fs": false + }, + "bugs": { + "url": "https://github.com/thlorenz/convert-source-map/issues" }, - "homepage": "https://github.com/thlorenz/convert-source-map", "dependencies": { "safe-buffer": "~5.1.1" }, + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", "devDependencies": { "inline-source-map": "~0.6.2", "tap": "~9.0.0" }, + "engine": { + "node": ">=0.6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/thlorenz/convert-source-map", "keywords": [ "convert", "sourcemap", @@ -26,19 +62,15 @@ "browser", "debug" ], - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "http://thlorenz.com" - }, "license": "MIT", - "engine": { - "node": ">=0.6" + "main": "index.js", + "name": "convert-source-map", + "repository": { + "type": "git", + "url": "git://github.com/thlorenz/convert-source-map.git" }, - "files": [ - "index.js" - ], - "browser": { - "fs": false - } -} \ No newline at end of file + "scripts": { + "test": "tap test/*.js --color" + }, + "version": "1.7.0" +} diff --git a/node_modules/convert-to-spaces/package.json b/node_modules/convert-to-spaces/package.json index 330450e4d..9277f4bc0 100644 --- a/node_modules/convert-to-spaces/package.json +++ b/node_modules/convert-to-spaces/package.json @@ -1,25 +1,64 @@ { - "name": "convert-to-spaces", - "version": "1.0.2", + "_args": [ + [ + "convert-to-spaces@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "convert-to-spaces@1.0.2", + "_id": "convert-to-spaces@1.0.2", + "_inBundle": false, + "_integrity": "sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=", + "_location": "/convert-to-spaces", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "convert-to-spaces@1.0.2", + "name": "convert-to-spaces", + "escapedName": "convert-to-spaces", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/code-excerpt" + ], + "_resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Vadim Demedes", + "email": "vdemedes@gmail.com" + }, + "bugs": { + "url": "https://github.com/vadimdemedes/convert-to-spaces/issues" + }, "description": "Convert tabs to spaces in a string", - "license": "MIT", - "repository": "vadimdemedes/convert-to-spaces", - "author": "Vadim Demedes ", + "devDependencies": { + "ava": "^0.18.2", + "xo": "^0.17.1" + }, + "engines": { + "node": ">= 4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/vadimdemedes/convert-to-spaces#readme", "keywords": [ "tabs", "spaces" ], - "engines": { - "node": ">= 4" + "license": "MIT", + "name": "convert-to-spaces", + "repository": { + "type": "git", + "url": "git+https://github.com/vadimdemedes/convert-to-spaces.git" }, "scripts": { "test": "xo && ava" }, - "files": [ - "index.js" - ], - "devDependencies": { - "ava": "^0.18.2", - "xo": "^0.17.1" - } -} \ No newline at end of file + "version": "1.0.2" +} diff --git a/node_modules/cross-spawn/node_modules/.bin/semver b/node_modules/cross-spawn/node_modules/.bin/semver new file mode 120000 index 000000000..317eb293d --- /dev/null +++ b/node_modules/cross-spawn/node_modules/.bin/semver @@ -0,0 +1 @@ +../semver/bin/semver \ No newline at end of file diff --git a/node_modules/cross-spawn/node_modules/semver/CHANGELOG.md b/node_modules/cross-spawn/node_modules/semver/CHANGELOG.md new file mode 100644 index 000000000..66304fdd2 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/CHANGELOG.md @@ -0,0 +1,39 @@ +# changes log + +## 5.7 + +* Add `minVersion` method + +## 5.6 + +* Move boolean `loose` param to an options object, with + backwards-compatibility protection. +* Add ability to opt out of special prerelease version handling with + the `includePrerelease` option flag. + +## 5.5 + +* Add version coercion capabilities + +## 5.4 + +* Add intersection checking + +## 5.3 + +* Add `minSatisfying` method + +## 5.2 + +* Add `prerelease(v)` that returns prerelease components + +## 5.1 + +* Add Backus-Naur for ranges +* Remove excessively cute inspection methods + +## 5.0 + +* Remove AMD/Browserified build artifacts +* Fix ltr and gtr when using the `*` range +* Fix for range `*` with a prerelease identifier diff --git a/node_modules/cross-spawn/node_modules/semver/LICENSE b/node_modules/cross-spawn/node_modules/semver/LICENSE new file mode 100644 index 000000000..19129e315 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/cross-spawn/node_modules/semver/README.md b/node_modules/cross-spawn/node_modules/semver/README.md new file mode 100644 index 000000000..f8dfa5a0d --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/README.md @@ -0,0 +1,412 @@ +semver(1) -- The semantic versioner for npm +=========================================== + +## Install + +```bash +npm install --save semver +```` + +## Usage + +As a node module: + +```js +const semver = require('semver') + +semver.valid('1.2.3') // '1.2.3' +semver.valid('a.b.c') // null +semver.clean(' =v1.2.3 ') // '1.2.3' +semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true +semver.gt('1.2.3', '9.8.7') // false +semver.lt('1.2.3', '9.8.7') // true +semver.minVersion('>=1.0.0') // '1.0.0' +semver.valid(semver.coerce('v2')) // '2.0.0' +semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7' +``` + +As a command-line utility: + +``` +$ semver -h + +A JavaScript implementation of the https://semver.org/ specification +Copyright Isaac Z. Schlueter + +Usage: semver [options] [ [...]] +Prints valid versions sorted by SemVer precedence + +Options: +-r --range + Print versions that match the specified range. + +-i --increment [] + Increment a version by the specified level. Level can + be one of: major, minor, patch, premajor, preminor, + prepatch, or prerelease. Default level is 'patch'. + Only one version may be specified. + +--preid + Identifier to be used to prefix premajor, preminor, + prepatch or prerelease version increments. + +-l --loose + Interpret versions and ranges loosely + +-p --include-prerelease + Always include prerelease versions in range matching + +-c --coerce + Coerce a string into SemVer if possible + (does not imply --loose) + +Program exits successfully if any valid version satisfies +all supplied ranges, and prints all satisfying versions. + +If no satisfying versions are found, then exits failure. + +Versions are printed in ascending order, so supplying +multiple versions to the utility will just sort them. +``` + +## Versions + +A "version" is described by the `v2.0.0` specification found at +. + +A leading `"="` or `"v"` character is stripped off and ignored. + +## Ranges + +A `version range` is a set of `comparators` which specify versions +that satisfy the range. + +A `comparator` is composed of an `operator` and a `version`. The set +of primitive `operators` is: + +* `<` Less than +* `<=` Less than or equal to +* `>` Greater than +* `>=` Greater than or equal to +* `=` Equal. If no operator is specified, then equality is assumed, + so this operator is optional, but MAY be included. + +For example, the comparator `>=1.2.7` would match the versions +`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6` +or `1.1.0`. + +Comparators can be joined by whitespace to form a `comparator set`, +which is satisfied by the **intersection** of all of the comparators +it includes. + +A range is composed of one or more comparator sets, joined by `||`. A +version matches a range if and only if every comparator in at least +one of the `||`-separated comparator sets is satisfied by the version. + +For example, the range `>=1.2.7 <1.3.0` would match the versions +`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`, +or `1.1.0`. + +The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`, +`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`. + +### Prerelease Tags + +If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then +it will only be allowed to satisfy comparator sets if at least one +comparator with the same `[major, minor, patch]` tuple also has a +prerelease tag. + +For example, the range `>1.2.3-alpha.3` would be allowed to match the +version `1.2.3-alpha.7`, but it would *not* be satisfied by +`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater +than" `1.2.3-alpha.3` according to the SemVer sort rules. The version +range only accepts prerelease tags on the `1.2.3` version. The +version `3.4.5` *would* satisfy the range, because it does not have a +prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`. + +The purpose for this behavior is twofold. First, prerelease versions +frequently are updated very quickly, and contain many breaking changes +that are (by the author's design) not yet fit for public consumption. +Therefore, by default, they are excluded from range matching +semantics. + +Second, a user who has opted into using a prerelease version has +clearly indicated the intent to use *that specific* set of +alpha/beta/rc versions. By including a prerelease tag in the range, +the user is indicating that they are aware of the risk. However, it +is still not appropriate to assume that they have opted into taking a +similar risk on the *next* set of prerelease versions. + +Note that this behavior can be suppressed (treating all prerelease +versions as if they were normal versions, for the purpose of range +matching) by setting the `includePrerelease` flag on the options +object to any +[functions](https://github.com/npm/node-semver#functions) that do +range matching. + +#### Prerelease Identifiers + +The method `.inc` takes an additional `identifier` string argument that +will append the value of the string as a prerelease identifier: + +```javascript +semver.inc('1.2.3', 'prerelease', 'beta') +// '1.2.4-beta.0' +``` + +command-line example: + +```bash +$ semver 1.2.3 -i prerelease --preid beta +1.2.4-beta.0 +``` + +Which then can be used to increment further: + +```bash +$ semver 1.2.4-beta.0 -i prerelease +1.2.4-beta.1 +``` + +### Advanced Range Syntax + +Advanced range syntax desugars to primitive comparators in +deterministic ways. + +Advanced ranges may be combined in the same way as primitive +comparators using white space or `||`. + +#### Hyphen Ranges `X.Y.Z - A.B.C` + +Specifies an inclusive set. + +* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4` + +If a partial version is provided as the first version in the inclusive +range, then the missing pieces are replaced with zeroes. + +* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4` + +If a partial version is provided as the second version in the +inclusive range, then all versions that start with the supplied parts +of the tuple are accepted, but nothing that would be greater than the +provided tuple parts. + +* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` +* `1.2.3 - 2` := `>=1.2.3 <3.0.0` + +#### X-Ranges `1.2.x` `1.X` `1.2.*` `*` + +Any of `X`, `x`, or `*` may be used to "stand in" for one of the +numeric values in the `[major, minor, patch]` tuple. + +* `*` := `>=0.0.0` (Any version satisfies) +* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) +* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) + +A partial version range is treated as an X-Range, so the special +character is in fact optional. + +* `""` (empty string) := `*` := `>=0.0.0` +* `1` := `1.x.x` := `>=1.0.0 <2.0.0` +* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` + +#### Tilde Ranges `~1.2.3` `~1.2` `~1` + +Allows patch-level changes if a minor version is specified on the +comparator. Allows minor-level changes if not. + +* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` +* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) +* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) +* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` +* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) +* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) +* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. + +#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` + +Allows changes that do not modify the left-most non-zero digit in the +`[major, minor, patch]` tuple. In other words, this allows patch and +minor updates for versions `1.0.0` and above, patch updates for +versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. + +Many authors treat a `0.x` version as if the `x` were the major +"breaking-change" indicator. + +Caret ranges are ideal when an author may make breaking changes +between `0.2.4` and `0.3.0` releases, which is a common practice. +However, it presumes that there will *not* be breaking changes between +`0.2.4` and `0.2.5`. It allows for changes that are presumed to be +additive (but non-breaking), according to commonly observed practices. + +* `^1.2.3` := `>=1.2.3 <2.0.0` +* `^0.2.3` := `>=0.2.3 <0.3.0` +* `^0.0.3` := `>=0.0.3 <0.0.4` +* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. +* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the + `0.0.3` version *only* will be allowed, if they are greater than or + equal to `beta`. So, `0.0.3-pr.2` would be allowed. + +When parsing caret ranges, a missing `patch` value desugars to the +number `0`, but will allow flexibility within that value, even if the +major and minor versions are both `0`. + +* `^1.2.x` := `>=1.2.0 <2.0.0` +* `^0.0.x` := `>=0.0.0 <0.1.0` +* `^0.0` := `>=0.0.0 <0.1.0` + +A missing `minor` and `patch` values will desugar to zero, but also +allow flexibility within those values, even if the major version is +zero. + +* `^1.x` := `>=1.0.0 <2.0.0` +* `^0.x` := `>=0.0.0 <1.0.0` + +### Range Grammar + +Putting all this together, here is a Backus-Naur grammar for ranges, +for the benefit of parser authors: + +```bnf +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ +``` + +## Functions + +All methods and classes take a final `options` object argument. All +options in this object are `false` by default. The options supported +are: + +- `loose` Be more forgiving about not-quite-valid semver strings. + (Any resulting output will always be 100% strict compliant, of + course.) For backwards compatibility reasons, if the `options` + argument is a boolean value instead of an object, it is interpreted + to be the `loose` param. +- `includePrerelease` Set to suppress the [default + behavior](https://github.com/npm/node-semver#prerelease-tags) of + excluding prerelease tagged versions from ranges unless they are + explicitly opted into. + +Strict-mode Comparators and Ranges will be strict about the SemVer +strings that they parse. + +* `valid(v)`: Return the parsed version, or null if it's not valid. +* `inc(v, release)`: Return the version incremented by the release + type (`major`, `premajor`, `minor`, `preminor`, `patch`, + `prepatch`, or `prerelease`), or null if it's not valid + * `premajor` in one call will bump the version up to the next major + version and down to a prerelease of that major version. + `preminor`, and `prepatch` work the same way. + * If called from a non-prerelease version, the `prerelease` will work the + same as `prepatch`. It increments the patch version, then makes a + prerelease. If the input version is already a prerelease it simply + increments it. +* `prerelease(v)`: Returns an array of prerelease components, or null + if none exist. Example: `prerelease('1.2.3-alpha.1') -> ['alpha', 1]` +* `major(v)`: Return the major version number. +* `minor(v)`: Return the minor version number. +* `patch(v)`: Return the patch version number. +* `intersects(r1, r2, loose)`: Return true if the two supplied ranges + or comparators intersect. +* `parse(v)`: Attempt to parse a string as a semantic version, returning either + a `SemVer` object or `null`. + +### Comparison + +* `gt(v1, v2)`: `v1 > v2` +* `gte(v1, v2)`: `v1 >= v2` +* `lt(v1, v2)`: `v1 < v2` +* `lte(v1, v2)`: `v1 <= v2` +* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent, + even if they're not the exact same string. You already know how to + compare strings. +* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`. +* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call + the corresponding function above. `"==="` and `"!=="` do simple + string comparison, but are included for completeness. Throws if an + invalid comparison string is provided. +* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if + `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. +* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions + in descending order when passed to `Array.sort()`. +* `diff(v1, v2)`: Returns difference between two versions by the release type + (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), + or null if the versions are the same. + +### Comparators + +* `intersects(comparator)`: Return true if the comparators intersect + +### Ranges + +* `validRange(range)`: Return the valid range or null if it's not valid +* `satisfies(version, range)`: Return true if the version satisfies the + range. +* `maxSatisfying(versions, range)`: Return the highest version in the list + that satisfies the range, or `null` if none of them do. +* `minSatisfying(versions, range)`: Return the lowest version in the list + that satisfies the range, or `null` if none of them do. +* `minVersion(range)`: Return the lowest version that can possibly match + the given range. +* `gtr(version, range)`: Return `true` if version is greater than all the + versions possible in the range. +* `ltr(version, range)`: Return `true` if version is less than all the + versions possible in the range. +* `outside(version, range, hilo)`: Return true if the version is outside + the bounds of the range in either the high or low direction. The + `hilo` argument must be either the string `'>'` or `'<'`. (This is + the function called by `gtr` and `ltr`.) +* `intersects(range)`: Return true if any of the ranges comparators intersect + +Note that, since ranges may be non-contiguous, a version might not be +greater than a range, less than a range, *or* satisfy a range! For +example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9` +until `2.0.0`, so the version `1.2.10` would not be greater than the +range (because `2.0.1` satisfies, which is higher), nor less than the +range (since `1.2.8` satisfies, which is lower), and it also does not +satisfy the range. + +If you want to know if a version satisfies or does not satisfy a +range, use the `satisfies(version, range)` function. + +### Coercion + +* `coerce(version)`: Coerces a string to semver if possible + +This aims to provide a very forgiving translation of a non-semver string to +semver. It looks for the first digit in a string, and consumes all +remaining characters which satisfy at least a partial semver (e.g., `1`, +`1.2`, `1.2.3`) up to the max permitted length (256 characters). Longer +versions are simply truncated (`4.6.3.9.2-alpha2` becomes `4.6.3`). All +surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes +`3.4.0`). Only text which lacks digits will fail coercion (`version one` +is not valid). The maximum length for any semver component considered for +coercion is 16 characters; longer components will be ignored +(`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any +semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value +components are invalid (`9999999999999999.4.7.4` is likely invalid). diff --git a/node_modules/cross-spawn/node_modules/semver/bin/semver b/node_modules/cross-spawn/node_modules/semver/bin/semver new file mode 100755 index 000000000..801e77f13 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/bin/semver @@ -0,0 +1,160 @@ +#!/usr/bin/env node +// Standalone semver comparison program. +// Exits successfully and prints matching version(s) if +// any supplied version is valid and passes all tests. + +var argv = process.argv.slice(2) + +var versions = [] + +var range = [] + +var inc = null + +var version = require('../package.json').version + +var loose = false + +var includePrerelease = false + +var coerce = false + +var identifier + +var semver = require('../semver') + +var reverse = false + +var options = {} + +main() + +function main () { + if (!argv.length) return help() + while (argv.length) { + var a = argv.shift() + var indexOfEqualSign = a.indexOf('=') + if (indexOfEqualSign !== -1) { + a = a.slice(0, indexOfEqualSign) + argv.unshift(a.slice(indexOfEqualSign + 1)) + } + switch (a) { + case '-rv': case '-rev': case '--rev': case '--reverse': + reverse = true + break + case '-l': case '--loose': + loose = true + break + case '-p': case '--include-prerelease': + includePrerelease = true + break + case '-v': case '--version': + versions.push(argv.shift()) + break + case '-i': case '--inc': case '--increment': + switch (argv[0]) { + case 'major': case 'minor': case 'patch': case 'prerelease': + case 'premajor': case 'preminor': case 'prepatch': + inc = argv.shift() + break + default: + inc = 'patch' + break + } + break + case '--preid': + identifier = argv.shift() + break + case '-r': case '--range': + range.push(argv.shift()) + break + case '-c': case '--coerce': + coerce = true + break + case '-h': case '--help': case '-?': + return help() + default: + versions.push(a) + break + } + } + + var options = { loose: loose, includePrerelease: includePrerelease } + + versions = versions.map(function (v) { + return coerce ? (semver.coerce(v) || { version: v }).version : v + }).filter(function (v) { + return semver.valid(v) + }) + if (!versions.length) return fail() + if (inc && (versions.length !== 1 || range.length)) { return failInc() } + + for (var i = 0, l = range.length; i < l; i++) { + versions = versions.filter(function (v) { + return semver.satisfies(v, range[i], options) + }) + if (!versions.length) return fail() + } + return success(versions) +} + +function failInc () { + console.error('--inc can only be used on a single version with no range') + fail() +} + +function fail () { process.exit(1) } + +function success () { + var compare = reverse ? 'rcompare' : 'compare' + versions.sort(function (a, b) { + return semver[compare](a, b, options) + }).map(function (v) { + return semver.clean(v, options) + }).map(function (v) { + return inc ? semver.inc(v, inc, options, identifier) : v + }).forEach(function (v, i, _) { console.log(v) }) +} + +function help () { + console.log(['SemVer ' + version, + '', + 'A JavaScript implementation of the https://semver.org/ specification', + 'Copyright Isaac Z. Schlueter', + '', + 'Usage: semver [options] [ [...]]', + 'Prints valid versions sorted by SemVer precedence', + '', + 'Options:', + '-r --range ', + ' Print versions that match the specified range.', + '', + '-i --increment []', + ' Increment a version by the specified level. Level can', + ' be one of: major, minor, patch, premajor, preminor,', + " prepatch, or prerelease. Default level is 'patch'.", + ' Only one version may be specified.', + '', + '--preid ', + ' Identifier to be used to prefix premajor, preminor,', + ' prepatch or prerelease version increments.', + '', + '-l --loose', + ' Interpret versions and ranges loosely', + '', + '-p --include-prerelease', + ' Always include prerelease versions in range matching', + '', + '-c --coerce', + ' Coerce a string into SemVer if possible', + ' (does not imply --loose)', + '', + 'Program exits successfully if any valid version satisfies', + 'all supplied ranges, and prints all satisfying versions.', + '', + 'If no satisfying versions are found, then exits failure.', + '', + 'Versions are printed in ascending order, so supplying', + 'multiple versions to the utility will just sort them.' + ].join('\n')) +} diff --git a/node_modules/cross-spawn/node_modules/semver/package.json b/node_modules/cross-spawn/node_modules/semver/package.json new file mode 100644 index 000000000..0dceee117 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/package.json @@ -0,0 +1,60 @@ +{ + "_from": "semver@^5.5.0", + "_id": "semver@5.7.1", + "_inBundle": false, + "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "_location": "/cross-spawn/semver", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "semver@^5.5.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "^5.5.0", + "saveSpec": null, + "fetchSpec": "^5.5.0" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", + "_spec": "semver@^5.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/cross-spawn", + "bin": { + "semver": "bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.1" +} diff --git a/node_modules/cross-spawn/node_modules/semver/range.bnf b/node_modules/cross-spawn/node_modules/semver/range.bnf new file mode 100644 index 000000000..d4c6ae0d7 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/range.bnf @@ -0,0 +1,16 @@ +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | [1-9] ( [0-9] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ diff --git a/node_modules/cross-spawn/node_modules/semver/semver.js b/node_modules/cross-spawn/node_modules/semver/semver.js new file mode 100644 index 000000000..d315d5d68 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/semver.js @@ -0,0 +1,1483 @@ +exports = module.exports = SemVer + +var debug +/* istanbul ignore next */ +if (typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG)) { + debug = function () { + var args = Array.prototype.slice.call(arguments, 0) + args.unshift('SEMVER') + console.log.apply(console, args) + } +} else { + debug = function () {} +} + +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +exports.SEMVER_SPEC_VERSION = '2.0.0' + +var MAX_LENGTH = 256 +var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || + /* istanbul ignore next */ 9007199254740991 + +// Max safe segment length for coercion. +var MAX_SAFE_COMPONENT_LENGTH = 16 + +// The actual regexps go on exports.re +var re = exports.re = [] +var src = exports.src = [] +var R = 0 + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +var NUMERICIDENTIFIER = R++ +src[NUMERICIDENTIFIER] = '0|[1-9]\\d*' +var NUMERICIDENTIFIERLOOSE = R++ +src[NUMERICIDENTIFIERLOOSE] = '[0-9]+' + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +var NONNUMERICIDENTIFIER = R++ +src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*' + +// ## Main Version +// Three dot-separated numeric identifiers. + +var MAINVERSION = R++ +src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')' + +var MAINVERSIONLOOSE = R++ +src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')' + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. + +var PRERELEASEIDENTIFIER = R++ +src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +var PRERELEASEIDENTIFIERLOOSE = R++ +src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +var PRERELEASE = R++ +src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + + '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))' + +var PRERELEASELOOSE = R++ +src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + + '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))' + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +var BUILDIDENTIFIER = R++ +src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+' + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +var BUILD = R++ +src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + + '(?:\\.' + src[BUILDIDENTIFIER] + ')*))' + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +var FULL = R++ +var FULLPLAIN = 'v?' + src[MAINVERSION] + + src[PRERELEASE] + '?' + + src[BUILD] + '?' + +src[FULL] = '^' + FULLPLAIN + '$' + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + + src[PRERELEASELOOSE] + '?' + + src[BUILD] + '?' + +var LOOSE = R++ +src[LOOSE] = '^' + LOOSEPLAIN + '$' + +var GTLT = R++ +src[GTLT] = '((?:<|>)?=?)' + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +var XRANGEIDENTIFIERLOOSE = R++ +src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*' +var XRANGEIDENTIFIER = R++ +src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*' + +var XRANGEPLAIN = R++ +src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:' + src[PRERELEASE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGEPLAINLOOSE = R++ +src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:' + src[PRERELEASELOOSE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGE = R++ +src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$' +var XRANGELOOSE = R++ +src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$' + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +var COERCE = R++ +src[COERCE] = '(?:^|[^\\d])' + + '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:$|[^\\d])' + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +var LONETILDE = R++ +src[LONETILDE] = '(?:~>?)' + +var TILDETRIM = R++ +src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+' +re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g') +var tildeTrimReplace = '$1~' + +var TILDE = R++ +src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$' +var TILDELOOSE = R++ +src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$' + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +var LONECARET = R++ +src[LONECARET] = '(?:\\^)' + +var CARETTRIM = R++ +src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+' +re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g') +var caretTrimReplace = '$1^' + +var CARET = R++ +src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$' +var CARETLOOSE = R++ +src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$' + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +var COMPARATORLOOSE = R++ +src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$' +var COMPARATOR = R++ +src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$' + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +var COMPARATORTRIM = R++ +src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + + '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')' + +// this one has to use the /g flag +re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g') +var comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +var HYPHENRANGE = R++ +src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAIN] + ')' + + '\\s*$' + +var HYPHENRANGELOOSE = R++ +src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s*$' + +// Star ranges basically just allow anything at all. +var STAR = R++ +src[STAR] = '(<|>)?=?\\s*\\*' + +// Compile to actual regexp objects. +// All are flag-free, unless they were created above with a flag. +for (var i = 0; i < R; i++) { + debug(i, src[i]) + if (!re[i]) { + re[i] = new RegExp(src[i]) + } +} + +exports.parse = parse +function parse (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + if (version.length > MAX_LENGTH) { + return null + } + + var r = options.loose ? re[LOOSE] : re[FULL] + if (!r.test(version)) { + return null + } + + try { + return new SemVer(version, options) + } catch (er) { + return null + } +} + +exports.valid = valid +function valid (version, options) { + var v = parse(version, options) + return v ? v.version : null +} + +exports.clean = clean +function clean (version, options) { + var s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} + +exports.SemVer = SemVer + +function SemVer (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + if (version instanceof SemVer) { + if (version.loose === options.loose) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError('Invalid Version: ' + version) + } + + if (version.length > MAX_LENGTH) { + throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') + } + + if (!(this instanceof SemVer)) { + return new SemVer(version, options) + } + + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + + var m = version.trim().match(options.loose ? re[LOOSE] : re[FULL]) + + if (!m) { + throw new TypeError('Invalid Version: ' + version) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map(function (id) { + if (/^[0-9]+$/.test(id)) { + var num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() +} + +SemVer.prototype.format = function () { + this.version = this.major + '.' + this.minor + '.' + this.patch + if (this.prerelease.length) { + this.version += '-' + this.prerelease.join('.') + } + return this.version +} + +SemVer.prototype.toString = function () { + return this.version +} + +SemVer.prototype.compare = function (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return this.compareMain(other) || this.comparePre(other) +} + +SemVer.prototype.compareMain = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) +} + +SemVer.prototype.comparePre = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + var i = 0 + do { + var a = this.prerelease[i] + var b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) +} + +// preminor will bump the version up to the next minor release, and immediately +// down to pre-release. premajor and prepatch work the same way. +SemVer.prototype.inc = function (release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier) + this.inc('pre', identifier) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier) + } + this.inc('pre', identifier) + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if (this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) { + this.prerelease = [0] + } else { + var i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + this.prerelease.push(0) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) { + this.prerelease = [identifier, 0] + } + } else { + this.prerelease = [identifier, 0] + } + } + break + + default: + throw new Error('invalid increment argument: ' + release) + } + this.format() + this.raw = this.version + return this +} + +exports.inc = inc +function inc (version, release, loose, identifier) { + if (typeof (loose) === 'string') { + identifier = loose + loose = undefined + } + + try { + return new SemVer(version, loose).inc(release, identifier).version + } catch (er) { + return null + } +} + +exports.diff = diff +function diff (version1, version2) { + if (eq(version1, version2)) { + return null + } else { + var v1 = parse(version1) + var v2 = parse(version2) + var prefix = '' + if (v1.prerelease.length || v2.prerelease.length) { + prefix = 'pre' + var defaultResult = 'prerelease' + } + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return prefix + key + } + } + } + return defaultResult // may be undefined + } +} + +exports.compareIdentifiers = compareIdentifiers + +var numeric = /^[0-9]+$/ +function compareIdentifiers (a, b) { + var anum = numeric.test(a) + var bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +exports.rcompareIdentifiers = rcompareIdentifiers +function rcompareIdentifiers (a, b) { + return compareIdentifiers(b, a) +} + +exports.major = major +function major (a, loose) { + return new SemVer(a, loose).major +} + +exports.minor = minor +function minor (a, loose) { + return new SemVer(a, loose).minor +} + +exports.patch = patch +function patch (a, loose) { + return new SemVer(a, loose).patch +} + +exports.compare = compare +function compare (a, b, loose) { + return new SemVer(a, loose).compare(new SemVer(b, loose)) +} + +exports.compareLoose = compareLoose +function compareLoose (a, b) { + return compare(a, b, true) +} + +exports.rcompare = rcompare +function rcompare (a, b, loose) { + return compare(b, a, loose) +} + +exports.sort = sort +function sort (list, loose) { + return list.sort(function (a, b) { + return exports.compare(a, b, loose) + }) +} + +exports.rsort = rsort +function rsort (list, loose) { + return list.sort(function (a, b) { + return exports.rcompare(a, b, loose) + }) +} + +exports.gt = gt +function gt (a, b, loose) { + return compare(a, b, loose) > 0 +} + +exports.lt = lt +function lt (a, b, loose) { + return compare(a, b, loose) < 0 +} + +exports.eq = eq +function eq (a, b, loose) { + return compare(a, b, loose) === 0 +} + +exports.neq = neq +function neq (a, b, loose) { + return compare(a, b, loose) !== 0 +} + +exports.gte = gte +function gte (a, b, loose) { + return compare(a, b, loose) >= 0 +} + +exports.lte = lte +function lte (a, b, loose) { + return compare(a, b, loose) <= 0 +} + +exports.cmp = cmp +function cmp (a, op, b, loose) { + switch (op) { + case '===': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a === b + + case '!==': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError('Invalid operator: ' + op) + } +} + +exports.Comparator = Comparator +function Comparator (comp, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value + } + } + + if (!(this instanceof Comparator)) { + return new Comparator(comp, options) + } + + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) +} + +var ANY = {} +Comparator.prototype.parse = function (comp) { + var r = this.options.loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var m = comp.match(r) + + if (!m) { + throw new TypeError('Invalid comparator: ' + comp) + } + + this.operator = m[1] + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } +} + +Comparator.prototype.toString = function () { + return this.value +} + +Comparator.prototype.test = function (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY) { + return true + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + return cmp(version, this.operator, this.semver, this.options) +} + +Comparator.prototype.intersects = function (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + var rangeTmp + + if (this.operator === '') { + rangeTmp = new Range(comp.value, options) + return satisfies(this.value, rangeTmp, options) + } else if (comp.operator === '') { + rangeTmp = new Range(this.value, options) + return satisfies(comp.semver, rangeTmp, options) + } + + var sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>') + var sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<') + var sameSemVer = this.semver.version === comp.semver.version + var differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<=') + var oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, options) && + ((this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<')) + var oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, options) && + ((this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>')) + + return sameDirectionIncreasing || sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || oppositeDirectionsGreaterThan +} + +exports.Range = Range +function Range (range, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (range instanceof Range) { + if (range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease) { + return range + } else { + return new Range(range.raw, options) + } + } + + if (range instanceof Comparator) { + return new Range(range.value, options) + } + + if (!(this instanceof Range)) { + return new Range(range, options) + } + + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease + + // First, split based on boolean or || + this.raw = range + this.set = range.split(/\s*\|\|\s*/).map(function (range) { + return this.parseRange(range.trim()) + }, this).filter(function (c) { + // throw out any that are not relevant for whatever reason + return c.length + }) + + if (!this.set.length) { + throw new TypeError('Invalid SemVer Range: ' + range) + } + + this.format() +} + +Range.prototype.format = function () { + this.range = this.set.map(function (comps) { + return comps.join(' ').trim() + }).join('||').trim() + return this.range +} + +Range.prototype.toString = function () { + return this.range +} + +Range.prototype.parseRange = function (range) { + var loose = this.options.loose + range = range.trim() + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE] + range = range.replace(hr, hyphenReplace) + debug('hyphen replace', range) + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, re[COMPARATORTRIM]) + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[TILDETRIM], tildeTrimReplace) + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[CARETTRIM], caretTrimReplace) + + // normalize spaces + range = range.split(/\s+/).join(' ') + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var set = range.split(' ').map(function (comp) { + return parseComparator(comp, this.options) + }, this).join(' ').split(/\s+/) + if (this.options.loose) { + // in loose mode, throw out any that are not valid comparators + set = set.filter(function (comp) { + return !!comp.match(compRe) + }) + } + set = set.map(function (comp) { + return new Comparator(comp, this.options) + }, this) + + return set +} + +Range.prototype.intersects = function (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } + + return this.set.some(function (thisComparators) { + return thisComparators.every(function (thisComparator) { + return range.set.some(function (rangeComparators) { + return rangeComparators.every(function (rangeComparator) { + return thisComparator.intersects(rangeComparator, options) + }) + }) + }) + }) +} + +// Mostly just for testing and legacy API reasons +exports.toComparators = toComparators +function toComparators (range, options) { + return new Range(range, options).set.map(function (comp) { + return comp.map(function (c) { + return c.value + }).join(' ').trim().split(' ') + }) +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +function parseComparator (comp, options) { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} + +function isX (id) { + return !id || id.toLowerCase() === 'x' || id === '*' +} + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 +function replaceTildes (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceTilde(comp, options) + }).join(' ') +} + +function replaceTilde (comp, options) { + var r = options.loose ? re[TILDELOOSE] : re[TILDE] + return comp.replace(r, function (_, M, m, p, pr) { + debug('tilde', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0 + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else if (pr) { + debug('replaceTilde pr', pr) + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } else { + // ~1.2.3 == >=1.2.3 <1.3.0 + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + + debug('tilde return', ret) + return ret + }) +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 +// ^1.2.3 --> >=1.2.3 <2.0.0 +// ^1.2.0 --> >=1.2.0 <2.0.0 +function replaceCarets (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceCaret(comp, options) + }).join(' ') +} + +function replaceCaret (comp, options) { + debug('caret', comp, options) + var r = options.loose ? re[CARETLOOSE] : re[CARET] + return comp.replace(r, function (_, M, m, p, pr) { + debug('caret', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + if (M === '0') { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else { + ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0' + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + (+M + 1) + '.0.0' + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + (+M + 1) + '.0.0' + } + } + + debug('caret return', ret) + return ret + }) +} + +function replaceXRanges (comp, options) { + debug('replaceXRanges', comp, options) + return comp.split(/\s+/).map(function (comp) { + return replaceXRange(comp, options) + }).join(' ') +} + +function replaceXRange (comp, options) { + comp = comp.trim() + var r = options.loose ? re[XRANGELOOSE] : re[XRANGE] + return comp.replace(r, function (ret, gtlt, M, m, p, pr) { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + var xM = isX(M) + var xm = xM || isX(m) + var xp = xm || isX(p) + var anyX = xp + + if (gtlt === '=' && anyX) { + gtlt = '' + } + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + // >1.2.3 => >= 1.2.4 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } + + ret = gtlt + M + '.' + m + '.' + p + } else if (xm) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (xp) { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } + + debug('xRange return', ret) + + return ret + }) +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +function replaceStars (comp, options) { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(re[STAR], '') +} + +// This function is passed to string.replace(re[HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0 +function hyphenReplace ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = '>=' + fM + '.0.0' + } else if (isX(fp)) { + from = '>=' + fM + '.' + fm + '.0' + } else { + from = '>=' + from + } + + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = '<' + (+tM + 1) + '.0.0' + } else if (isX(tp)) { + to = '<' + tM + '.' + (+tm + 1) + '.0' + } else if (tpr) { + to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr + } else { + to = '<=' + to + } + + return (from + ' ' + to).trim() +} + +// if ANY of the sets match ALL of its comparators, then pass +Range.prototype.test = function (version) { + if (!version) { + return false + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + for (var i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } + } + return false +} + +function testSet (set, version, options) { + for (var i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } + } + + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === ANY) { + continue + } + + if (set[i].semver.prerelease.length > 0) { + var allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false + } + + return true +} + +exports.satisfies = satisfies +function satisfies (version, range, options) { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) +} + +exports.maxSatisfying = maxSatisfying +function maxSatisfying (versions, range, options) { + var max = null + var maxSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max +} + +exports.minSatisfying = minSatisfying +function minSatisfying (versions, range, options) { + var min = null + var minSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min +} + +exports.minVersion = minVersion +function minVersion (range, loose) { + range = new Range(range, loose) + + var minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } + + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + + minver = null + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + comparators.forEach(function (comparator) { + // Clone to avoid manipulating the comparator's semver object. + var compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!minver || gt(minver, compver)) { + minver = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error('Unexpected operation: ' + comparator.operator) + } + }) + } + + if (minver && range.test(minver)) { + return minver + } + + return null +} + +exports.validRange = validRange +function validRange (range, options) { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } +} + +// Determine if version is less than all the versions possible in the range +exports.ltr = ltr +function ltr (version, range, options) { + return outside(version, range, '<', options) +} + +// Determine if version is greater than all the versions possible in the range. +exports.gtr = gtr +function gtr (version, range, options) { + return outside(version, range, '>', options) +} + +exports.outside = outside +function outside (version, range, hilo, options) { + version = new SemVer(version, options) + range = new Range(range, options) + + var gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } + + // If it satisifes the range it is not outside + if (satisfies(version, range, options)) { + return false + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + var high = null + var low = null + + comparators.forEach(function (comparator) { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } + } + return true +} + +exports.prerelease = prerelease +function prerelease (version, options) { + var parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} + +exports.intersects = intersects +function intersects (r1, r2, options) { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2) +} + +exports.coerce = coerce +function coerce (version) { + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + var match = version.match(re[COERCE]) + + if (match == null) { + return null + } + + return parse(match[1] + + '.' + (match[2] || '0') + + '.' + (match[3] || '0')) +} diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json index f1c88a040..1624e2005 100644 --- a/node_modules/cross-spawn/package.json +++ b/node_modules/cross-spawn/package.json @@ -1,46 +1,38 @@ { - "name": "cross-spawn", - "version": "6.0.5", - "description": "Cross platform child_process#spawn and child_process#spawnSync", - "keywords": [ - "spawn", - "spawnSync", - "windows", - "cross-platform", - "path-ext", - "shebang", - "cmd", - "execute" + "_args": [ + [ + "cross-spawn@6.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "author": "André Cruz ", - "homepage": "https://github.com/moxystudio/node-cross-spawn", - "repository": { - "type": "git", - "url": "git@github.com:moxystudio/node-cross-spawn.git" + "_from": "cross-spawn@6.0.5", + "_id": "cross-spawn@6.0.5", + "_inBundle": false, + "_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "_location": "/cross-spawn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cross-spawn@6.0.5", + "name": "cross-spawn", + "escapedName": "cross-spawn", + "rawSpec": "6.0.5", + "saveSpec": null, + "fetchSpec": "6.0.5" }, - "license": "MIT", - "main": "index.js", - "files": [ - "lib" + "_requiredBy": [ + "/execa" ], - "scripts": { - "lint": "eslint .", - "test": "jest --env node --coverage", - "prerelease": "npm t && npm run lint", - "release": "standard-version", - "precommit": "lint-staged", - "commitmsg": "commitlint -e $GIT_PARAMS" - }, - "standard-version": { - "scripts": { - "posttag": "git push --follow-tags origin master && npm publish" - } + "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "_spec": "6.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "André Cruz", + "email": "andre@moxy.studio" }, - "lint-staged": { - "*.js": [ - "eslint --fix", - "git add" - ] + "bugs": { + "url": "https://github.com/moxystudio/node-cross-spawn/issues" }, "commitlint": { "extends": [ @@ -54,6 +46,7 @@ "shebang-command": "^1.2.0", "which": "^1.2.9" }, + "description": "Cross platform child_process#spawn and child_process#spawnSync", "devDependencies": { "@commitlint/cli": "^6.0.0", "@commitlint/config-conventional": "^6.0.2", @@ -72,5 +65,46 @@ }, "engines": { "node": ">=4.8" - } -} \ No newline at end of file + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/moxystudio/node-cross-spawn", + "keywords": [ + "spawn", + "spawnSync", + "windows", + "cross-platform", + "path-ext", + "shebang", + "cmd", + "execute" + ], + "license": "MIT", + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ] + }, + "main": "index.js", + "name": "cross-spawn", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/moxystudio/node-cross-spawn.git" + }, + "scripts": { + "commitmsg": "commitlint -e $GIT_PARAMS", + "lint": "eslint .", + "precommit": "lint-staged", + "prerelease": "npm t && npm run lint", + "release": "standard-version", + "test": "jest --env node --coverage" + }, + "standard-version": { + "scripts": { + "posttag": "git push --follow-tags origin master && npm publish" + } + }, + "version": "6.0.5" +} diff --git a/node_modules/crypt/package.json b/node_modules/crypt/package.json index b4b8c991c..0c9daaf6e 100644 --- a/node_modules/crypt/package.json +++ b/node_modules/crypt/package.json @@ -1,22 +1,55 @@ { - "author": "Paul Vorbach (http://vorb.de)", - "name": "crypt", - "description": "utilities for encryption and hashing", - "tags": [ - "hash", - "security" + "_args": [ + [ + "crypt@0.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "version": "0.0.2", - "license": "BSD-3-Clause", - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-crypt.git" + "_from": "crypt@0.0.2", + "_id": "crypt@0.0.2", + "_inBundle": false, + "_integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", + "_location": "/crypt", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "crypt@0.0.2", + "name": "crypt", + "escapedName": "crypt", + "rawSpec": "0.0.2", + "saveSpec": null, + "fetchSpec": "0.0.2" + }, + "_requiredBy": [ + "/md5" + ], + "_resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "_spec": "0.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" }, "bugs": { "url": "https://github.com/pvorb/node-crypt/issues" }, - "main": "crypt.js", + "description": "utilities for encryption and hashing", "engines": { "node": "*" - } -} \ No newline at end of file + }, + "homepage": "https://github.com/pvorb/node-crypt#readme", + "license": "BSD-3-Clause", + "main": "crypt.js", + "name": "crypt", + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-crypt.git" + }, + "tags": [ + "hash", + "security" + ], + "version": "0.0.2" +} diff --git a/node_modules/crypto-random-string/package.json b/node_modules/crypto-random-string/package.json index ef7255a61..aebec572f 100644 --- a/node_modules/crypto-random-string/package.json +++ b/node_modules/crypto-random-string/package.json @@ -1,24 +1,55 @@ { - "name": "crypto-random-string", - "version": "2.0.0", - "description": "Generate a cryptographically strong random string", - "license": "MIT", - "repository": "sindresorhus/crypto-random-string", + "_args": [ + [ + "crypto-random-string@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "crypto-random-string@2.0.0", + "_id": "crypto-random-string@2.0.0", + "_inBundle": false, + "_integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "_location": "/crypto-random-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "crypto-random-string@2.0.0", + "name": "crypto-random-string", + "escapedName": "crypto-random-string", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/unique-string" + ], + "_resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/crypto-random-string/issues" + }, + "description": "Generate a cryptographically strong random string", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/crypto-random-string#readme", "keywords": [ "random", "string", @@ -32,9 +63,14 @@ "secure", "hex" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "crypto-random-string", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/crypto-random-string.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/currently-unhandled/package.json b/node_modules/currently-unhandled/package.json index 99380249b..573e36048 100644 --- a/node_modules/currently-unhandled/package.json +++ b/node_modules/currently-unhandled/package.json @@ -1,34 +1,51 @@ { - "name": "currently-unhandled", - "version": "0.4.1", - "description": "Track the list of currently unhandled promise rejections.", - "license": "MIT", - "repository": "jamestalmage/currently-unhandled", + "_args": [ + [ + "currently-unhandled@0.4.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "currently-unhandled@0.4.1", + "_id": "currently-unhandled@0.4.1", + "_inBundle": false, + "_integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "_location": "/currently-unhandled", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "currently-unhandled@0.4.1", + "name": "currently-unhandled", + "escapedName": "currently-unhandled", + "rawSpec": "0.4.1", + "saveSpec": null, + "fetchSpec": "0.4.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "_spec": "0.4.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "engines": { - "node": ">=0.10.0" + "ava": { + "files": "test.js" }, - "scripts": { - "test": "xo && nyc ava" + "browser": { + "./index.js": "./browser.js" + }, + "bugs": { + "url": "https://github.com/jamestalmage/currently-unhandled/issues" }, - "files": [ - "index.js", - "core.js", - "browser.js" - ], - "keywords": [ - "unhandled", - "unhandledRejection", - "rejected", - "promises" - ], "dependencies": { "array-find-index": "^1.0.1" }, + "description": "Track the list of currently unhandled promise rejections.", "devDependencies": { "ava": "^0.15.1", "bluebird": "^3.4.0", @@ -46,18 +63,37 @@ "watchify": "^3.7.0", "xo": "^0.15.0" }, - "browser": { - "./index.js": "./browser.js" - }, - "ava": { - "files": "test.js" + "engines": { + "node": ">=0.10.0" }, + "files": [ + "index.js", + "core.js", + "browser.js" + ], + "homepage": "https://github.com/jamestalmage/currently-unhandled#readme", + "keywords": [ + "unhandled", + "unhandledRejection", + "rejected", + "promises" + ], + "license": "MIT", + "name": "currently-unhandled", "nyc": { "reporter": [ "lcov", "text" ] }, + "repository": { + "type": "git", + "url": "git+https://github.com/jamestalmage/currently-unhandled.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "0.4.1", "xo": { "ignores": [ "browser-bluebird-test.js" @@ -68,4 +104,4 @@ "node" ] } -} \ No newline at end of file +} diff --git a/node_modules/date-time/package.json b/node_modules/date-time/package.json index 3b28adcd3..04218d6be 100644 --- a/node_modules/date-time/package.json +++ b/node_modules/date-time/package.json @@ -1,23 +1,56 @@ { - "name": "date-time", - "version": "2.1.0", - "description": "Pretty datetime: `2014-01-09 06:46:01`", - "license": "MIT", - "repository": "sindresorhus/date-time", + "_args": [ + [ + "date-time@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "date-time@2.1.0", + "_id": "date-time@2.1.0", + "_inBundle": false, + "_integrity": "sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==", + "_location": "/date-time", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "date-time@2.1.0", + "name": "date-time", + "escapedName": "date-time", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/date-time/issues" + }, + "dependencies": { + "time-zone": "^1.0.0" + }, + "description": "Pretty datetime: `2014-01-09 06:46:01`", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/date-time#readme", "keywords": [ "datetime", "date-time", @@ -29,11 +62,14 @@ "zone", "timestamp" ], - "dependencies": { - "time-zone": "^1.0.0" + "license": "MIT", + "name": "date-time", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/date-time.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json index a71916fc4..03f0ee06e 100644 --- a/node_modules/debug/package.json +++ b/node_modules/debug/package.json @@ -1,44 +1,56 @@ { - "name": "debug", - "version": "4.1.1", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "description": "small debugging utility", - "keywords": [ - "debug", - "log", - "debugger" + "_args": [ + [ + "debug@4.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "files": [ - "src", - "dist/debug.js", - "LICENSE", - "README.md" + "_development": true, + "_from": "debug@4.1.1", + "_id": "debug@4.1.1", + "_inBundle": false, + "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "_location": "/debug", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "debug@4.1.1", + "name": "debug", + "escapedName": "debug", + "rawSpec": "4.1.1", + "saveSpec": null, + "fetchSpec": "4.1.1" + }, + "_requiredBy": [ + "/ava" ], - "author": "TJ Holowaychuk ", + "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "_spec": "4.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "browser": "./src/browser.js", + "bugs": { + "url": "https://github.com/visionmedia/debug/issues" + }, "contributors": [ - "Nathan Rajlich (http://n8.io)", - "Andrew Rhyne " + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io" + }, + { + "name": "Andrew Rhyne", + "email": "rhyneandrew@gmail.com" + } ], - "license": "MIT", - "scripts": { - "lint": "xo", - "test": "npm run test:node && npm run test:browser", - "test:node": "istanbul cover _mocha -- test.js", - "pretest:browser": "npm run build", - "test:browser": "karma start --single-run", - "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", - "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", - "build:test": "babel -d dist test.js", - "build": "npm run build:debug && npm run build:test", - "clean": "rimraf dist coverage", - "test:coverage": "cat ./coverage/lcov.info | coveralls" - }, "dependencies": { "ms": "^2.1.1" }, + "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", @@ -57,7 +69,38 @@ "rimraf": "^2.5.4", "xo": "^0.23.0" }, + "files": [ + "src", + "dist/debug.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/visionmedia/debug#readme", + "keywords": [ + "debug", + "log", + "debugger" + ], + "license": "MIT", "main": "./src/index.js", - "browser": "./src/browser.js", - "unpkg": "./dist/debug.js" -} \ No newline at end of file + "name": "debug", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "scripts": { + "build": "npm run build:debug && npm run build:test", + "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", + "build:test": "babel -d dist test.js", + "clean": "rimraf dist coverage", + "lint": "xo", + "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", + "pretest:browser": "npm run build", + "test": "npm run test:node && npm run test:browser", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls", + "test:node": "istanbul cover _mocha -- test.js" + }, + "unpkg": "./dist/debug.js", + "version": "4.1.1" +} diff --git a/node_modules/decamelize/package.json b/node_modules/decamelize/package.json index 861013122..161489823 100644 --- a/node_modules/decamelize/package.json +++ b/node_modules/decamelize/package.json @@ -1,23 +1,54 @@ { - "name": "decamelize", - "version": "1.2.0", - "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", - "license": "MIT", - "repository": "sindresorhus/decamelize", + "_args": [ + [ + "decamelize@1.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "decamelize@1.2.0", + "_id": "decamelize@1.2.0", + "_inBundle": false, + "_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "_location": "/decamelize", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "decamelize@1.2.0", + "name": "decamelize", + "escapedName": "decamelize", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/yargs", + "/yargs-parser" + ], + "_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/decamelize/issues" + }, + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/decamelize#readme", "keywords": [ "decamelize", "decamelcase", @@ -31,8 +62,14 @@ "text", "convert" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "decamelize", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/decamelize.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.2.0" +} diff --git a/node_modules/decompress-response/package.json b/node_modules/decompress-response/package.json index 25f1828ef..fc26c7d8d 100644 --- a/node_modules/decompress-response/package.json +++ b/node_modules/decompress-response/package.json @@ -1,30 +1,53 @@ { - "name": "decompress-response", - "version": "3.3.0", - "description": "Decompress a HTTP response if needed", - "license": "MIT", - "repository": "sindresorhus/decompress-response", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Vsevolod Strukchinsky", - "email": "floatdrop@gmail.com", - "url": "github.com/floatdrop" - } + "_args": [ + [ + "decompress-response@3.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], + "_development": true, + "_from": "decompress-response@3.3.0", + "_id": "decompress-response@3.3.0", + "_inBundle": false, + "_integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "_location": "/decompress-response", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "decompress-response@3.3.0", + "name": "decompress-response", + "escapedName": "decompress-response", + "rawSpec": "3.3.0", + "saveSpec": null, + "fetchSpec": "3.3.0" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "_spec": "3.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/sindresorhus/decompress-response/issues" + }, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "description": "Decompress a HTTP response if needed", + "devDependencies": { + "ava": "*", + "get-stream": "^3.0.0", + "pify": "^3.0.0", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/decompress-response#readme", "keywords": [ "decompress", "response", @@ -41,13 +64,26 @@ "stream", "compressed" ], - "dependencies": { - "mimic-response": "^1.0.0" + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Vsevolod Strukchinsky", + "email": "floatdrop@gmail.com", + "url": "github.com/floatdrop" + } + ], + "name": "decompress-response", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/decompress-response.git" }, - "devDependencies": { - "ava": "*", - "get-stream": "^3.0.0", - "pify": "^3.0.0", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.3.0" +} diff --git a/node_modules/deep-extend/package.json b/node_modules/deep-extend/package.json index e507ea0fb..2b5c1ee35 100644 --- a/node_modules/deep-extend/package.json +++ b/node_modules/deep-extend/package.json @@ -1,31 +1,40 @@ { - "name": "deep-extend", - "description": "Recursive object extending", - "license": "MIT", - "version": "0.6.0", - "homepage": "https://github.com/unclechu/node-deep-extend", - "keywords": [ - "deep-extend", - "extend", - "deep", - "recursive", - "xtend", - "clone", - "merge", - "json" + "_args": [ + [ + "deep-extend@0.6.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "licenses": [ - { - "type": "MIT", - "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" - } + "_development": true, + "_from": "deep-extend@0.6.0", + "_id": "deep-extend@0.6.0", + "_inBundle": false, + "_integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "_location": "/deep-extend", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "deep-extend@0.6.0", + "name": "deep-extend", + "escapedName": "deep-extend", + "rawSpec": "0.6.0", + "saveSpec": null, + "fetchSpec": "0.6.0" + }, + "_requiredBy": [ + "/rc" ], - "repository": { - "type": "git", - "url": "git://github.com/unclechu/node-deep-extend.git" + "_resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "_spec": "0.6.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Viacheslav Lotsmanov", + "email": "lotsmanov89@gmail.com" + }, + "bugs": { + "url": "https://github.com/unclechu/node-deep-extend/issues" }, - "author": "Viacheslav Lotsmanov ", - "bugs": "https://github.com/unclechu/node-deep-extend/issues", "contributors": [ { "name": "Romain Prieto", @@ -44,19 +53,44 @@ "url": "https://github.com/mwakerman" } ], - "main": "lib/deep-extend.js", - "engines": { - "node": ">=4.0.0" - }, - "scripts": { - "test": "./node_modules/.bin/mocha" - }, + "description": "Recursive object extending", "devDependencies": { "mocha": "5.2.0", "should": "13.2.1" }, + "engines": { + "node": ">=4.0.0" + }, "files": [ "index.js", "lib/" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/unclechu/node-deep-extend", + "keywords": [ + "deep-extend", + "extend", + "deep", + "recursive", + "xtend", + "clone", + "merge", + "json" + ], + "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" + } + ], + "main": "lib/deep-extend.js", + "name": "deep-extend", + "repository": { + "type": "git", + "url": "git://github.com/unclechu/node-deep-extend.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "0.6.0" +} diff --git a/node_modules/defaults/package.json b/node_modules/defaults/package.json index f34731bf6..7cb07115f 100644 --- a/node_modules/defaults/package.json +++ b/node_modules/defaults/package.json @@ -1,26 +1,61 @@ { - "name": "defaults", - "version": "1.0.3", - "description": "merge single level defaults over a config object", - "main": "index.js", - "scripts": { - "test": "node test.js" + "_args": [ + [ + "defaults@1.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "defaults@1.0.3", + "_id": "defaults@1.0.3", + "_inBundle": false, + "_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "_location": "/defaults", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "defaults@1.0.3", + "name": "defaults", + "escapedName": "defaults", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" }, - "repository": { - "type": "git", - "url": "git://github.com/tmpvar/defaults.git" + "_requiredBy": [ + "/wcwidth" + ], + "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com" + }, + "bugs": { + "url": "https://github.com/tmpvar/defaults/issues" + }, + "dependencies": { + "clone": "^1.0.2" + }, + "description": "merge single level defaults over a config object", + "devDependencies": { + "tap": "^2.0.0" }, + "homepage": "https://github.com/tmpvar/defaults#readme", "keywords": [ "config", "defaults" ], - "author": "Elijah Insua ", "license": "MIT", - "readmeFilename": "README.md", - "dependencies": { - "clone": "^1.0.2" + "main": "index.js", + "name": "defaults", + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/defaults.git" }, - "devDependencies": { - "tap": "^2.0.0" - } -} \ No newline at end of file + "scripts": { + "test": "node test.js" + }, + "version": "1.0.3" +} diff --git a/node_modules/defer-to-connect/package.json b/node_modules/defer-to-connect/package.json index a47091f68..35164f30e 100644 --- a/node_modules/defer-to-connect/package.json +++ b/node_modules/defer-to-connect/package.json @@ -1,41 +1,53 @@ { - "name": "defer-to-connect", - "version": "1.1.3", - "description": "The safe way to handle the `connect` socket event", - "main": "dist", - "files": [ - "dist" + "_args": [ + [ + "defer-to-connect@1.1.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "build": "del-cli dist && tsc", - "prepublishOnly": "npm run build", - "test": "xo && nyc ava", - "coveralls": "nyc report --reporter=text-lcov | coveralls" + "_development": true, + "_from": "defer-to-connect@1.1.3", + "_id": "defer-to-connect@1.1.3", + "_inBundle": false, + "_integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "_location": "/defer-to-connect", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "defer-to-connect@1.1.3", + "name": "defer-to-connect", + "escapedName": "defer-to-connect", + "rawSpec": "1.1.3", + "saveSpec": null, + "fetchSpec": "1.1.3" }, - "keywords": [ - "socket", - "connect", - "event" + "_requiredBy": [ + "/@szmarczak/http-timer" ], - "author": "Szymon Marczak", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/szmarczak/defer-to-connect.git" - }, - "bugs": { - "url": "https://github.com/szmarczak/defer-to-connect/issues" + "_resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "_spec": "1.1.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Szymon Marczak" }, - "homepage": "https://github.com/szmarczak/defer-to-connect#readme", - "xo": { - "extends": "xo-typescript", + "ava": { + "babel": false, + "compileEnhancements": false, "extensions": [ "ts" ], - "rules": { - "ava/no-ignored-test-files": "off" - } + "require": [ + "ts-node/register" + ], + "files": [ + "!dist/tests/test.d.ts" + ] + }, + "bugs": { + "url": "https://github.com/szmarczak/defer-to-connect/issues" }, + "description": "The safe way to handle the `connect` socket event", "devDependencies": { "@sindresorhus/tsconfig": "^0.5.0", "@types/node": "^12.12.4", @@ -52,23 +64,42 @@ "typescript": "^3.6.4", "xo": "^0.25.3" }, + "files": [ + "dist" + ], + "homepage": "https://github.com/szmarczak/defer-to-connect#readme", + "keywords": [ + "socket", + "connect", + "event" + ], + "license": "MIT", + "main": "dist", + "name": "defer-to-connect", "nyc": { "extension": [ ".ts" ] }, - "ava": { - "babel": false, - "compileEnhancements": false, + "repository": { + "type": "git", + "url": "git+https://github.com/szmarczak/defer-to-connect.git" + }, + "scripts": { + "build": "del-cli dist && tsc", + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "prepublishOnly": "npm run build", + "test": "xo && nyc ava" + }, + "types": "dist", + "version": "1.1.3", + "xo": { + "extends": "xo-typescript", "extensions": [ "ts" ], - "require": [ - "ts-node/register" - ], - "files": [ - "!dist/tests/test.d.ts" - ] - }, - "types": "dist" -} \ No newline at end of file + "rules": { + "ava/no-ignored-test-files": "off" + } + } +} diff --git a/node_modules/del/node_modules/globby/package.json b/node_modules/del/node_modules/globby/package.json index e8b134ab4..104b34fe2 100644 --- a/node_modules/del/node_modules/globby/package.json +++ b/node_modules/del/node_modules/globby/package.json @@ -1,27 +1,72 @@ { - "name": "globby", - "version": "10.0.2", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": "sindresorhus/globby", + "_args": [ + [ + "globby@10.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "globby@10.0.2", + "_id": "globby@10.0.2", + "_inBundle": false, + "_integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "_location": "/del/globby", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "globby@10.0.2", + "name": "globby", + "escapedName": "globby", + "rawSpec": "10.0.2", + "saveSpec": null, + "fetchSpec": "10.0.2" + }, + "_requiredBy": [ + "/del" + ], + "_resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "_spec": "10.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { - "email": "sindresorhus@gmail.com", "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, "files": [ "index.js", "gitignore.js", "index.d.ts", "stream-utils.js" ], + "homepage": "https://github.com/sindresorhus/globby#readme", "keywords": [ "all", "array", @@ -55,29 +100,20 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" + "license": "MIT", + "name": "globby", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/globby.git" }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" }, + "version": "10.0.2", "xo": { "ignores": [ "fixtures" ] } -} \ No newline at end of file +} diff --git a/node_modules/del/node_modules/p-map/package.json b/node_modules/del/node_modules/p-map/package.json index df6f80d15..710614d19 100644 --- a/node_modules/del/node_modules/p-map/package.json +++ b/node_modules/del/node_modules/p-map/package.json @@ -1,24 +1,62 @@ { - "name": "p-map", - "version": "3.0.0", - "description": "Map over promises concurrently", - "license": "MIT", - "repository": "sindresorhus/p-map", + "_args": [ + [ + "p-map@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-map@3.0.0", + "_id": "p-map@3.0.0", + "_inBundle": false, + "_integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "_location": "/del/p-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-map@3.0.0", + "name": "p-map", + "escapedName": "p-map", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/del" + ], + "_resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-map/issues" + }, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "description": "Map over promises concurrently", + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/p-map#readme", "keywords": [ "promise", "map", @@ -37,16 +75,14 @@ "parallel", "bluebird" ], - "dependencies": { - "aggregate-error": "^3.0.0" + "license": "MIT", + "name": "p-map", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-map.git" }, - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/del/package.json b/node_modules/del/package.json index e230d78b8..6446e6336 100644 --- a/node_modules/del/package.json +++ b/node_modules/del/package.json @@ -1,25 +1,78 @@ { - "name": "del", - "version": "5.1.0", - "description": "Delete files and directories", - "license": "MIT", - "repository": "sindresorhus/del", + "_args": [ + [ + "del@5.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "del@5.1.0", + "_id": "del@5.1.0", + "_inBundle": false, + "_integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", + "_location": "/del", + "_phantomChildren": { + "@types/glob": "7.1.1", + "aggregate-error": "3.0.1", + "array-union": "2.1.0", + "dir-glob": "3.0.1", + "fast-glob": "3.2.2", + "glob": "7.1.6", + "ignore": "5.1.4", + "merge2": "1.3.0", + "slash": "3.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "del@5.1.0", + "name": "del", + "escapedName": "del", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/del/issues" + }, + "dependencies": { + "globby": "^10.0.1", + "graceful-fs": "^4.2.2", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.1", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0" + }, + "description": "Delete files and directories", + "devDependencies": { + "ava": "^2.3.0", + "benchmark": "^2.1.4", + "make-dir": "^3.0.0", + "tempy": "^0.3.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "node benchmark.js" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/del#readme", "keywords": [ "delete", "files", @@ -44,22 +97,15 @@ "fs", "filesystem" ], - "dependencies": { - "globby": "^10.0.1", - "graceful-fs": "^4.2.2", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.1", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0" + "license": "MIT", + "name": "del", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/del.git" }, - "devDependencies": { - "ava": "^2.3.0", - "benchmark": "^2.1.4", - "make-dir": "^3.0.0", - "tempy": "^0.3.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "bench": "node benchmark.js", + "test": "xo && ava && tsd" + }, + "version": "5.1.0" +} diff --git a/node_modules/deprecation/package.json b/node_modules/deprecation/package.json index 02e6bc9d4..3fd0f110a 100644 --- a/node_modules/deprecation/package.json +++ b/node_modules/deprecation/package.json @@ -1,34 +1,68 @@ { - "name": "deprecation", + "_args": [ + [ + "deprecation@2.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "deprecation@2.3.1", + "_id": "deprecation@2.3.1", + "_inBundle": false, + "_integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "_location": "/deprecation", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "deprecation@2.3.1", + "name": "deprecation", + "escapedName": "deprecation", + "rawSpec": "2.3.1", + "saveSpec": null, + "fetchSpec": "2.3.1" + }, + "_requiredBy": [ + "/@octokit/plugin-rest-endpoint-methods", + "/@octokit/request", + "/@octokit/request-error" + ], + "_resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "_spec": "2.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/gr2m/deprecation/issues" + }, + "dependencies": {}, "description": "Log a deprecation message with stack", - "version": "2.3.1", - "license": "ISC", + "devDependencies": { + "@pika/pack": "^0.3.7", + "@pika/plugin-build-node": "^0.4.0", + "@pika/plugin-build-types": "^0.4.0", + "@pika/plugin-build-web": "^0.4.0", + "@pika/plugin-standard-pkg": "^0.4.0", + "semantic-release": "^15.13.3" + }, + "esnext": "dist-src/index.js", "files": [ "dist-*/", "bin/" ], - "esnext": "dist-src/index.js", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "types": "dist-types/index.d.ts", - "pika": true, - "sideEffects": false, + "homepage": "https://github.com/gr2m/deprecation#readme", "keywords": [ "deprecate", "deprecated", "deprecation" ], + "license": "ISC", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "deprecation", + "pika": true, "repository": { "type": "git", - "url": "https://github.com/gr2m/deprecation.git" + "url": "git+https://github.com/gr2m/deprecation.git" }, - "dependencies": {}, - "devDependencies": { - "@pika/pack": "^0.3.7", - "@pika/plugin-build-node": "^0.4.0", - "@pika/plugin-build-types": "^0.4.0", - "@pika/plugin-build-web": "^0.4.0", - "@pika/plugin-standard-pkg": "^0.4.0", - "semantic-release": "^15.13.3" - } -} \ No newline at end of file + "sideEffects": false, + "types": "dist-types/index.d.ts", + "version": "2.3.1" +} diff --git a/node_modules/diff/package.json b/node_modules/diff/package.json index 4ff484e88..1b86ef40f 100644 --- a/node_modules/diff/package.json +++ b/node_modules/diff/package.json @@ -1,34 +1,40 @@ { - "name": "diff", - "version": "4.0.2", - "description": "A javascript text diff implementation.", - "keywords": [ - "diff", - "javascript" - ], - "maintainers": [ - "Kevin Decker (http://incaseofstairs.com)" + "_args": [ + [ + "diff@4.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "bugs": { - "email": "kpdecker@gmail.com", - "url": "http://github.com/kpdecker/jsdiff/issues" - }, - "license": "BSD-3-Clause", - "repository": { - "type": "git", - "url": "git://github.com/kpdecker/jsdiff.git" - }, - "engines": { - "node": ">=0.3.1" + "_development": true, + "_from": "diff@4.0.2", + "_id": "diff@4.0.2", + "_inBundle": false, + "_integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "_location": "/diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "diff@4.0.2", + "name": "diff", + "escapedName": "diff", + "rawSpec": "4.0.2", + "saveSpec": null, + "fetchSpec": "4.0.2" }, - "main": "./lib/index.js", - "module": "./lib/index.es6.js", + "_requiredBy": [ + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "_spec": "4.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "browser": "./dist/diff.js", - "scripts": { - "clean": "rm -rf lib/ dist/", - "build:node": "yarn babel --out-dir lib --source-maps=inline src", - "test": "grunt" + "bugs": { + "url": "http://github.com/kpdecker/jsdiff/issues", + "email": "kpdecker@gmail.com" }, + "dependencies": {}, + "description": "A javascript text diff implementation.", "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", @@ -69,5 +75,34 @@ "webpack": "^4.28.3", "webpack-dev-server": "^3.1.14" }, - "optionalDependencies": {} -} \ No newline at end of file + "engines": { + "node": ">=0.3.1" + }, + "homepage": "https://github.com/kpdecker/jsdiff#readme", + "keywords": [ + "diff", + "javascript" + ], + "license": "BSD-3-Clause", + "main": "./lib/index.js", + "maintainers": [ + { + "name": "Kevin Decker", + "email": "kpdecker@gmail.com", + "url": "http://incaseofstairs.com" + } + ], + "module": "./lib/index.es6.js", + "name": "diff", + "optionalDependencies": {}, + "repository": { + "type": "git", + "url": "git://github.com/kpdecker/jsdiff.git" + }, + "scripts": { + "build:node": "yarn babel --out-dir lib --source-maps=inline src", + "clean": "rm -rf lib/ dist/", + "test": "grunt" + }, + "version": "4.0.2" +} diff --git a/node_modules/dir-glob/package.json b/node_modules/dir-glob/package.json index e2334d4af..26eec7189 100644 --- a/node_modules/dir-glob/package.json +++ b/node_modules/dir-glob/package.json @@ -1,23 +1,60 @@ { - "name": "dir-glob", - "version": "3.0.1", - "description": "Convert directories to glob compatible strings", - "license": "MIT", - "repository": "kevva/dir-glob", + "_args": [ + [ + "dir-glob@3.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "dir-glob@3.0.1", + "_id": "dir-glob@3.0.1", + "_inBundle": false, + "_integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "_location": "/dir-glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "dir-glob@3.0.1", + "name": "dir-glob", + "escapedName": "dir-glob", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/del/globby", + "/globby" + ], + "_resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Kevin Mårtensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, + "bugs": { + "url": "https://github.com/kevva/dir-glob/issues" + }, + "dependencies": { + "path-type": "^4.0.0" + }, + "description": "Convert directories to glob compatible strings", + "devDependencies": { + "ava": "^2.1.0", + "del": "^4.1.1", + "make-dir": "^3.0.0", + "rimraf": "^2.5.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/kevva/dir-glob#readme", "keywords": [ "convert", "directory", @@ -25,14 +62,14 @@ "files", "glob" ], - "dependencies": { - "path-type": "^4.0.0" + "license": "MIT", + "name": "dir-glob", + "repository": { + "type": "git", + "url": "git+https://github.com/kevva/dir-glob.git" }, - "devDependencies": { - "ava": "^2.1.0", - "del": "^4.1.1", - "make-dir": "^3.0.0", - "rimraf": "^2.5.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.1" +} diff --git a/node_modules/dot-prop/package.json b/node_modules/dot-prop/package.json index a1c3610c3..b6a81b730 100644 --- a/node_modules/dot-prop/package.json +++ b/node_modules/dot-prop/package.json @@ -1,25 +1,59 @@ { - "name": "dot-prop", - "version": "5.2.0", - "description": "Get, set, or delete a property from a nested object using a dot path", - "license": "MIT", - "repository": "sindresorhus/dot-prop", + "_args": [ + [ + "dot-prop@5.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "dot-prop@5.2.0", + "_id": "dot-prop@5.2.0", + "_inBundle": false, + "_integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==", + "_location": "/dot-prop", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "dot-prop@5.2.0", + "name": "dot-prop", + "escapedName": "dot-prop", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/configstore" + ], + "_resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/dot-prop/issues" + }, + "dependencies": { + "is-obj": "^2.0.0" + }, + "description": "Get, set, or delete a property from a nested object using a dot path", + "devDependencies": { + "ava": "^2.1.0", + "benchmark": "^2.1.4", + "tsd": "^0.7.2", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "node bench.js" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/dot-prop#readme", "keywords": [ "object", "prop", @@ -33,13 +67,15 @@ "notation", "dotty" ], - "dependencies": { - "is-obj": "^2.0.0" + "license": "MIT", + "name": "dot-prop", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/dot-prop.git" }, - "devDependencies": { - "ava": "^2.1.0", - "benchmark": "^2.1.4", - "tsd": "^0.7.2", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "bench": "node bench.js", + "test": "xo && ava && tsd" + }, + "version": "5.2.0" +} diff --git a/node_modules/duplexer3/package.json b/node_modules/duplexer3/package.json index 195def149..bd9979d01 100644 --- a/node_modules/duplexer3/package.json +++ b/node_modules/duplexer3/package.json @@ -1,17 +1,52 @@ { - "name": "duplexer3", - "version": "0.1.4", + "_args": [ + [ + "duplexer3@0.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "duplexer3@0.1.4", + "_id": "duplexer3@0.1.4", + "_inBundle": false, + "_integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "_location": "/duplexer3", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "duplexer3@0.1.4", + "name": "duplexer3", + "escapedName": "duplexer3", + "rawSpec": "0.1.4", + "saveSpec": null, + "fetchSpec": "0.1.4" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "_spec": "0.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "bugs": { + "url": "https://github.com/floatdrop/duplexer3/issues" + }, "description": "Like duplexer but using streams3", + "devDependencies": { + "mocha": "^2.2.5" + }, "engine": { "node": ">=4" }, "files": [ "index.js" ], - "scripts": { - "test": "mocha -R tap" - }, - "repository": "floatdrop/duplexer3", + "homepage": "https://github.com/floatdrop/duplexer3#readme", "keywords": [ "duplex", "duplexer", @@ -20,9 +55,14 @@ "join", "combine" ], - "author": "Conrad Pankoff (http://www.fknsrs.biz/)", "license": "BSD-3-Clause", - "devDependencies": { - "mocha": "^2.2.5" - } -} \ No newline at end of file + "name": "duplexer3", + "repository": { + "type": "git", + "url": "git+https://github.com/floatdrop/duplexer3.git" + }, + "scripts": { + "test": "mocha -R tap" + }, + "version": "0.1.4" +} diff --git a/node_modules/emittery/package.json b/node_modules/emittery/package.json index 1bc264a4c..220a30d55 100644 --- a/node_modules/emittery/package.json +++ b/node_modules/emittery/package.json @@ -1,25 +1,61 @@ { - "name": "emittery", - "version": "0.6.0", - "description": "Simple and modern async event emitter", - "license": "MIT", - "repository": "sindresorhus/emittery", - "funding": "https://github.com/sindresorhus/emittery?sponsor=1", + "_args": [ + [ + "emittery@0.6.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "emittery@0.6.0", + "_id": "emittery@0.6.0", + "_inBundle": false, + "_integrity": "sha512-6EMRGr9KzYWp8DzHFZsKVZBsMO6QhAeHMeHND8rhyBNCHKMLpgW9tZv40bwN3rAIKRS5CxcK8oLRKUJSB9h7yQ==", + "_location": "/emittery", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "emittery@0.6.0", + "name": "emittery", + "escapedName": "emittery", + "rawSpec": "0.6.0", + "saveSpec": null, + "fetchSpec": "0.6.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/emittery/-/emittery-0.6.0.tgz", + "_spec": "0.6.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/emittery/issues" + }, + "description": "Simple and modern async event emitter", + "devDependencies": { + "@types/node": "^13.7.5", + "ava": "^2.4.0", + "codecov": "^3.1.0", + "delay": "^4.3.0", + "nyc": "^15.0.0", + "p-event": "^4.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.4" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sindresorhus/emittery?sponsor=1", + "homepage": "https://github.com/sindresorhus/emittery#readme", "keywords": [ "event", "emitter", @@ -47,21 +83,21 @@ "ts", "typed" ], - "devDependencies": { - "@types/node": "^13.7.5", - "ava": "^2.4.0", - "codecov": "^3.1.0", - "delay": "^4.3.0", - "nyc": "^15.0.0", - "p-event": "^4.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.4" - }, + "license": "MIT", + "name": "emittery", "nyc": { "reporter": [ "html", "lcov", "text" ] - } -} \ No newline at end of file + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/emittery.git" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "version": "0.6.0" +} diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json index cb5ad3677..8c77ca600 100644 --- a/node_modules/emoji-regex/package.json +++ b/node_modules/emoji-regex/package.json @@ -1,10 +1,59 @@ { - "name": "emoji-regex", - "version": "8.0.0", + "_args": [ + [ + "emoji-regex@8.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "emoji-regex@8.0.0", + "_id": "emoji-regex@8.0.0", + "_inBundle": false, + "_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "_location": "/emoji-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "emoji-regex@8.0.0", + "name": "emoji-regex", + "escapedName": "emoji-regex", + "rawSpec": "8.0.0", + "saveSpec": null, + "fetchSpec": "8.0.0" + }, + "_requiredBy": [ + "/string-width" + ], + "_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "_spec": "8.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "bugs": { + "url": "https://github.com/mathiasbynens/emoji-regex/issues" + }, "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.3.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", + "@babel/preset-env": "^7.3.4", + "mocha": "^6.0.2", + "regexgen": "^1.3.0", + "unicode-12.0.0": "^0.7.9" + }, + "files": [ + "LICENSE-MIT.txt", + "index.js", + "index.d.ts", + "text.js", + "es2015/index.js", + "es2015/text.js" + ], "homepage": "https://mths.be/emoji-regex", - "main": "index.js", - "types": "index.d.ts", "keywords": [ "unicode", "regex", @@ -16,35 +65,17 @@ "emoji" ], "license": "MIT", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, + "main": "index.js", + "name": "emoji-regex", "repository": { "type": "git", - "url": "https://github.com/mathiasbynens/emoji-regex.git" + "url": "git+https://github.com/mathiasbynens/emoji-regex.git" }, - "bugs": "https://github.com/mathiasbynens/emoji-regex/issues", - "files": [ - "LICENSE-MIT.txt", - "index.js", - "index.d.ts", - "text.js", - "es2015/index.js", - "es2015/text.js" - ], "scripts": { "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js", "test": "mocha", "test:watch": "npm run test -- --watch" }, - "devDependencies": { - "@babel/cli": "^7.2.3", - "@babel/core": "^7.3.4", - "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", - "@babel/preset-env": "^7.3.4", - "mocha": "^6.0.2", - "regexgen": "^1.3.0", - "unicode-12.0.0": "^0.7.9" - } -} \ No newline at end of file + "types": "index.d.ts", + "version": "8.0.0" +} diff --git a/node_modules/end-of-stream/package.json b/node_modules/end-of-stream/package.json index 4caffe9e0..7e5b8ddb7 100644 --- a/node_modules/end-of-stream/package.json +++ b/node_modules/end-of-stream/package.json @@ -1,20 +1,50 @@ { - "name": "end-of-stream", - "version": "1.4.4", - "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", - "repository": { - "type": "git", - "url": "git://github.com/mafintosh/end-of-stream.git" + "_args": [ + [ + "end-of-stream@1.4.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "end-of-stream@1.4.4", + "_id": "end-of-stream@1.4.4", + "_inBundle": false, + "_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "_location": "/end-of-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "end-of-stream@1.4.4", + "name": "end-of-stream", + "escapedName": "end-of-stream", + "rawSpec": "1.4.4", + "saveSpec": null, + "fetchSpec": "1.4.4" + }, + "_requiredBy": [ + "/pump" + ], + "_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "_spec": "1.4.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mathias Buus", + "email": "mathiasbuus@gmail.com" + }, + "bugs": { + "url": "https://github.com/mafintosh/end-of-stream/issues" }, "dependencies": { "once": "^1.4.0" }, - "scripts": { - "test": "node test.js" + "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", + "devDependencies": { + "tape": "^4.11.0" }, "files": [ "index.js" ], + "homepage": "https://github.com/mafintosh/end-of-stream", "keywords": [ "stream", "streams", @@ -24,14 +54,15 @@ "end", "wait" ], - "bugs": { - "url": "https://github.com/mafintosh/end-of-stream/issues" - }, - "homepage": "https://github.com/mafintosh/end-of-stream", - "main": "index.js", - "author": "Mathias Buus ", "license": "MIT", - "devDependencies": { - "tape": "^4.11.0" - } -} \ No newline at end of file + "main": "index.js", + "name": "end-of-stream", + "repository": { + "type": "git", + "url": "git://github.com/mafintosh/end-of-stream.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.4.4" +} diff --git a/node_modules/equal-length/package.json b/node_modules/equal-length/package.json index 06bf86a9e..15e1d1eae 100644 --- a/node_modules/equal-length/package.json +++ b/node_modules/equal-length/package.json @@ -1,32 +1,68 @@ { - "name": "equal-length", - "version": "1.0.1", - "description": "Extend lines to equal length", - "license": "MIT", - "repository": "vadimdemedes/equal-length", + "_args": [ + [ + "equal-length@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "equal-length@1.0.1", + "_id": "equal-length@1.0.1", + "_inBundle": false, + "_integrity": "sha1-IcoRLUirJLTh5//A5TOdMf38J0w=", + "_location": "/equal-length", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "equal-length@1.0.1", + "name": "equal-length", + "escapedName": "equal-length", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "vdemedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, + "bugs": { + "url": "https://github.com/vadimdemedes/equal-length/issues" + }, + "description": "Extend lines to equal length", + "devDependencies": { + "ava": "^0.17.0", + "xo": "^0.17.1" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/vadimdemedes/equal-length#readme", "keywords": [ "equal", "line" ], - "devDependencies": { - "ava": "^0.17.0", - "xo": "^0.17.1" + "license": "MIT", + "name": "equal-length", + "repository": { + "type": "git", + "url": "git+https://github.com/vadimdemedes/equal-length.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "1.0.1", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/error-ex/package.json b/node_modules/error-ex/package.json index 01f328d44..ef0961c7d 100644 --- a/node_modules/error-ex/package.json +++ b/node_modules/error-ex/package.json @@ -1,11 +1,53 @@ { - "name": "error-ex", + "_args": [ + [ + "error-ex@1.3.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "error-ex@1.3.2", + "_id": "error-ex@1.3.2", + "_inBundle": false, + "_integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "_location": "/error-ex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "error-ex@1.3.2", + "name": "error-ex", + "escapedName": "error-ex", + "rawSpec": "1.3.2", + "saveSpec": null, + "fetchSpec": "1.3.2" + }, + "_requiredBy": [ + "/parse-json", + "/read-pkg/parse-json" + ], + "_resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "_spec": "1.3.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/qix-/node-error-ex/issues" + }, + "dependencies": { + "is-arrayish": "^0.2.1" + }, "description": "Easy error subclassing and stack customization", - "version": "1.3.2", - "maintainers": [ - "Josh Junon (github.com/qix-)", - "Sindre Sorhus (sindresorhus.com)" + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.7.1" + }, + "files": [ + "index.js" ], + "homepage": "https://github.com/qix-/node-error-ex#readme", "keywords": [ "error", "errors", @@ -17,30 +59,33 @@ "custom" ], "license": "MIT", + "maintainers": [ + { + "name": "Josh Junon", + "email": "i.am.qix@gmail.com", + "url": "github.com/qix-" + }, + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + } + ], + "name": "error-ex", + "repository": { + "type": "git", + "url": "git+https://github.com/qix-/node-error-ex.git" + }, "scripts": { "pretest": "xo", "test": "mocha --compilers coffee:coffee-script/register" }, + "version": "1.3.2", "xo": { "rules": { "operator-linebreak": [ 0 ] } - }, - "repository": "qix-/node-error-ex", - "files": [ - "index.js" - ], - "devDependencies": { - "coffee-script": "^1.9.3", - "coveralls": "^2.11.2", - "istanbul": "^0.3.17", - "mocha": "^2.2.5", - "should": "^7.0.1", - "xo": "^0.7.1" - }, - "dependencies": { - "is-arrayish": "^0.2.1" } -} \ No newline at end of file +} diff --git a/node_modules/escape-goat/package.json b/node_modules/escape-goat/package.json index b97a05f1d..501598ab7 100644 --- a/node_modules/escape-goat/package.json +++ b/node_modules/escape-goat/package.json @@ -1,24 +1,55 @@ { - "name": "escape-goat", - "version": "2.1.1", - "description": "Escape a string for use in HTML or the inverse", - "license": "MIT", - "repository": "sindresorhus/escape-goat", + "_args": [ + [ + "escape-goat@2.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "escape-goat@2.1.1", + "_id": "escape-goat@2.1.1", + "_inBundle": false, + "_integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "_location": "/escape-goat", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-goat@2.1.1", + "name": "escape-goat", + "escapedName": "escape-goat", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/pupa" + ], + "_resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/escape-goat/issues" + }, + "description": "Escape a string for use in HTML or the inverse", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/escape-goat#readme", "keywords": [ "escape", "unescape", @@ -37,9 +68,14 @@ "goat", "🐐" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "escape-goat", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-goat.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.1" +} diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json index ddf8dee2f..ecc7c7172 100644 --- a/node_modules/escape-string-regexp/package.json +++ b/node_modules/escape-string-regexp/package.json @@ -1,27 +1,54 @@ { - "name": "escape-string-regexp", - "version": "1.0.5", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", + "_args": [ + [ + "escape-string-regexp@1.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "escape-string-regexp@1.0.5", + "_id": "escape-string-regexp@1.0.5", + "_inBundle": false, + "_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "_location": "/escape-string-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-string-regexp@1.0.5", + "name": "escape-string-regexp", + "escapedName": "escape-string-regexp", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/chalk", + "/figures" + ], + "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "maintainers": [ - "Sindre Sorhus (sindresorhus.com)", - "Joshua Boy Nicolai Appelman (jbna.nl)" - ], + "bugs": { + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + "description": "Escape RegExp special characters", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.8.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -34,8 +61,26 @@ "special", "characters" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Boy Nicolai Appelman", + "email": "joshua@jbna.nl", + "url": "jbna.nl" + } + ], + "name": "escape-string-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.5" +} diff --git a/node_modules/esutils/package.json b/node_modules/esutils/package.json index 0578338b8..d55053791 100644 --- a/node_modules/esutils/package.json +++ b/node_modules/esutils/package.json @@ -1,44 +1,77 @@ { - "name": "esutils", + "_args": [ + [ + "esutils@2.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "esutils@2.0.3", + "_id": "esutils@2.0.3", + "_inBundle": false, + "_integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "_location": "/esutils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "esutils@2.0.3", + "name": "esutils", + "escapedName": "esutils", + "rawSpec": "2.0.3", + "saveSpec": null, + "fetchSpec": "2.0.3" + }, + "_requiredBy": [ + "/@babel/highlight", + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "_spec": "2.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/estools/esutils/issues" + }, "description": "utility box for ECMAScript language tools", - "homepage": "https://github.com/estools/esutils", - "main": "lib/utils.js", - "version": "2.0.3", - "engines": { - "node": ">=0.10.0" + "devDependencies": { + "chai": "~1.7.2", + "coffee-script": "~1.6.3", + "jshint": "2.6.3", + "mocha": "~2.2.1", + "regenerate": "~1.3.1", + "unicode-9.0.0": "~0.7.0" }, "directories": { "lib": "./lib" }, + "engines": { + "node": ">=0.10.0" + }, "files": [ "LICENSE.BSD", "README.md", "lib" ], + "homepage": "https://github.com/estools/esutils", + "license": "BSD-2-Clause", + "main": "lib/utils.js", "maintainers": [ { "name": "Yusuke Suzuki", "email": "utatane.tea@gmail.com", - "web": "http://github.com/Constellation" + "url": "http://github.com/Constellation" } ], + "name": "esutils", "repository": { "type": "git", - "url": "http://github.com/estools/esutils.git" + "url": "git+ssh://git@github.com/estools/esutils.git" }, - "devDependencies": { - "chai": "~1.7.2", - "coffee-script": "~1.6.3", - "jshint": "2.6.3", - "mocha": "~2.2.1", - "regenerate": "~1.3.1", - "unicode-9.0.0": "~0.7.0" - }, - "license": "BSD-2-Clause", "scripts": { - "test": "npm run-script lint && npm run-script unit-test", + "generate-regex": "node tools/generate-identifier-regex.js", "lint": "jshint lib/*.js", - "unit-test": "mocha --compilers coffee:coffee-script -R spec", - "generate-regex": "node tools/generate-identifier-regex.js" - } -} \ No newline at end of file + "test": "npm run-script lint && npm run-script unit-test", + "unit-test": "mocha --compilers coffee:coffee-script -R spec" + }, + "version": "2.0.3" +} diff --git a/node_modules/execa/package.json b/node_modules/execa/package.json index 1b8e3f8c6..974a5681b 100644 --- a/node_modules/execa/package.json +++ b/node_modules/execa/package.json @@ -1,24 +1,68 @@ { - "name": "execa", - "version": "1.0.0", - "description": "A better `child_process`", - "license": "MIT", - "repository": "sindresorhus/execa", + "_args": [ + [ + "execa@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "execa@1.0.0", + "_id": "execa@1.0.0", + "_inBundle": false, + "_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "_location": "/execa", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "execa@1.0.0", + "name": "execa", + "escapedName": "execa", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/windows-release" + ], + "_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/execa/issues" + }, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "description": "A better `child_process`", + "devDependencies": { + "ava": "*", + "cat-names": "^1.0.2", + "coveralls": "^3.0.1", + "delay": "^3.0.0", + "is-running": "^2.0.0", + "nyc": "^13.0.1", + "tempfile": "^2.0.0", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && nyc ava" - }, "files": [ "index.js", "lib" ], + "homepage": "https://github.com/sindresorhus/execa#readme", "keywords": [ "exec", "child", @@ -36,25 +80,8 @@ "path", "local" ], - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "cat-names": "^1.0.2", - "coveralls": "^3.0.1", - "delay": "^3.0.0", - "is-running": "^2.0.0", - "nyc": "^13.0.1", - "tempfile": "^2.0.0", - "xo": "*" - }, + "license": "MIT", + "name": "execa", "nyc": { "reporter": [ "text", @@ -65,5 +92,13 @@ "**/test.js", "**/test/**" ] - } -} \ No newline at end of file + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/execa.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/fast-diff/package.json b/node_modules/fast-diff/package.json index ad043feca..2011937a9 100644 --- a/node_modules/fast-diff/package.json +++ b/node_modules/fast-diff/package.json @@ -1,26 +1,59 @@ { - "name": "fast-diff", - "version": "1.2.0", + "_args": [ + [ + "fast-diff@1.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "fast-diff@1.2.0", + "_id": "fast-diff@1.2.0", + "_inBundle": false, + "_integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "_location": "/fast-diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fast-diff@1.2.0", + "name": "fast-diff", + "escapedName": "fast-diff", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jason Chen", + "email": "jhchen7@gmail.com" + }, + "bugs": { + "url": "https://github.com/jhchen/fast-diff/issues" + }, "description": "Fast Javascript text diff", - "author": "Jason Chen ", - "main": "diff.js", - "types": "diff.d.ts", "devDependencies": { "lodash": "~3.9.3", "seedrandom": "~2.4.0" }, + "homepage": "https://github.com/jhchen/fast-diff#readme", + "keywords": [ + "diff" + ], + "license": "Apache-2.0", + "main": "diff.js", + "name": "fast-diff", "repository": { "type": "git", - "url": "https://github.com/jhchen/fast-diff" - }, - "bugs": { - "url": "https://github.com/jhchen/fast-diff/issues" + "url": "git+https://github.com/jhchen/fast-diff.git" }, "scripts": { "test": "node test.js" }, - "license": "Apache-2.0", - "keywords": [ - "diff" - ] -} \ No newline at end of file + "types": "diff.d.ts", + "version": "1.2.0" +} diff --git a/node_modules/fast-glob/package.json b/node_modules/fast-glob/package.json index 9a8744041..18e1dc777 100644 --- a/node_modules/fast-glob/package.json +++ b/node_modules/fast-glob/package.json @@ -1,24 +1,50 @@ { - "name": "fast-glob", - "version": "3.2.2", - "description": "It's a very fast and efficient glob library for Node.js", - "license": "MIT", - "repository": "mrmlnc/fast-glob", + "_args": [ + [ + "fast-glob@3.2.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "fast-glob@3.2.2", + "_id": "fast-glob@3.2.2", + "_inBundle": false, + "_integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==", + "_location": "/fast-glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fast-glob@3.2.2", + "name": "fast-glob", + "escapedName": "fast-glob", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/del/globby", + "/globby" + ], + "_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Denis Malinochkin", "url": "https://mrmlnc.com" }, - "engines": { - "node": ">=8" + "bugs": { + "url": "https://github.com/mrmlnc/fast-glob/issues" }, - "main": "out/index.js", - "typings": "out/index.d.ts", - "keywords": [ - "glob", - "patterns", - "fast", - "implementation" - ], + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + }, + "description": "It's a very fast and efficient glob library for Node.js", "devDependencies": { "@nodelib/fs.macchiato": "^1.0.1", "@types/compute-stdev": "^1.0.0", @@ -46,40 +72,51 @@ "tiny-glob": "^0.2.6", "typescript": "^3.6.3" }, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "engines": { + "node": ">=8" + }, + "homepage": "https://github.com/mrmlnc/fast-glob#readme", + "keywords": [ + "glob", + "patterns", + "fast", + "implementation" + ], + "license": "MIT", + "main": "out/index.js", + "name": "fast-glob", + "repository": { + "type": "git", + "url": "git+https://github.com/mrmlnc/fast-glob.git" }, "scripts": { - "clean": "rimraf out", - "lint": "eslint \"src/**/*.ts\" --cache", - "compile": "tsc", - "test": "mocha \"out/**/*.spec.js\" -s 0", - "smoke": "mocha \"out/**/*.smoke.js\" -s 0", - "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"", - "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"", - "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"", - "build": "npm run clean && npm run compile && npm run lint && npm test", - "watch": "npm run clean && npm run compile -- --sourceMap --watch", "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync", "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep", - "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep", - "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep", - "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"", "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"", - "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"", + "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"", "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"", - "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"", + "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"", + "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep", "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"", - "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"", + "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"", "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"", - "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"", + "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"", + "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep", "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"", + "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"", + "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"", "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"", - "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"" - } -} \ No newline at end of file + "build": "npm run clean && npm run compile && npm run lint && npm test", + "clean": "rimraf out", + "compile": "tsc", + "lint": "eslint \"src/**/*.ts\" --cache", + "smoke": "mocha \"out/**/*.smoke.js\" -s 0", + "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"", + "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"", + "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"", + "test": "mocha \"out/**/*.spec.js\" -s 0", + "watch": "npm run clean && npm run compile -- --sourceMap --watch" + }, + "typings": "out/index.d.ts", + "version": "3.2.2" +} diff --git a/node_modules/fastq/package.json b/node_modules/fastq/package.json index 41c544d73..7b14a6912 100644 --- a/node_modules/fastq/package.json +++ b/node_modules/fastq/package.json @@ -1,36 +1,44 @@ { - "name": "fastq", - "version": "1.8.0", - "description": "Fast, in memory work queue", - "main": "queue.js", - "scripts": { - "lint": "standard --verbose | snazzy", - "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js", - "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js", - "test:report": "npm run lint && npm run unit:report", - "test": "npm run lint && npm run unit && npm run typescript", - "typescript": "tsc --project ./test/tsconfig.json", - "legacy": "tape test/test.js" - }, - "pre-commit": [ - "test" + "_args": [ + [ + "fastq@1.8.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": { - "type": "git", - "url": "git+https://github.com/mcollina/fastq.git" + "_development": true, + "_from": "fastq@1.8.0", + "_id": "fastq@1.8.0", + "_inBundle": false, + "_integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==", + "_location": "/fastq", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fastq@1.8.0", + "name": "fastq", + "escapedName": "fastq", + "rawSpec": "1.8.0", + "saveSpec": null, + "fetchSpec": "1.8.0" }, - "keywords": [ - "fast", - "queue", - "async", - "worker" + "_requiredBy": [ + "/@nodelib/fs.walk" ], - "author": "Matteo Collina ", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz", + "_spec": "1.8.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Matteo Collina", + "email": "hello@matteocollina.com" + }, "bugs": { "url": "https://github.com/mcollina/fastq/issues" }, - "homepage": "https://github.com/mcollina/fastq#readme", + "dependencies": { + "reusify": "^1.0.4" + }, + "description": "Fast, in memory work queue", "devDependencies": { "async": "^3.1.0", "neo-async": "^2.6.1", @@ -41,7 +49,31 @@ "tape": "^4.13.2", "typescript": "^3.8.3" }, - "dependencies": { - "reusify": "^1.0.4" - } -} \ No newline at end of file + "homepage": "https://github.com/mcollina/fastq#readme", + "keywords": [ + "fast", + "queue", + "async", + "worker" + ], + "license": "ISC", + "main": "queue.js", + "name": "fastq", + "pre-commit": [ + "test" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/mcollina/fastq.git" + }, + "scripts": { + "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js", + "legacy": "tape test/test.js", + "lint": "standard --verbose | snazzy", + "test": "npm run lint && npm run unit && npm run typescript", + "test:report": "npm run lint && npm run unit:report", + "typescript": "tsc --project ./test/tsconfig.json", + "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js" + }, + "version": "1.8.0" +} diff --git a/node_modules/figures/package.json b/node_modules/figures/package.json index fac166e88..35a71ba5e 100644 --- a/node_modules/figures/package.json +++ b/node_modules/figures/package.json @@ -1,26 +1,60 @@ { - "name": "figures", - "version": "3.2.0", - "description": "Unicode symbols with Windows CMD fallbacks", - "license": "MIT", - "repository": "sindresorhus/figures", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "figures@3.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "figures@3.2.0", + "_id": "figures@3.2.0", + "_inBundle": false, + "_integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "_location": "/figures", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "figures@3.2.0", + "name": "figures", + "escapedName": "figures", + "rawSpec": "3.2.0", + "saveSpec": null, + "fetchSpec": "3.2.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "_spec": "3.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/figures/issues" + }, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "description": "Unicode symbols with Windows CMD fallbacks", + "devDependencies": { + "ava": "^1.4.1", + "markdown-table": "^1.1.2", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "make": "./makefile.js" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/figures#readme", "keywords": [ "unicode", "cli", @@ -33,13 +67,15 @@ "figures", "fallback" ], - "dependencies": { - "escape-string-regexp": "^1.0.5" + "license": "MIT", + "name": "figures", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/figures.git" }, - "devDependencies": { - "ava": "^1.4.1", - "markdown-table": "^1.1.2", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "make": "./makefile.js", + "test": "xo && ava && tsd" + }, + "version": "3.2.0" +} diff --git a/node_modules/file-url/package.json b/node_modules/file-url/package.json index dbcd4f1b4..93b2c006d 100644 --- a/node_modules/file-url/package.json +++ b/node_modules/file-url/package.json @@ -1,24 +1,54 @@ { - "name": "file-url", - "version": "3.0.0", - "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", - "license": "MIT", - "repository": "sindresorhus/file-url", + "_args": [ + [ + "file-url@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "file-url@3.0.0", + "_id": "file-url@3.0.0", + "_inBundle": false, + "_integrity": "sha512-g872QGsHexznxkIAdK8UiZRe7SkE6kvylShU4Nsj8NvfvZag7S0QuQ4IgvPDkk75HxgjIVDwycFTDAgIiO4nDA==", + "_location": "/file-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "file-url@3.0.0", + "name": "file-url", + "escapedName": "file-url", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/file-url/-/file-url-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/file-url/issues" + }, + "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/file-url#readme", "keywords": [ "file", "url", @@ -27,9 +57,14 @@ "scheme", "slash" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "file-url", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/file-url.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json index c3868058f..101b21973 100644 --- a/node_modules/fill-range/package.json +++ b/node_modules/fill-range/package.json @@ -1,38 +1,76 @@ { - "name": "fill-range", - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", - "version": "7.0.1", - "homepage": "https://github.com/jonschlinkert/fill-range", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Edo Rivai (edo.rivai.nl)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Paul Miller (paulmillr.com)", - "Rouven Weßling (www.rouvenwessling.de)", - "(https://github.com/wtgtybhertgeghgtwtg)" + "_args": [ + [ + "fill-range@7.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "jonschlinkert/fill-range", - "bugs": { - "url": "https://github.com/jonschlinkert/fill-range/issues" + "_development": true, + "_from": "fill-range@7.0.1", + "_id": "fill-range@7.0.1", + "_inBundle": false, + "_integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "_location": "/fill-range", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fill-range@7.0.1", + "name": "fill-range", + "escapedName": "fill-range", + "rawSpec": "7.0.1", + "saveSpec": null, + "fetchSpec": "7.0.1" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/braces" ], - "main": "index.js", - "engines": { - "node": ">=8" + "_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "_spec": "7.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/jonschlinkert/fill-range/issues" }, + "contributors": [ + { + "name": "Edo Rivai", + "url": "edo.rivai.nl" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Paul Miller", + "url": "paulmillr.com" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], "dependencies": { "to-regex-range": "^5.0.1" }, + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", "devDependencies": { "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/fill-range", "keywords": [ "alpha", "alphabetical", @@ -53,6 +91,16 @@ "regex", "sh" ], + "license": "MIT", + "main": "index.js", + "name": "fill-range", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/fill-range.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "toc": false, "layout": "default", @@ -65,5 +113,6 @@ "lint": { "reflinks": true } - } -} \ No newline at end of file + }, + "version": "7.0.1" +} diff --git a/node_modules/find-up/package.json b/node_modules/find-up/package.json index 39a30757f..a32b21cff 100644 --- a/node_modules/find-up/package.json +++ b/node_modules/find-up/package.json @@ -1,24 +1,62 @@ { - "name": "find-up", - "version": "4.1.0", - "description": "Find a file or directory by walking up parent directories", - "license": "MIT", - "repository": "sindresorhus/find-up", + "_args": [ + [ + "find-up@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "find-up@4.1.0", + "_id": "find-up@4.1.0", + "_inBundle": false, + "_integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "_location": "/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@4.1.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/pkg-dir", + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "^2.1.0", + "is-path-inside": "^2.1.0", + "tempy": "^0.3.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/find-up#readme", "keywords": [ "find", "up", @@ -39,15 +77,14 @@ "walking", "path" ], - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" }, - "devDependencies": { - "ava": "^2.1.0", - "is-path-inside": "^2.1.0", - "tempy": "^0.3.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.1.0" +} diff --git a/node_modules/fs.realpath/package.json b/node_modules/fs.realpath/package.json index 6e98eaab9..59cc57eb5 100644 --- a/node_modules/fs.realpath/package.json +++ b/node_modules/fs.realpath/package.json @@ -1,26 +1,63 @@ { - "name": "fs.realpath", - "version": "1.0.0", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "main": "index.js", - "dependencies": {}, - "devDependencies": {}, - "scripts": { - "test": "tap test/*.js --cov" + "_args": [ + [ + "fs.realpath@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "fs.realpath@1.0.0", + "_id": "fs.realpath@1.0.0", + "_inBundle": false, + "_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "_location": "/fs.realpath", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fs.realpath@1.0.0", + "name": "fs.realpath", + "escapedName": "fs.realpath", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" }, - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/fs.realpath.git" + "_requiredBy": [ + "/glob" + ], + "_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" }, + "bugs": { + "url": "https://github.com/isaacs/fs.realpath/issues" + }, + "dependencies": {}, + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "devDependencies": {}, + "files": [ + "old.js", + "index.js" + ], + "homepage": "https://github.com/isaacs/fs.realpath#readme", "keywords": [ "realpath", "fs", "polyfill" ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC", - "files": [ - "old.js", - "index.js" - ] -} \ No newline at end of file + "main": "index.js", + "name": "fs.realpath", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/fs.realpath.git" + }, + "scripts": { + "test": "tap test/*.js --cov" + }, + "version": "1.0.0" +} diff --git a/node_modules/fs/package.json b/node_modules/fs/package.json index f1fa735a7..dca03fe57 100644 --- a/node_modules/fs/package.json +++ b/node_modules/fs/package.json @@ -1,20 +1,48 @@ { - "name": "fs", - "version": "0.0.1-security", - "description": "", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "_args": [ + [ + "fs@0.0.1-security", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "fs@0.0.1-security", + "_id": "fs@0.0.1-security", + "_inBundle": false, + "_integrity": "sha1-invTcYa23d84E/I4WLV+yq9eQdQ=", + "_location": "/fs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fs@0.0.1-security", + "name": "fs", + "escapedName": "fs", + "rawSpec": "0.0.1-security", + "saveSpec": null, + "fetchSpec": "0.0.1-security" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "_spec": "0.0.1-security", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": "", + "bugs": { + "url": "https://github.com/npm/security-holder/issues" }, + "description": "This package name is not currently in use, but was formerly occupied by another package. To avoid malicious use, npm is hanging on to the package name, but loosely, and we'll probably give it to you if you want it.", + "homepage": "https://github.com/npm/security-holder#readme", + "keywords": [], + "license": "ISC", + "main": "index.js", + "name": "fs", "repository": { "type": "git", "url": "git+https://github.com/npm/security-holder.git" }, - "keywords": [], - "author": "", - "license": "ISC", - "bugs": { - "url": "https://github.com/npm/security-holder/issues" + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" }, - "homepage": "https://github.com/npm/security-holder#readme" -} \ No newline at end of file + "version": "0.0.1-security" +} diff --git a/node_modules/fsevents/package.json b/node_modules/fsevents/package.json index d3b732346..8038c5f50 100644 --- a/node_modules/fsevents/package.json +++ b/node_modules/fsevents/package.json @@ -1,34 +1,37 @@ { - "name": "fsevents", - "version": "2.1.2", - "description": "Native Access to MacOS FSEvents", - "main": "fsevents.js", - "types": "fsevents.d.ts", - "os": [ - "darwin" - ], - "files": [ - "fsevents.d.ts", - "fsevents.js", - "fsevents.node" + "_args": [ + [ + "fsevents@2.1.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "_development": true, + "_from": "fsevents@2.1.2", + "_id": "fsevents@2.1.2", + "_inBundle": false, + "_integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", + "_location": "/fsevents", + "_optional": true, + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fsevents@2.1.2", + "name": "fsevents", + "escapedName": "fsevents", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" }, - "scripts": { - "clean": "node-gyp clean && rm -f fsevents.node", - "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean", - "test": "/bin/bash ./test.sh 2>/dev/null", - "prepublishOnly": "npm run build" - }, - "repository": { - "type": "git", - "url": "https://github.com/fsevents/fsevents.git" - }, - "keywords": [ - "fsevents", - "mac" + "_requiredBy": [ + "/chokidar" ], + "_resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/fsevents/fsevents/issues" + }, "contributors": [ { "name": "Philipp Dunkel", @@ -51,9 +54,36 @@ "url": "https://paulmillr.com" } ], + "description": "Native Access to MacOS FSEvents", + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + }, + "files": [ + "fsevents.d.ts", + "fsevents.js", + "fsevents.node" + ], + "homepage": "https://github.com/fsevents/fsevents", + "keywords": [ + "fsevents", + "mac" + ], "license": "MIT", - "bugs": { - "url": "https://github.com/fsevents/fsevents/issues" + "main": "fsevents.js", + "name": "fsevents", + "os": [ + "darwin" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/fsevents/fsevents.git" + }, + "scripts": { + "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean", + "clean": "node-gyp clean && rm -f fsevents.node", + "prepublishOnly": "npm run build", + "test": "/bin/bash ./test.sh 2>/dev/null" }, - "homepage": "https://github.com/fsevents/fsevents" -} \ No newline at end of file + "types": "fsevents.d.ts", + "version": "2.1.2" +} diff --git a/node_modules/get-caller-file/package.json b/node_modules/get-caller-file/package.json index 3218e973a..1dbe62f64 100644 --- a/node_modules/get-caller-file/package.json +++ b/node_modules/get-caller-file/package.json @@ -1,31 +1,40 @@ { - "name": "get-caller-file", - "version": "2.0.5", - "description": "", - "main": "index.js", - "directories": { - "test": "tests" - }, - "files": [ - "index.js", - "index.js.map", - "index.d.ts" + "_args": [ + [ + "get-caller-file@2.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "prepare": "tsc", - "test": "mocha test", - "test:debug": "mocha test" + "_development": true, + "_from": "get-caller-file@2.0.5", + "_id": "get-caller-file@2.0.5", + "_inBundle": false, + "_integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "_location": "/get-caller-file", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-caller-file@2.0.5", + "name": "get-caller-file", + "escapedName": "get-caller-file", + "rawSpec": "2.0.5", + "saveSpec": null, + "fetchSpec": "2.0.5" }, - "repository": { - "type": "git", - "url": "git+https://github.com/stefanpenner/get-caller-file.git" + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "_spec": "2.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Stefan Penner" }, - "author": "Stefan Penner", - "license": "ISC", "bugs": { "url": "https://github.com/stefanpenner/get-caller-file/issues" }, - "homepage": "https://github.com/stefanpenner/get-caller-file#readme", + "description": "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", "devDependencies": { "@types/chai": "^4.1.7", "@types/ensure-posix-path": "^1.0.0", @@ -36,7 +45,29 @@ "mocha": "^5.2.0", "typescript": "^3.3.3333" }, + "directories": { + "test": "tests" + }, "engines": { "node": "6.* || 8.* || >= 10.*" - } -} \ No newline at end of file + }, + "files": [ + "index.js", + "index.js.map", + "index.d.ts" + ], + "homepage": "https://github.com/stefanpenner/get-caller-file#readme", + "license": "ISC", + "main": "index.js", + "name": "get-caller-file", + "repository": { + "type": "git", + "url": "git+https://github.com/stefanpenner/get-caller-file.git" + }, + "scripts": { + "prepare": "tsc", + "test": "mocha test", + "test:debug": "mocha test" + }, + "version": "2.0.5" +} diff --git a/node_modules/get-stream/package.json b/node_modules/get-stream/package.json index a78fba1fb..6e5e7cdf8 100644 --- a/node_modules/get-stream/package.json +++ b/node_modules/get-stream/package.json @@ -1,24 +1,58 @@ { - "name": "get-stream", - "version": "4.1.0", - "description": "Get a stream as a string, buffer, or array", - "license": "MIT", - "repository": "sindresorhus/get-stream", + "_args": [ + [ + "get-stream@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "get-stream@4.1.0", + "_id": "get-stream@4.1.0", + "_inBundle": false, + "_integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "_location": "/get-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-stream@4.1.0", + "name": "get-stream", + "escapedName": "get-stream", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/execa", + "/got" + ], + "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/get-stream/issues" + }, + "dependencies": { + "pump": "^3.0.0" + }, + "description": "Get a stream as a string, buffer, or array", + "devDependencies": { + "ava": "*", + "into-stream": "^3.0.0", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "buffer-stream.js" ], + "homepage": "https://github.com/sindresorhus/get-stream#readme", "keywords": [ "get", "stream", @@ -35,12 +69,14 @@ "array", "object" ], - "dependencies": { - "pump": "^3.0.0" + "license": "MIT", + "name": "get-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/get-stream.git" }, - "devDependencies": { - "ava": "*", - "into-stream": "^3.0.0", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "4.1.0" +} diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json index d7f8b7f28..f7547c5a9 100644 --- a/node_modules/glob-parent/package.json +++ b/node_modules/glob-parent/package.json @@ -1,32 +1,56 @@ { - "name": "glob-parent", - "version": "5.1.1", - "description": "Extract the non-magic parent path from a glob string.", - "author": "Gulp Team (https://gulpjs.com/)", - "contributors": [ - "Elan Shanker (https://github.com/es128)", - "Blaine Bublitz " + "_args": [ + [ + "glob-parent@5.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "gulpjs/glob-parent", - "license": "ISC", - "engines": { - "node": ">= 6" + "_development": true, + "_from": "glob-parent@5.1.1", + "_id": "glob-parent@5.1.1", + "_inBundle": false, + "_integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "_location": "/glob-parent", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "glob-parent@5.1.1", + "name": "glob-parent", + "escapedName": "glob-parent", + "rawSpec": "5.1.1", + "saveSpec": null, + "fetchSpec": "5.1.1" }, - "main": "index.js", - "files": [ - "LICENSE", - "index.js" + "_requiredBy": [ + "/chokidar", + "/fast-glob" ], - "scripts": { - "lint": "eslint .", - "pretest": "npm run lint", - "test": "nyc mocha --async-only", - "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", - "coveralls": "nyc report --reporter=text-lcov | coveralls" + "_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "_spec": "5.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Gulp Team", + "email": "team@gulpjs.com", + "url": "https://gulpjs.com/" }, + "bugs": { + "url": "https://github.com/gulpjs/glob-parent/issues" + }, + "contributors": [ + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Blaine Bublitz", + "email": "blaine.bublitz@gmail.com" + } + ], "dependencies": { "is-glob": "^4.0.1" }, + "description": "Extract the non-magic parent path from a glob string.", "devDependencies": { "coveralls": "^3.0.11", "eslint": "^2.13.1", @@ -35,6 +59,14 @@ "mocha": "^6.0.2", "nyc": "^13.3.0" }, + "engines": { + "node": ">= 6" + }, + "files": [ + "LICENSE", + "index.js" + ], + "homepage": "https://github.com/gulpjs/glob-parent#readme", "keywords": [ "glob", "parent", @@ -44,5 +76,20 @@ "directory", "base", "wildcard" - ] -} \ No newline at end of file + ], + "license": "ISC", + "main": "index.js", + "name": "glob-parent", + "repository": { + "type": "git", + "url": "git+https://github.com/gulpjs/glob-parent.git" + }, + "scripts": { + "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "lint": "eslint .", + "pretest": "npm run lint", + "test": "nyc mocha --async-only" + }, + "version": "5.1.1" +} diff --git a/node_modules/glob/package.json b/node_modules/glob/package.json index dbfa78ee8..ffaad2383 100644 --- a/node_modules/glob/package.json +++ b/node_modules/glob/package.json @@ -1,20 +1,42 @@ { - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "name": "glob", - "description": "a little globber", - "version": "7.1.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "_args": [ + [ + "glob@7.1.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "glob@7.1.6", + "_id": "glob@7.1.6", + "_inBundle": false, + "_integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "_location": "/glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "glob@7.1.6", + "name": "glob", + "escapedName": "glob", + "rawSpec": "7.1.6", + "saveSpec": null, + "fetchSpec": "7.1.6" }, - "main": "glob.js", - "files": [ - "glob.js", - "sync.js", - "common.js" + "_requiredBy": [ + "/del/globby", + "/rimraf", + "/tslint" ], - "engines": { - "node": "*" + "_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "_spec": "7.1.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, "dependencies": { "fs.realpath": "^1.0.0", @@ -24,23 +46,40 @@ "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, + "description": "a little globber", "devDependencies": { "mkdirp": "0", "rimraf": "^2.2.8", "tap": "^12.0.1", "tick": "0.0.6" }, + "engines": { + "node": "*" + }, + "files": [ + "glob.js", + "sync.js", + "common.js" + ], + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "homepage": "https://github.com/isaacs/node-glob#readme", + "license": "ISC", + "main": "glob.js", + "name": "glob", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-glob.git" + }, "scripts": { + "bench": "bash benchmark.sh", + "benchclean": "node benchclean.js", "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "profclean": "rm -f v8.log profile.txt", "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } -} \ No newline at end of file + "version": "7.1.6" +} diff --git a/node_modules/global-dirs/package.json b/node_modules/global-dirs/package.json index 1f11cd0f6..100085ab3 100644 --- a/node_modules/global-dirs/package.json +++ b/node_modules/global-dirs/package.json @@ -1,24 +1,60 @@ { - "name": "global-dirs", - "version": "2.0.1", - "description": "Get the directory of globally installed packages and binaries", - "license": "MIT", - "repository": "sindresorhus/global-dirs", + "_args": [ + [ + "global-dirs@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "global-dirs@2.0.1", + "_id": "global-dirs@2.0.1", + "_inBundle": false, + "_integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", + "_location": "/global-dirs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "global-dirs@2.0.1", + "name": "global-dirs", + "escapedName": "global-dirs", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/is-installed-globally" + ], + "_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/global-dirs/issues" + }, + "dependencies": { + "ini": "^1.3.5" + }, + "description": "Get the directory of globally installed packages and binaries", + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/global-dirs#readme", "keywords": [ "global", "prefix", @@ -42,14 +78,14 @@ "root", "resolve" ], - "dependencies": { - "ini": "^1.3.5" + "license": "MIT", + "name": "global-dirs", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/global-dirs.git" }, - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.1" +} diff --git a/node_modules/globby/package.json b/node_modules/globby/package.json index 08a3b169d..3adc9e4b6 100644 --- a/node_modules/globby/package.json +++ b/node_modules/globby/package.json @@ -1,28 +1,71 @@ { - "name": "globby", - "version": "11.0.0", - "description": "User-friendly glob matching", - "license": "MIT", - "repository": "sindresorhus/globby", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "globby@11.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "globby@11.0.0", + "_id": "globby@11.0.0", + "_inBundle": false, + "_integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", + "_location": "/globby", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "globby@11.0.0", + "name": "globby", + "escapedName": "globby", + "rawSpec": "11.0.0", + "saveSpec": null, + "fetchSpec": "11.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz", + "_spec": "11.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { - "email": "sindresorhus@gmail.com", "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "description": "User-friendly glob matching", + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=10" }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "gitignore.js", "stream-utils.js" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/globby#readme", "keywords": [ "all", "array", @@ -56,27 +99,20 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" + "license": "MIT", + "name": "globby", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/globby.git" }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" }, + "version": "11.0.0", "xo": { "ignores": [ "fixtures" ] } -} \ No newline at end of file +} diff --git a/node_modules/got/package.json b/node_modules/got/package.json index 28c396adb..1d2586677 100644 --- a/node_modules/got/package.json +++ b/node_modules/got/package.json @@ -1,38 +1,43 @@ { - "name": "got", - "version": "9.6.0", - "description": "Simplified HTTP requests", - "license": "MIT", - "repository": "sindresorhus/got", - "main": "source", - "engines": { - "node": ">=8.6" - }, - "scripts": { - "test": "xo && nyc ava", - "release": "np" - }, - "files": [ - "source" + "_args": [ + [ + "got@9.6.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "keywords": [ - "http", - "https", - "get", - "got", - "url", - "uri", - "request", - "util", - "utility", - "simple", - "curl", - "wget", - "fetch", - "net", - "network", - "electron" + "_development": true, + "_from": "got@9.6.0", + "_id": "got@9.6.0", + "_inBundle": false, + "_integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "_location": "/got", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "got@9.6.0", + "name": "got", + "escapedName": "got", + "rawSpec": "9.6.0", + "saveSpec": null, + "fetchSpec": "9.6.0" + }, + "_requiredBy": [ + "/package-json" ], + "_resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "_spec": "9.6.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "ava": { + "concurrency": 4 + }, + "browser": { + "decompress-response": false, + "electron": false + }, + "bugs": { + "url": "https://github.com/sindresorhus/got/issues" + }, "dependencies": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", @@ -46,6 +51,7 @@ "to-readable-stream": "^1.0.0", "url-parse-lax": "^3.0.0" }, + "description": "Simplified HTTP requests", "devDependencies": { "ava": "^1.1.0", "coveralls": "^3.0.0", @@ -64,11 +70,41 @@ "tough-cookie": "^3.0.0", "xo": "^0.24.0" }, - "ava": { - "concurrency": 4 + "engines": { + "node": ">=8.6" }, - "browser": { - "decompress-response": false, - "electron": false - } -} \ No newline at end of file + "files": [ + "source" + ], + "homepage": "https://github.com/sindresorhus/got#readme", + "keywords": [ + "http", + "https", + "get", + "got", + "url", + "uri", + "request", + "util", + "utility", + "simple", + "curl", + "wget", + "fetch", + "net", + "network", + "electron" + ], + "license": "MIT", + "main": "source", + "name": "got", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/got.git" + }, + "scripts": { + "release": "np", + "test": "xo && nyc ava" + }, + "version": "9.6.0" +} diff --git a/node_modules/graceful-fs/package.json b/node_modules/graceful-fs/package.json index 77a29b3da..f2516af82 100644 --- a/node_modules/graceful-fs/package.json +++ b/node_modules/graceful-fs/package.json @@ -1,21 +1,57 @@ { - "name": "graceful-fs", + "_args": [ + [ + "graceful-fs@4.2.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "graceful-fs@4.2.3", + "_id": "graceful-fs@4.2.3", + "_inBundle": false, + "_integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==", + "_location": "/graceful-fs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "graceful-fs@4.2.3", + "name": "graceful-fs", + "escapedName": "graceful-fs", + "rawSpec": "4.2.3", + "saveSpec": null, + "fetchSpec": "4.2.3" + }, + "_requiredBy": [ + "/configstore", + "/del", + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "_spec": "4.2.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/isaacs/node-graceful-fs/issues" + }, + "dependencies": {}, "description": "A drop-in replacement for fs, making various improvements.", - "version": "4.2.3", - "repository": { - "type": "git", - "url": "https://github.com/isaacs/node-graceful-fs" + "devDependencies": { + "import-fresh": "^2.0.0", + "mkdirp": "^0.5.0", + "rimraf": "^2.2.8", + "tap": "^12.7.0" }, - "main": "graceful-fs.js", "directories": { "test": "test" }, - "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags", - "test": "node test.js | tap -" - }, + "files": [ + "fs.js", + "graceful-fs.js", + "legacy-streams.js", + "polyfills.js", + "clone.js" + ], + "homepage": "https://github.com/isaacs/node-graceful-fs#readme", "keywords": [ "fs", "module", @@ -33,18 +69,17 @@ "EACCESS" ], "license": "ISC", - "devDependencies": { - "import-fresh": "^2.0.0", - "mkdirp": "^0.5.0", - "rimraf": "^2.2.8", - "tap": "^12.7.0" + "main": "graceful-fs.js", + "name": "graceful-fs", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/node-graceful-fs.git" }, - "files": [ - "fs.js", - "graceful-fs.js", - "legacy-streams.js", - "polyfills.js", - "clone.js" - ], - "dependencies": {} -} \ No newline at end of file + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "node test.js | tap -" + }, + "version": "4.2.3" +} diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json index ff188fa37..02e396308 100644 --- a/node_modules/has-flag/package.json +++ b/node_modules/has-flag/package.json @@ -1,23 +1,53 @@ { - "name": "has-flag", - "version": "3.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", + "_args": [ + [ + "has-flag@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-flag@3.0.0", + "_id": "has-flag@3.0.0", + "_inBundle": false, + "_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "_location": "/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@3.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -37,8 +67,14 @@ "minimist", "optimist" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/has-yarn/package.json b/node_modules/has-yarn/package.json index fcadde721..431bdc196 100644 --- a/node_modules/has-yarn/package.json +++ b/node_modules/has-yarn/package.json @@ -1,24 +1,55 @@ { - "name": "has-yarn", - "version": "2.1.0", - "description": "Check if a project is using Yarn", - "license": "MIT", - "repository": "sindresorhus/has-yarn", + "_args": [ + [ + "has-yarn@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-yarn@2.1.0", + "_id": "has-yarn@2.1.0", + "_inBundle": false, + "_integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "_location": "/has-yarn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-yarn@2.1.0", + "name": "has-yarn", + "escapedName": "has-yarn", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-yarn/issues" + }, + "description": "Check if a project is using Yarn", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/has-yarn#readme", "keywords": [ "yarn", "has", @@ -31,9 +62,14 @@ "manager", "npm" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-yarn", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-yarn.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/hosted-git-info/package.json b/node_modules/hosted-git-info/package.json index 3ff3c095e..0e9a023d2 100644 --- a/node_modules/hosted-git-info/package.json +++ b/node_modules/hosted-git-info/package.json @@ -1,40 +1,73 @@ { - "name": "hosted-git-info", - "version": "2.8.8", + "_args": [ + [ + "hosted-git-info@2.8.8", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "hosted-git-info@2.8.8", + "_id": "hosted-git-info@2.8.8", + "_inBundle": false, + "_integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "_location": "/hosted-git-info", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "hosted-git-info@2.8.8", + "name": "hosted-git-info", + "escapedName": "hosted-git-info", + "rawSpec": "2.8.8", + "saveSpec": null, + "fetchSpec": "2.8.8" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "_spec": "2.8.8", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": "http://re-becca.org" + }, + "bugs": { + "url": "https://github.com/npm/hosted-git-info/issues" + }, "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", - "main": "index.js", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/hosted-git-info.git" + "devDependencies": { + "standard": "^11.0.1", + "standard-version": "^4.4.0", + "tap": "^12.7.0" }, + "files": [ + "index.js", + "git-host.js", + "git-host-info.js" + ], + "homepage": "https://github.com/npm/hosted-git-info", "keywords": [ "git", "github", "bitbucket", "gitlab" ], - "author": "Rebecca Turner (http://re-becca.org)", "license": "ISC", - "bugs": { - "url": "https://github.com/npm/hosted-git-info/issues" + "main": "index.js", + "name": "hosted-git-info", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/hosted-git-info.git" }, - "homepage": "https://github.com/npm/hosted-git-info", "scripts": { - "prerelease": "npm t", "postrelease": "npm publish --tag=ancient-legacy-fixes && git push --follow-tags", "posttest": "standard", + "prerelease": "npm t", "release": "standard-version -s", - "test:coverage": "tap --coverage-report=html -J --coverage=90 --no-esm test/*.js", - "test": "tap -J --coverage=90 --no-esm test/*.js" - }, - "devDependencies": { - "standard": "^11.0.1", - "standard-version": "^4.4.0", - "tap": "^12.7.0" + "test": "tap -J --coverage=90 --no-esm test/*.js", + "test:coverage": "tap --coverage-report=html -J --coverage=90 --no-esm test/*.js" }, - "files": [ - "index.js", - "git-host.js", - "git-host-info.js" - ] -} \ No newline at end of file + "version": "2.8.8" +} diff --git a/node_modules/http-cache-semantics/package.json b/node_modules/http-cache-semantics/package.json index 125b72b51..bb0651cfb 100644 --- a/node_modules/http-cache-semantics/package.json +++ b/node_modules/http-cache-semantics/package.json @@ -1,17 +1,42 @@ { - "name": "http-cache-semantics", - "version": "4.1.0", - "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", - "repository": "https://github.com/kornelski/http-cache-semantics.git", - "main": "index.js", - "scripts": { - "test": "mocha" + "_args": [ + [ + "http-cache-semantics@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "http-cache-semantics@4.1.0", + "_id": "http-cache-semantics@4.1.0", + "_inBundle": false, + "_integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "_location": "/http-cache-semantics", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "http-cache-semantics@4.1.0", + "name": "http-cache-semantics", + "escapedName": "http-cache-semantics", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" }, - "files": [ - "index.js" + "_requiredBy": [ + "/cacheable-request" ], - "author": "Kornel Lesiński (https://kornel.ski/)", - "license": "BSD-2-Clause", + "_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Kornel Lesiński", + "email": "kornel@geekhood.net", + "url": "https://kornel.ski/" + }, + "bugs": { + "url": "https://github.com/kornelski/http-cache-semantics/issues" + }, + "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", "devDependencies": { "eslint": "^5.13.0", "eslint-plugin-prettier": "^3.0.1", @@ -20,5 +45,20 @@ "mocha": "^5.1.0", "prettier": "^1.14.3", "prettier-eslint-cli": "^4.7.1" - } -} \ No newline at end of file + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/kornelski/http-cache-semantics#readme", + "license": "BSD-2-Clause", + "main": "index.js", + "name": "http-cache-semantics", + "repository": { + "type": "git", + "url": "git+https://github.com/kornelski/http-cache-semantics.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "4.1.0" +} diff --git a/node_modules/ignore-by-default/package.json b/node_modules/ignore-by-default/package.json index 30225ada3..6928da3f3 100644 --- a/node_modules/ignore-by-default/package.json +++ b/node_modules/ignore-by-default/package.json @@ -1,18 +1,49 @@ { - "name": "ignore-by-default", - "version": "1.0.1", + "_args": [ + [ + "ignore-by-default@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ignore-by-default@1.0.1", + "_id": "ignore-by-default@1.0.1", + "_inBundle": false, + "_integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", + "_location": "/ignore-by-default", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ignore-by-default@1.0.1", + "name": "ignore-by-default", + "escapedName": "ignore-by-default", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net/" + }, + "bugs": { + "url": "https://github.com/novemberborn/ignore-by-default/issues" + }, "description": "A list of directories you should ignore by default", - "main": "index.js", + "devDependencies": { + "figures": "^1.4.0", + "standard": "^6.0.4" + }, "files": [ "index.js" ], - "scripts": { - "test": "standard && node test.js" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/ignore-by-default.git" - }, + "homepage": "https://github.com/novemberborn/ignore-by-default#readme", "keywords": [ "ignore", "chokidar", @@ -21,14 +52,15 @@ "glob", "pattern" ], - "author": "Mark Wubben (https://novemberborn.net/)", "license": "ISC", - "bugs": { - "url": "https://github.com/novemberborn/ignore-by-default/issues" + "main": "index.js", + "name": "ignore-by-default", + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/ignore-by-default.git" }, - "homepage": "https://github.com/novemberborn/ignore-by-default#readme", - "devDependencies": { - "figures": "^1.4.0", - "standard": "^6.0.4" - } -} \ No newline at end of file + "scripts": { + "test": "standard && node test.js" + }, + "version": "1.0.1" +} diff --git a/node_modules/ignore/package.json b/node_modules/ignore/package.json index fe7029497..20ce4c3be 100644 --- a/node_modules/ignore/package.json +++ b/node_modules/ignore/package.json @@ -1,52 +1,41 @@ { - "name": "ignore", - "version": "5.1.4", - "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.", - "files": [ - "legacy.js", - "index.js", - "index.d.ts", - "LICENSE-MIT" + "_args": [ + [ + "ignore@5.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "prepublishOnly": "npm run build", - "build": "babel -o legacy.js index.js", - "test:lint": "eslint .", - "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", - "test:ts": "node ./test/ts/simple.js", - "test:git": "tap test/git-check-ignore.js", - "test:ignore": "tap test/ignore.js", - "test:others": "tap test/others.js", - "test:cases": "tap test/*.js --coverage", - "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", - "test": "npm run test:only", - "test:win32": "IGNORE_TEST_WIN32=1 npm run test", - "posttest": "tap --coverage-report=html && codecov" - }, - "repository": { - "type": "git", - "url": "git@github.com:kaelzhang/node-ignore.git" + "_development": true, + "_from": "ignore@5.1.4", + "_id": "ignore@5.1.4", + "_inBundle": false, + "_integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==", + "_location": "/ignore", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ignore@5.1.4", + "name": "ignore", + "escapedName": "ignore", + "rawSpec": "5.1.4", + "saveSpec": null, + "fetchSpec": "5.1.4" }, - "keywords": [ - "ignore", - ".gitignore", - "gitignore", - "npmignore", - "rules", - "manager", - "filter", - "regexp", - "regex", - "fnmatch", - "glob", - "asterisks", - "regular-expression" + "_requiredBy": [ + "/del/globby", + "/globby" ], - "author": "kael", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz", + "_spec": "5.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "kael" + }, "bugs": { "url": "https://github.com/kaelzhang/node-ignore/issues" }, + "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.", "devDependencies": { "@babel/cli": "^7.5.5", "@babel/core": "^7.5.5", @@ -66,5 +55,49 @@ }, "engines": { "node": ">= 4" - } -} \ No newline at end of file + }, + "files": [ + "legacy.js", + "index.js", + "index.d.ts", + "LICENSE-MIT" + ], + "homepage": "https://github.com/kaelzhang/node-ignore#readme", + "keywords": [ + "ignore", + ".gitignore", + "gitignore", + "npmignore", + "rules", + "manager", + "filter", + "regexp", + "regex", + "fnmatch", + "glob", + "asterisks", + "regular-expression" + ], + "license": "MIT", + "name": "ignore", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git" + }, + "scripts": { + "build": "babel -o legacy.js index.js", + "posttest": "tap --coverage-report=html && codecov", + "prepublishOnly": "npm run build", + "test": "npm run test:only", + "test:cases": "tap test/*.js --coverage", + "test:git": "tap test/git-check-ignore.js", + "test:ignore": "tap test/ignore.js", + "test:lint": "eslint .", + "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", + "test:others": "tap test/others.js", + "test:ts": "node ./test/ts/simple.js", + "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", + "test:win32": "IGNORE_TEST_WIN32=1 npm run test" + }, + "version": "5.1.4" +} diff --git a/node_modules/import-lazy/package.json b/node_modules/import-lazy/package.json index 8cca7bba1..6b07dc9a4 100644 --- a/node_modules/import-lazy/package.json +++ b/node_modules/import-lazy/package.json @@ -1,29 +1,59 @@ { - "name": "import-lazy", - "version": "2.1.0", - "description": "Import modules lazily", - "license": "MIT", - "repository": "sindresorhus/import-lazy", + "_args": [ + [ + "import-lazy@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "import-lazy@2.1.0", + "_id": "import-lazy@2.1.0", + "_inBundle": false, + "_integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "_location": "/import-lazy", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "import-lazy@2.1.0", + "name": "import-lazy", + "escapedName": "import-lazy", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/import-lazy/issues" + }, "contributors": [ { "name": "Jorge Bucaran", "email": "jbucaran@me.com" } ], + "description": "Import modules lazily", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/import-lazy#readme", "keywords": [ "import", "require", @@ -37,8 +67,14 @@ "proxy", "proxies" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "import-lazy", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/import-lazy.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/import-local/package.json b/node_modules/import-local/package.json index c07a5c4be..ab36ddeca 100644 --- a/node_modules/import-local/package.json +++ b/node_modules/import-local/package.json @@ -1,9 +1,33 @@ { - "name": "import-local", - "version": "3.0.2", - "description": "Let a globally installed package use a locally installed version of itself if available", - "license": "MIT", - "repository": "sindresorhus/import-local", + "_args": [ + [ + "import-local@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "import-local@3.0.2", + "_id": "import-local@3.0.2", + "_inBundle": false, + "_integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "_location": "/import-local", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "import-local@3.0.2", + "name": "import-local", + "escapedName": "import-local", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -12,16 +36,29 @@ "bin": { "import-local-fixture": "fixtures/cli.js" }, + "bugs": { + "url": "https://github.com/sindresorhus/import-local/issues" + }, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "description": "Let a globally installed package use a locally installed version of itself if available", + "devDependencies": { + "ava": "2.1.0", + "cpy": "^7.0.1", + "del": "^4.1.1", + "execa": "^2.0.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "fixtures/cli.js" ], + "homepage": "https://github.com/sindresorhus/import-local#readme", "keywords": [ "import", "local", @@ -32,20 +69,19 @@ "prefer", "cli" ], - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" + "license": "MIT", + "name": "import-local", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/import-local.git" }, - "devDependencies": { - "ava": "2.1.0", - "cpy": "^7.0.1", - "del": "^4.1.1", - "execa": "^2.0.1", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava" }, + "version": "3.0.2", "xo": { "ignores": [ "fixtures" ] } -} \ No newline at end of file +} diff --git a/node_modules/imurmurhash/package.json b/node_modules/imurmurhash/package.json index 1e91c12bd..c4654ae67 100644 --- a/node_modules/imurmurhash/package.json +++ b/node_modules/imurmurhash/package.json @@ -1,22 +1,54 @@ { - "name": "imurmurhash", - "version": "0.1.4", + "_args": [ + [ + "imurmurhash@0.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "imurmurhash@0.1.4", + "_id": "imurmurhash@0.1.4", + "_inBundle": false, + "_integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "_location": "/imurmurhash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "imurmurhash@0.1.4", + "name": "imurmurhash", + "escapedName": "imurmurhash", + "rawSpec": "0.1.4", + "saveSpec": null, + "fetchSpec": "0.1.4" + }, + "_requiredBy": [ + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "_spec": "0.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jens Taylor", + "email": "jensyt@gmail.com", + "url": "https://github.com/homebrewing" + }, + "bugs": { + "url": "https://github.com/jensyt/imurmurhash-js/issues" + }, + "dependencies": {}, "description": "An incremental implementation of MurmurHash3", - "homepage": "https://github.com/jensyt/imurmurhash-js", - "main": "imurmurhash.js", + "devDependencies": {}, + "engines": { + "node": ">=0.8.19" + }, "files": [ "imurmurhash.js", "imurmurhash.min.js", "package.json", "README.md" ], - "repository": { - "type": "git", - "url": "https://github.com/jensyt/imurmurhash-js" - }, - "bugs": { - "url": "https://github.com/jensyt/imurmurhash-js/issues" - }, + "homepage": "https://github.com/jensyt/imurmurhash-js", "keywords": [ "murmur", "murmurhash", @@ -24,15 +56,12 @@ "hash", "incremental" ], - "author": { - "name": "Jens Taylor", - "email": "jensyt@gmail.com", - "url": "https://github.com/homebrewing" - }, "license": "MIT", - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.8.19" - } -} \ No newline at end of file + "main": "imurmurhash.js", + "name": "imurmurhash", + "repository": { + "type": "git", + "url": "git+https://github.com/jensyt/imurmurhash-js.git" + }, + "version": "0.1.4" +} diff --git a/node_modules/indent-string/package.json b/node_modules/indent-string/package.json index 5db5db01a..d57b127c3 100644 --- a/node_modules/indent-string/package.json +++ b/node_modules/indent-string/package.json @@ -1,24 +1,56 @@ { - "name": "indent-string", - "version": "4.0.0", - "description": "Indent each line in a string", - "license": "MIT", - "repository": "sindresorhus/indent-string", + "_args": [ + [ + "indent-string@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "indent-string@4.0.0", + "_id": "indent-string@4.0.0", + "_inBundle": false, + "_integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "_location": "/indent-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "indent-string@4.0.0", + "name": "indent-string", + "escapedName": "indent-string", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/aggregate-error", + "/ava" + ], + "_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/indent-string/issues" + }, + "description": "Indent each line in a string", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/indent-string#readme", "keywords": [ "indent", "string", @@ -29,9 +61,14 @@ "each", "every" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "indent-string", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/indent-string.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/inflight/package.json b/node_modules/inflight/package.json index b7095d05d..2ae6b5f1d 100644 --- a/node_modules/inflight/package.json +++ b/node_modules/inflight/package.json @@ -1,29 +1,62 @@ { - "name": "inflight", - "version": "1.0.6", - "description": "Add callbacks to requests in flight to avoid async duplication", - "main": "inflight.js", - "files": [ - "inflight.js" + "_args": [ + [ + "inflight@1.0.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "inflight@1.0.6", + "_id": "inflight@1.0.6", + "_inBundle": false, + "_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "_location": "/inflight", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "inflight@1.0.6", + "name": "inflight", + "escapedName": "inflight", + "rawSpec": "1.0.6", + "saveSpec": null, + "fetchSpec": "1.0.6" + }, + "_requiredBy": [ + "/glob" ], + "_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "_spec": "1.0.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/inflight/issues" + }, "dependencies": { "once": "^1.3.0", "wrappy": "1" }, + "description": "Add callbacks to requests in flight to avoid async duplication", "devDependencies": { "tap": "^7.1.2" }, - "scripts": { - "test": "tap test.js --100" - }, + "files": [ + "inflight.js" + ], + "homepage": "https://github.com/isaacs/inflight", + "license": "ISC", + "main": "inflight.js", + "name": "inflight", "repository": { "type": "git", - "url": "https://github.com/npm/inflight.git" + "url": "git+https://github.com/npm/inflight.git" }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "bugs": { - "url": "https://github.com/isaacs/inflight/issues" + "scripts": { + "test": "tap test.js --100" }, - "homepage": "https://github.com/isaacs/inflight", - "license": "ISC" -} \ No newline at end of file + "version": "1.0.6" +} diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json index 47220feb9..af3a72d04 100644 --- a/node_modules/inherits/package.json +++ b/node_modules/inherits/package.json @@ -1,7 +1,46 @@ { - "name": "inherits", + "_args": [ + [ + "inherits@2.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "inherits@2.0.3", + "_id": "inherits@2.0.3", + "_inBundle": false, + "_integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "_location": "/inherits", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "inherits@2.0.3", + "name": "inherits", + "escapedName": "inherits", + "rawSpec": "2.0.3", + "saveSpec": null, + "fetchSpec": "2.0.3" + }, + "_requiredBy": [ + "/glob", + "/util" + ], + "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "_spec": "2.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "browser": "./inherits_browser.js", + "bugs": { + "url": "https://github.com/isaacs/inherits/issues" + }, "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "version": "2.0.3", + "devDependencies": { + "tap": "^7.1.0" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ], + "homepage": "https://github.com/isaacs/inherits#readme", "keywords": [ "inheritance", "class", @@ -12,18 +51,15 @@ "browser", "browserify" ], - "main": "./inherits.js", - "browser": "./inherits_browser.js", - "repository": "git://github.com/isaacs/inherits", "license": "ISC", + "main": "./inherits.js", + "name": "inherits", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/inherits.git" + }, "scripts": { "test": "node test" }, - "devDependencies": { - "tap": "^7.1.0" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ] -} \ No newline at end of file + "version": "2.0.3" +} diff --git a/node_modules/ini/package.json b/node_modules/ini/package.json index 49027d955..9d111a1d1 100644 --- a/node_modules/ini/package.json +++ b/node_modules/ini/package.json @@ -1,30 +1,68 @@ { - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "name": "ini", - "description": "An ini encoder/decoder for node", - "version": "1.3.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/ini.git" + "_args": [ + [ + "ini@1.3.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ini@1.3.5", + "_id": "ini@1.3.5", + "_inBundle": false, + "_integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "_location": "/ini", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ini@1.3.5", + "name": "ini", + "escapedName": "ini", + "rawSpec": "1.3.5", + "saveSpec": null, + "fetchSpec": "1.3.5" }, - "main": "ini.js", - "scripts": { - "pretest": "standard ini.js", - "test": "tap test/*.js --100 -J", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "_requiredBy": [ + "/global-dirs", + "/rc" + ], + "_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "_spec": "1.3.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" }, - "engines": { - "node": "*" + "bugs": { + "url": "https://github.com/isaacs/ini/issues" }, "dependencies": {}, + "description": "An ini encoder/decoder for node", "devDependencies": { "standard": "^10.0.3", "tap": "^10.7.3 || 11" }, - "license": "ISC", + "engines": { + "node": "*" + }, "files": [ "ini.js" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/isaacs/ini#readme", + "license": "ISC", + "main": "ini.js", + "name": "ini", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/ini.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "pretest": "standard ini.js", + "preversion": "npm test", + "test": "tap test/*.js --100 -J" + }, + "version": "1.3.5" +} diff --git a/node_modules/irregular-plurals/package.json b/node_modules/irregular-plurals/package.json index cf9707d52..ad2a44055 100644 --- a/node_modules/irregular-plurals/package.json +++ b/node_modules/irregular-plurals/package.json @@ -1,25 +1,56 @@ { - "name": "irregular-plurals", - "version": "3.2.0", - "description": "Map of nouns to their irregular plural form", - "license": "MIT", - "repository": "sindresorhus/irregular-plurals", + "_args": [ + [ + "irregular-plurals@3.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "irregular-plurals@3.2.0", + "_id": "irregular-plurals@3.2.0", + "_inBundle": false, + "_integrity": "sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==", + "_location": "/irregular-plurals", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "irregular-plurals@3.2.0", + "name": "irregular-plurals", + "escapedName": "irregular-plurals", + "rawSpec": "3.2.0", + "saveSpec": null, + "fetchSpec": "3.2.0" + }, + "_requiredBy": [ + "/plur" + ], + "_resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.2.0.tgz", + "_spec": "3.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/irregular-plurals/issues" + }, + "description": "Map of nouns to their irregular plural form", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "irregular-plurals.json" ], + "homepage": "https://github.com/sindresorhus/irregular-plurals#readme", "keywords": [ "word", "words", @@ -33,14 +64,19 @@ "noun", "nouns" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "license": "MIT", + "name": "irregular-plurals", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/irregular-plurals.git" + }, + "scripts": { + "test": "xo && ava && tsd" }, "tsd": { "compilerOptions": { "resolveJsonModule": true } - } -} \ No newline at end of file + }, + "version": "3.2.0" +} diff --git a/node_modules/is-arrayish/package.json b/node_modules/is-arrayish/package.json index 47b168d29..60cb79d52 100644 --- a/node_modules/is-arrayish/package.json +++ b/node_modules/is-arrayish/package.json @@ -1,8 +1,50 @@ { - "name": "is-arrayish", + "_args": [ + [ + "is-arrayish@0.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-arrayish@0.2.1", + "_id": "is-arrayish@0.2.1", + "_inBundle": false, + "_integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "_location": "/is-arrayish", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-arrayish@0.2.1", + "name": "is-arrayish", + "escapedName": "is-arrayish", + "rawSpec": "0.2.1", + "saveSpec": null, + "fetchSpec": "0.2.1" + }, + "_requiredBy": [ + "/error-ex" + ], + "_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "_spec": "0.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Qix", + "url": "http://github.com/qix-" + }, + "bugs": { + "url": "https://github.com/qix-/node-is-arrayish/issues" + }, "description": "Determines if an object can be used as an array", - "version": "0.2.1", - "author": "Qix (http://github.com/qix-)", + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.6.1" + }, + "homepage": "https://github.com/qix-/node-is-arrayish#readme", "keywords": [ "is", "array", @@ -15,20 +57,14 @@ "type" ], "license": "MIT", + "name": "is-arrayish", + "repository": { + "type": "git", + "url": "git+https://github.com/qix-/node-is-arrayish.git" + }, "scripts": { "pretest": "xo", "test": "mocha --compilers coffee:coffee-script/register" }, - "repository": { - "type": "git", - "url": "https://github.com/qix-/node-is-arrayish.git" - }, - "devDependencies": { - "coffee-script": "^1.9.3", - "coveralls": "^2.11.2", - "istanbul": "^0.3.17", - "mocha": "^2.2.5", - "should": "^7.0.1", - "xo": "^0.6.1" - } -} \ No newline at end of file + "version": "0.2.1" +} diff --git a/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json index e3bdf2a7f..8974dcdbc 100644 --- a/node_modules/is-binary-path/package.json +++ b/node_modules/is-binary-path/package.json @@ -1,24 +1,58 @@ { - "name": "is-binary-path", - "version": "2.1.0", - "description": "Check if a file path is a binary file", - "license": "MIT", - "repository": "sindresorhus/is-binary-path", + "_args": [ + [ + "is-binary-path@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-binary-path@2.1.0", + "_id": "is-binary-path@2.1.0", + "_inBundle": false, + "_integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "_location": "/is-binary-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-binary-path@2.1.0", + "name": "is-binary-path", + "escapedName": "is-binary-path", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/chokidar" + ], + "_resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-binary-path/issues" + }, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "description": "Check if a file path is a binary file", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-binary-path#readme", "keywords": [ "binary", "extensions", @@ -29,12 +63,14 @@ "detect", "is" ], - "dependencies": { - "binary-extensions": "^2.0.0" + "license": "MIT", + "name": "is-binary-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-binary-path.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/is-buffer/package.json b/node_modules/is-buffer/package.json index 9f304ee57..c8be297ec 100644 --- a/node_modules/is-buffer/package.json +++ b/node_modules/is-buffer/package.json @@ -1,7 +1,32 @@ { - "name": "is-buffer", - "description": "Determine if an object is a Buffer", - "version": "1.1.6", + "_args": [ + [ + "is-buffer@1.1.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "is-buffer@1.1.6", + "_id": "is-buffer@1.1.6", + "_inBundle": false, + "_integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "_location": "/is-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-buffer@1.1.6", + "name": "is-buffer", + "escapedName": "is-buffer", + "rawSpec": "1.1.6", + "saveSpec": null, + "fetchSpec": "1.1.6" + }, + "_requiredBy": [ + "/md5" + ], + "_resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "_spec": "1.1.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -11,11 +36,13 @@ "url": "https://github.com/feross/is-buffer/issues" }, "dependencies": {}, + "description": "Determine if an object is a Buffer", "devDependencies": { "standard": "*", "tape": "^4.0.0", "zuul": "^3.0.0" }, + "homepage": "https://github.com/feross/is-buffer#readme", "keywords": [ "buffer", "buffers", @@ -35,6 +62,7 @@ ], "license": "MIT", "main": "index.js", + "name": "is-buffer", "repository": { "type": "git", "url": "git://github.com/feross/is-buffer.git" @@ -47,5 +75,6 @@ }, "testling": { "files": "test/*.js" - } -} \ No newline at end of file + }, + "version": "1.1.6" +} diff --git a/node_modules/is-ci/package.json b/node_modules/is-ci/package.json index 3900a0420..40b048db5 100644 --- a/node_modules/is-ci/package.json +++ b/node_modules/is-ci/package.json @@ -1,23 +1,57 @@ { - "name": "is-ci", - "version": "2.0.0", - "description": "Detect if the current environment is a CI server", - "bin": "bin.js", - "main": "index.js", + "_args": [ + [ + "is-ci@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-ci@2.0.0", + "_id": "is-ci@2.0.0", + "_inBundle": false, + "_integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "_location": "/is-ci", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-ci@2.0.0", + "name": "is-ci", + "escapedName": "is-ci", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Thomas Watson Steen", + "email": "w@tson.dk", + "url": "https://twitter.com/wa7son" + }, + "bin": { + "is-ci": "bin.js" + }, + "bugs": { + "url": "https://github.com/watson/is-ci/issues" + }, + "coordinates": [ + 55.778272, + 12.593116 + ], "dependencies": { "ci-info": "^2.0.0" }, + "description": "Detect if the current environment is a CI server", "devDependencies": { "clear-module": "^3.0.0", "standard": "^12.0.1" }, - "scripts": { - "test": "standard && node test.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/watson/is-ci.git" - }, + "homepage": "https://github.com/watson/is-ci", "keywords": [ "ci", "continuous", @@ -25,14 +59,15 @@ "test", "detect" ], - "author": "Thomas Watson Steen (https://twitter.com/wa7son)", "license": "MIT", - "bugs": { - "url": "https://github.com/watson/is-ci/issues" + "main": "index.js", + "name": "is-ci", + "repository": { + "type": "git", + "url": "git+https://github.com/watson/is-ci.git" }, - "homepage": "https://github.com/watson/is-ci", - "coordinates": [ - 55.778272, - 12.593116 - ] -} \ No newline at end of file + "scripts": { + "test": "standard && node test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/is-error/package.json b/node_modules/is-error/package.json index 441791f23..f0b1b14ba 100644 --- a/node_modules/is-error/package.json +++ b/node_modules/is-error/package.json @@ -1,20 +1,51 @@ { - "name": "is-error", - "version": "2.2.2", - "description": "Detect whether a value is an error", - "keywords": [], - "author": "Raynos ", - "repository": "git://github.com/mk-pmb/is-error-js.git", - "main": "index", - "homepage": "https://github.com/mk-pmb/is-error-js", + "_args": [ + [ + "is-error@2.2.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-error@2.2.2", + "_id": "is-error@2.2.2", + "_inBundle": false, + "_integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", + "_location": "/is-error", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-error@2.2.2", + "name": "is-error", + "escapedName": "is-error", + "rawSpec": "2.2.2", + "saveSpec": null, + "fetchSpec": "2.2.2" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", + "_spec": "2.2.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, "bugs": { "url": "https://github.com/mk-pmb/is-error-js/issues" }, "contributors": [ - "Raynos", - "M.K. (https://github.com/mk-pmb)" + { + "name": "Raynos" + }, + { + "name": "M.K.", + "url": "https://github.com/mk-pmb" + } ], "dependencies": {}, + "description": "Detect whether a value is an error", "devDependencies": { "coveralls": "^2.10.0", "istanbul": "^0.3.5", @@ -24,22 +55,31 @@ "tap-spec": "^2.1.1", "tape": "^3.4.0" }, - "license": "MIT", - "scripts": { - "test": "npm run jshint -s && npm run cover -s", - "unit-test": "node test/index.js | tap-spec", - "jshint": "lint-trap .", - "cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s", - "check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100", - "view-cover": "opn ./coverage/index.html", - "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || true)" - }, "engine": { "node": ">= 0.8.x" }, + "homepage": "https://github.com/mk-pmb/is-error-js", + "keywords": [], + "license": "MIT", + "main": "index", + "name": "is-error", + "ngen-version": "5.1.0", "pre-commit": [ "test" ], "pre-commit.silent": true, - "ngen-version": "5.1.0" -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git://github.com/mk-pmb/is-error-js.git" + }, + "scripts": { + "check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100", + "cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s", + "jshint": "lint-trap .", + "test": "npm run jshint -s && npm run cover -s", + "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || true)", + "unit-test": "node test/index.js | tap-spec", + "view-cover": "opn ./coverage/index.html" + }, + "version": "2.2.2" +} diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index 00ad5c9fc..9a03199fa 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -1,28 +1,52 @@ { - "name": "is-extglob", - "description": "Returns true if a string has an extglob.", - "version": "2.1.1", - "homepage": "https://github.com/jonschlinkert/is-extglob", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "repository": "jonschlinkert/is-extglob", - "bugs": { - "url": "https://github.com/jonschlinkert/is-extglob/issues" + "_args": [ + [ + "is-extglob@2.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-extglob@2.1.1", + "_id": "is-extglob@2.1.1", + "_inBundle": false, + "_integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "_location": "/is-extglob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-extglob@2.1.1", + "name": "is-extglob", + "escapedName": "is-extglob", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/is-glob" ], - "main": "index.js", - "engines": { - "node": ">=0.10.0" + "_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/jonschlinkert/is-extglob/issues" }, + "description": "Returns true if a string has an extglob.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-extglob", "keywords": [ "bash", "braces", @@ -42,6 +66,16 @@ "string", "test" ], + "license": "MIT", + "main": "index.js", + "name": "is-extglob", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-extglob.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "toc": false, "layout": "default", @@ -65,5 +99,6 @@ "lint": { "reflinks": true } - } -} \ No newline at end of file + }, + "version": "2.1.1" +} diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json index a67414558..d89b5c41e 100644 --- a/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/is-fullwidth-code-point/package.json @@ -1,24 +1,56 @@ { - "name": "is-fullwidth-code-point", - "version": "3.0.0", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "license": "MIT", - "repository": "sindresorhus/is-fullwidth-code-point", + "_args": [ + [ + "is-fullwidth-code-point@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@3.0.0", + "_id": "is-fullwidth-code-point@3.0.0", + "_inBundle": false, + "_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "_location": "/is-fullwidth-code-point", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-fullwidth-code-point@3.0.0", + "name": "is-fullwidth-code-point", + "escapedName": "is-fullwidth-code-point", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/slice-ansi", + "/string-width" + ], + "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", "keywords": [ "fullwidth", "full-width", @@ -34,9 +66,14 @@ "detect", "check" ], - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-fullwidth-code-point", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "3.0.0" +} diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index b7afb44d2..e9de016fd 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -1,36 +1,71 @@ { - "name": "is-glob", - "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", - "version": "4.0.1", - "homepage": "https://github.com/micromatch/is-glob", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Brian Woodward (https://twitter.com/doowb)", - "Daniel Perez (https://tuvistavie.com)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)" + "_args": [ + [ + "is-glob@4.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "micromatch/is-glob", - "bugs": { - "url": "https://github.com/micromatch/is-glob/issues" + "_development": true, + "_from": "is-glob@4.0.1", + "_id": "is-glob@4.0.1", + "_inBundle": false, + "_integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "_location": "/is-glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-glob@4.0.1", + "name": "is-glob", + "escapedName": "is-glob", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/chokidar", + "/del", + "/glob-parent" ], - "main": "index.js", - "engines": { - "node": ">=0.10.0" + "_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/micromatch/is-glob/issues" }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Daniel Perez", + "url": "https://tuvistavie.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], "dependencies": { "is-extglob": "^2.1.1" }, + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/micromatch/is-glob", "keywords": [ "bash", "braces", @@ -50,6 +85,16 @@ "string", "test" ], + "license": "MIT", + "main": "index.js", + "name": "is-glob", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/is-glob.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "layout": "default", "plugins": [ @@ -77,5 +122,6 @@ "verb", "vinyl" ] - } -} \ No newline at end of file + }, + "version": "4.0.1" +} diff --git a/node_modules/is-installed-globally/package.json b/node_modules/is-installed-globally/package.json index bad8f8918..6d1ade7df 100644 --- a/node_modules/is-installed-globally/package.json +++ b/node_modules/is-installed-globally/package.json @@ -1,25 +1,64 @@ { - "name": "is-installed-globally", - "version": "0.3.2", - "description": "Check if your package was installed globally", - "license": "MIT", - "repository": "sindresorhus/is-installed-globally", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "is-installed-globally@0.3.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-installed-globally@0.3.2", + "_id": "is-installed-globally@0.3.2", + "_inBundle": false, + "_integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", + "_location": "/is-installed-globally", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-installed-globally@0.3.2", + "name": "is-installed-globally", + "escapedName": "is-installed-globally", + "rawSpec": "0.3.2", + "saveSpec": null, + "fetchSpec": "0.3.2" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", + "_spec": "0.3.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-installed-globally/issues" + }, + "dependencies": { + "global-dirs": "^2.0.1", + "is-path-inside": "^3.0.1" + }, + "description": "Check if your package was installed globally", + "devDependencies": { + "ava": "^2.4.0", + "cpy": "^7.3.0", + "del": "^5.1.0", + "execa": "^2.0.4", + "make-dir": "^3.0.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/is-installed-globally#readme", "keywords": [ "global", "package", @@ -38,17 +77,14 @@ "bin", "binary" ], - "dependencies": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" + "license": "MIT", + "name": "is-installed-globally", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-installed-globally.git" }, - "devDependencies": { - "ava": "^2.4.0", - "cpy": "^7.3.0", - "del": "^5.1.0", - "execa": "^2.0.4", - "make-dir": "^3.0.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "0.3.2" +} diff --git a/node_modules/is-interactive/package.json b/node_modules/is-interactive/package.json index 2c0f4c55d..4ee031fcc 100644 --- a/node_modules/is-interactive/package.json +++ b/node_modules/is-interactive/package.json @@ -1,24 +1,56 @@ { - "name": "is-interactive", - "version": "1.0.0", - "description": "Check if stdout or stderr is interactive", - "license": "MIT", - "repository": "sindresorhus/is-interactive", + "_args": [ + [ + "is-interactive@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-interactive@1.0.0", + "_id": "is-interactive@1.0.0", + "_inBundle": false, + "_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "_location": "/is-interactive", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-interactive@1.0.0", + "name": "is-interactive", + "escapedName": "is-interactive", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-interactive/issues" + }, + "description": "Check if stdout or stderr is interactive", + "devDependencies": { + "@types/node": "^12.0.12", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-interactive#readme", "keywords": [ "interactive", "stdout", @@ -29,10 +61,14 @@ "shell", "tty" ], - "devDependencies": { - "@types/node": "^12.0.12", - "ava": "^2.1.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-interactive", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-interactive.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "1.0.0" +} diff --git a/node_modules/is-npm/package.json b/node_modules/is-npm/package.json index 07c9dcb40..59f4370e5 100644 --- a/node_modules/is-npm/package.json +++ b/node_modules/is-npm/package.json @@ -1,24 +1,55 @@ { - "name": "is-npm", - "version": "4.0.0", - "description": "Check if your code is running as an npm script", - "license": "MIT", - "repository": "sindresorhus/is-npm", + "_args": [ + [ + "is-npm@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-npm@4.0.0", + "_id": "is-npm@4.0.0", + "_inBundle": false, + "_integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", + "_location": "/is-npm", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-npm@4.0.0", + "name": "is-npm", + "escapedName": "is-npm", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-npm/issues" + }, + "description": "Check if your code is running as an npm script", + "devDependencies": { + "ava": "^2.4.0", + "tsd-check": "^0.6.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-npm#readme", "keywords": [ "npm", "is", @@ -29,9 +60,14 @@ "run", "script" ], - "devDependencies": { - "ava": "^2.4.0", - "tsd-check": "^0.6.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-npm", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-npm.git" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "4.0.0" +} diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json index 1749833c1..8d583721b 100644 --- a/node_modules/is-number/package.json +++ b/node_modules/is-number/package.json @@ -1,35 +1,68 @@ { - "name": "is-number", - "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", - "version": "7.0.0", - "homepage": "https://github.com/jonschlinkert/is-number", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Olsten Larck (https://i.am.charlike.online)", - "Rouven Weßling (www.rouvenwessling.de)" + "_args": [ + [ + "is-number@7.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "jonschlinkert/is-number", - "bugs": { - "url": "https://github.com/jonschlinkert/is-number/issues" + "_development": true, + "_from": "is-number@7.0.0", + "_id": "is-number@7.0.0", + "_inBundle": false, + "_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "_location": "/is-number", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-number@7.0.0", + "name": "is-number", + "escapedName": "is-number", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/to-regex-range" ], - "main": "index.js", - "engines": { - "node": ">=0.12.0" + "_resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/jonschlinkert/is-number/issues" }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Olsten Larck", + "url": "https://i.am.charlike.online" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", "gulp-format-md": "^1.0.0", "mocha": "^3.5.3" }, + "engines": { + "node": ">=0.12.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-number", "keywords": [ "cast", "check", @@ -58,6 +91,16 @@ "typeof", "value" ], + "license": "MIT", + "main": "index.js", + "name": "is-number", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-number.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "toc": false, "layout": "default", @@ -78,5 +121,6 @@ "lint": { "reflinks": true } - } -} \ No newline at end of file + }, + "version": "7.0.0" +} diff --git a/node_modules/is-obj/package.json b/node_modules/is-obj/package.json index 1485e78dd..89d4072d8 100644 --- a/node_modules/is-obj/package.json +++ b/node_modules/is-obj/package.json @@ -1,24 +1,55 @@ { - "name": "is-obj", - "version": "2.0.0", - "description": "Check if a value is an object", - "license": "MIT", - "repository": "sindresorhus/is-obj", + "_args": [ + [ + "is-obj@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-obj@2.0.0", + "_id": "is-obj@2.0.0", + "_inBundle": false, + "_integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "_location": "/is-obj", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-obj@2.0.0", + "name": "is-obj", + "escapedName": "is-obj", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/dot-prop" + ], + "_resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-obj/issues" + }, + "description": "Check if a value is an object", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-obj#readme", "keywords": [ "object", "is", @@ -26,9 +57,14 @@ "test", "type" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-obj", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-obj.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/is-path-cwd/package.json b/node_modules/is-path-cwd/package.json index 064cba0b0..ebba8d352 100644 --- a/node_modules/is-path-cwd/package.json +++ b/node_modules/is-path-cwd/package.json @@ -1,24 +1,55 @@ { - "name": "is-path-cwd", - "version": "2.2.0", - "description": "Check if a path is the current working directory", - "license": "MIT", - "repository": "sindresorhus/is-path-cwd", + "_args": [ + [ + "is-path-cwd@2.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-path-cwd@2.2.0", + "_id": "is-path-cwd@2.2.0", + "_inBundle": false, + "_integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "_location": "/is-path-cwd", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-path-cwd@2.2.0", + "name": "is-path-cwd", + "escapedName": "is-path-cwd", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/del" + ], + "_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-path-cwd/issues" + }, + "description": "Check if a path is the current working directory", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-path-cwd#readme", "keywords": [ "path", "cwd", @@ -28,9 +59,14 @@ "file", "folder" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-path-cwd", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-path-cwd.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/is-path-inside/package.json b/node_modules/is-path-inside/package.json index 8d9d9343a..620915278 100644 --- a/node_modules/is-path-inside/package.json +++ b/node_modules/is-path-inside/package.json @@ -1,24 +1,56 @@ { - "name": "is-path-inside", - "version": "3.0.2", - "description": "Check if a path is inside another path", - "license": "MIT", - "repository": "sindresorhus/is-path-inside", + "_args": [ + [ + "is-path-inside@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-path-inside@3.0.2", + "_id": "is-path-inside@3.0.2", + "_inBundle": false, + "_integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", + "_location": "/is-path-inside", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-path-inside@3.0.2", + "name": "is-path-inside", + "escapedName": "is-path-inside", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/del", + "/is-installed-globally" + ], + "_resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-path-inside/issues" + }, + "description": "Check if a path is inside another path", + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/is-path-inside#readme", "keywords": [ "path", "inside", @@ -28,9 +60,14 @@ "file", "resolve" ], - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-path-inside", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-path-inside.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.2" +} diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json index 986ffab26..a705b5eae 100644 --- a/node_modules/is-plain-object/package.json +++ b/node_modules/is-plain-object/package.json @@ -1,41 +1,62 @@ { - "name": "is-plain-object", - "description": "Returns true if an object was created by the `Object` constructor.", - "version": "3.0.0", - "homepage": "https://github.com/jonschlinkert/is-plain-object", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Osman Nuri Okumuş (http://onokumus.com)", - "Steven Vachon (https://svachon.com)", - "(https://github.com/wtgtybhertgeghgtwtg)" + "_args": [ + [ + "is-plain-object@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "jonschlinkert/is-plain-object", - "bugs": { - "url": "https://github.com/jonschlinkert/is-plain-object/issues" + "_from": "is-plain-object@3.0.0", + "_id": "is-plain-object@3.0.0", + "_inBundle": false, + "_integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==", + "_location": "/is-plain-object", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-plain-object@3.0.0", + "name": "is-plain-object", + "escapedName": "is-plain-object", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" }, - "license": "MIT", - "main": "index.cjs.js", - "module": "index.js", - "types": "index.d.ts", - "files": [ - "index.d.ts", - "index.js", - "index.cjs.js" + "_requiredBy": [ + "/@octokit/endpoint", + "/@octokit/request", + "/ava" ], - "engines": { - "node": ">=0.10.0" + "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "build": "rollup -c", - "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html", - "test_node": "mocha -r esm", - "test": "npm run test_node && npm run build && npm run test_browser", - "prepare": "rollup -c" + "bugs": { + "url": "https://github.com/jonschlinkert/is-plain-object/issues" }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Osman Nuri Okumuş", + "url": "http://onokumus.com" + }, + { + "name": "Steven Vachon", + "url": "https://svachon.com" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], "dependencies": { "isobject": "^4.0.0" }, + "description": "Returns true if an object was created by the `Object` constructor.", "devDependencies": { "chai": "^4.2.0", "esm": "^3.2.22", @@ -45,6 +66,15 @@ "rollup": "^1.10.1", "rollup-plugin-node-resolve": "^4.2.3" }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.d.ts", + "index.js", + "index.cjs.js" + ], + "homepage": "https://github.com/jonschlinkert/is-plain-object", "keywords": [ "check", "is", @@ -59,6 +89,22 @@ "typeof", "value" ], + "license": "MIT", + "main": "index.cjs.js", + "module": "index.js", + "name": "is-plain-object", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-plain-object.git" + }, + "scripts": { + "build": "rollup -c", + "prepare": "rollup -c", + "test": "npm run test_node && npm run build && npm run test_browser", + "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html", + "test_node": "mocha -r esm" + }, + "types": "index.d.ts", "verb": { "toc": false, "layout": "default", @@ -78,5 +124,6 @@ "lint": { "reflinks": true } - } -} \ No newline at end of file + }, + "version": "3.0.0" +} diff --git a/node_modules/is-promise/package.json b/node_modules/is-promise/package.json index e729cac00..ab6b282f5 100644 --- a/node_modules/is-promise/package.json +++ b/node_modules/is-promise/package.json @@ -1,16 +1,40 @@ { - "name": "is-promise", - "version": "3.0.0", - "description": "Test whether an object looks like a promises-a+ promise", - "main": "./index.js", - "scripts": { - "test": "node test" + "_args": [ + [ + "is-promise@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-promise@3.0.0", + "_id": "is-promise@3.0.0", + "_inBundle": false, + "_integrity": "sha512-aTHJ4BvETyySzLhguH+7sL4b8765eecqq7ZrHVuhZr3FjCL/IV+LsvisEeH+9d0AkChYny3ad1KEL+mKy4ot7A==", + "_location": "/is-promise", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-promise@3.0.0", + "name": "is-promise", + "escapedName": "is-promise", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" }, - "files": [ - "index.js", - "index.mjs", - "index.d.ts" + "_requiredBy": [ + "/ava" ], + "_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "ForbesLindesay" + }, + "bugs": { + "url": "https://github.com/then/is-promise/issues" + }, + "description": "Test whether an object looks like a promises-a+ promise", "exports": { ".": [ { @@ -21,10 +45,21 @@ "./index.js" ] }, + "files": [ + "index.js", + "index.mjs", + "index.d.ts" + ], + "homepage": "https://github.com/then/is-promise#readme", + "license": "MIT", + "main": "./index.js", + "name": "is-promise", "repository": { "type": "git", - "url": "https://github.com/then/is-promise.git" + "url": "git+https://github.com/then/is-promise.git" + }, + "scripts": { + "test": "node test" }, - "author": "ForbesLindesay", - "license": "MIT" -} \ No newline at end of file + "version": "3.0.0" +} diff --git a/node_modules/is-stream/package.json b/node_modules/is-stream/package.json index e0d17830e..dc56d757c 100644 --- a/node_modules/is-stream/package.json +++ b/node_modules/is-stream/package.json @@ -1,23 +1,53 @@ { - "name": "is-stream", - "version": "1.1.0", - "description": "Check if something is a Node.js stream", - "license": "MIT", - "repository": "sindresorhus/is-stream", + "_args": [ + [ + "is-stream@1.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "is-stream@1.1.0", + "_id": "is-stream@1.1.0", + "_inBundle": false, + "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "_location": "/is-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-stream@1.1.0", + "name": "is-stream", + "escapedName": "is-stream", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/is-stream/issues" + }, + "description": "Check if something is a Node.js stream", + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.0", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/is-stream#readme", "keywords": [ "stream", "type", @@ -30,9 +60,14 @@ "detect", "is" ], - "devDependencies": { - "ava": "*", - "tempfile": "^1.1.0", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "is-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-stream.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.1.0" +} diff --git a/node_modules/is-typedarray/package.json b/node_modules/is-typedarray/package.json index 6fc813ab7..4d66cc415 100644 --- a/node_modules/is-typedarray/package.json +++ b/node_modules/is-typedarray/package.json @@ -1,21 +1,48 @@ { - "name": "is-typedarray", - "version": "1.0.0", - "description": "Detect whether or not an object is a Typed Array", - "main": "index.js", - "scripts": { - "test": "node test" + "_args": [ + [ + "is-typedarray@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-typedarray@1.0.0", + "_id": "is-typedarray@1.0.0", + "_inBundle": false, + "_integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "_location": "/is-typedarray", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-typedarray@1.0.0", + "name": "is-typedarray", + "escapedName": "is-typedarray", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/typedarray-to-buffer", + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com", + "url": "http://hughsk.io/" + }, + "bugs": { + "url": "https://github.com/hughsk/is-typedarray/issues" }, - "author": "Hugh Kennedy (http://hughsk.io/)", - "license": "MIT", "dependencies": {}, + "description": "Detect whether or not an object is a Typed Array", "devDependencies": { "tape": "^2.13.1" }, - "repository": { - "type": "git", - "url": "git://github.com/hughsk/is-typedarray.git" - }, + "homepage": "https://github.com/hughsk/is-typedarray", "keywords": [ "typed", "array", @@ -23,8 +50,15 @@ "is", "util" ], - "bugs": { - "url": "https://github.com/hughsk/is-typedarray/issues" + "license": "MIT", + "main": "index.js", + "name": "is-typedarray", + "repository": { + "type": "git", + "url": "git://github.com/hughsk/is-typedarray.git" + }, + "scripts": { + "test": "node test" }, - "homepage": "https://github.com/hughsk/is-typedarray" -} \ No newline at end of file + "version": "1.0.0" +} diff --git a/node_modules/is-yarn-global/package.json b/node_modules/is-yarn-global/package.json index 25b0e3dfc..8e4fcdb4c 100644 --- a/node_modules/is-yarn-global/package.json +++ b/node_modules/is-yarn-global/package.json @@ -1,15 +1,54 @@ { - "name": "is-yarn-global", - "version": "0.3.0", + "_args": [ + [ + "is-yarn-global@0.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "is-yarn-global@0.3.0", + "_id": "is-yarn-global@0.3.0", + "_inBundle": false, + "_integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "_location": "/is-yarn-global", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-yarn-global@0.3.0", + "name": "is-yarn-global", + "escapedName": "is-yarn-global", + "rawSpec": "0.3.0", + "saveSpec": null, + "fetchSpec": "0.3.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "_spec": "0.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "LitoMore", + "url": "litomore@gmail.com" + }, + "bugs": { + "url": "https://github.com/LitoMore/is-yarn-global/issues" + }, "description": "Check if installed by yarn globally without any `fs` calls", - "repository": "git@github.com:LitoMore/is-yarn-global.git", - "author": "LitoMore (litomore@gmail.com)", + "devDependencies": { + "ava": "^0.24.0", + "xo": "^0.18.2" + }, + "homepage": "https://github.com/LitoMore/is-yarn-global#readme", "license": "MIT", + "name": "is-yarn-global", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/LitoMore/is-yarn-global.git" + }, "scripts": { "test": "xo" }, - "devDependencies": { - "ava": "^0.24.0", - "xo": "^0.18.2" - } -} \ No newline at end of file + "version": "0.3.0" +} diff --git a/node_modules/isexe/package.json b/node_modules/isexe/package.json index 5e8bc7867..233694ec4 100644 --- a/node_modules/isexe/package.json +++ b/node_modules/isexe/package.json @@ -1,31 +1,63 @@ { - "name": "isexe", - "version": "2.0.0", - "description": "Minimal module to check if a file is executable.", - "main": "index.js", - "directories": { - "test": "test" + "_args": [ + [ + "isexe@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "isexe@2.0.0", + "_id": "isexe@2.0.0", + "_inBundle": false, + "_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "_location": "/isexe", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isexe@2.0.0", + "name": "isexe", + "escapedName": "isexe", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/which" + ], + "_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" }, + "bugs": { + "url": "https://github.com/isaacs/isexe/issues" + }, + "description": "Minimal module to check if a file is executable.", "devDependencies": { "mkdirp": "^0.5.1", "rimraf": "^2.5.0", "tap": "^10.3.0" }, - "scripts": { - "test": "tap test/*.js --100", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "directories": { + "test": "test" }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "homepage": "https://github.com/isaacs/isexe#readme", + "keywords": [], "license": "ISC", + "main": "index.js", + "name": "isexe", "repository": { "type": "git", "url": "git+https://github.com/isaacs/isexe.git" }, - "keywords": [], - "bugs": { - "url": "https://github.com/isaacs/isexe/issues" + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --100" }, - "homepage": "https://github.com/isaacs/isexe#readme" -} \ No newline at end of file + "version": "2.0.0" +} diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json index c59d1ba3a..a8ef6318f 100644 --- a/node_modules/isobject/package.json +++ b/node_modules/isobject/package.json @@ -1,43 +1,77 @@ { - "name": "isobject", - "description": "Returns true if the value is an object and not an array or null.", - "version": "4.0.0", - "homepage": "https://github.com/jonschlinkert/isobject", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "(https://github.com/LeSuisse)", - "Brian Woodward (https://twitter.com/doowb)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Magnús Dæhlen (https://github.com/magnudae)", - "Tom MacWright (https://macwright.org)" + "_args": [ + [ + "isobject@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "jonschlinkert/isobject", - "bugs": { - "url": "https://github.com/jonschlinkert/isobject/issues" + "_from": "isobject@4.0.0", + "_id": "isobject@4.0.0", + "_inBundle": false, + "_integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==", + "_location": "/isobject", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isobject@4.0.0", + "name": "isobject", + "escapedName": "isobject", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" }, - "license": "MIT", - "files": [ - "index.d.ts", - "index.cjs.js", - "index.js" + "_requiredBy": [ + "/is-plain-object" ], - "main": "index.cjs.js", - "module": "index.js", - "engines": { - "node": ">=0.10.0" + "_resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "build": "rollup -i index.js -o index.cjs.js -f cjs", - "test": "mocha -r esm", - "prepublish": "npm run build" + "bugs": { + "url": "https://github.com/jonschlinkert/isobject/issues" }, + "contributors": [ + { + "url": "https://github.com/LeSuisse" + }, + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Magnús Dæhlen", + "url": "https://github.com/magnudae" + }, + { + "name": "Tom MacWright", + "url": "https://macwright.org" + } + ], "dependencies": {}, + "description": "Returns true if the value is an object and not an array or null.", "devDependencies": { "esm": "^3.2.22", "gulp-format-md": "^0.1.9", "mocha": "^2.4.5", "rollup": "^1.10.1" }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.d.ts", + "index.cjs.js", + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/isobject", "keywords": [ "check", "is", @@ -52,6 +86,19 @@ "typeof", "value" ], + "license": "MIT", + "main": "index.cjs.js", + "module": "index.js", + "name": "isobject", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/isobject.git" + }, + "scripts": { + "build": "rollup -i index.js -o index.cjs.js -f cjs", + "prepublish": "npm run build", + "test": "mocha -r esm" + }, "types": "index.d.ts", "verb": { "related": { @@ -76,5 +123,6 @@ "reflinks": [ "verb" ] - } -} \ No newline at end of file + }, + "version": "4.0.0" +} diff --git a/node_modules/js-string-escape/package.json b/node_modules/js-string-escape/package.json index 5675486fe..6c7ec9338 100644 --- a/node_modules/js-string-escape/package.json +++ b/node_modules/js-string-escape/package.json @@ -1,38 +1,74 @@ { - "name": "js-string-escape", - "version": "1.0.1", - "description": "Escape strings for use as JavaScript string literals", - "main": "index.js", - "scripts": { - "test": "tap test" - }, - "repository": { - "type": "git", - "url": "https://github.com/joliss/js-string-escape" + "_args": [ + [ + "js-string-escape@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "js-string-escape@1.0.1", + "_id": "js-string-escape@1.0.1", + "_inBundle": false, + "_integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", + "_location": "/js-string-escape", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "js-string-escape@1.0.1", + "name": "js-string-escape", + "escapedName": "js-string-escape", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" }, - "keywords": [ - "string", - "escape", - "backslash", - "javascript", - "ecmascript" + "_requiredBy": [ + "/concordance" ], - "author": "Jo Liss ", + "_resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jo Liss", + "email": "joliss42@gmail.com" + }, + "bugs": { + "url": "https://github.com/joliss/js-string-escape/issues" + }, "contributors": [ { "name": "Mathias Bynens", "url": "http://mathiasbynens.be/" } ], - "license": "MIT", + "description": "Escape strings for use as JavaScript string literals", "devDependencies": { - "tap": "~> 0.4.2", - "punycode": "~> 1.2.1" + "punycode": "~> 1.2.1", + "tap": "~> 0.4.2" }, "engines": { "node": ">= 0.8" }, "files": [ "index.js" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/joliss/js-string-escape#readme", + "keywords": [ + "string", + "escape", + "backslash", + "javascript", + "ecmascript" + ], + "license": "MIT", + "main": "index.js", + "name": "js-string-escape", + "repository": { + "type": "git", + "url": "git+https://github.com/joliss/js-string-escape.git" + }, + "scripts": { + "test": "tap test" + }, + "version": "1.0.1" +} diff --git a/node_modules/js-tokens/package.json b/node_modules/js-tokens/package.json index a4c280b67..5130aa96d 100644 --- a/node_modules/js-tokens/package.json +++ b/node_modules/js-tokens/package.json @@ -1,9 +1,50 @@ { - "name": "js-tokens", - "version": "4.0.0", - "author": "Simon Lydell", - "license": "MIT", + "_args": [ + [ + "js-tokens@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "js-tokens@4.0.0", + "_id": "js-tokens@4.0.0", + "_inBundle": false, + "_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "_location": "/js-tokens", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "js-tokens@4.0.0", + "name": "js-tokens", + "escapedName": "js-tokens", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/@babel/highlight" + ], + "_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Simon Lydell" + }, + "bugs": { + "url": "https://github.com/lydell/js-tokens/issues" + }, "description": "A regex that tokenizes JavaScript.", + "devDependencies": { + "coffeescript": "2.1.1", + "esprima": "4.0.0", + "everything.js": "1.0.3", + "mocha": "5.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/lydell/js-tokens#readme", "keywords": [ "JavaScript", "js", @@ -11,20 +52,17 @@ "tokenize", "regex" ], - "files": [ - "index.js" - ], - "repository": "lydell/js-tokens", + "license": "MIT", + "name": "js-tokens", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/js-tokens.git" + }, "scripts": { - "test": "mocha --ui tdd", - "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", "build": "node generate-index.js", - "dev": "npm run build && npm test" + "dev": "npm run build && npm test", + "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", + "test": "mocha --ui tdd" }, - "devDependencies": { - "coffeescript": "2.1.1", - "esprima": "4.0.0", - "everything.js": "1.0.3", - "mocha": "5.0.0" - } -} \ No newline at end of file + "version": "4.0.0" +} diff --git a/node_modules/js-yaml/node_modules/esprima/package.json b/node_modules/js-yaml/node_modules/esprima/package.json index 55d445995..2a42c0bef 100644 --- a/node_modules/js-yaml/node_modules/esprima/package.json +++ b/node_modules/js-yaml/node_modules/esprima/package.json @@ -1,39 +1,44 @@ { - "name": "esprima", - "description": "ECMAScript parsing infrastructure for multipurpose analysis", - "homepage": "http://esprima.org", - "main": "dist/esprima.js", - "bin": { - "esparse": "./bin/esparse.js", - "esvalidate": "./bin/esvalidate.js" - }, - "version": "4.0.1", - "files": [ - "bin", - "dist/esprima.js" + "_args": [ + [ + "esprima@4.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": ">=4" + "_from": "esprima@4.0.1", + "_id": "esprima@4.0.1", + "_inBundle": false, + "_integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "_location": "/js-yaml/esprima", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "esprima@4.0.1", + "name": "esprima", + "escapedName": "esprima", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" }, + "_requiredBy": [ + "/js-yaml" + ], + "_resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Ariya Hidayat", "email": "ariya.hidayat@gmail.com" }, - "maintainers": [ - { - "name": "Ariya Hidayat", - "email": "ariya.hidayat@gmail.com", - "web": "http://ariya.ofilabs.com" - } - ], - "repository": { - "type": "git", - "url": "https://github.com/jquery/esprima.git" + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "bugs": { "url": "https://github.com/jquery/esprima/issues" }, - "license": "BSD-2-Clause", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", "devDependencies": { "codecov.io": "~0.1.6", "escomplex-js": "1.2.0", @@ -62,6 +67,14 @@ "unicode-8.0.0": "~0.7.0", "webpack": "~1.14.0" }, + "engines": { + "node": ">=4" + }, + "files": [ + "bin", + "dist/esprima.js" + ], + "homepage": "http://esprima.org", "keywords": [ "ast", "ecmascript", @@ -70,43 +83,58 @@ "parser", "syntax" ], + "license": "BSD-2-Clause", + "main": "dist/esprima.js", + "maintainers": [ + { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com", + "url": "http://ariya.ofilabs.com" + } + ], + "name": "esprima", + "repository": { + "type": "git", + "url": "git+https://github.com/jquery/esprima.git" + }, "scripts": { + "all-tests": "npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", + "analyze-coverage": "istanbul cover test/unit-tests.js", + "api-tests": "mocha -R dot test/api-tests.js", + "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", + "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", + "benchmark-parser": "node -expose_gc test/benchmark-parser.js", + "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", + "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", + "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", "check-version": "node test/check-version.js", - "tslint": "tslint src/*.ts", + "circleci": "npm test && npm run codecov && npm run downstream", "code-style": "tsfmt --verify src/*.ts && tsfmt --verify test/*.js", - "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js", + "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", + "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", "complexity": "node test/check-complexity.js", - "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", - "hostile-env-tests": "node test/hostile-environment-tests.js", - "unit-tests": "node test/unit-tests.js", - "api-tests": "mocha -R dot test/api-tests.js", + "downstream": "node test/downstream.js", + "droneio": "npm run compile && npm run all-tests && npm run saucelabs", + "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", + "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js", + "generate-fixtures": "node tools/generate-fixtures.js", + "generate-regex": "node tools/generate-identifier-regex.js", + "generate-xhtml-entities": "node tools/generate-xhtml-entities.js", "grammar-tests": "node test/grammar-tests.js", + "hostile-env-tests": "node test/hostile-environment-tests.js", + "prepublish": "npm run compile", + "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", "regression-tests": "node test/regression-tests.js", - "all-tests": "npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", - "verify-line-ending": "node test/verify-line-ending.js", - "generate-fixtures": "node tools/generate-fixtures.js", - "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", + "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js", - "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js", "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js", - "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", - "analyze-coverage": "istanbul cover test/unit-tests.js", - "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", - "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", - "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", + "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js", + "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", "test": "npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis", - "prepublish": "npm run compile", - "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", - "benchmark-parser": "node -expose_gc test/benchmark-parser.js", - "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", - "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", - "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", - "downstream": "node test/downstream.js", "travis": "npm test", - "circleci": "npm test && npm run codecov && npm run downstream", - "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", - "droneio": "npm run compile && npm run all-tests && npm run saucelabs", - "generate-regex": "node tools/generate-identifier-regex.js", - "generate-xhtml-entities": "node tools/generate-xhtml-entities.js" - } -} \ No newline at end of file + "tslint": "tslint src/*.ts", + "unit-tests": "node test/unit-tests.js", + "verify-line-ending": "node test/verify-line-ending.js" + }, + "version": "4.0.1" +} diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json index dbaa43e0c..689482230 100644 --- a/node_modules/js-yaml/package.json +++ b/node_modules/js-yaml/package.json @@ -1,35 +1,66 @@ { - "name": "js-yaml", - "version": "3.13.1", - "description": "YAML 1.2 parser and serializer", - "keywords": [ - "yaml", - "parser", - "serializer", - "pyyaml" - ], - "homepage": "https://github.com/nodeca/js-yaml", - "author": "Vladimir Zapparov ", - "contributors": [ - "Aleksey V Zapparov (http://www.ixti.net/)", - "Vitaly Puzrin (https://github.com/puzrin)", - "Martin Grenfell (http://got-ravings.blogspot.com)" + "_args": [ + [ + "js-yaml@3.13.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "license": "MIT", - "repository": "nodeca/js-yaml", - "files": [ - "index.js", - "lib/", - "bin/", - "dist/" + "_from": "js-yaml@3.13.1", + "_id": "js-yaml@3.13.1", + "_inBundle": false, + "_integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "_location": "/js-yaml", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "js-yaml@3.13.1", + "name": "js-yaml", + "escapedName": "js-yaml", + "rawSpec": "3.13.1", + "saveSpec": null, + "fetchSpec": "3.13.1" + }, + "_requiredBy": [ + "/", + "/supertap", + "/tslint" ], + "_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "_spec": "3.13.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Vladimir Zapparov", + "email": "dervus.grim@gmail.com" + }, "bin": { "js-yaml": "bin/js-yaml.js" }, + "bugs": { + "url": "https://github.com/nodeca/js-yaml/issues" + }, + "contributors": [ + { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + { + "name": "Vitaly Puzrin", + "email": "vitaly@rcdesign.ru", + "url": "https://github.com/puzrin" + }, + { + "name": "Martin Grenfell", + "email": "martin.grenfell@gmail.com", + "url": "http://got-ravings.blogspot.com" + } + ], "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, + "description": "YAML 1.2 parser and serializer", "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", @@ -41,7 +72,27 @@ "mocha": "^5.2.0", "uglify-js": "^3.0.1" }, + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" + ], + "homepage": "https://github.com/nodeca/js-yaml", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" + ], + "license": "MIT", + "name": "js-yaml", + "repository": { + "type": "git", + "url": "git+https://github.com/nodeca/js-yaml.git" + }, "scripts": { "test": "make test" - } -} \ No newline at end of file + }, + "version": "3.13.1" +} diff --git a/node_modules/json-buffer/package.json b/node_modules/json-buffer/package.json index 3c51a6781..b8567c2d6 100644 --- a/node_modules/json-buffer/package.json +++ b/node_modules/json-buffer/package.json @@ -1,20 +1,55 @@ { - "name": "json-buffer", + "_args": [ + [ + "json-buffer@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "json-buffer@3.0.0", + "_id": "json-buffer@3.0.0", + "_inBundle": false, + "_integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "_location": "/json-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-buffer@3.0.0", + "name": "json-buffer", + "escapedName": "json-buffer", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/keyv" + ], + "_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://dominictarr.com" + }, + "bugs": { + "url": "https://github.com/dominictarr/json-buffer/issues" + }, "description": "JSON parse & stringify that supports binary via bops & base64", - "version": "3.0.0", + "devDependencies": { + "tape": "^4.6.3" + }, "homepage": "https://github.com/dominictarr/json-buffer", + "license": "MIT", + "name": "json-buffer", "repository": { "type": "git", "url": "git://github.com/dominictarr/json-buffer.git" }, - "devDependencies": { - "tape": "^4.6.3" - }, "scripts": { "test": "set -e; for t in test/*.js; do node $t; done" }, - "author": "Dominic Tarr (http://dominictarr.com)", - "license": "MIT", "testling": { "files": "test/*.js", "browsers": [ @@ -30,5 +65,6 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - } -} \ No newline at end of file + }, + "version": "3.0.0" +} diff --git a/node_modules/json-parse-better-errors/package.json b/node_modules/json-parse-better-errors/package.json index 89b9301d6..39c7bd462 100644 --- a/node_modules/json-parse-better-errors/package.json +++ b/node_modules/json-parse-better-errors/package.json @@ -1,38 +1,40 @@ { - "name": "json-parse-better-errors", - "version": "1.0.2", - "description": "JSON.parse with context information on error", - "main": "index.js", - "files": [ - "*.js" + "_args": [ + [ + "json-parse-better-errors@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "prerelease": "npm t", - "postrelease": "npm publish && git push --follow-tags", - "pretest": "standard", - "release": "standard-version -s", - "test": "tap -J --coverage test/*.js", - "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", - "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" + "_development": true, + "_from": "json-parse-better-errors@1.0.2", + "_id": "json-parse-better-errors@1.0.2", + "_inBundle": false, + "_integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "_location": "/json-parse-better-errors", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-parse-better-errors@1.0.2", + "name": "json-parse-better-errors", + "escapedName": "json-parse-better-errors", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" }, - "repository": "https://github.com/zkat/json-parse-better-errors", - "keywords": [ - "JSON", - "parser" + "_requiredBy": [ + "/parse-json", + "/read-pkg/parse-json" ], + "_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Kat Marchán", - "email": "kzm@zkat.tech", - "twitter": "maybekatz" + "email": "kzm@zkat.tech" }, - "license": "MIT", - "devDependencies": { - "nyc": "^10.3.2", - "standard": "^9.0.2", - "standard-version": "^4.1.0", - "tap": "^10.3.3", - "weallbehave": "^1.2.0", - "weallcontribute": "^1.0.8" + "bugs": { + "url": "https://github.com/zkat/json-parse-better-errors/issues" }, "config": { "nyc": { @@ -41,5 +43,39 @@ "test/**" ] } - } -} \ No newline at end of file + }, + "description": "JSON.parse with context information on error", + "devDependencies": { + "nyc": "^10.3.2", + "standard": "^9.0.2", + "standard-version": "^4.1.0", + "tap": "^10.3.3", + "weallbehave": "^1.2.0", + "weallcontribute": "^1.0.8" + }, + "files": [ + "*.js" + ], + "homepage": "https://github.com/zkat/json-parse-better-errors#readme", + "keywords": [ + "JSON", + "parser" + ], + "license": "MIT", + "main": "index.js", + "name": "json-parse-better-errors", + "repository": { + "type": "git", + "url": "git+https://github.com/zkat/json-parse-better-errors.git" + }, + "scripts": { + "postrelease": "npm publish && git push --follow-tags", + "prerelease": "npm t", + "pretest": "standard", + "release": "standard-version -s", + "test": "tap -J --coverage test/*.js", + "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", + "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" + }, + "version": "1.0.2" +} diff --git a/node_modules/json-stringify-safe/.npmignore b/node_modules/json-stringify-safe/.npmignore new file mode 100644 index 000000000..17d6b3677 --- /dev/null +++ b/node_modules/json-stringify-safe/.npmignore @@ -0,0 +1 @@ +/*.tgz diff --git a/node_modules/json-stringify-safe/CHANGELOG.md b/node_modules/json-stringify-safe/CHANGELOG.md new file mode 100644 index 000000000..42bcb60af --- /dev/null +++ b/node_modules/json-stringify-safe/CHANGELOG.md @@ -0,0 +1,14 @@ +## Unreleased +- Fixes stringify to only take ancestors into account when checking + circularity. + It previously assumed every visited object was circular which led to [false + positives][issue9]. + Uses the tiny serializer I wrote for [Must.js][must] a year and a half ago. +- Fixes calling the `replacer` function in the proper context (`thisArg`). +- Fixes calling the `cycleReplacer` function in the proper context (`thisArg`). +- Speeds serializing by a factor of + Big-O(h-my-god-it-linearly-searched-every-object) it had ever seen. Searching + only the ancestors for a circular references speeds up things considerably. + +[must]: https://github.com/moll/js-must +[issue9]: https://github.com/isaacs/json-stringify-safe/issues/9 diff --git a/node_modules/json-stringify-safe/LICENSE b/node_modules/json-stringify-safe/LICENSE new file mode 100644 index 000000000..19129e315 --- /dev/null +++ b/node_modules/json-stringify-safe/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/json-stringify-safe/Makefile b/node_modules/json-stringify-safe/Makefile new file mode 100644 index 000000000..36088c723 --- /dev/null +++ b/node_modules/json-stringify-safe/Makefile @@ -0,0 +1,35 @@ +NODE_OPTS = +TEST_OPTS = + +love: + @echo "Feel like makin' love." + +test: + @node $(NODE_OPTS) ./node_modules/.bin/_mocha -R dot $(TEST_OPTS) + +spec: + @node $(NODE_OPTS) ./node_modules/.bin/_mocha -R spec $(TEST_OPTS) + +autotest: + @node $(NODE_OPTS) ./node_modules/.bin/_mocha -R dot --watch $(TEST_OPTS) + +autospec: + @node $(NODE_OPTS) ./node_modules/.bin/_mocha -R spec --watch $(TEST_OPTS) + +pack: + @file=$$(npm pack); echo "$$file"; tar tf "$$file" + +publish: + npm publish + +tag: + git tag "v$$(node -e 'console.log(require("./package").version)')" + +clean: + rm -f *.tgz + npm prune --production + +.PHONY: love +.PHONY: test spec autotest autospec +.PHONY: pack publish tag +.PHONY: clean diff --git a/node_modules/json-stringify-safe/README.md b/node_modules/json-stringify-safe/README.md new file mode 100644 index 000000000..a11f302a3 --- /dev/null +++ b/node_modules/json-stringify-safe/README.md @@ -0,0 +1,52 @@ +# json-stringify-safe + +Like JSON.stringify, but doesn't throw on circular references. + +## Usage + +Takes the same arguments as `JSON.stringify`. + +```javascript +var stringify = require('json-stringify-safe'); +var circularObj = {}; +circularObj.circularRef = circularObj; +circularObj.list = [ circularObj, circularObj ]; +console.log(stringify(circularObj, null, 2)); +``` + +Output: + +```json +{ + "circularRef": "[Circular]", + "list": [ + "[Circular]", + "[Circular]" + ] +} +``` + +## Details + +``` +stringify(obj, serializer, indent, decycler) +``` + +The first three arguments are the same as to JSON.stringify. The last +is an argument that's only used when the object has been seen already. + +The default `decycler` function returns the string `'[Circular]'`. +If, for example, you pass in `function(k,v){}` (return nothing) then it +will prune cycles. If you pass in `function(k,v){ return {foo: 'bar'}}`, +then cyclical objects will always be represented as `{"foo":"bar"}` in +the result. + +``` +stringify.getSerialize(serializer, decycler) +``` + +Returns a serializer that can be used elsewhere. This is the actual +function that's passed to JSON.stringify. + +**Note** that the function returned from `getSerialize` is stateful for now, so +do **not** use it more than once. diff --git a/node_modules/json-stringify-safe/package.json b/node_modules/json-stringify-safe/package.json new file mode 100644 index 000000000..b8cbef8dd --- /dev/null +++ b/node_modules/json-stringify-safe/package.json @@ -0,0 +1,66 @@ +{ + "_from": "json-stringify-safe@^5.0.1", + "_id": "json-stringify-safe@5.0.1", + "_inBundle": false, + "_integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "_location": "/json-stringify-safe", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "json-stringify-safe@^5.0.1", + "name": "json-stringify-safe", + "escapedName": "json-stringify-safe", + "rawSpec": "^5.0.1", + "saveSpec": null, + "fetchSpec": "^5.0.1" + }, + "_requiredBy": [ + "/nock" + ], + "_resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "_shasum": "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb", + "_spec": "json-stringify-safe@^5.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/nock", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "bugs": { + "url": "https://github.com/isaacs/json-stringify-safe/issues" + }, + "bundleDependencies": false, + "contributors": [ + { + "name": "Andri Möll", + "email": "andri@dot.ee", + "url": "http://themoll.com" + } + ], + "deprecated": false, + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "devDependencies": { + "mocha": ">= 2.1.0 < 3", + "must": ">= 0.12 < 0.13", + "sinon": ">= 1.12.2 < 2" + }, + "homepage": "https://github.com/isaacs/json-stringify-safe", + "keywords": [ + "json", + "stringify", + "circular", + "safe" + ], + "license": "ISC", + "main": "stringify.js", + "name": "json-stringify-safe", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/json-stringify-safe.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "5.0.1" +} diff --git a/node_modules/json-stringify-safe/stringify.js b/node_modules/json-stringify-safe/stringify.js new file mode 100644 index 000000000..124a45218 --- /dev/null +++ b/node_modules/json-stringify-safe/stringify.js @@ -0,0 +1,27 @@ +exports = module.exports = stringify +exports.getSerialize = serializer + +function stringify(obj, replacer, spaces, cycleReplacer) { + return JSON.stringify(obj, serializer(replacer, cycleReplacer), spaces) +} + +function serializer(replacer, cycleReplacer) { + var stack = [], keys = [] + + if (cycleReplacer == null) cycleReplacer = function(key, value) { + if (stack[0] === value) return "[Circular ~]" + return "[Circular ~." + keys.slice(0, stack.indexOf(value)).join(".") + "]" + } + + return function(key, value) { + if (stack.length > 0) { + var thisPos = stack.indexOf(this) + ~thisPos ? stack.splice(thisPos + 1) : stack.push(this) + ~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key) + if (~stack.indexOf(value)) value = cycleReplacer.call(this, key, value) + } + else stack.push(value) + + return replacer == null ? value : replacer.call(this, key, value) + } +} diff --git a/node_modules/json-stringify-safe/test/mocha.opts b/node_modules/json-stringify-safe/test/mocha.opts new file mode 100644 index 000000000..2544e5861 --- /dev/null +++ b/node_modules/json-stringify-safe/test/mocha.opts @@ -0,0 +1,2 @@ +--recursive +--require must diff --git a/node_modules/json-stringify-safe/test/stringify_test.js b/node_modules/json-stringify-safe/test/stringify_test.js new file mode 100644 index 000000000..5b3258317 --- /dev/null +++ b/node_modules/json-stringify-safe/test/stringify_test.js @@ -0,0 +1,246 @@ +var Sinon = require("sinon") +var stringify = require("..") +function jsonify(obj) { return JSON.stringify(obj, null, 2) } + +describe("Stringify", function() { + it("must stringify circular objects", function() { + var obj = {name: "Alice"} + obj.self = obj + var json = stringify(obj, null, 2) + json.must.eql(jsonify({name: "Alice", self: "[Circular ~]"})) + }) + + it("must stringify circular objects with intermediaries", function() { + var obj = {name: "Alice"} + obj.identity = {self: obj} + var json = stringify(obj, null, 2) + json.must.eql(jsonify({name: "Alice", identity: {self: "[Circular ~]"}})) + }) + + it("must stringify circular objects deeper", function() { + var obj = {name: "Alice", child: {name: "Bob"}} + obj.child.self = obj.child + + stringify(obj, null, 2).must.eql(jsonify({ + name: "Alice", + child: {name: "Bob", self: "[Circular ~.child]"} + })) + }) + + it("must stringify circular objects deeper with intermediaries", function() { + var obj = {name: "Alice", child: {name: "Bob"}} + obj.child.identity = {self: obj.child} + + stringify(obj, null, 2).must.eql(jsonify({ + name: "Alice", + child: {name: "Bob", identity: {self: "[Circular ~.child]"}} + })) + }) + + it("must stringify circular objects in an array", function() { + var obj = {name: "Alice"} + obj.self = [obj, obj] + + stringify(obj, null, 2).must.eql(jsonify({ + name: "Alice", self: ["[Circular ~]", "[Circular ~]"] + })) + }) + + it("must stringify circular objects deeper in an array", function() { + var obj = {name: "Alice", children: [{name: "Bob"}, {name: "Eve"}]} + obj.children[0].self = obj.children[0] + obj.children[1].self = obj.children[1] + + stringify(obj, null, 2).must.eql(jsonify({ + name: "Alice", + children: [ + {name: "Bob", self: "[Circular ~.children.0]"}, + {name: "Eve", self: "[Circular ~.children.1]"} + ] + })) + }) + + it("must stringify circular arrays", function() { + var obj = [] + obj.push(obj) + obj.push(obj) + var json = stringify(obj, null, 2) + json.must.eql(jsonify(["[Circular ~]", "[Circular ~]"])) + }) + + it("must stringify circular arrays with intermediaries", function() { + var obj = [] + obj.push({name: "Alice", self: obj}) + obj.push({name: "Bob", self: obj}) + + stringify(obj, null, 2).must.eql(jsonify([ + {name: "Alice", self: "[Circular ~]"}, + {name: "Bob", self: "[Circular ~]"} + ])) + }) + + it("must stringify repeated objects in objects", function() { + var obj = {} + var alice = {name: "Alice"} + obj.alice1 = alice + obj.alice2 = alice + + stringify(obj, null, 2).must.eql(jsonify({ + alice1: {name: "Alice"}, + alice2: {name: "Alice"} + })) + }) + + it("must stringify repeated objects in arrays", function() { + var alice = {name: "Alice"} + var obj = [alice, alice] + var json = stringify(obj, null, 2) + json.must.eql(jsonify([{name: "Alice"}, {name: "Alice"}])) + }) + + it("must call given decycler and use its output", function() { + var obj = {} + obj.a = obj + obj.b = obj + + var decycle = Sinon.spy(function() { return decycle.callCount }) + var json = stringify(obj, null, 2, decycle) + json.must.eql(jsonify({a: 1, b: 2}, null, 2)) + + decycle.callCount.must.equal(2) + decycle.thisValues[0].must.equal(obj) + decycle.args[0][0].must.equal("a") + decycle.args[0][1].must.equal(obj) + decycle.thisValues[1].must.equal(obj) + decycle.args[1][0].must.equal("b") + decycle.args[1][1].must.equal(obj) + }) + + it("must call replacer and use its output", function() { + var obj = {name: "Alice", child: {name: "Bob"}} + + var replacer = Sinon.spy(bangString) + var json = stringify(obj, replacer, 2) + json.must.eql(jsonify({name: "Alice!", child: {name: "Bob!"}})) + + replacer.callCount.must.equal(4) + replacer.args[0][0].must.equal("") + replacer.args[0][1].must.equal(obj) + replacer.thisValues[1].must.equal(obj) + replacer.args[1][0].must.equal("name") + replacer.args[1][1].must.equal("Alice") + replacer.thisValues[2].must.equal(obj) + replacer.args[2][0].must.equal("child") + replacer.args[2][1].must.equal(obj.child) + replacer.thisValues[3].must.equal(obj.child) + replacer.args[3][0].must.equal("name") + replacer.args[3][1].must.equal("Bob") + }) + + it("must call replacer after describing circular references", function() { + var obj = {name: "Alice"} + obj.self = obj + + var replacer = Sinon.spy(bangString) + var json = stringify(obj, replacer, 2) + json.must.eql(jsonify({name: "Alice!", self: "[Circular ~]!"})) + + replacer.callCount.must.equal(3) + replacer.args[0][0].must.equal("") + replacer.args[0][1].must.equal(obj) + replacer.thisValues[1].must.equal(obj) + replacer.args[1][0].must.equal("name") + replacer.args[1][1].must.equal("Alice") + replacer.thisValues[2].must.equal(obj) + replacer.args[2][0].must.equal("self") + replacer.args[2][1].must.equal("[Circular ~]") + }) + + it("must call given decycler and use its output for nested objects", + function() { + var obj = {} + obj.a = obj + obj.b = {self: obj} + + var decycle = Sinon.spy(function() { return decycle.callCount }) + var json = stringify(obj, null, 2, decycle) + json.must.eql(jsonify({a: 1, b: {self: 2}})) + + decycle.callCount.must.equal(2) + decycle.args[0][0].must.equal("a") + decycle.args[0][1].must.equal(obj) + decycle.args[1][0].must.equal("self") + decycle.args[1][1].must.equal(obj) + }) + + it("must use decycler's output when it returned null", function() { + var obj = {a: "b"} + obj.self = obj + obj.selves = [obj, obj] + + function decycle() { return null } + stringify(obj, null, 2, decycle).must.eql(jsonify({ + a: "b", + self: null, + selves: [null, null] + })) + }) + + it("must use decycler's output when it returned undefined", function() { + var obj = {a: "b"} + obj.self = obj + obj.selves = [obj, obj] + + function decycle() {} + stringify(obj, null, 2, decycle).must.eql(jsonify({ + a: "b", + selves: [null, null] + })) + }) + + it("must throw given a decycler that returns a cycle", function() { + var obj = {} + obj.self = obj + var err + function identity(key, value) { return value } + try { stringify(obj, null, 2, identity) } catch (ex) { err = ex } + err.must.be.an.instanceof(TypeError) + }) + + describe(".getSerialize", function() { + it("must stringify circular objects", function() { + var obj = {a: "b"} + obj.circularRef = obj + obj.list = [obj, obj] + + var json = JSON.stringify(obj, stringify.getSerialize(), 2) + json.must.eql(jsonify({ + "a": "b", + "circularRef": "[Circular ~]", + "list": ["[Circular ~]", "[Circular ~]"] + })) + }) + + // This is the behavior as of Mar 3, 2015. + // The serializer function keeps state inside the returned function and + // so far I'm not sure how to not do that. JSON.stringify's replacer is not + // called _after_ serialization. + xit("must return a function that could be called twice", function() { + var obj = {name: "Alice"} + obj.self = obj + + var json + var serializer = stringify.getSerialize() + + json = JSON.stringify(obj, serializer, 2) + json.must.eql(jsonify({name: "Alice", self: "[Circular ~]"})) + + json = JSON.stringify(obj, serializer, 2) + json.must.eql(jsonify({name: "Alice", self: "[Circular ~]"})) + }) + }) +}) + +function bangString(key, value) { + return typeof value == "string" ? value + "!" : value +} diff --git a/node_modules/jsonschema/package.json b/node_modules/jsonschema/package.json index 8d384e2d4..6207cbd89 100644 --- a/node_modules/jsonschema/package.json +++ b/node_modules/jsonschema/package.json @@ -1,25 +1,55 @@ { - "author": "Tom de Grunt ", - "name": "jsonschema", - "version": "1.2.6", - "license": "MIT", - "dependencies": {}, + "_args": [ + [ + "jsonschema@1.2.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "jsonschema@1.2.6", + "_id": "jsonschema@1.2.6", + "_inBundle": false, + "_integrity": "sha512-SqhURKZG07JyKKeo/ir24QnS4/BV7a6gQy93bUSe4lUdNp0QNpIz2c9elWJQ9dpc5cQYY6cvCzgRwy0MQCLyqA==", + "_location": "/jsonschema", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jsonschema@1.2.6", + "name": "jsonschema", + "escapedName": "jsonschema", + "rawSpec": "1.2.6", + "saveSpec": null, + "fetchSpec": "1.2.6" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz", + "_spec": "1.2.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Tom de Grunt", + "email": "tom@degrunt.nl" + }, + "bugs": { + "url": "https://github.com/tdegrunt/jsonschema/issues" + }, "contributors": [ { "name": "Austin Wright" } ], - "main": "./lib", - "typings": "./lib/index.d.ts", + "dependencies": {}, + "description": "A fast and easy to use JSON Schema validator", "devDependencies": { + "chai": "~1.5.0", "json-metaschema": "^1.2.0", - "mocha": "~3", - "chai": "~1.5.0" + "mocha": "~3" }, - "optionalDependencies": {}, "engines": { "node": "*" }, + "homepage": "https://github.com/tdegrunt/jsonschema#readme", "keywords": [ "json", "schema", @@ -27,12 +57,17 @@ "validator", "validation" ], + "license": "MIT", + "main": "./lib", + "name": "jsonschema", + "optionalDependencies": {}, "repository": { "type": "git", "url": "git://github.com/tdegrunt/jsonschema.git" }, - "description": "A fast and easy to use JSON Schema validator", "scripts": { - "test": "./node_modules/.bin/mocha -R spec" - } -} \ No newline at end of file + "test": "mocha -R spec" + }, + "typings": "./lib/index.d.ts", + "version": "1.2.6" +} diff --git a/node_modules/keyv/package.json b/node_modules/keyv/package.json index e179afca8..47fe00d3b 100644 --- a/node_modules/keyv/package.json +++ b/node_modules/keyv/package.json @@ -1,49 +1,82 @@ { - "name": "keyv", - "version": "3.1.0", - "description": "Simple key-value storage with support for multiple backends", - "main": "src/index.js", - "scripts": { - "test": "xo && nyc ava test/keyv.js", - "test:full": "xo && nyc ava --serial", - "coverage": "nyc report --reporter=text-lcov | coveralls" - }, - "xo": { - "extends": "xo-lukechilds" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/lukechilds/keyv.git" + "_args": [ + [ + "keyv@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "keyv@3.1.0", + "_id": "keyv@3.1.0", + "_inBundle": false, + "_integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "_location": "/keyv", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "keyv@3.1.0", + "name": "keyv", + "escapedName": "keyv", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" }, - "keywords": [ - "key", - "value", - "store", - "cache", - "ttl" + "_requiredBy": [ + "/cacheable-request" ], - "author": "Luke Childs (http://lukechilds.co.uk)", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Luke Childs", + "email": "lukechilds123@gmail.com", + "url": "http://lukechilds.co.uk" + }, "bugs": { "url": "https://github.com/lukechilds/keyv/issues" }, - "homepage": "https://github.com/lukechilds/keyv", "dependencies": { "json-buffer": "3.0.0" }, + "description": "Simple key-value storage with support for multiple backends", "devDependencies": { - "ava": "^0.25.0", - "coveralls": "^3.0.0", - "eslint-config-xo-lukechilds": "^1.0.0", "@keyv/mongo": "*", "@keyv/mysql": "*", "@keyv/postgres": "*", "@keyv/redis": "*", "@keyv/sqlite": "*", "@keyv/test-suite": "*", + "ava": "^0.25.0", + "coveralls": "^3.0.0", + "eslint-config-xo-lukechilds": "^1.0.0", "nyc": "^11.0.3", "this": "^1.0.2", "timekeeper": "^2.0.0", "xo": "^0.20.1" + }, + "homepage": "https://github.com/lukechilds/keyv", + "keywords": [ + "key", + "value", + "store", + "cache", + "ttl" + ], + "license": "MIT", + "main": "src/index.js", + "name": "keyv", + "repository": { + "type": "git", + "url": "git+https://github.com/lukechilds/keyv.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava test/keyv.js", + "test:full": "xo && nyc ava --serial" + }, + "version": "3.1.0", + "xo": { + "extends": "xo-lukechilds" } -} \ No newline at end of file +} diff --git a/node_modules/latest-version/package.json b/node_modules/latest-version/package.json index 601992a28..fe7f56779 100644 --- a/node_modules/latest-version/package.json +++ b/node_modules/latest-version/package.json @@ -1,24 +1,60 @@ { - "name": "latest-version", - "version": "5.1.0", - "description": "Get the latest version of an npm package", - "license": "MIT", - "repository": "sindresorhus/latest-version", + "_args": [ + [ + "latest-version@5.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "latest-version@5.1.0", + "_id": "latest-version@5.1.0", + "_inBundle": false, + "_integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "_location": "/latest-version", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "latest-version@5.1.0", + "name": "latest-version", + "escapedName": "latest-version", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/latest-version/issues" + }, + "dependencies": { + "package-json": "^6.3.0" + }, + "description": "Get the latest version of an npm package", + "devDependencies": { + "ava": "^1.4.1", + "semver": "^6.0.0", + "semver-regex": "^2.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/latest-version#readme", "keywords": [ "latest", "version", @@ -29,14 +65,14 @@ "current", "module" ], - "dependencies": { - "package-json": "^6.3.0" + "license": "MIT", + "name": "latest-version", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/latest-version.git" }, - "devDependencies": { - "ava": "^1.4.1", - "semver": "^6.0.0", - "semver-regex": "^2.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.1.0" +} diff --git a/node_modules/lines-and-columns/package.json b/node_modules/lines-and-columns/package.json index 646cb2301..6a73016c9 100644 --- a/node_modules/lines-and-columns/package.json +++ b/node_modules/lines-and-columns/package.json @@ -1,37 +1,41 @@ { - "name": "lines-and-columns", - "description": "Maps lines and columns to character offsets and back.", - "main": "dist/index.js", - "module": "dist/index.mjs", - "types": "dist/index.d.ts", - "scripts": { - "lint": "tslint --config tslint.json --project tsconfig.json --type-check", - "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", - "prebuild": "rm -rf dist", - "build": "./script/build", - "pretest": "npm run build", - "test": "mocha", - "prepublish": "npm run lint && npm run build", - "semantic-release": "semantic-release pre && npm publish && semantic-release post" - }, - "files": [ - "dist" + "_args": [ + [ + "lines-and-columns@1.1.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": { - "type": "git", - "url": "https://github.com/eventualbuddha/lines-and-columns.git" + "_development": true, + "_from": "lines-and-columns@1.1.6", + "_id": "lines-and-columns@1.1.6", + "_inBundle": false, + "_integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "_location": "/lines-and-columns", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lines-and-columns@1.1.6", + "name": "lines-and-columns", + "escapedName": "lines-and-columns", + "rawSpec": "1.1.6", + "saveSpec": null, + "fetchSpec": "1.1.6" }, - "keywords": [ - "lines", - "columns", - "parser" + "_requiredBy": [ + "/read-pkg/parse-json" ], - "author": "Brian Donovan ", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "_spec": "1.1.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Brian Donovan", + "email": "me@brian-donovan.com" + }, "bugs": { "url": "https://github.com/eventualbuddha/lines-and-columns/issues" }, - "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", + "description": "Maps lines and columns to character offsets and back.", "devDependencies": { "@types/mocha": "^2.2.34", "@types/node": "^6.0.52", @@ -41,5 +45,33 @@ "tslint": "^4.1.1", "typescript": "^2.1.4" }, + "files": [ + "dist" + ], + "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", + "keywords": [ + "lines", + "columns", + "parser" + ], + "license": "MIT", + "main": "dist/index.js", + "module": "dist/index.mjs", + "name": "lines-and-columns", + "repository": { + "type": "git", + "url": "git+https://github.com/eventualbuddha/lines-and-columns.git" + }, + "scripts": { + "build": "./script/build", + "lint": "tslint --config tslint.json --project tsconfig.json --type-check", + "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", + "prebuild": "rm -rf dist", + "prepublish": "npm run lint && npm run build", + "pretest": "npm run build", + "semantic-release": "semantic-release pre && npm publish && semantic-release post", + "test": "mocha" + }, + "types": "dist/index.d.ts", "version": "1.1.6" -} \ No newline at end of file +} diff --git a/node_modules/load-json-file/node_modules/strip-bom/package.json b/node_modules/load-json-file/node_modules/strip-bom/package.json index f37e6ab2e..f29cc62a1 100644 --- a/node_modules/load-json-file/node_modules/strip-bom/package.json +++ b/node_modules/load-json-file/node_modules/strip-bom/package.json @@ -1,23 +1,53 @@ { - "name": "strip-bom", - "version": "3.0.0", - "description": "Strip UTF-8 byte order mark (BOM) from a string", - "license": "MIT", - "repository": "sindresorhus/strip-bom", + "_args": [ + [ + "strip-bom@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "strip-bom@3.0.0", + "_id": "strip-bom@3.0.0", + "_inBundle": false, + "_integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "_location": "/load-json-file/strip-bom", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-bom@3.0.0", + "name": "strip-bom", + "escapedName": "strip-bom", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/strip-bom/issues" + }, + "description": "Strip UTF-8 byte order mark (BOM) from a string", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/strip-bom#readme", "keywords": [ "strip", "bom", @@ -33,8 +63,14 @@ "text", "string" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "strip-bom", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/strip-bom.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/load-json-file/node_modules/type-fest/package.json b/node_modules/load-json-file/node_modules/type-fest/package.json index e0a025de5..78aeba518 100644 --- a/node_modules/load-json-file/node_modules/type-fest/package.json +++ b/node_modules/load-json-file/node_modules/type-fest/package.json @@ -1,24 +1,57 @@ { - "name": "type-fest", - "version": "0.3.1", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", + "_args": [ + [ + "type-fest@0.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "type-fest@0.3.1", + "_id": "type-fest@0.3.1", + "_inBundle": false, + "_integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "_location": "/load-json-file/type-fest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "type-fest@0.3.1", + "name": "type-fest", + "escapedName": "type-fest", + "rawSpec": "0.3.1", + "saveSpec": null, + "fetchSpec": "0.3.1" + }, + "_requiredBy": [ + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "_spec": "0.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/type-fest/issues" + }, + "description": "A collection of essential TypeScript types", + "devDependencies": { + "@sindresorhus/tsconfig": "^0.3.0", + "@typescript-eslint/eslint-plugin": "^1.5.0", + "eslint-config-xo-typescript": "^0.9.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && tsd" - }, "files": [ "index.d.ts", "source" ], + "homepage": "https://github.com/sindresorhus/type-fest#readme", "keywords": [ "typescript", "ts", @@ -30,13 +63,16 @@ "merge", "json" ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.3.0", - "@typescript-eslint/eslint-plugin": "^1.5.0", - "eslint-config-xo-typescript": "^0.9.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "license": "(MIT OR CC0-1.0)", + "name": "type-fest", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/type-fest.git" }, + "scripts": { + "test": "xo && tsd" + }, + "version": "0.3.1", "xo": { "extends": "xo-typescript", "extensions": [ @@ -46,4 +82,4 @@ "import/no-unresolved": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/load-json-file/package.json b/node_modules/load-json-file/package.json index 644fa615e..5b4b29965 100644 --- a/node_modules/load-json-file/package.json +++ b/node_modules/load-json-file/package.json @@ -1,24 +1,62 @@ { - "name": "load-json-file", - "version": "5.3.0", - "description": "Read and parse a JSON file", - "license": "MIT", - "repository": "sindresorhus/load-json-file", + "_args": [ + [ + "load-json-file@5.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "load-json-file@5.3.0", + "_id": "load-json-file@5.3.0", + "_inBundle": false, + "_integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "_location": "/load-json-file", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "load-json-file@5.3.0", + "name": "load-json-file", + "escapedName": "load-json-file", + "rawSpec": "5.3.0", + "saveSpec": null, + "fetchSpec": "5.3.0" + }, + "_requiredBy": [ + "/pkg-conf" + ], + "_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "_spec": "5.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/load-json-file/issues" + }, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "description": "Read and parse a JSON file", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/load-json-file#readme", "keywords": [ "read", "json", @@ -28,16 +66,14 @@ "graceful", "load" ], - "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" + "license": "MIT", + "name": "load-json-file", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/load-json-file.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.3.0" +} diff --git a/node_modules/locate-path/package.json b/node_modules/locate-path/package.json index c3cac4f11..d72ad1653 100644 --- a/node_modules/locate-path/package.json +++ b/node_modules/locate-path/package.json @@ -1,24 +1,58 @@ { - "name": "locate-path", - "version": "5.0.0", - "description": "Get the first path that exists on disk of multiple paths", - "license": "MIT", - "repository": "sindresorhus/locate-path", + "_args": [ + [ + "locate-path@5.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "locate-path@5.0.0", + "_id": "locate-path@5.0.0", + "_inBundle": false, + "_integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "_location": "/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@5.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^4.1.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", "keywords": [ "locate", "path", @@ -34,12 +68,14 @@ "iterable", "iterator" ], - "dependencies": { - "p-locate": "^4.1.0" + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.0.0" +} diff --git a/node_modules/lodash.clonedeep/package.json b/node_modules/lodash.clonedeep/package.json index 06e0a424b..1efa8c642 100644 --- a/node_modules/lodash.clonedeep/package.json +++ b/node_modules/lodash.clonedeep/package.json @@ -1,19 +1,73 @@ { - "name": "lodash.clonedeep", - "version": "4.5.0", + "_args": [ + [ + "lodash.clonedeep@4.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lodash.clonedeep@4.5.0", + "_id": "lodash.clonedeep@4.5.0", + "_inBundle": false, + "_integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "_location": "/lodash.clonedeep", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash.clonedeep@4.5.0", + "name": "lodash.clonedeep", + "escapedName": "lodash.clonedeep", + "rawSpec": "4.5.0", + "saveSpec": null, + "fetchSpec": "4.5.0" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "_spec": "4.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + { + "name": "Blaine Bublitz", + "email": "blaine.bublitz@gmail.com", + "url": "https://github.com/phated" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": "https://mathiasbynens.be/" + } + ], "description": "The lodash method `_.cloneDeep` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "license": "MIT", - "keywords": "lodash-modularized, clonedeep", - "author": "John-David Dalton (http://allyoucanleet.com/)", - "contributors": [ - "John-David Dalton (http://allyoucanleet.com/)", - "Blaine Bublitz (https://github.com/phated)", - "Mathias Bynens (https://mathiasbynens.be/)" + "keywords": [ + "lodash-modularized", + "clonedeep" ], - "repository": "lodash/lodash", + "license": "MIT", + "name": "lodash.clonedeep", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - } -} \ No newline at end of file + }, + "version": "4.5.0" +} diff --git a/node_modules/lodash.flattendeep/package.json b/node_modules/lodash.flattendeep/package.json index 24bf32a74..b1a70d2aa 100644 --- a/node_modules/lodash.flattendeep/package.json +++ b/node_modules/lodash.flattendeep/package.json @@ -1,19 +1,73 @@ { - "name": "lodash.flattendeep", - "version": "4.4.0", + "_args": [ + [ + "lodash.flattendeep@4.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lodash.flattendeep@4.4.0", + "_id": "lodash.flattendeep@4.4.0", + "_inBundle": false, + "_integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", + "_location": "/lodash.flattendeep", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash.flattendeep@4.4.0", + "name": "lodash.flattendeep", + "escapedName": "lodash.flattendeep", + "rawSpec": "4.4.0", + "saveSpec": null, + "fetchSpec": "4.4.0" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "_spec": "4.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + { + "name": "Blaine Bublitz", + "email": "blaine.bublitz@gmail.com", + "url": "https://github.com/phated" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": "https://mathiasbynens.be/" + } + ], "description": "The lodash method `_.flattenDeep` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "license": "MIT", - "keywords": "lodash-modularized, flattendeep", - "author": "John-David Dalton (http://allyoucanleet.com/)", - "contributors": [ - "John-David Dalton (http://allyoucanleet.com/)", - "Blaine Bublitz (https://github.com/phated)", - "Mathias Bynens (https://mathiasbynens.be/)" + "keywords": [ + "lodash-modularized", + "flattendeep" ], - "repository": "lodash/lodash", + "license": "MIT", + "name": "lodash.flattendeep", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - } -} \ No newline at end of file + }, + "version": "4.4.0" +} diff --git a/node_modules/lodash.islength/package.json b/node_modules/lodash.islength/package.json index e8687664b..8cef9497d 100644 --- a/node_modules/lodash.islength/package.json +++ b/node_modules/lodash.islength/package.json @@ -1,19 +1,73 @@ { - "name": "lodash.islength", - "version": "4.0.1", + "_args": [ + [ + "lodash.islength@4.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lodash.islength@4.0.1", + "_id": "lodash.islength@4.0.1", + "_inBundle": false, + "_integrity": "sha1-Tpho1FJXXXUK/9NYyXlUPcIO1Xc=", + "_location": "/lodash.islength", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash.islength@4.0.1", + "name": "lodash.islength", + "escapedName": "lodash.islength", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/lodash.islength/-/lodash.islength-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + { + "name": "Blaine Bublitz", + "email": "blaine@iceddev.com", + "url": "https://github.com/phated" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": "https://mathiasbynens.be/" + } + ], "description": "The lodash method `_.isLength` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "license": "MIT", - "keywords": "lodash-modularized, islength", - "author": "John-David Dalton (http://allyoucanleet.com/)", - "contributors": [ - "John-David Dalton (http://allyoucanleet.com/)", - "Blaine Bublitz (https://github.com/phated)", - "Mathias Bynens (https://mathiasbynens.be/)" + "keywords": [ + "lodash-modularized", + "islength" ], - "repository": "lodash/lodash", + "license": "MIT", + "name": "lodash.islength", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - } -} \ No newline at end of file + }, + "version": "4.0.1" +} diff --git a/node_modules/lodash.merge/package.json b/node_modules/lodash.merge/package.json index 41a93f294..86a612915 100644 --- a/node_modules/lodash.merge/package.json +++ b/node_modules/lodash.merge/package.json @@ -1,18 +1,65 @@ { - "name": "lodash.merge", - "version": "4.6.2", + "_args": [ + [ + "lodash.merge@4.6.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lodash.merge@4.6.2", + "_id": "lodash.merge@4.6.2", + "_inBundle": false, + "_integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "_location": "/lodash.merge", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash.merge@4.6.2", + "name": "lodash.merge", + "escapedName": "lodash.merge", + "rawSpec": "4.6.2", + "saveSpec": null, + "fetchSpec": "4.6.2" + }, + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "_spec": "4.6.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be" + } + ], "description": "The Lodash method `_.merge` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "license": "MIT", - "keywords": "lodash-modularized, merge", - "author": "John-David Dalton ", - "contributors": [ - "John-David Dalton ", - "Mathias Bynens " + "keywords": [ + "lodash-modularized", + "merge" ], - "repository": "lodash/lodash", + "license": "MIT", + "name": "lodash.merge", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - } -} \ No newline at end of file + }, + "version": "4.6.2" +} diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json index d0967f7a9..bcc59ebbf 100644 --- a/node_modules/lodash/package.json +++ b/node_modules/lodash/package.json @@ -1,19 +1,67 @@ { - "name": "lodash", - "version": "4.17.15", + "_args": [ + [ + "lodash@4.17.15", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lodash@4.17.15", + "_id": "lodash@4.17.15", + "_inBundle": false, + "_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "_location": "/lodash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash@4.17.15", + "name": "lodash", + "escapedName": "lodash", + "rawSpec": "4.17.15", + "saveSpec": null, + "fetchSpec": "4.17.15" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "_spec": "4.17.15", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be" + } + ], "description": "Lodash modular utilities.", - "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", - "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", + "keywords": [ + "modules", + "stdlib", + "util" + ], "license": "MIT", "main": "lodash.js", - "author": "John-David Dalton ", - "contributors": [ - "John-David Dalton ", - "Mathias Bynens " - ], + "name": "lodash", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, "scripts": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" - } -} \ No newline at end of file + }, + "version": "4.17.15" +} diff --git a/node_modules/log-symbols/package.json b/node_modules/log-symbols/package.json index a7bb760a1..b6e69a97e 100644 --- a/node_modules/log-symbols/package.json +++ b/node_modules/log-symbols/package.json @@ -1,25 +1,61 @@ { - "name": "log-symbols", - "version": "3.0.0", - "description": "Colored symbols for various log levels. Example: `✔︎ Success`", - "license": "MIT", - "repository": "sindresorhus/log-symbols", + "_args": [ + [ + "log-symbols@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "log-symbols@3.0.0", + "_id": "log-symbols@3.0.0", + "_inBundle": false, + "_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "_location": "/log-symbols", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "log-symbols@3.0.0", + "name": "log-symbols", + "escapedName": "log-symbols", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/sindresorhus/log-symbols/issues" + }, + "dependencies": { + "chalk": "^2.4.2" + }, + "description": "Colored symbols for various log levels. Example: `✔︎ Success`", + "devDependencies": { + "ava": "^1.4.1", + "strip-ansi": "^5.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "browser.js" ], + "homepage": "https://github.com/sindresorhus/log-symbols#readme", "keywords": [ "unicode", "cli", @@ -37,14 +73,14 @@ "terminal", "stdout" ], - "dependencies": { - "chalk": "^2.4.2" + "license": "MIT", + "name": "log-symbols", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/log-symbols.git" }, - "devDependencies": { - "ava": "^1.4.1", - "strip-ansi": "^5.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava && tsd" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "3.0.0" +} diff --git a/node_modules/long/package.json b/node_modules/long/package.json index 922ef794d..4929d50da 100644 --- a/node_modules/long/package.json +++ b/node_modules/long/package.json @@ -1,28 +1,44 @@ { - "name": "long", - "version": "4.0.0", - "author": "Daniel Wirtz ", - "description": "A Long class for representing a 64-bit two's-complement integer value.", - "main": "src/long.js", - "repository": { - "type": "git", - "url": "https://github.com/dcodeIO/long.js.git" + "_args": [ + [ + "long@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "long@4.0.0", + "_id": "long@4.0.0", + "_inBundle": false, + "_integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "_location": "/long", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "long@4.0.0", + "name": "long", + "escapedName": "long", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Daniel Wirtz", + "email": "dcode@dcode.io" }, "bugs": { "url": "https://github.com/dcodeIO/long.js/issues" }, - "keywords": [ - "math" - ], "dependencies": {}, + "description": "A Long class for representing a 64-bit two's-complement integer value.", "devDependencies": { "webpack": "^3.10.0" }, - "license": "Apache-2.0", - "scripts": { - "build": "webpack", - "test": "node tests" - }, "files": [ "index.js", "LICENSE", @@ -30,5 +46,21 @@ "src/long.js", "dist/long.js", "dist/long.js.map" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/dcodeIO/long.js#readme", + "keywords": [ + "math" + ], + "license": "Apache-2.0", + "main": "src/long.js", + "name": "long", + "repository": { + "type": "git", + "url": "git+https://github.com/dcodeIO/long.js.git" + }, + "scripts": { + "build": "webpack", + "test": "node tests" + }, + "version": "4.0.0" +} diff --git a/node_modules/lowercase-keys/package.json b/node_modules/lowercase-keys/package.json index e28b4c1dd..5df288e98 100644 --- a/node_modules/lowercase-keys/package.json +++ b/node_modules/lowercase-keys/package.json @@ -1,23 +1,53 @@ { - "name": "lowercase-keys", - "version": "1.0.1", - "description": "Lowercase the keys of an object", - "license": "MIT", - "repository": "sindresorhus/lowercase-keys", + "_args": [ + [ + "lowercase-keys@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "lowercase-keys@1.0.1", + "_id": "lowercase-keys@1.0.1", + "_inBundle": false, + "_integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "_location": "/lowercase-keys", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lowercase-keys@1.0.1", + "name": "lowercase-keys", + "escapedName": "lowercase-keys", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/got", + "/responselike" + ], + "_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/lowercase-keys/issues" + }, + "description": "Lowercase the keys of an object", + "devDependencies": { + "ava": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/lowercase-keys#readme", "keywords": [ "object", "assign", @@ -29,7 +59,14 @@ "keys", "key" ], - "devDependencies": { - "ava": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "lowercase-keys", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/lowercase-keys.git" + }, + "scripts": { + "test": "ava" + }, + "version": "1.0.1" +} diff --git a/node_modules/macos-release/package.json b/node_modules/macos-release/package.json index 78bde8578..4aa91c6fa 100644 --- a/node_modules/macos-release/package.json +++ b/node_modules/macos-release/package.json @@ -1,24 +1,54 @@ { - "name": "macos-release", - "version": "2.3.0", - "description": "Get the name and version of a macOS release from the Darwin version", - "license": "MIT", - "repository": "sindresorhus/macos-release", + "_args": [ + [ + "macos-release@2.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "macos-release@2.3.0", + "_id": "macos-release@2.3.0", + "_inBundle": false, + "_integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==", + "_location": "/macos-release", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "macos-release@2.3.0", + "name": "macos-release", + "escapedName": "macos-release", + "rawSpec": "2.3.0", + "saveSpec": null, + "fetchSpec": "2.3.0" + }, + "_requiredBy": [ + "/os-name" + ], + "_resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz", + "_spec": "2.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/macos-release/issues" + }, + "description": "Get the name and version of a macOS release from the Darwin version", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/macos-release#readme", "keywords": [ "macos", "os", @@ -31,9 +61,14 @@ "release", "version" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "macos-release", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/macos-release.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.3.0" +} diff --git a/node_modules/make-dir/node_modules/semver/package.json b/node_modules/make-dir/node_modules/semver/package.json index a330b56c2..6c361e171 100644 --- a/node_modules/make-dir/node_modules/semver/package.json +++ b/node_modules/make-dir/node_modules/semver/package.json @@ -1,28 +1,64 @@ { - "name": "semver", - "version": "6.3.0", - "description": "The semantic version parser used by npm.", - "main": "semver.js", - "scripts": { - "test": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags" + "_args": [ + [ + "semver@6.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "semver@6.3.0", + "_id": "semver@6.3.0", + "_inBundle": false, + "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "_location": "/make-dir/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@6.3.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "6.3.0", + "saveSpec": null, + "fetchSpec": "6.3.0" + }, + "_requiredBy": [ + "/make-dir" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "_spec": "6.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "semver": "bin/semver.js" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" }, + "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^14.3.1" }, - "license": "ISC", - "repository": "https://github.com/npm/node-semver", - "bin": { - "semver": "./bin/semver.js" - }, "files": [ "bin", "range.bnf", "semver.js" ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, "tap": { "check-coverage": true - } -} \ No newline at end of file + }, + "version": "6.3.0" +} diff --git a/node_modules/make-dir/package.json b/node_modules/make-dir/package.json index f644e281a..5ec2887d0 100644 --- a/node_modules/make-dir/package.json +++ b/node_modules/make-dir/package.json @@ -1,25 +1,66 @@ { - "name": "make-dir", - "version": "3.0.2", - "description": "Make a directory and its parents if needed - Think `mkdir -p`", - "license": "MIT", - "repository": "sindresorhus/make-dir", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "make-dir@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "make-dir@3.0.2", + "_id": "make-dir@3.0.2", + "_inBundle": false, + "_integrity": "sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==", + "_location": "/make-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "make-dir@3.0.2", + "name": "make-dir", + "escapedName": "make-dir", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/configstore" + ], + "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/make-dir/issues" + }, + "dependencies": { + "semver": "^6.0.0" + }, + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "devDependencies": { + "@types/graceful-fs": "^4.1.3", + "@types/node": "^13.7.1", + "ava": "^1.4.0", + "codecov": "^3.2.0", + "graceful-fs": "^4.1.15", + "nyc": "^15.0.0", + "path-type": "^4.0.0", + "tempy": "^0.2.1", + "tsd": "^0.11.0", + "xo": "^0.25.4" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/make-dir#readme", "keywords": [ "mkdir", "mkdirp", @@ -41,19 +82,14 @@ "filesystem", "file-system" ], - "dependencies": { - "semver": "^6.0.0" + "license": "MIT", + "name": "make-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/make-dir.git" }, - "devDependencies": { - "@types/graceful-fs": "^4.1.3", - "@types/node": "^13.7.1", - "ava": "^1.4.0", - "codecov": "^3.2.0", - "graceful-fs": "^4.1.15", - "nyc": "^15.0.0", - "path-type": "^4.0.0", - "tempy": "^0.2.1", - "tsd": "^0.11.0", - "xo": "^0.25.4" - } -} \ No newline at end of file + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "version": "3.0.2" +} diff --git a/node_modules/map-age-cleaner/package.json b/node_modules/map-age-cleaner/package.json index 4478f2268..9473ad055 100644 --- a/node_modules/map-age-cleaner/package.json +++ b/node_modules/map-age-cleaner/package.json @@ -1,42 +1,45 @@ { - "name": "map-age-cleaner", - "version": "0.1.3", - "description": "Automatically cleanup expired items in a Map", - "license": "MIT", - "repository": "SamVerschueren/map-age-cleaner", + "_args": [ + [ + "map-age-cleaner@0.1.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "map-age-cleaner@0.1.3", + "_id": "map-age-cleaner@0.1.3", + "_inBundle": false, + "_integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "_location": "/map-age-cleaner", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "map-age-cleaner@0.1.3", + "name": "map-age-cleaner", + "escapedName": "map-age-cleaner", + "rawSpec": "0.1.3", + "saveSpec": null, + "fetchSpec": "0.1.3" + }, + "_requiredBy": [ + "/mem" + ], + "_resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "_spec": "0.1.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sam Verschueren", "email": "sam.verschueren@gmail.com", "url": "github.com/SamVerschueren" }, - "main": "dist/index.js", - "engines": { - "node": ">=6" - }, - "scripts": { - "prepublishOnly": "npm run build", - "pretest": "npm run build -- --sourceMap", - "test": "npm run lint && nyc ava dist/test.js", - "lint": "tslint --format stylish --project .", - "build": "npm run clean && tsc", - "clean": "del-cli dist" + "bugs": { + "url": "https://github.com/SamVerschueren/map-age-cleaner/issues" }, - "files": [ - "dist/index.js", - "dist/index.d.ts" - ], - "keywords": [ - "map", - "age", - "cleaner", - "maxage", - "expire", - "expiration", - "expiring" - ], "dependencies": { "p-defer": "^1.0.0" }, + "description": "Automatically cleanup expired items in a Map", "devDependencies": { "@types/delay": "^2.0.1", "@types/node": "^10.7.1", @@ -49,11 +52,44 @@ "tslint-xo": "^0.9.0", "typescript": "^3.0.1" }, - "typings": "dist/index.d.ts", - "sideEffects": false, + "engines": { + "node": ">=6" + }, + "files": [ + "dist/index.js", + "dist/index.d.ts" + ], + "homepage": "https://github.com/SamVerschueren/map-age-cleaner#readme", + "keywords": [ + "map", + "age", + "cleaner", + "maxage", + "expire", + "expiration", + "expiring" + ], + "license": "MIT", + "main": "dist/index.js", + "name": "map-age-cleaner", "nyc": { "exclude": [ "dist/test.js" ] - } -} \ No newline at end of file + }, + "repository": { + "type": "git", + "url": "git+https://github.com/SamVerschueren/map-age-cleaner.git" + }, + "scripts": { + "build": "npm run clean && tsc", + "clean": "del-cli dist", + "lint": "tslint --format stylish --project .", + "prepublishOnly": "npm run build", + "pretest": "npm run build -- --sourceMap", + "test": "npm run lint && nyc ava dist/test.js" + }, + "sideEffects": false, + "typings": "dist/index.d.ts", + "version": "0.1.3" +} diff --git a/node_modules/matcher/node_modules/escape-string-regexp/package.json b/node_modules/matcher/node_modules/escape-string-regexp/package.json index 053b31334..1f4a964bd 100644 --- a/node_modules/matcher/node_modules/escape-string-regexp/package.json +++ b/node_modules/matcher/node_modules/escape-string-regexp/package.json @@ -1,25 +1,56 @@ { - "name": "escape-string-regexp", - "version": "4.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "escape-string-regexp@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "escape-string-regexp@4.0.0", + "_id": "escape-string-regexp@4.0.0", + "_inBundle": false, + "_integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "_location": "/matcher/escape-string-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-string-regexp@4.0.0", + "name": "escape-string-regexp", + "escapedName": "escape-string-regexp", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/matcher" + ], + "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + "description": "Escape RegExp special characters", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.28.3" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -30,9 +61,14 @@ "special", "characters" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.28.3" - } -} \ No newline at end of file + "license": "MIT", + "name": "escape-string-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/matcher/package.json b/node_modules/matcher/package.json index af3a3845f..299855d07 100644 --- a/node_modules/matcher/package.json +++ b/node_modules/matcher/package.json @@ -1,25 +1,59 @@ { - "name": "matcher", - "version": "3.0.0", - "description": "Simple wildcard matching", - "license": "MIT", - "repository": "sindresorhus/matcher", + "_args": [ + [ + "matcher@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "matcher@3.0.0", + "_id": "matcher@3.0.0", + "_inBundle": false, + "_integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "_location": "/matcher", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "matcher@3.0.0", + "name": "matcher", + "escapedName": "matcher", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/matcher/issues" + }, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "description": "Simple wildcard matching", + "devDependencies": { + "ava": "^2.4.0", + "matcha": "^0.7.0", + "tsd": "^0.11.0", + "xo": "^0.30.0" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "matcha bench.js" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/matcher#readme", "keywords": [ "matcher", "matching", @@ -37,18 +71,20 @@ "globbing", "minimatch" ], - "dependencies": { - "escape-string-regexp": "^4.0.0" + "license": "MIT", + "name": "matcher", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/matcher.git" }, - "devDependencies": { - "ava": "^2.4.0", - "matcha": "^0.7.0", - "tsd": "^0.11.0", - "xo": "^0.30.0" + "scripts": { + "bench": "matcha bench.js", + "test": "xo && ava && tsd" }, + "version": "3.0.0", "xo": { "rules": { "@typescript-eslint/member-ordering": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/md5-hex/package.json b/node_modules/md5-hex/package.json index a71c11260..f04251101 100644 --- a/node_modules/md5-hex/package.json +++ b/node_modules/md5-hex/package.json @@ -1,25 +1,61 @@ { - "name": "md5-hex", - "version": "3.0.1", - "description": "Create a MD5 hash with hex encoding", - "license": "MIT", - "repository": "sindresorhus/md5-hex", + "_args": [ + [ + "md5-hex@3.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "md5-hex@3.0.1", + "_id": "md5-hex@3.0.1", + "_inBundle": false, + "_integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", + "_location": "/md5-hex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "md5-hex@3.0.1", + "name": "md5-hex", + "escapedName": "md5-hex", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/sindresorhus/md5-hex/issues" + }, + "dependencies": { + "blueimp-md5": "^2.10.0" + }, + "description": "Create a MD5 hash with hex encoding", + "devDependencies": { + "@types/node": "^12.6.2", + "ava": "^2.2.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "browser.js" ], + "homepage": "https://github.com/sindresorhus/md5-hex#readme", "keywords": [ "hash", "crypto", @@ -28,14 +64,14 @@ "buffer", "browser" ], - "dependencies": { - "blueimp-md5": "^2.10.0" + "license": "MIT", + "name": "md5-hex", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/md5-hex.git" }, - "devDependencies": { - "@types/node": "^12.6.2", - "ava": "^2.2.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava && tsd" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "3.0.1" +} diff --git a/node_modules/md5-o-matic/package.json b/node_modules/md5-o-matic/package.json index 72382adbc..3e350f1ca 100644 --- a/node_modules/md5-o-matic/package.json +++ b/node_modules/md5-o-matic/package.json @@ -1,18 +1,48 @@ { - "name": "md5-o-matic", - "version": "0.1.1", + "_args": [ + [ + "md5-o-matic@0.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "md5-o-matic@0.1.1", + "_id": "md5-o-matic@0.1.1", + "_inBundle": false, + "_integrity": "sha1-givM1l4RfFFPqxdrJZRdVBAKA8M=", + "_location": "/md5-o-matic", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "md5-o-matic@0.1.1", + "name": "md5-o-matic", + "escapedName": "md5-o-matic", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/concordance/md5-hex" + ], + "_resolved": "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Trent Millar" + }, + "bugs": { + "url": "https://github.com/trentmillar/md5-o-matic/issues" + }, "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", - "main": "lib/md5omatic.js", + "devDependencies": { + "mocha": "", + "should": "" + }, "directories": { "test": "test" }, - "scripts": { - "test": "mocha test/*.js" - }, - "repository": { - "type": "git", - "url": "git://github.com/trentmillar/md5-o-matic.git" - }, + "homepage": "https://github.com/trentmillar/md5-o-matic", "keywords": [ "md5", "hashing", @@ -22,23 +52,20 @@ "fast", "md5-o-matic" ], - "readmeFilename": "README.md", - "author": { - "name": "Trent Millar" - }, "licenses": [ { "type": "MIT", "url": "https://github.com/trentmillar/md5-o-matic/blob/master/LICENSE" } ], - "devDependencies": { - "mocha": "", - "should": "" + "main": "lib/md5omatic.js", + "name": "md5-o-matic", + "repository": { + "type": "git", + "url": "git://github.com/trentmillar/md5-o-matic.git" }, - "readme": "# md5-o-matic\n\nMD5 Shootout and how it stacks up - http://jsperf.com/md5-shootout/39\nMD5-o-matic provides simple & fast MD5 hashing for Node.js that requires no other module dependencies.\n", - "bugs": { - "url": "https://github.com/trentmillar/md5-o-matic/issues" + "scripts": { + "test": "mocha test/*.js" }, - "homepage": "https://github.com/trentmillar/md5-o-matic" -} \ No newline at end of file + "version": "0.1.1" +} diff --git a/node_modules/md5/package.json b/node_modules/md5/package.json index fdcac15a4..bfa3d4751 100644 --- a/node_modules/md5/package.json +++ b/node_modules/md5/package.json @@ -1,36 +1,71 @@ { - "name": "md5", - "description": "js function for hashing messages with MD5", - "version": "2.2.1", - "author": "Paul Vorbach (http://paul.vorba.ch)", - "contributors": [ - "salba" + "_args": [ + [ + "md5@2.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "tags": [ - "md5", - "hash", - "encryption", - "message digest" + "_from": "md5@2.2.1", + "_id": "md5@2.2.1", + "_inBundle": false, + "_integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=", + "_location": "/md5", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "md5@2.2.1", + "name": "md5", + "escapedName": "md5", + "rawSpec": "2.2.1", + "saveSpec": null, + "fetchSpec": "2.2.1" + }, + "_requiredBy": [ + "/" ], - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-md5.git" + "_resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "_spec": "2.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Paul Vorbach", + "email": "paul@vorba.ch", + "url": "http://paul.vorba.ch" }, "bugs": { "url": "https://github.com/pvorb/node-md5/issues" }, - "main": "md5.js", - "scripts": { - "test": "mocha" - }, + "contributors": [ + { + "name": "salba" + } + ], "dependencies": { "charenc": "~0.0.1", "crypt": "~0.0.1", "is-buffer": "~1.1.1" }, + "description": "js function for hashing messages with MD5", "devDependencies": { "mocha": "~2.3.4" }, + "homepage": "https://github.com/pvorb/node-md5#readme", + "license": "BSD-3-Clause", + "main": "md5.js", + "name": "md5", "optionalDependencies": {}, - "license": "BSD-3-Clause" -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-md5.git" + }, + "scripts": { + "test": "mocha" + }, + "tags": [ + "md5", + "hash", + "encryption", + "message digest" + ], + "version": "2.2.1" +} diff --git a/node_modules/mem/node_modules/mimic-fn/package.json b/node_modules/mem/node_modules/mimic-fn/package.json index ac43d06ca..194101173 100644 --- a/node_modules/mem/node_modules/mimic-fn/package.json +++ b/node_modules/mem/node_modules/mimic-fn/package.json @@ -1,24 +1,55 @@ { - "name": "mimic-fn", - "version": "3.0.0", - "description": "Make a function mimic another one", - "license": "MIT", - "repository": "sindresorhus/mimic-fn", + "_args": [ + [ + "mimic-fn@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mimic-fn@3.0.0", + "_id": "mimic-fn@3.0.0", + "_inBundle": false, + "_integrity": "sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==", + "_location": "/mem/mimic-fn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mimic-fn@3.0.0", + "name": "mimic-fn", + "escapedName": "mimic-fn", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/mem" + ], + "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/mimic-fn/issues" + }, + "description": "Make a function mimic another one", + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/mimic-fn#readme", "keywords": [ "function", "mimic", @@ -34,9 +65,14 @@ "infer", "change" ], - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "mimic-fn", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mimic-fn.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/mem/package.json b/node_modules/mem/package.json index dba9edb68..746a60d7c 100644 --- a/node_modules/mem/package.json +++ b/node_modules/mem/package.json @@ -1,24 +1,61 @@ { - "name": "mem", - "version": "6.1.0", - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "license": "MIT", - "repository": "sindresorhus/mem", + "_args": [ + [ + "mem@6.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mem@6.1.0", + "_id": "mem@6.1.0", + "_inBundle": false, + "_integrity": "sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg==", + "_location": "/mem", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mem@6.1.0", + "name": "mem", + "escapedName": "mem", + "rawSpec": "6.1.0", + "saveSpec": null, + "fetchSpec": "6.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/mem/-/mem-6.1.0.tgz", + "_spec": "6.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/mem/issues" + }, + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^3.0.0" + }, + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "devDependencies": { + "ava": "^2.4.0", + "delay": "^4.1.0", + "serialize-javascript": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/mem#readme", "keywords": [ "memoize", "function", @@ -32,15 +69,14 @@ "expire", "promise" ], - "dependencies": { - "map-age-cleaner": "^0.1.3", - "mimic-fn": "^3.0.0" + "license": "MIT", + "name": "mem", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mem.git" }, - "devDependencies": { - "ava": "^2.4.0", - "delay": "^4.1.0", - "serialize-javascript": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "6.1.0" +} diff --git a/node_modules/merge2/package.json b/node_modules/merge2/package.json index 1e09cf88b..fc17d94c5 100644 --- a/node_modules/merge2/package.json +++ b/node_modules/merge2/package.json @@ -1,16 +1,57 @@ { - "name": "merge2", - "description": "Merge multiple streams into one stream in sequence or parallel.", + "_args": [ + [ + "merge2@1.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "merge2@1.3.0", + "_id": "merge2@1.3.0", + "_inBundle": false, + "_integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==", + "_location": "/merge2", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "merge2@1.3.0", + "name": "merge2", + "escapedName": "merge2", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/del/globby", + "/fast-glob", + "/globby" + ], + "_resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "authors": [ "Yan Qing " ], - "license": "MIT", - "version": "1.3.0", - "main": "./index.js", - "repository": { - "type": "git", - "url": "git@github.com:teambition/merge2.git" + "bugs": { + "url": "https://github.com/teambition/merge2/issues" + }, + "dependencies": {}, + "description": "Merge multiple streams into one stream in sequence or parallel.", + "devDependencies": { + "standard": "^14.2.0", + "through2": "^3.0.1", + "thunks": "^4.9.5", + "tman": "^1.9.0", + "to-through": "^2.0.0" }, + "engines": { + "node": ">= 6" + }, + "files": [ + "README.md", + "index.js" + ], "homepage": "https://github.com/teambition/merge2", "keywords": [ "merge2", @@ -22,22 +63,15 @@ "merge stream", "sync" ], - "engines": { - "node": ">= 6" - }, - "dependencies": {}, - "devDependencies": { - "standard": "^14.2.0", - "through2": "^3.0.1", - "thunks": "^4.9.5", - "tman": "^1.9.0", - "to-through": "^2.0.0" + "license": "MIT", + "main": "./index.js", + "name": "merge2", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/teambition/merge2.git" }, "scripts": { "test": "standard && tman" }, - "files": [ - "README.md", - "index.js" - ] -} \ No newline at end of file + "version": "1.3.0" +} diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json index 0b870b1fe..6ee61e825 100644 --- a/node_modules/micromatch/package.json +++ b/node_modules/micromatch/package.json @@ -1,44 +1,104 @@ { - "name": "micromatch", - "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", - "version": "4.0.2", - "homepage": "https://github.com/micromatch/micromatch", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "(https://github.com/DianeLooney)", - "Amila Welihinda (amilajack.com)", - "Bogdan Chadkin (https://github.com/TrySound)", - "Brian Woodward (https://twitter.com/doowb)", - "Devon Govett (http://badassjs.com)", - "Elan Shanker (https://github.com/es128)", - "Fabrício Matté (https://ultcombo.js.org)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Martin Kolárik (https://kolarik.sk)", - "Olsten Larck (https://i.am.charlike.online)", - "Paul Miller (paulmillr.com)", - "Tom Byrer (https://github.com/tomByrer)", - "Tyler Akins (http://rumkin.com)", - "Peter Bright (https://github.com/drpizza)" + "_args": [ + [ + "micromatch@4.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "micromatch/micromatch", - "bugs": { - "url": "https://github.com/micromatch/micromatch/issues" + "_development": true, + "_from": "micromatch@4.0.2", + "_id": "micromatch@4.0.2", + "_inBundle": false, + "_integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "_location": "/micromatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "micromatch@4.0.2", + "name": "micromatch", + "escapedName": "micromatch", + "rawSpec": "4.0.2", + "saveSpec": null, + "fetchSpec": "4.0.2" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "#DEV:/", + "/fast-glob" ], - "main": "index.js", - "engines": { - "node": ">=8" + "_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "_spec": "4.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/micromatch/micromatch/issues" }, + "contributors": [ + { + "url": "https://github.com/DianeLooney" + }, + { + "name": "Amila Welihinda", + "url": "amilajack.com" + }, + { + "name": "Bogdan Chadkin", + "url": "https://github.com/TrySound" + }, + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Devon Govett", + "url": "http://badassjs.com" + }, + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Fabrício Matté", + "url": "https://ultcombo.js.org" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Martin Kolárik", + "url": "https://kolarik.sk" + }, + { + "name": "Olsten Larck", + "url": "https://i.am.charlike.online" + }, + { + "name": "Paul Miller", + "url": "paulmillr.com" + }, + { + "name": "Tom Byrer", + "url": "https://github.com/tomByrer" + }, + { + "name": "Tyler Akins", + "url": "http://rumkin.com" + }, + { + "name": "Peter Bright", + "email": "drpizza@quiscalusmexicanus.org", + "url": "https://github.com/drpizza" + } + ], "dependencies": { "braces": "^3.0.1", "picomatch": "^2.0.5" }, + "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", "devDependencies": { "fill-range": "^7.0.1", "gulp-format-md": "^2.0.0", @@ -46,6 +106,13 @@ "mocha": "^5.2.0", "time-require": "github:jonschlinkert/time-require" }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/micromatch/micromatch", "keywords": [ "bash", "bracket", @@ -86,6 +153,16 @@ "star", "wildcard" ], + "license": "MIT", + "main": "index.js", + "name": "micromatch", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/micromatch.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "toc": "collapsible", "layout": "default", @@ -114,5 +191,6 @@ "minimatch", "multimatch" ] - } -} \ No newline at end of file + }, + "version": "4.0.2" +} diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json index cddfcb379..20b88ddf2 100644 --- a/node_modules/mimic-fn/package.json +++ b/node_modules/mimic-fn/package.json @@ -1,24 +1,55 @@ { - "name": "mimic-fn", - "version": "2.1.0", - "description": "Make a function mimic another one", - "license": "MIT", - "repository": "sindresorhus/mimic-fn", + "_args": [ + [ + "mimic-fn@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mimic-fn@2.1.0", + "_id": "mimic-fn@2.1.0", + "_inBundle": false, + "_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "_location": "/mimic-fn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mimic-fn@2.1.0", + "name": "mimic-fn", + "escapedName": "mimic-fn", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/onetime" + ], + "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/mimic-fn/issues" + }, + "description": "Make a function mimic another one", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/mimic-fn#readme", "keywords": [ "function", "mimic", @@ -34,9 +65,14 @@ "infer", "change" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "mimic-fn", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mimic-fn.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/mimic-response/package.json b/node_modules/mimic-response/package.json index 953152b76..9b07ba119 100644 --- a/node_modules/mimic-response/package.json +++ b/node_modules/mimic-response/package.json @@ -1,23 +1,57 @@ { - "name": "mimic-response", - "version": "1.0.1", - "description": "Mimic a Node.js HTTP response stream", - "license": "MIT", - "repository": "sindresorhus/mimic-response", + "_args": [ + [ + "mimic-response@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mimic-response@1.0.1", + "_id": "mimic-response@1.0.1", + "_inBundle": false, + "_integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "_location": "/mimic-response", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mimic-response@1.0.1", + "name": "mimic-response", + "escapedName": "mimic-response", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/clone-response", + "/decompress-response", + "/got" + ], + "_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/mimic-response/issues" + }, + "description": "Mimic a Node.js HTTP response stream", + "devDependencies": { + "ava": "*", + "create-test-server": "^0.1.0", + "pify": "^3.0.0", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/mimic-response#readme", "keywords": [ "mimic", "response", @@ -28,10 +62,14 @@ "get", "core" ], - "devDependencies": { - "ava": "*", - "create-test-server": "^0.1.0", - "pify": "^3.0.0", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "mimic-response", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mimic-response.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.1" +} diff --git a/node_modules/minimatch/package.json b/node_modules/minimatch/package.json index 8c89ea278..ada0a21fe 100644 --- a/node_modules/minimatch/package.json +++ b/node_modules/minimatch/package.json @@ -1,30 +1,68 @@ { - "author": "Isaac Z. Schlueter (http://blog.izs.me)", - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "3.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_args": [ + [ + "minimatch@3.0.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "minimatch@3.0.4", + "_id": "minimatch@3.0.4", + "_inBundle": false, + "_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "_location": "/minimatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimatch@3.0.4", + "name": "minimatch", + "escapedName": "minimatch", + "rawSpec": "3.0.4", + "saveSpec": null, + "fetchSpec": "3.0.4" }, - "main": "minimatch.js", - "scripts": { - "test": "tap test/*.js --cov", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "_requiredBy": [ + "/glob", + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "_spec": "3.0.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" }, - "engines": { - "node": "*" + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, "dependencies": { "brace-expansion": "^1.1.7" }, + "description": "a glob matcher in javascript", "devDependencies": { "tap": "^10.3.2" }, - "license": "ISC", + "engines": { + "node": "*" + }, "files": [ "minimatch.js" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "license": "ISC", + "main": "minimatch.js", + "name": "minimatch", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/minimatch.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --cov" + }, + "version": "3.0.4" +} diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json index 6d7171689..44b3bc47c 100644 --- a/node_modules/minimist/package.json +++ b/node_modules/minimist/package.json @@ -1,16 +1,65 @@ { - "name": "minimist", - "version": "1.2.5", + "_args": [ + [ + "minimist@1.2.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "minimist@1.2.5", + "_id": "minimist@1.2.5", + "_inBundle": false, + "_integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "_location": "/minimist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimist@1.2.5", + "name": "minimist", + "escapedName": "minimist", + "rawSpec": "1.2.5", + "saveSpec": null, + "fetchSpec": "1.2.5" + }, + "_requiredBy": [ + "/mkdirp", + "/rc" + ], + "_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "_spec": "1.2.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/minimist/issues" + }, "description": "parse argument options", - "main": "index.js", "devDependencies": { "covert": "^1.0.0", "tap": "~0.4.0", "tape": "^3.5.0" }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "license": "MIT", + "main": "index.js", + "name": "minimist", + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, "scripts": { - "test": "tap test/*.js", - "coverage": "covert test/*.js" + "coverage": "covert test/*.js", + "test": "tap test/*.js" }, "testling": { "files": "test/*.js", @@ -25,21 +74,5 @@ "opera/12" ] }, - "repository": { - "type": "git", - "url": "git://github.com/substack/minimist.git" - }, - "homepage": "https://github.com/substack/minimist", - "keywords": [ - "argv", - "getopt", - "parser", - "optimist" - ], - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "license": "MIT" -} \ No newline at end of file + "version": "1.2.5" +} diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json index b335f1ae0..f882ed23b 100644 --- a/node_modules/mkdirp/package.json +++ b/node_modules/mkdirp/package.json @@ -1,34 +1,73 @@ { - "name": "mkdirp", - "description": "Recursively mkdir, like `mkdir -p`", - "version": "0.5.4", - "publishConfig": { - "tag": "legacy" + "_args": [ + [ + "mkdirp@0.5.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mkdirp@0.5.4", + "_id": "mkdirp@0.5.4", + "_inBundle": false, + "_integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", + "_location": "/mkdirp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mkdirp@0.5.4", + "name": "mkdirp", + "escapedName": "mkdirp", + "rawSpec": "0.5.4", + "saveSpec": null, + "fetchSpec": "0.5.4" }, - "author": "James Halliday (http://substack.net)", - "main": "index.js", - "keywords": [ - "mkdir", - "directory" + "_requiredBy": [ + "/tslint" ], - "repository": { - "type": "git", - "url": "https://github.com/substack/node-mkdirp.git" + "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", + "_spec": "0.5.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" }, - "scripts": { - "test": "tap test/*.js" + "bin": { + "mkdirp": "bin/cmd.js" + }, + "bugs": { + "url": "https://github.com/substack/node-mkdirp/issues" }, "dependencies": { "minimist": "^1.2.5" }, + "description": "Recursively mkdir, like `mkdir -p`", "devDependencies": { "mock-fs": "^3.7.0", "tap": "^5.4.2" }, - "bin": "bin/cmd.js", - "license": "MIT", "files": [ "bin", "index.js" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/substack/node-mkdirp#readme", + "keywords": [ + "mkdir", + "directory" + ], + "license": "MIT", + "main": "index.js", + "name": "mkdirp", + "publishConfig": { + "tag": "legacy" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/substack/node-mkdirp.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "0.5.4" +} diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json index 3408eef7c..2a3430d0c 100644 --- a/node_modules/ms/package.json +++ b/node_modules/ms/package.json @@ -1,16 +1,44 @@ { - "name": "ms", - "version": "2.1.2", - "description": "Tiny millisecond conversion utility", - "repository": "zeit/ms", - "main": "./index", - "files": [ - "index.js" + "_args": [ + [ + "ms@2.1.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "scripts": { - "precommit": "lint-staged", - "lint": "eslint lib/* bin/*", - "test": "mocha tests.js" + "_development": true, + "_from": "ms@2.1.2", + "_id": "ms@2.1.2", + "_inBundle": false, + "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "_location": "/ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ms@2.1.2", + "name": "ms", + "escapedName": "ms", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/ava", + "/debug" + ], + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/zeit/ms/issues" + }, + "description": "Tiny millisecond conversion utility", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" }, "eslintConfig": { "extends": "eslint:recommended", @@ -19,6 +47,11 @@ "es6": true } }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/zeit/ms#readme", + "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -26,12 +59,16 @@ "git add" ] }, - "license": "MIT", - "devDependencies": { - "eslint": "4.12.1", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1" - } -} \ No newline at end of file + "main": "./index", + "name": "ms", + "repository": { + "type": "git", + "url": "git+https://github.com/zeit/ms.git" + }, + "scripts": { + "lint": "eslint lib/* bin/*", + "precommit": "lint-staged", + "test": "mocha tests.js" + }, + "version": "2.1.2" +} diff --git a/node_modules/mute-stream/package.json b/node_modules/mute-stream/package.json index dcd78bedf..3744f7df6 100644 --- a/node_modules/mute-stream/package.json +++ b/node_modules/mute-stream/package.json @@ -1,29 +1,66 @@ { - "name": "mute-stream", - "version": "0.0.8", - "main": "mute.js", - "directories": { - "test": "test" + "_args": [ + [ + "mute-stream@0.0.8", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "mute-stream@0.0.8", + "_id": "mute-stream@0.0.8", + "_inBundle": false, + "_integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "_location": "/mute-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mute-stream@0.0.8", + "name": "mute-stream", + "escapedName": "mute-stream", + "rawSpec": "0.0.8", + "saveSpec": null, + "fetchSpec": "0.0.8" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "_spec": "0.0.8", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/mute-stream/issues" }, + "description": "Bytes go in, but they don't come out (when muted).", "devDependencies": { "tap": "^12.1.1" }, - "scripts": { - "test": "tap test/*.js --cov" - }, - "repository": { - "type": "git", - "url": "git://github.com/isaacs/mute-stream" + "directories": { + "test": "test" }, + "files": [ + "mute.js" + ], + "homepage": "https://github.com/isaacs/mute-stream#readme", "keywords": [ "mute", "stream", "pipe" ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC", - "description": "Bytes go in, but they don't come out (when muted).", - "files": [ - "mute.js" - ] -} \ No newline at end of file + "main": "mute.js", + "name": "mute-stream", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/mute-stream.git" + }, + "scripts": { + "test": "tap test/*.js --cov" + }, + "version": "0.0.8" +} diff --git a/node_modules/nice-try/package.json b/node_modules/nice-try/package.json index 9d6f07278..a55d496ef 100644 --- a/node_modules/nice-try/package.json +++ b/node_modules/nice-try/package.json @@ -1,33 +1,64 @@ { - "name": "nice-try", - "version": "1.0.5", + "_args": [ + [ + "nice-try@1.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "nice-try@1.0.5", + "_id": "nice-try@1.0.5", + "_inBundle": false, + "_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "_location": "/nice-try", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "nice-try@1.0.5", + "name": "nice-try", + "escapedName": "nice-try", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "authors": [ "Tobias Reich " ], + "bugs": { + "url": "https://github.com/electerious/nice-try/issues" + }, "description": "Tries to execute a function and discards any error that occurs", - "main": "src/index.js", + "devDependencies": { + "chai": "^4.1.2", + "coveralls": "^3.0.0", + "mocha": "^5.1.1", + "nyc": "^12.0.1" + }, + "files": [ + "src" + ], + "homepage": "https://github.com/electerious/nice-try", "keywords": [ "try", "catch", "error" ], "license": "MIT", - "homepage": "https://github.com/electerious/nice-try", + "main": "src/index.js", + "name": "nice-try", "repository": { "type": "git", - "url": "https://github.com/electerious/nice-try.git" + "url": "git+https://github.com/electerious/nice-try.git" }, - "files": [ - "src" - ], "scripts": { "coveralls": "nyc report --reporter=text-lcov | coveralls", "test": "nyc node_modules/mocha/bin/_mocha" }, - "devDependencies": { - "chai": "^4.1.2", - "coveralls": "^3.0.0", - "nyc": "^12.0.1", - "mocha": "^5.1.1" - } -} \ No newline at end of file + "version": "1.0.5" +} diff --git a/node_modules/nock/CHANGELOG.md b/node_modules/nock/CHANGELOG.md new file mode 100644 index 000000000..02f73c04c --- /dev/null +++ b/node_modules/nock/CHANGELOG.md @@ -0,0 +1,3 @@ +# Changelog + +Nock’s changelog can be found directly in the [GitHub release notes](https://github.com/nock/nock/releases). These are automatically created by [semantic-release](https://github.com/semantic-release/semantic-release) based on their [commit message conventions](https://semantic-release.gitbook.io/semantic-release#commit-message-format). diff --git a/node_modules/nock/LICENSE b/node_modules/nock/LICENSE new file mode 100644 index 000000000..568133a31 --- /dev/null +++ b/node_modules/nock/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2011-2019 Pedro Teixeira and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/nock/README.md b/node_modules/nock/README.md new file mode 100644 index 000000000..161eeb024 --- /dev/null +++ b/node_modules/nock/README.md @@ -0,0 +1,1617 @@ +# Nock + +[![npm](https://img.shields.io/npm/v/nock.svg)][npmjs] +[![Build Status](https://travis-ci.org/nock/nock.svg)][build] +![Coverage Status](http://img.shields.io/badge/coverage-100%25-brightgreen.svg) +[![Greenkeeper](https://badges.greenkeeper.io/nock/nock.svg)](https://greenkeeper.io/) +[![Backers on Open Collective](https://opencollective.com/nock/backers/badge.svg)](#backers) +[![Sponsors on Open Collective](https://opencollective.com/nock/sponsors/badge.svg)](#sponsors) + +[npmjs]: https://www.npmjs.com/package/nock +[build]: https://travis-ci.org/nock/nock + +HTTP server mocking and expectations library for Node.js + +Nock can be used to test modules that perform HTTP requests in isolation. + +For instance, if a module performs HTTP requests to a CouchDB server or makes HTTP requests to the Amazon API, you can test that module in isolation. + +**Table of Contents** + + + +- [How does it work?](#how-does-it-work) +- [Install](#install) + - [Node version support](#node-version-support) +- [Usage](#usage) + - [READ THIS! - About interceptors](#read-this---about-interceptors) + - [Specifying hostname](#specifying-hostname) + - [Specifying path](#specifying-path) + - [Specifying request body](#specifying-request-body) + - [Specifying request query string](#specifying-request-query-string) + - [Specifying replies](#specifying-replies) + - [Access original request and headers](#access-original-request-and-headers) + - [Replying with errors](#replying-with-errors) + - [Specifying headers](#specifying-headers) + - [Header field names are case-insensitive](#header-field-names-are-case-insensitive) + - [Specifying Request Headers](#specifying-request-headers) + - [Specifying Reply Headers](#specifying-reply-headers) + - [Default Reply Headers](#default-reply-headers) + - [Including Content-Length Header Automatically](#including-content-length-header-automatically) + - [Including Date Header Automatically](#including-date-header-automatically) + - [HTTP Verbs](#http-verbs) + - [Support for HTTP and HTTPS](#support-for-http-and-https) + - [Non-standard ports](#non-standard-ports) + - [Repeat response n times](#repeat-response-n-times) + - [Delay the response body](#delay-the-response-body) + - [Delay the response](#delay-the-response) + - [Delay the connection](#delay-the-connection) + - [Socket timeout](#socket-timeout) + - [Chaining](#chaining) + - [Scope filtering](#scope-filtering) + - [Conditional scope filtering](#conditional-scope-filtering) + - [Path filtering](#path-filtering) + - [Request Body filtering](#request-body-filtering) + - [Request Headers Matching](#request-headers-matching) + - [Optional Requests](#optional-requests) + - [Allow **unmocked** requests on a mocked hostname](#allow-unmocked-requests-on-a-mocked-hostname) +- [Expectations](#expectations) + - [.isDone()](#isdone) + - [.cleanAll()](#cleanall) + - [.abortPendingRequests()](#abortpendingrequests) + - [.persist()](#persist) + - [.pendingMocks()](#pendingmocks) + - [.activeMocks()](#activemocks) + - [.isActive()](#isactive) +- [Logging](#logging) +- [Restoring](#restoring) +- [Activating](#activating) +- [Turning Nock Off (experimental!)](#turning-nock-off-experimental) +- [Enable/Disable real HTTP requests](#enabledisable-real-http-requests) + - [Disabling requests](#disabling-requests) + - [Enabling requests](#enabling-requests) + - [Resetting NetConnect](#resetting-netconnect) +- [Recording](#recording) + - [`dont_print` option](#dont_print-option) + - [`output_objects` option](#output_objects-option) + - [`enable_reqheaders_recording` option](#enable_reqheaders_recording-option) + - [`logging` option](#logging-option) + - [`use_separator` option](#use_separator-option) + - [.removeInterceptor()](#removeinterceptor) +- [Events](#events) + - [Global no match event](#global-no-match-event) +- [Nock Back](#nock-back) + - [Setup](#setup) + - [Options](#options) + - [Usage](#usage-1) + - [Options](#options-1) + - [Example](#example) + - [Modes](#modes) +- [Common issues](#common-issues) + - [Axios](#axios) +- [Debugging](#debugging) +- [Contributing](#contributing) +- [Contributors](#contributors) +- [Sponsors](#sponsors) +- [License](#license) + + + +## How does it work? + +Nock works by overriding Node's `http.request` function. Also, it overrides `http.ClientRequest` too to cover for modules that use it directly. + +## Install + +```sh +$ npm install --save-dev nock +``` + +### Node version support + +The latest version of nock supports all currently maintained Node versions, see [Node Release Schedule](https://github.com/nodejs/Release#release-schedule) + +Here is a list of past nock versions with respective node version support + +| node | nock | +| ---- | ---------- | +| 0.10 | up to 8.x | +| 0.11 | up to 8.x | +| 0.12 | up to 8.x | +| 4 | up to 9.x | +| 5 | up to 8.x | +| 6 | up to 10.x | +| 7 | up to 9.x | +| 8 | up to 11.x | +| 9 | up to 9.x | + +## Usage + +On your test, you can setup your mocking object like this: + +```js +const nock = require('nock') + +const scope = nock('https://api.github.com') + .get('/repos/atom/atom/license') + .reply(200, { + license: { + key: 'mit', + name: 'MIT License', + spdx_id: 'MIT', + url: 'https://api.github.com/licenses/mit', + node_id: 'MDc6TGljZW5zZTEz', + }, + }) +``` + +This setup says that we will intercept every HTTP call to `https://api.github.com`. + +It will intercept an HTTPS GET request to `/repos/atom/atom/license`, reply with +a status 200, and the body will contain a (partial) response in JSON. + +### READ THIS! - About interceptors + +When you setup an interceptor for a URL and that interceptor is used, it is removed from the interceptor list. +This means that you can intercept 2 or more calls to the same URL and return different things on each of them. +It also means that you must setup one interceptor for each request you are going to have, otherwise nock will throw an error because that URL was not present in the interceptor list. +If you don’t want interceptors to be removed as they are used, you can use the [.persist()](#persist) method. + +### Specifying hostname + +The request hostname can be a string or a RegExp. + +```js +const scope = nock('http://www.example.com') + .get('/resource') + .reply(200, 'domain matched') +``` + +```js +const scope = nock(/example\.com/) + .get('/resource') + .reply(200, 'domain regex matched') +``` + +> Note: You can choose to include or not the protocol in the hostname matching. + +### Specifying path + +The request path can be a string, a RegExp or a filter function and you can use any [HTTP verb](#http-verbs). + +Using a string: + +```js +const scope = nock('http://www.example.com') + .get('/resource') + .reply(200, 'path matched') +``` + +Using a regular expression: + +```js +const scope = nock('http://www.example.com') + .get(/source$/) + .reply(200, 'path using regex matched') +``` + +Using a function: + +```js +const scope = nock('http://www.example.com') + .get(uri => uri.includes('cats')) + .reply(200, 'path using function matched') +``` + +### Specifying request body + +You can specify the request body to be matched as the second argument to the `get`, `post`, `put` or `delete` specifications. There are five types of second argument allowed: + +**String**: nock will exact match the stringified request body with the provided string + +```js +nock('http://www.example.com') + .post('/login', 'username=pgte&password=123456') + .reply(200, { id: '123ABC' }) +``` + +**Buffer**: nock will exact match the stringified request body with the provided buffer + +```js +nock('http://www.example.com') + .post('/login', Buffer.from([0xff, 0x11])) + .reply(200, { id: '123ABC' }) +``` + +**RegExp**: nock will test the stringified request body against the provided RegExp + +```js +nock('http://www.example.com') + .post('/login', /username=\w+/gi) + .reply(200, { id: '123ABC' }) +``` + +**JSON object**: nock will exact match the request body with the provided object. In order to increase flexibility, nock also supports RegExp as an attribute value for the keys: + +```js +nock('http://www.example.com') + .post('/login', { username: 'pgte', password: /.+/i }) + .reply(200, { id: '123ABC' }) +``` + +**Function**: nock will evaluate the function providing the request body object as first argument. Return true if it should be considered a match: + +```js +nock('http://www.example.com') + .post('/login', body => body.username && body.password) + .reply(200, { id: '123ABC' }) +``` + +In case you need to perform a partial matching on a complex, nested request body you should have a look at libraries like [lodash.matches](https://lodash.com/docs/#matches). Indeed, partial matching can be achieved as: + +```js +nock('http://www.example.com') + .post('/user', _.matches({ address: { country: 'US' } })) + .reply(200, { id: '123ABC' }) +``` + +### Specifying request query string + +Nock understands query strings. Search parameters can be included as part of the path: + +```js +nock('http://example.com') + .get('/users?foo=bar') + .reply(200) +``` + +Instead of placing the entire URL, you can specify the query part as an object: + +```js +nock('http://example.com') + .get('/users') + .query({ name: 'pedro', surname: 'teixeira' }) + .reply(200, { results: [{ id: 'pgte' }] }) +``` + +Nock supports array-style/object-style query parameters. The encoding format matches with request module. + +```js +nock('http://example.com') + .get('/users') + .query({ + names: ['alice', 'bob'], + tags: { + alice: ['admin', 'tester'], + bob: ['tester'], + }, + }) + .reply(200, { results: [{ id: 'pgte' }] }) +``` + +A `URLSearchParams` instance can be provided. + +```js +const params = new URLSearchParams({ foo: 'bar' }) + +nock('http://example.com') + .get('/') + .query(params) + .reply(200) +``` + +Nock supports passing a function to query. The function determines if the actual query matches or not. + +```js +nock('http://example.com') + .get('/users') + .query(actualQueryObject => { + // do some compare with the actual Query Object + // return true for matched + // return false for not matched + return true + }) + .reply(200, { results: [{ id: 'pgte' }] }) +``` + +To mock the entire url regardless of the passed query string: + +```js +nock('http://example.com') + .get('/users') + .query(true) + .reply(200, { results: [{ id: 'pgte' }] }) +``` + +A query string that is already [URL encoded](https://en.wikipedia.org/wiki/Percent-encoding) can be +matched by passing the `encodedQueryParams` flag in the options when creating the Scope. + +```js +nock('http://example.com', { encodedQueryParams: true }) + .get('/users') + .query('foo%5Bbar%5D%3Dhello%20world%21') + .reply(200, { results: [{ id: 'pgte' }] }) +``` + +### Specifying replies + +You can specify the return status code for a path on the first argument of reply like this: + +```js +const scope = nock('http://myapp.iriscouch.com') + .get('/users/1') + .reply(404) +``` + +You can also specify the reply body as a string: + +```js +const scope = nock('http://www.google.com') + .get('/') + .reply(200, 'Hello from Google!') +``` + +or as a JSON-encoded object: + +```js +const scope = nock('http://myapp.iriscouch.com') + .get('/') + .reply(200, { + username: 'pgte', + email: 'pedro.teixeira@gmail.com', + _id: '4324243fsd', + }) +``` + +or even as a file: + +```js +const scope = nock('http://myapp.iriscouch.com') + .get('/') + .replyWithFile(200, __dirname + '/replies/user.json', { + 'Content-Type': 'application/json', + }) +``` + +Instead of an object or a buffer you can also pass in a callback to be evaluated for the value of the response body: + +```js +const scope = nock('http://www.google.com') + .post('/echo') + .reply(201, (uri, requestBody) => requestBody) +``` + +In Nock 11.x it was possible to invoke `.reply()` with a status code and a +function that returns an array containing a status code and body. (The status +code from the array would take precedence over the one passed directly to +reply.) This is no longer allowed. In 12.x, either call `.reply()` with a +status code and a function that returns the body, or call it with a single +argument: a function that returns an array containing both the status code and +body. + +An asynchronous function that gets an error-first callback as its last argument also works: + +```js +const scope = nock('http://www.google.com') + .post('/echo') + .reply(201, (uri, requestBody, cb) => { + fs.readFile('cat-poems.txt', cb) // Error-first callback + }) +``` + +In Nock 11 and later, if an error is passed to the callback, Nock will rethrow it as a programmer error. +In Nock 10 and earlier, the error was sent in the response body, with a 500 HTTP response status code. + +You can also return the status code and body using just one function: + +```js +const scope = nock('http://www.google.com') + .post('/echo') + .reply((uri, requestBody) => { + return [ + 201, + 'THIS IS THE REPLY BODY', + { header: 'value' }, // optional headers + ] + }) +``` + +or, use an error-first callback that also gets the status code: + +```js +const scope = nock('http://www.google.com') + .post('/echo') + .reply((uri, requestBody, cb) => { + setTimeout(() => cb(null, [201, 'THIS IS THE REPLY BODY']), 1000) + }) +``` + +A Stream works too: + +```js +const scope = nock('http://www.google.com') + .get('/cat-poems') + .reply(200, (uri, requestBody) => { + return fs.createReadStream('cat-poems.txt') + }) +``` + +#### Access original request and headers + +If you're using the reply callback style, you can access the original client request using `this.req` like this: + +```js +const scope = nock('http://www.google.com') + .get('/cat-poems') + .reply(function(uri, requestBody) { + console.log('path:', this.req.path) + console.log('headers:', this.req.headers) + // ... + }) +``` + +> Note: Remember to use normal `function` in that case, as arrow functions are using enclosing scope for `this` binding. + +#### Replying with errors + +You can reply with an error like this: + +```js +nock('http://www.google.com') + .get('/cat-poems') + .replyWithError('something awful happened') +``` + +JSON error responses are allowed too: + +```js +nock('http://www.google.com') + .get('/cat-poems') + .replyWithError({ + message: 'something awful happened', + code: 'AWFUL_ERROR', + }) +``` + +> Note: This will emit an `error` event on the `request` object, not the reply. + +### Specifying headers + +#### Header field names are case-insensitive + +Per [HTTP/1.1 4.2 Message Headers](http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2) specification, all message headers are case insensitive and thus internally Nock uses lower-case for all field names even if some other combination of cases was specified either in mocking specification or in mocked requests themselves. + +#### Specifying Request Headers + +You can specify the request headers like this: + +```js +const scope = nock('http://www.example.com', { + reqheaders: { + authorization: 'Basic Auth', + }, +}) + .get('/') + .reply(200) +``` + +Or you can use a regular expression or function to check the header values. The +function will be passed the header value. + +```js +const scope = nock('http://www.example.com', { + reqheaders: { + 'X-My-Headers': headerValue => headerValue.includes('cats'), + 'X-My-Awesome-Header': /Awesome/i, + }, +}) + .get('/') + .reply(200) +``` + +If `reqheaders` is not specified or if `host` is not part of it, Nock will automatically add `host` value to request header. + +If no request headers are specified for mocking then Nock will automatically skip matching of request headers. Since the `host` header is a special case which may get automatically inserted by Nock, its matching is skipped unless it was _also_ specified in the request being mocked. + +You can also have Nock fail the request if certain headers are present: + +```js +const scope = nock('http://www.example.com', { + badheaders: ['cookie', 'x-forwarded-for'], +}) + .get('/') + .reply(200) +``` + +When invoked with this option, Nock will not match the request if any of the `badheaders` are present. + +Basic authentication can be specified as follows: + +```js +const scope = nock('http://www.example.com') + .get('/') + .basicAuth({ user: 'john', pass: 'doe' }) + .reply(200) +``` + +#### Specifying Reply Headers + +You can specify the reply headers like this: + +```js +const scope = nock('https://api.github.com') + .get('/repos/atom/atom/license') + .reply(200, { license: 'MIT' }, { 'X-RateLimit-Remaining': 4999 }) +``` + +Or you can use a function to generate the headers values. The function will be +passed the request, response, and response body (if available). The body will +be either a buffer, a stream, or undefined. + +```js +const scope = nock('http://www.headdy.com') + .get('/') + .reply(200, 'Hello World!', { + 'Content-Length': (req, res, body) => body.length, + ETag: () => `${Date.now()}`, + }) +``` + +#### Default Reply Headers + +You can also specify default reply headers for all responses like this: + +```js +const scope = nock('http://www.headdy.com') + .defaultReplyHeaders({ + 'X-Powered-By': 'Rails', + 'Content-Type': 'application/json', + }) + .get('/') + .reply(200, 'The default headers should come too') +``` + +Or you can use a function to generate the default headers values: + +```js +const scope = nock('http://www.headdy.com') + .defaultReplyHeaders({ + 'Content-Length': (req, res, body) => body.length, + }) + .get('/') + .reply(200, 'The default headers should come too') +``` + +#### Including Content-Length Header Automatically + +When using `scope.reply()` to set a response body manually, you can have the +`Content-Length` header calculated automatically. + +```js +const scope = nock('http://www.headdy.com') + .replyContentLength() + .get('/') + .reply(200, { hello: 'world' }) +``` + +**NOTE:** this does not work with streams or other advanced means of specifying +the reply body. + +#### Including Date Header Automatically + +You can automatically append a `Date` header to your mock reply: + +```js +const scope = nock('http://www.headdy.com') + .replyDate() + .get('/') + .reply(200, { hello: 'world' }) +``` + +Or provide your own `Date` object: + +```js +const scope = nock('http://www.headdy.com') + .replyDate(new Date(2015, 0, 1)) + .get('/') + .reply(200, { hello: 'world' }) +``` + +### HTTP Verbs + +Nock supports any HTTP verb, and it has convenience methods for the GET, POST, PUT, HEAD, DELETE, PATCH, OPTIONS and MERGE HTTP verbs. + +You can intercept any HTTP verb using `.intercept(path, verb [, requestBody [, options]])`: + +```js +const scope = nock('http://my.domain.com') + .intercept('/path', 'PATCH') + .reply(304) +``` + +### Support for HTTP and HTTPS + +By default nock assumes HTTP. If you need to use HTTPS you can specify the `https://` prefix like this: + +```js +const scope = nock('https://secure.my.server.com') +// ... +``` + +### Non-standard ports + +You are able to specify a non-standard port like this: + +```js +const scope = nock('http://my.server.com:8081') + ... +``` + +### Repeat response n times + +You are able to specify the number of times to repeat the same response. + +```js +nock('http://zombo.com') + .get('/') + .times(4) + .reply(200, 'Ok') + +http.get('http://zombo.com/') // respond body "Ok" +http.get('http://zombo.com/') // respond body "Ok" +http.get('http://zombo.com/') // respond body "Ok" +http.get('http://zombo.com/') // respond body "Ok" +http.get('http://zombo.com/') // respond with zombo.com result +``` + +Sugar syntax + +```js +nock('http://zombo.com') + .get('/') + .once() + .reply(200, 'Ok') +nock('http://zombo.com') + .get('/') + .twice() + .reply(200, 'Ok') +nock('http://zombo.com') + .get('/') + .thrice() + .reply(200, 'Ok') +``` + +To repeat this response for as long as nock is active, use [.persist()](#persist). + +### Delay the response body + +You are able to specify the number of milliseconds that the response body should be delayed. Response header will be replied immediately. +`delayBody(1000)` is equivalent to `delay({body: 1000})`. + +```js +nock('http://my.server.com') + .get('/') + .delayBody(2000) // 2 seconds + .reply(200, '') +``` + +NOTE: the [`'response'`](http://nodejs.org/api/http.html#http_event_response) event will occur immediately, but the [IncomingMessage](http://nodejs.org/api/http.html#http_http_incomingmessage) will not emit its `'end'` event until after the delay. + +### Delay the response + +You are able to specify the number of milliseconds that your reply should be delayed. + +```js +nock('http://my.server.com') + .get('/') + .delay(2000) // 2 seconds delay will be applied to the response header. + .reply(200, '') +``` + +`delay()` could also be used as + +``` +delay({ + head: headDelayInMs, + body: bodyDelayInMs +}) +``` + +for example + +```js +nock('http://my.server.com') + .get('/') + .delay({ + head: 2000, // header will be delayed for 2 seconds, i.e. the whole response will be delayed for 2 seconds. + body: 3000, // body will be delayed for another 3 seconds after header is sent out. + }) + .reply(200, '') +``` + +### Delay the connection + +`delayConnection(1000)` is equivalent to `delay({ head: 1000 })`. + +### Socket timeout + +You are able to specify the number of milliseconds that your connection should be idle, to simulate a socket timeout. + +```js +nock('http://my.server.com') + .get('/') + .socketDelay(2000) // 2 seconds + .reply(200, '') +``` + +To test a request like the following: + +```js +req = http.request('http://my.server.com', res => { + ... +}) +req.setTimeout(1000, () => { req.abort() }) +req.end() +``` + +NOTE: the timeout will be fired immediately, and will not leave the simulated connection idle for the specified period of time. + +### Chaining + +You can chain behaviour like this: + +```js +const scope = nock('http://myapp.iriscouch.com') + .get('/users/1') + .reply(404) + .post('/users', { + username: 'pgte', + email: 'pedro.teixeira@gmail.com', + }) + .reply(201, { + ok: true, + id: '123ABC', + rev: '946B7D1C', + }) + .get('/users/123ABC') + .reply(200, { + _id: '123ABC', + _rev: '946B7D1C', + username: 'pgte', + email: 'pedro.teixeira@gmail.com', + }) +``` + +### Scope filtering + +You can filter the scope (protocol, domain or port) of nock through a function. The filtering function is accepted at the `filteringScope` field of the `options` argument. + +This can be useful if you have a node module that randomly changes subdomains to which it sends requests, e.g., the Dropbox node module behaves like this. + +```js +const scope = nock('https://api.dropbox.com', { + filteringScope: scope => /^https:\/\/api[0-9]*.dropbox.com/.test(scope), +}) + .get('/1/metadata/auto/Photos?include_deleted=false&list=true') + .reply(200) +``` + +### Conditional scope filtering + +You can also choose to filter out a scope based on your system environment (or any external factor). The filtering function is accepted at the `conditionally` field of the `options` argument. + +This can be useful if you only want certain scopes to apply depending on how your tests are executed. + +```js +const scope = nock('https://api.myservice.com', { + conditionally: () => true, +}) +``` + +### Path filtering + +You can also filter the URLs based on a function. + +This can be useful, for instance, if you have random or time-dependent data in your URL. + +You can use a regexp for replacement, just like String.prototype.replace: + +```js +const scope = nock('http://api.myservice.com') + .filteringPath(/password=[^&]*/g, 'password=XXX') + .get('/users/1?password=XXX') + .reply(200, 'user') +``` + +Or you can use a function: + +```js +const scope = nock('http://api.myservice.com') + .filteringPath(path => '/ABC') + .get('/ABC') + .reply(200, 'user') +``` + +Note that `scope.filteringPath` is not cumulative: it should only be used once per scope. + +### Request Body filtering + +You can also filter the request body based on a function. + +This can be useful, for instance, if you have random or time-dependent data in your request body. + +You can use a regexp for replacement, just like String.prototype.replace: + +```js +const scope = nock('http://api.myservice.com') + .filteringRequestBody(/password=[^&]*/g, 'password=XXX') + .post('/users/1', 'data=ABC&password=XXX') + .reply(201, 'OK') +``` + +Or you can use a function to transform the body: + +```js +const scope = nock('http://api.myservice.com') + .filteringRequestBody(body => 'ABC') + .post('/', 'ABC') + .reply(201, 'OK') +``` + +If you don't want to match the request body you should omit the `body` argument from the method function: + +```js +const scope = nock('http://api.myservice.com') + .post('/some_uri') // no body argument + .reply(200, 'OK') +``` + +### Request Headers Matching + +If you need to match requests only if certain request headers match, you can. + +```js +const scope = nock('http://api.myservice.com') + .matchHeader('accept', 'application/json') + .get('/') + .reply(200, { + data: 'hello world', + }) +``` + +You can also use a regexp for the header body. + +```js +const scope = nock('http://api.myservice.com') + .matchHeader('User-Agent', /Mozilla\/.*/) + .get('/') + .reply(200, { + data: 'hello world', + }) +``` + +You can also use a function for the header body. + +```js +const scope = nock('http://api.myservice.com') + .matchHeader('content-length', val => val >= 1000) + .get('/') + .reply(200, { + data: 'hello world', + }) +``` + +### Optional Requests + +By default every mocked request is expected to be made exactly once, and until it is it'll appear in `scope.pendingMocks()`, and `scope.isDone()` will return false (see [expectations](#expectations)). In many cases this is fine, but in some (especially cross-test setup code) it's useful to be able to mock a request that may or may not happen. You can do this with `optionally()`. Optional requests are consumed just like normal ones once matched, but they do not appear in `pendingMocks()`, and `isDone()` will return true for scopes with only optional requests pending. + +```js +const example = nock('http://example.com') +example.pendingMocks() // [] +example.get('/pathA').reply(200) +example.pendingMocks() // ["GET http://example.com:80/path"] + +// ...After a request to example.com/pathA: +example.pendingMocks() // [] + +example + .get('/pathB') + .optionally() + .reply(200) +example.pendingMocks() // [] + +// You can also pass a boolean argument to `optionally()`. This +// is useful if you want to conditionally make a mocked request +// optional. +const getMock = optional => + example + .get('/pathC') + .optionally(optional) + .reply(200) + +getMock(true) +example.pendingMocks() // [] +getMock(false) +example.pendingMocks() // ["GET http://example.com:80/pathC"] +``` + +### Allow **unmocked** requests on a mocked hostname + +If you need some request on the same host name to be mocked and some others to **really** go through the HTTP stack, you can use the `allowUnmocked` option like this: + +```js +const scope = nock('http://my.existing.service.com', { allowUnmocked: true }) + .get('/my/url') + .reply(200, 'OK!') + +// GET /my/url => goes through nock +// GET /other/url => actually makes request to the server +``` + +> Note: When applying `{allowUnmocked: true}`, if the request is made to the real server, no interceptor is removed. + +## Expectations + +Every time an HTTP request is performed for a scope that is mocked, Nock expects to find a handler for it. If it doesn't, it will throw an error. + +Calls to nock() return a scope which you can assert by calling `scope.done()`. This will assert that all specified calls on that scope were performed. + +Example: + +```js +const scope = nock('http://google.com') + .get('/') + .reply(200, 'Hello from Google!') + +// do some stuff + +setTimeout(() => { + // Will throw an assertion error if meanwhile a "GET http://google.com" was + // not performed. + scope.done() +}, 5000) +``` + +### .isDone() + +You can call `isDone()` on a single expectation to determine if the expectation was met: + +```js +const scope = nock('http://google.com') + .get('/') + .reply(200) + +scope.isDone() // will return false +``` + +It is also available in the global scope, which will determine if all expectations have been met: + +```js +nock.isDone() +``` + +### .cleanAll() + +You can cleanup all the prepared mocks (could be useful to cleanup some state after a failed test) like this: + +```js +nock.cleanAll() +``` + +### .abortPendingRequests() + +You can abort all current pending request like this: + +```js +nock.abortPendingRequests() +``` + +### .persist() + +You can make all the interceptors for a scope persist by calling `.persist()` on it: + +```js +const scope = nock('http://example.com') + .persist() + .get('/') + .reply(200, 'Persisting all the way') +``` + +Note that while a persisted scope will always intercept the requests, it is considered "done" after the first interception. + +If you want to stop persisting an individual persisted mock you can call `persist(false)`: + +```js +const scope = nock('http://example.com') + .persist() + .get('/') + .reply(200, 'ok') + +// Do some tests ... + +scope.persist(false) +``` + +You can also use `nock.cleanAll()` which removes all mocks, including persistent mocks. + +To specify an exact number of times that nock should repeat the response, use [.times()](#repeat-response-n-times). + +### .pendingMocks() + +If a scope is not done, you can inspect the scope to infer which ones are still pending using the `scope.pendingMocks()` function: + +```js +if (!scope.isDone()) { + console.error('pending mocks: %j', scope.pendingMocks()) +} +``` + +It is also available in the global scope: + +```js +console.error('pending mocks: %j', nock.pendingMocks()) +``` + +### .activeMocks() + +You can see every mock that is currently active (i.e. might potentially reply to requests) in a scope using `scope.activeMocks()`. A mock is active if it is pending, optional but not yet completed, or persisted. Mocks that have intercepted their requests and are no longer doing anything are the only mocks which won't appear here. + +You probably don't need to use this - it mainly exists as a mechanism to recreate the previous (now-changed) behavior of `pendingMocks()`. + +```js +console.error('active mocks: %j', scope.activeMocks()) +``` + +It is also available in the global scope: + +```js +console.error('active mocks: %j', nock.activeMocks()) +``` + +### .isActive() + +Your tests may sometimes want to deactivate the nock interceptor. +Once deactivated, nock needs to be re-activated to work. +You can check if nock interceptor is active or not by using `nock.isActive()`. +Sample: + +```js +if (!nock.isActive()) { + nock.activate() +} +``` + +## Logging + +Nock can log matches if you pass in a log function like this: + +```js +const scope = nock('http://google.com') + .log(console.log) + ... +``` + +## Restoring + +You can restore the HTTP interceptor to the normal unmocked behaviour by calling: + +```js +nock.restore() +``` + +**note 1**: restore does not clear the interceptor list. Use [nock.cleanAll()](#cleanall) if you expect the interceptor list to be empty. + +**note 2**: restore will also remove the http interceptor itself. You need to run [nock.activate()](#activating) to re-activate the http interceptor. Without re-activation, nock will not intercept any calls. + +## Activating + +Only for cases where nock has been deactivated using [nock.restore()](#restoring), you can reactivate the HTTP interceptor to start intercepting HTTP calls using: + +```js +nock.activate() +``` + +**note**: To check if nock HTTP interceptor is active or inactive, use [nock.isActive()](#isactive). + +## Turning Nock Off (experimental!) + +You can bypass Nock completely by setting the `NOCK_OFF` environment variable to `"true"`. + +This way you can have your tests hit the real servers just by switching on this environment variable. + +```js +$ NOCK_OFF=true node my_test.js +``` + +## Enable/Disable real HTTP requests + +By default, any requests made to a host that is not mocked will be executed normally. If you want to block these requests, nock allows you to do so. + +### Disabling requests + +For disabling real http requests. + +```js +nock.disableNetConnect() +``` + +So, if you try to request any host not 'nocked', it will throw a `NetConnectNotAllowedError`. + +```js +nock.disableNetConnect() +const req = http.get('http://google.com/') +req.on('error', err => { + console.log(err) +}) +// The returned `http.ClientRequest` will emit an error event (or throw if you're not listening for it) +// This code will log a NetConnectNotAllowedError with message: +// Nock: Disallowed net connect for "google.com:80" +``` + +### Enabling requests + +For enabling any real HTTP requests (the default behavior): + +```js +nock.enableNetConnect() +``` + +You could allow real HTTP requests for certain host names by providing a string or a regular expression for the hostname, or a function that accepts the hostname and returns true or false: + +```js +// Using a string +nock.enableNetConnect('amazon.com') + +// Or a RegExp +nock.enableNetConnect(/(amazon|github)\.com/) + +// Or a Function +nock.enableNetConnect( + host => host.includes('amazon.com') || host.includes('github.com') +) + +http.get('http://www.amazon.com/') +http.get('http://github.com/') + +http.get('http://google.com/') +// This will throw NetConnectNotAllowedError with message: +// Nock: Disallowed net connect for "google.com:80" +``` + +A common use case when testing local endpoints would be to disable all but localhost, then add in additional nocks for external requests: + +```js +nock.disableNetConnect() +// Allow localhost connections so we can test local routes and mock servers. +nock.enableNetConnect('127.0.0.1') +``` + +### Resetting NetConnect + +When you're done with the test, you probably want to set everything back to normal: + +```js +nock.cleanAll() +nock.enableNetConnect() +``` + +## Recording + +This is a cool feature: + +Guessing what the HTTP calls are is a mess, especially if you are introducing nock on your already-coded tests. + +For these cases where you want to mock an existing live system you can record and playback the HTTP calls like this: + +```js +nock.recorder.rec() +// Some HTTP calls happen and the nock code necessary to mock +// those calls will be outputted to console +``` + +Recording relies on intercepting real requests and responses and then persisting them for later use. + +In order to stop recording you should call `nock.restore()` and recording will stop. + +**ATTENTION!:** when recording is enabled, nock does no validation, nor will any mocks be enabled. Please be sure to turn off recording before attempting to use any mocks in your tests. + +### `dont_print` option + +If you just want to capture the generated code into a var as an array you can use: + +```js +nock.recorder.rec({ + dont_print: true, +}) +// ... some HTTP calls +const nockCalls = nock.recorder.play() +``` + +The `nockCalls` var will contain an array of strings representing the generated code you need. + +Copy and paste that code into your tests, customize at will, and you're done! You can call `nock.recorder.clear()` to remove already recorded calls from the array that `nock.recorder.play()` returns. + +(Remember that you should do this one test at a time). + +### `output_objects` option + +In case you want to generate the code yourself or use the test data in some other way, you can pass the `output_objects` option to `rec`: + +```js +nock.recorder.rec({ + output_objects: true, +}) +// ... some HTTP calls +const nockCallObjects = nock.recorder.play() +``` + +The returned call objects have the following properties: + +- `scope` - the scope of the call including the protocol and non-standard ports (e.g. `'https://github.com:12345'`) +- `method` - the HTTP verb of the call (e.g. `'GET'`) +- `path` - the path of the call (e.g. `'/pgte/nock'`) +- `body` - the body of the call, if any +- `status` - the HTTP status of the reply (e.g. `200`) +- `response` - the body of the reply which can be a JSON, string, hex string representing binary buffers or an array of such hex strings (when handling `content-encoded` in reply header) +- `headers` - the headers of the reply +- `reqheader` - the headers of the request + +If you save this as a JSON file, you can load them directly through `nock.load(path)`. Then you can post-process them before using them in the tests. For example, to add request body filtering (shown here fixing timestamps to match the ones captured during recording): + +```js +nocks = nock.load(pathToJson) +nocks.forEach(function(nock) { + nock.filteringRequestBody = (body, aRecordedBody) => { + if (typeof body !== 'string' || typeof aRecordedBody !== 'string') { + return body + } + + const recordedBodyResult = /timestamp:([0-9]+)/.exec(aRecordedBody) + if (recordedBodyResult) { + const recordedTimestamp = recordedBodyResult[1] + return body.replace(/(timestamp):([0-9]+)/g, function(match, key, value) { + return key + ':' + recordedTimestamp + }) + } else { + return body + } + } +}) +``` + +Alternatively, if you need to pre-process the captured nock definitions before +using them (e.g. to add scope filtering) then you can use `nock.loadDefs(path)` +and `nock.define(nockDefs)`. Shown here is scope filtering for Dropbox node +module which constantly changes the subdomain to which it sends the requests: + +```js +// Pre-process the nock definitions as scope filtering has to be defined before the nocks are defined (due to its very hacky nature). +const nockDefs = nock.loadDefs(pathToJson) +nockDefs.forEach(def => { + // Do something with the definition object e.g. scope filtering. + def.options = { + ...def.options, + filteringScope: scope => /^https:\/\/api[0-9]*.dropbox.com/.test(scope), + } +}) + +// Load the nocks from pre-processed definitions. +const nocks = nock.define(nockDefs) +``` + +### `enable_reqheaders_recording` option + +Recording request headers by default is deemed more trouble than it's worth as some of them depend on the timestamp or other values that may change after the tests have been recorded thus leading to complex postprocessing of recorded tests. Thus by default the request headers are not recorded. + +The genuine use cases for recording request headers (e.g. checking authorization) can be handled manually or by using `enable_reqheaders_recording` in `recorder.rec()` options. + +```js +nock.recorder.rec({ + dont_print: true, + output_objects: true, + enable_reqheaders_recording: true, +}) +``` + +Note that even when request headers recording is enabled Nock will never record `user-agent` headers. `user-agent` values change with the version of Node and underlying operating system and are thus useless for matching as all that they can indicate is that the user agent isn't the one that was used to record the tests. + +### `logging` option + +Nock will print using `console.log` by default (assuming that `dont_print` is `false`). If a different function is passed into `logging`, nock will send the log string (or object, when using `output_objects`) to that function. Here's a basic example. + +```js +const appendLogToFile = content => { + fs.appendFile('record.txt', content) +} +nock.recorder.rec({ + logging: appendLogToFile, +}) +``` + +### `use_separator` option + +By default, nock will wrap its output with the separator string `<<<<<<-- cut here -->>>>>>` before and after anything it prints, whether to the console or a custom log function given with the `logging` option. + +To disable this, set `use_separator` to false. + +```js +nock.recorder.rec({ + use_separator: false, +}) +``` + +### .removeInterceptor() + +This allows removing a specific interceptor. This can be either an interceptor instance or options for a url. It's useful when there's a list of common interceptors shared between tests, where an individual test requires one of the shared interceptors to behave differently. + +Examples: + +```js +nock.removeInterceptor({ + hostname: 'localhost', + path: '/mockedResource', +}) +``` + +```js +nock.removeInterceptor({ + hostname : 'localhost', + path : '/login' + method: 'POST' + proto : 'https' +}) +``` + +```js +const interceptor = nock('http://example.org').get('somePath') +nock.removeInterceptor(interceptor) +``` + +## Events + +A scope emits the following events: + +- `emit('request', function(req, interceptor, body))` +- `emit('replied', function(req, interceptor))` + +### Global no match event + +You can also listen for no match events like this: + +```js +nock.emitter.on('no match', req => {}) +``` + +## Nock Back + +Fixture recording support and playback. + +### Setup + +You must specify a fixture directory before using, for example: + +In your test helper + +```js +const nockBack = require('nock').back + +nockBack.fixtures = '/path/to/fixtures/' +nockBack.setMode('record') +``` + +#### Options + +- `nockBack.fixtures` : path to fixture directory +- `nockBack.setMode()` : the mode to use + +### Usage + +By default if the fixture doesn't exist, a `nockBack` will create a new fixture and save the recorded output +for you. The next time you run the test, if the fixture exists, it will be loaded in. + +The `this` context of the callback function will have a property `scopes` to access all of the loaded +nock scopes. + +```js +const nockBack = require('nock').back +const request = require('request') +nockBack.setMode('record') + +nockBack.fixtures = __dirname + '/nockFixtures' //this only needs to be set once in your test helper + +// recording of the fixture +nockBack('zomboFixture.json', nockDone => { + request.get('http://zombo.com', (err, res, body) => { + nockDone() + + // usage of the created fixture + nockBack('zomboFixture.json', function(nockDone) { + http.get('http://zombo.com/').end() // respond body "Ok" + + this.assertScopesFinished() //throws an exception if all nocks in fixture were not satisfied + http.get('http://zombo.com/').end() // throws exception because someFixture.json only had one call + + nockDone() //never gets here + }) + }) +}) +``` + +If your tests are using promises then use `nockBack` like this: + +``` +return nockBack('promisedFixture.json') + .then(({ nockDone, context }) => { + // do your tests returning a promise and chain it with + // `.then(nockDone)` + }) +}) +``` + +#### Options + +As an optional second parameter you can pass the following options + +- `before`: a preprocessing function, gets called before nock.define +- `after`: a postprocessing function, gets called after nock.define +- `afterRecord`: a postprocessing function, gets called after recording. Is passed the array of scopes recorded and should return the intact array, a modified version of the array, or if custom formatting is desired, a stringified version of the array to save to the fixture +- `recorder`: custom options to pass to the recorder + +##### Example + +```js +function prepareScope(scope) { + scope.filteringRequestBody = (body, aRecordedBody) => { + if (typeof(body) !== 'string' || typeof(aRecordedBody) !== 'string') { + return body + } + + const recordedBodyResult = /timestamp:([0-9]+)/.exec(aRecordedBody) + if (recordedBodyResult) { + const recordedTimestamp = recordedBodyResult[1] + return body.replace( + /(timestamp):([0-9]+)/g, + (match, key, value) => `${key}:${recordedTimestamp}` + ) + } else { + return body + } + } +} + +nockBack('zomboFixture.json', { before: prepareScope }, nockDone => { + request.get('http://zombo.com', function(err, res, body) { + // do your tests + nockDone() + } +} +``` + +#### Modes + +To set the mode call `nockBack.setMode(mode)` or run the tests with the `NOCK_BACK_MODE` environment variable set before loading nock. If the mode needs to be changed programmatically, the following is valid: `nockBack.setMode(nockBack.currentMode)` + +- wild: all requests go out to the internet, don't replay anything, doesn't record anything + +- dryrun: The default, use recorded nocks, allow http calls, doesn't record anything, useful for writing new tests + +- record: use recorded nocks, record new nocks + +- lockdown: use recorded nocks, disables all http calls even when not nocked, doesn't record + +## Common issues + +**"No match for response" when using got with error responses** + +[Got][] automatically retries failed requests twice. That means if you have a +test which mocks a 4xx or 5xx response, got will immediately reissue it. At +that point, the mock will have been consumed and the second request will error +out with **Nock: No match for request**. + +The same is true for `.replyWithError()`. + +Adding `{ retry: 0 }` to the `got` invocations will disable retrying, e.g.: + +``` +await got("http://example.test/", { retry: 0 }) +``` + +If you need to do this in all your tests, you can create a module +`got_client.js` which exports a custom got instance: + +``` +const got = require('got') + +module.exports = got.extend({ retry: 0 }) +``` + +This is how it's handled in Nock itself (see [#1523][]). + +[got]: https://github.com/sindresorhus/got +[#1523]: https://github.com/nock/nock/issues/1523 + +### Axios + +To use Nock with [Axios][], you may need to configure Axios to use the Node +adapter as in the example below: + +```js +import axios from 'axios' +import nock from 'nock' +import test from 'ava' // You can use any test framework. + +// If you are using jsdom, axios will default to using the XHR adapter which +// can't be intercepted by nock. So, configure axios to use the node adapter. +// +// References: +// https://github.com/nock/nock/issues/699#issuecomment-272708264 +// https://github.com/axios/axios/issues/305 +axios.defaults.adapter = require('axios/lib/adapters/http') + +test('can fetch test response', async t => { + // Set up the mock request. + const scope = nock('http://localhost') + .get('/test') + .reply(200, 'test response') + + // Make the request. Note that the hostname must match exactly what is passed + // to `nock()`. Alternatively you can set `axios.defaults.host = 'http://localhost'` + // and run `axios.get('/test')`. + await axios.get('http://localhost/test') + + // Assert that the expected request was made. + scope.done() +}) +``` + +[axios]: https://github.com/axios/axios + +## Debugging + +Nock uses [`debug`](https://github.com/visionmedia/debug), so just run with environmental variable `DEBUG` set to `nock.*`. + +```js +$ DEBUG=nock.* node my_test.js +``` + +## Contributing + +Thanks for wanting to contribute! Take a look at our [Contributing Guide](CONTRIBUTING.md) for notes on our commit message conventions and how to run tests. + +Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). +By participating in this project you agree to abide by its terms. + +## Contributors + +Thanks goes to these wonderful people ([emoji key](https://github.com/all-contributors/all-contributors#emoji-key)): + + + +| [Pedro Teixeira
Pedro Teixeira](http://pgte.me)
[💻](https://github.com/nock/nock/commits?author=pgte "Code") [🚧](#maintenance-pgte "Maintenance") | [n30n0v
n30n0v](https://github.com/n30n0v)
[💻](https://github.com/nock/nock/commits?author=n30n0v "Code") | [Richard Littauer
Richard Littauer](https://burntfen.com)
[🚧](#maintenance-RichardLitt "Maintenance") [💻](https://github.com/nock/nock/commits?author=RichardLitt "Code") [📝](#blog-RichardLitt "Blogposts") | [Ian Walker-Sperber
Ian Walker-Sperber](http://ianwsperber.com)
[💻](https://github.com/nock/nock/commits?author=ianwsperber "Code") | [Ivan Erceg
Ivan Erceg](http://ilovacha.com)
[💻](https://github.com/nock/nock/commits?author=ierceg "Code") [🚧](#maintenance-ierceg "Maintenance") | [Paul Melnikow
Paul Melnikow](https://twitter.com/paulmelnikow)
[💻](https://github.com/nock/nock/commits?author=paulmelnikow "Code") [🚧](#maintenance-paulmelnikow "Maintenance") | [Gregor Martynus
Gregor Martynus](https://twitter.com/gr2m)
[💻](https://github.com/nock/nock/commits?author=gr2m "Code") [🚧](#maintenance-gr2m "Maintenance") [💼](#business-gr2m "Business development") [💵](#financial-gr2m "Financial") [📝](#blog-gr2m "Blogposts") | +| :---: | :---: | :---: | :---: | :---: | :---: | :---: | +| [Hutson Betts
Hutson Betts](https://gitlab.com/hutson)
[💵](#financial-hutson "Financial") | [Jonas Lilja
Jonas Lilja](http://lilja.io)
[💵](#financial-jlilja "Financial") [💻](https://github.com/nock/nock/commits?author=jlilja "Code") | [Benjamin Ki
Benjamin Ki](https://github.com/benrki)
[💵](#financial-benrki "Financial") | [Chad Fawcett
Chad Fawcett](http://chadf.ca)
[💵](#financial-chadfawcett "Financial") | + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! + +## Sponsors + +Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/nock#sponsor)] + + + + + + + + + + + + +## License + +[MIT](LICENSE) + +Copyright (c) 2011–2019 [Pedro Teixeira](http://about.me/pedroteixeira) and other [contributors](https://github.com/nock/nock/graphs/contributors). diff --git a/node_modules/nock/index.js b/node_modules/nock/index.js new file mode 100644 index 000000000..1c8d00d5a --- /dev/null +++ b/node_modules/nock/index.js @@ -0,0 +1,53 @@ +'use strict' + +const back = require('./lib/back') +const emitter = require('./lib/global_emitter') +const { + activate, + isActive, + isDone, + isOn, + pendingMocks, + activeMocks, + removeInterceptor, + disableNetConnect, + enableNetConnect, + removeAll, + abortPendingRequests, +} = require('./lib/intercept') +const recorder = require('./lib/recorder') +const { Scope, load, loadDefs, define } = require('./lib/scope') + +module.exports = (basePath, options) => new Scope(basePath, options) + +Object.assign(module.exports, { + activate, + isActive, + isDone, + pendingMocks, + activeMocks, + removeInterceptor, + disableNetConnect, + enableNetConnect, + cleanAll: removeAll, + abortPendingRequests, + load, + loadDefs, + define, + emitter, + recorder: { + rec: recorder.record, + clear: recorder.clear, + play: recorder.outputs, + }, + restore: recorder.restore, + back, +}) + +// We always activate Nock on import, overriding the globals. +// Setting the Back mode "activates" Nock by overriding the global entries in the `http/s` modules. +// If Nock Back is configured, we need to honor that setting for backward compatibility, +// otherwise we rely on Nock Back's default initializing side effect. +if (isOn()) { + back.setMode(process.env.NOCK_BACK_MODE || 'dryrun') +} diff --git a/node_modules/nock/lib/back.js b/node_modules/nock/lib/back.js new file mode 100644 index 000000000..2aee89e47 --- /dev/null +++ b/node_modules/nock/lib/back.js @@ -0,0 +1,279 @@ +'use strict' + +const assert = require('assert') +const recorder = require('./recorder') +const { + activate, + disableNetConnect, + enableNetConnect, + removeAll: cleanAll, +} = require('./intercept') +const { loadDefs, define } = require('./scope') + +const { format } = require('util') +const path = require('path') +const debug = require('debug')('nock.back') + +let _mode = null + +let fs + +try { + fs = require('fs') +} catch (err) { + // do nothing, probably in browser +} + +/** + * nock the current function with the fixture given + * + * @param {string} fixtureName - the name of the fixture, e.x. 'foo.json' + * @param {object} options - [optional] extra options for nock with, e.x. `{ assert: true }` + * @param {function} nockedFn - [optional] callback function to be executed with the given fixture being loaded; + * if defined the function will be called with context `{ scopes: loaded_nocks || [] }` + * set as `this` and `nockDone` callback function as first and only parameter; + * if not defined a promise resolving to `{nockDone, context}` where `context` is + * aforementioned `{ scopes: loaded_nocks || [] }` + * + * List of options: + * + * @param {function} before - a preprocessing function, gets called before nock.define + * @param {function} after - a postprocessing function, gets called after nock.define + * @param {function} afterRecord - a postprocessing function, gets called after recording. Is passed the array + * of scopes recorded and should return the array scopes to save to the fixture + * @param {function} recorder - custom options to pass to the recorder + * + */ +function Back(fixtureName, options, nockedFn) { + if (!Back.fixtures) { + throw new Error( + 'Back requires nock.back.fixtures to be set\n' + + 'Ex:\n' + + "\trequire(nock).back.fixtures = '/path/to/fixtures/'" + ) + } + + if (typeof fixtureName !== 'string') { + throw new Error('Parameter fixtureName must be a string') + } + + if (arguments.length === 1) { + options = {} + } else if (arguments.length === 2) { + // If 2nd parameter is a function then `options` has been omitted + // otherwise `options` haven't been omitted but `nockedFn` was. + if (typeof options === 'function') { + nockedFn = options + options = {} + } + } + + _mode.setup() + + const fixture = path.join(Back.fixtures, fixtureName) + const context = _mode.start(fixture, options) + + const nockDone = function() { + _mode.finish(fixture, options, context) + } + + debug('context:', context) + + // If nockedFn is a function then invoke it, otherwise return a promise resolving to nockDone. + if (typeof nockedFn === 'function') { + nockedFn.call(context, nockDone) + } else { + return Promise.resolve({ nockDone, context }) + } +} + +/******************************************************************************* + * Modes * + *******************************************************************************/ + +const wild = { + setup: function() { + cleanAll() + recorder.restore() + activate() + enableNetConnect() + }, + + start: function() { + return load() // don't load anything but get correct context + }, + + finish: function() { + // nothing to do + }, +} + +const dryrun = { + setup: function() { + recorder.restore() + cleanAll() + activate() + // We have to explicitly enable net connectivity as by default it's off. + enableNetConnect() + }, + + start: function(fixture, options) { + const contexts = load(fixture, options) + + enableNetConnect() + return contexts + }, + + finish: function() { + // nothing to do + }, +} + +const record = { + setup: function() { + recorder.restore() + recorder.clear() + cleanAll() + activate() + disableNetConnect() + }, + + start: function(fixture, options) { + if (!fs) { + throw new Error('no fs') + } + const context = load(fixture, options) + + if (!context.isLoaded) { + recorder.record({ + dont_print: true, + output_objects: true, + ...options.recorder, + }) + + context.isRecording = true + } + + return context + }, + + finish: function(fixture, options, context) { + if (context.isRecording) { + let outputs = recorder.outputs() + + if (typeof options.afterRecord === 'function') { + outputs = options.afterRecord(outputs) + } + + outputs = + typeof outputs === 'string' ? outputs : JSON.stringify(outputs, null, 4) + debug('recorder outputs:', outputs) + + fs.mkdirSync(path.dirname(fixture), { recursive: true }) + fs.writeFileSync(fixture, outputs) + } + }, +} + +const lockdown = { + setup: function() { + recorder.restore() + recorder.clear() + cleanAll() + activate() + disableNetConnect() + }, + + start: function(fixture, options) { + return load(fixture, options) + }, + + finish: function() { + // nothing to do + }, +} + +function load(fixture, options) { + const context = { + scopes: [], + assertScopesFinished: function() { + assertScopes(this.scopes, fixture) + }, + } + + if (fixture && fixtureExists(fixture)) { + let scopes = loadDefs(fixture) + applyHook(scopes, options.before) + + scopes = define(scopes) + applyHook(scopes, options.after) + + context.scopes = scopes + context.isLoaded = true + } + + return context +} + +function applyHook(scopes, fn) { + if (!fn) { + return + } + + if (typeof fn !== 'function') { + throw new Error('processing hooks must be a function') + } + + scopes.forEach(fn) +} + +function fixtureExists(fixture) { + if (!fs) { + throw new Error('no fs') + } + + return fs.existsSync(fixture) +} + +function assertScopes(scopes, fixture) { + const pending = scopes + .filter(scope => !scope.isDone()) + .map(scope => scope.pendingMocks()) + + if (pending.length) { + assert.fail( + format( + '%j was not used, consider removing %s to rerecord fixture', + [].concat(...pending), + fixture + ) + ) + } +} + +const Modes = { + wild, // all requests go out to the internet, dont replay anything, doesnt record anything + + dryrun, // use recorded nocks, allow http calls, doesnt record anything, useful for writing new tests (default) + + record, // use recorded nocks, record new nocks + + lockdown, // use recorded nocks, disables all http calls even when not nocked, doesnt record +} + +Back.setMode = function(mode) { + if (!(mode in Modes)) { + throw new Error(`Unknown mode: ${mode}`) + } + + Back.currentMode = mode + debug('New nock back mode:', Back.currentMode) + + _mode = Modes[mode] + _mode.setup() +} + +Back.fixtures = null +Back.currentMode = null + +module.exports = Back diff --git a/node_modules/nock/lib/common.js b/node_modules/nock/lib/common.js new file mode 100644 index 000000000..6185ca5e3 --- /dev/null +++ b/node_modules/nock/lib/common.js @@ -0,0 +1,645 @@ +'use strict' + +const _ = require('lodash') +const debug = require('debug')('nock.common') +const url = require('url') +const timers = require('timers') + +/** + * Normalizes the request options so that it always has `host` property. + * + * @param {Object} options - a parsed options object of the request + */ +function normalizeRequestOptions(options) { + options.proto = options.proto || 'http' + options.port = options.port || (options.proto === 'http' ? 80 : 443) + if (options.host) { + debug('options.host:', options.host) + if (!options.hostname) { + if (options.host.split(':').length === 2) { + options.hostname = options.host.split(':')[0] + } else { + options.hostname = options.host + } + } + } + debug('options.hostname in the end: %j', options.hostname) + options.host = `${options.hostname || 'localhost'}:${options.port}` + debug('options.host in the end: %j', options.host) + + /// lowercase host names + ;['hostname', 'host'].forEach(function(attr) { + if (options[attr]) { + options[attr] = options[attr].toLowerCase() + } + }) + + return options +} + +/** + * Returns true if the data contained in buffer can be reconstructed + * from its utf8 representation. + * + * @param {Object} buffer - a Buffer object + * @returns {boolean} + */ +function isUtf8Representable(buffer) { + const utfEncodedBuffer = buffer.toString('utf8') + const reconstructedBuffer = Buffer.from(utfEncodedBuffer, 'utf8') + return reconstructedBuffer.equals(buffer) +} + +// Array where all information about all the overridden requests are held. +let requestOverrides = {} + +/** + * Overrides the current `request` function of `http` and `https` modules with + * our own version which intercepts issues HTTP/HTTPS requests and forwards them + * to the given `newRequest` function. + * + * @param {Function} newRequest - a function handling requests; it accepts four arguments: + * - proto - a string with the overridden module's protocol name (either `http` or `https`) + * - overriddenRequest - the overridden module's request function already bound to module's object + * - options - the options of the issued request + * - callback - the callback of the issued request + */ +function overrideRequests(newRequest) { + debug('overriding requests') + ;['http', 'https'].forEach(function(proto) { + debug('- overriding request for', proto) + + const moduleName = proto // 1 to 1 match of protocol and module is fortunate :) + const module = { + http: require('http'), + https: require('https'), + }[moduleName] + const overriddenRequest = module.request + const overriddenGet = module.get + + if (requestOverrides[moduleName]) { + throw new Error( + `Module's request already overridden for ${moduleName} protocol.` + ) + } + + // Store the properties of the overridden request so that it can be restored later on. + requestOverrides[moduleName] = { + module, + request: overriddenRequest, + get: overriddenGet, + } + // https://nodejs.org/api/http.html#http_http_request_url_options_callback + module.request = function(input, options, callback) { + return newRequest(proto, overriddenRequest.bind(module), [ + input, + options, + callback, + ]) + } + // https://nodejs.org/api/http.html#http_http_get_options_callback + module.get = function(input, options, callback) { + const req = newRequest(proto, overriddenGet.bind(module), [ + input, + options, + callback, + ]) + req.end() + return req + } + + debug('- overridden request for', proto) + }) +} + +/** + * Restores `request` function of `http` and `https` modules to values they + * held before they were overridden by us. + */ +function restoreOverriddenRequests() { + debug('restoring requests') + Object.entries(requestOverrides).forEach( + ([proto, { module, request, get }]) => { + debug('- restoring request for', proto) + module.request = request + module.get = get + debug('- restored request for', proto) + } + ) + requestOverrides = {} +} + +/** + * In WHATWG URL vernacular, this returns the origin portion of a URL. + * However, the port is not included if it's standard and not already present on the host. + */ +function normalizeOrigin(proto, host, port) { + const hostHasPort = host.includes(':') + const portIsStandard = + (proto === 'http' && (port === 80 || port === '80')) || + (proto === 'https' && (port === 443 || port === '443')) + const portStr = hostHasPort || portIsStandard ? '' : `:${port}` + + return `${proto}://${host}${portStr}` +} + +/** + * Get high level information about request as string + * @param {Object} options + * @param {string} options.method + * @param {number|string} options.port + * @param {string} options.proto Set internally. always http or https + * @param {string} options.hostname + * @param {string} options.path + * @param {Object} options.headers + * @param {string} body + * @return {string} + */ +function stringifyRequest(options, body) { + const { method = 'GET', path = '', port } = options + const origin = normalizeOrigin(options.proto, options.hostname, port) + + const log = { + method, + url: `${origin}${path}`, + headers: options.headers, + } + + if (body) { + log.body = body + } + + return JSON.stringify(log, null, 2) +} + +function isContentEncoded(headers) { + const contentEncoding = headers['content-encoding'] + return typeof contentEncoding === 'string' && contentEncoding !== '' +} + +function contentEncoding(headers, encoder) { + const contentEncoding = headers['content-encoding'] + return contentEncoding === encoder +} + +function isJSONContent(headers) { + // https://tools.ietf.org/html/rfc8259 + const contentType = String(headers['content-type'] || '').toLowerCase() + return contentType.startsWith('application/json') +} + +/** + * Return a new object with all field names of the headers lower-cased. + * + * Duplicates throw an error. + */ +function headersFieldNamesToLowerCase(headers) { + if (!_.isPlainObject(headers)) { + throw Error('Headers must be provided as an object') + } + + const lowerCaseHeaders = {} + Object.entries(headers).forEach(([fieldName, fieldValue]) => { + const key = fieldName.toLowerCase() + if (lowerCaseHeaders[key] !== undefined) { + throw Error( + `Failed to convert header keys to lower case due to field name conflict: ${key}` + ) + } + lowerCaseHeaders[key] = fieldValue + }) + + return lowerCaseHeaders +} + +const headersFieldsArrayToLowerCase = headers => [ + ...new Set(headers.map(fieldName => fieldName.toLowerCase())), +] + +/** + * Converts the various accepted formats of headers into a flat array representing "raw headers". + * + * Nock allows headers to be provided as a raw array, a plain object, or a Map. + * + * While all the header names are expected to be strings, the values are left intact as they can + * be functions, strings, or arrays of strings. + * + * https://nodejs.org/api/http.html#http_message_rawheaders + */ +function headersInputToRawArray(headers) { + if (headers === undefined) { + return [] + } + + if (Array.isArray(headers)) { + // If the input is an array, assume it's already in the raw format and simply return a copy + // but throw an error if there aren't an even number of items in the array + if (headers.length % 2) { + throw new Error( + `Raw headers must be provided as an array with an even number of items. [fieldName, value, ...]` + ) + } + return [...headers] + } + + // [].concat(...) is used instead of Array.flat until v11 is the minimum Node version + if (_.isMap(headers)) { + return [].concat(...Array.from(headers, ([k, v]) => [k.toString(), v])) + } + + if (_.isPlainObject(headers)) { + return [].concat(...Object.entries(headers)) + } + + throw new Error( + `Headers must be provided as an array of raw values, a Map, or a plain Object. ${headers}` + ) +} + +/** + * Converts an array of raw headers to an object, using the same rules as Nodes `http.IncomingMessage.headers`. + * + * Header names/keys are lower-cased. + */ +function headersArrayToObject(rawHeaders) { + if (!Array.isArray(rawHeaders)) { + throw Error('Expected a header array') + } + + const accumulator = {} + + forEachHeader(rawHeaders, (value, fieldName) => { + addHeaderLine(accumulator, fieldName, value) + }) + + return accumulator +} + +const noDuplicatesHeaders = new Set([ + 'age', + 'authorization', + 'content-length', + 'content-type', + 'etag', + 'expires', + 'from', + 'host', + 'if-modified-since', + 'if-unmodified-since', + 'last-modified', + 'location', + 'max-forwards', + 'proxy-authorization', + 'referer', + 'retry-after', + 'user-agent', +]) + +/** + * Set key/value data in accordance with Node's logic for folding duplicate headers. + * + * The `value` param should be a function, string, or array of strings. + * + * Node's docs and source: + * https://nodejs.org/api/http.html#http_message_headers + * https://github.com/nodejs/node/blob/908292cf1f551c614a733d858528ffb13fb3a524/lib/_http_incoming.js#L245 + * + * Header names are lower-cased. + * Duplicates in raw headers are handled in the following ways, depending on the header name: + * - Duplicates of field names listed in `noDuplicatesHeaders` (above) are discarded. + * - `set-cookie` is always an array. Duplicates are added to the array. + * - For duplicate `cookie` headers, the values are joined together with '; '. + * - For all other headers, the values are joined together with ', '. + * + * Node's implementation is larger because it highly optimizes for not having to call `toLowerCase()`. + * We've opted to always call `toLowerCase` in exchange for a more concise function. + * + * While Node has the luxury of knowing `value` is always a string, we do an extra step of coercion at the top. + */ +function addHeaderLine(headers, name, value) { + let values // code below expects `values` to be an array of strings + if (typeof value === 'function') { + // Function values are evaluated towards the end of the response, before that we use a placeholder + // string just to designate that the header exists. Useful when `Content-Type` is set with a function. + values = [value.name] + } else if (Array.isArray(value)) { + values = value.map(String) + } else { + values = [String(value)] + } + + const key = name.toLowerCase() + if (key === 'set-cookie') { + // Array header -- only Set-Cookie at the moment + if (headers['set-cookie'] === undefined) { + headers['set-cookie'] = values + } else { + headers['set-cookie'].push(...values) + } + } else if (noDuplicatesHeaders.has(key)) { + if (headers[key] === undefined) { + // Drop duplicates + headers[key] = values[0] + } + } else { + if (headers[key] !== undefined) { + values = [headers[key], ...values] + } + + const separator = key === 'cookie' ? '; ' : ', ' + headers[key] = values.join(separator) + } +} + +/** + * Deletes the given `fieldName` property from `headers` object by performing + * case-insensitive search through keys. + * + * @headers {Object} headers - object of header field names and values + * @fieldName {String} field name - string with the case-insensitive field name + */ +function deleteHeadersField(headers, fieldNameToDelete) { + if (!_.isPlainObject(headers)) { + throw Error('headers must be an object') + } + + if (typeof fieldNameToDelete !== 'string') { + throw Error('field name must be a string') + } + + const lowerCaseFieldNameToDelete = fieldNameToDelete.toLowerCase() + + // Search through the headers and delete all values whose field name matches the given field name. + Object.keys(headers) + .filter(fieldName => fieldName.toLowerCase() === lowerCaseFieldNameToDelete) + .forEach(fieldName => delete headers[fieldName]) +} + +/** + * Utility for iterating over a raw headers array. + * + * The callback is called with: + * - The header value. string, array of strings, or a function + * - The header field name. string + * - Index of the header field in the raw header array. + */ +function forEachHeader(rawHeaders, callback) { + for (let i = 0; i < rawHeaders.length; i += 2) { + callback(rawHeaders[i + 1], rawHeaders[i], i) + } +} + +function percentDecode(str) { + try { + return decodeURIComponent(str.replace(/\+/g, ' ')) + } catch (e) { + return str + } +} + +/** + * URI encode the provided string, stringently adhering to RFC 3986. + * + * RFC 3986 reserves !, ', (, ), and * but encodeURIComponent does not encode them so we do it manually. + * + * https://tools.ietf.org/html/rfc3986 + * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent + */ +function percentEncode(str) { + return encodeURIComponent(str).replace(/[!'()*]/g, function(c) { + return `%${c + .charCodeAt(0) + .toString(16) + .toUpperCase()}` + }) +} + +function matchStringOrRegexp(target, pattern) { + const targetStr = + target === undefined || target === null ? '' : String(target) + + return pattern instanceof RegExp + ? pattern.test(targetStr) + : targetStr === String(pattern) +} + +/** + * Formats a query parameter. + * + * @param key The key of the query parameter to format. + * @param value The value of the query parameter to format. + * @param stringFormattingFn The function used to format string values. Can + * be used to encode or decode the query value. + * + * @returns *[] the formatted [key, value] pair. + */ +function formatQueryValue(key, value, stringFormattingFn) { + // TODO: Probably refactor code to replace `switch(true)` with `if`/`else`. + switch (true) { + case typeof value === 'number': // fall-through + case typeof value === 'boolean': + value = value.toString() + break + case value === null: + case value === undefined: + value = '' + break + case typeof value === 'string': + if (stringFormattingFn) { + value = stringFormattingFn(value) + } + break + case value instanceof RegExp: + break + case Array.isArray(value): { + value = value.map(function(val, idx) { + return formatQueryValue(idx, val, stringFormattingFn)[1] + }) + break + } + case typeof value === 'object': { + value = Object.entries(value).reduce(function(acc, [subKey, subVal]) { + const subPair = formatQueryValue(subKey, subVal, stringFormattingFn) + acc[subPair[0]] = subPair[1] + + return acc + }, {}) + break + } + } + + if (stringFormattingFn) key = stringFormattingFn(key) + return [key, value] +} + +function isStream(obj) { + return ( + obj && + typeof obj !== 'string' && + !Buffer.isBuffer(obj) && + typeof obj.setEncoding === 'function' + ) +} + +/** + * Converts the arguments from the various signatures of http[s].request into a standard + * options object and an optional callback function. + * + * https://nodejs.org/api/http.html#http_http_request_url_options_callback + * + * Taken from the beginning of the native `ClientRequest`. + * https://github.com/nodejs/node/blob/908292cf1f551c614a733d858528ffb13fb3a524/lib/_http_client.js#L68 + */ +function normalizeClientRequestArgs(input, options, cb) { + if (typeof input === 'string') { + input = urlToOptions(new url.URL(input)) + } else if (input instanceof url.URL) { + input = urlToOptions(input) + } else { + cb = options + options = input + input = null + } + + if (typeof options === 'function') { + cb = options + options = input || {} + } else { + options = Object.assign(input || {}, options) + } + + return { options, callback: cb } +} + +/** + * Utility function that converts a URL object into an ordinary + * options object as expected by the http.request and https.request APIs. + * + * This was copied from Node's source + * https://github.com/nodejs/node/blob/908292cf1f551c614a733d858528ffb13fb3a524/lib/internal/url.js#L1257 + */ +function urlToOptions(url) { + const options = { + protocol: url.protocol, + hostname: + typeof url.hostname === 'string' && url.hostname.startsWith('[') + ? url.hostname.slice(1, -1) + : url.hostname, + hash: url.hash, + search: url.search, + pathname: url.pathname, + path: `${url.pathname}${url.search || ''}`, + href: url.href, + } + if (url.port !== '') { + options.port = Number(url.port) + } + if (url.username || url.password) { + options.auth = `${url.username}:${url.password}` + } + return options +} + +/** + * Determines if request data matches the expected schema. + * + * Used for comparing decoded search parameters, request body JSON objects, + * and URL decoded request form bodies. + * + * Performs a general recursive strict comparision with two caveats: + * - The expected data can use regexp to compare values + * - JSON path notation and nested objects are considered equal + */ +const dataEqual = (expected, actual) => + deepEqual(expand(expected), expand(actual)) + +/** + * Converts flat objects whose keys use JSON path notation to nested objects. + * + * The input object is not mutated. + * + * @example + * { 'foo[bar][0]': 'baz' } -> { foo: { bar: [ 'baz' ] } } + */ +const expand = input => + Object.entries(input).reduce((acc, [k, v]) => _.set(acc, k, v), {}) + +/** + * Performs a recursive strict comparison between two values. + * + * Expected values or leaf nodes of expected object values that are RegExp use test() for comparison. + */ +function deepEqual(expected, actual) { + debug('deepEqual comparing', typeof expected, expected, typeof actual, actual) + if (expected instanceof RegExp) { + return expected.test(actual) + } + + if (Array.isArray(expected) || _.isPlainObject(expected)) { + if (actual === undefined) { + return false + } + + const expKeys = Object.keys(expected) + if (expKeys.length !== Object.keys(actual).length) { + return false + } + + return expKeys.every(key => deepEqual(expected[key], actual[key])) + } + + return expected === actual +} + +const timeouts = [] +const intervals = [] +const immediates = [] + +const wrapTimer = (timer, ids) => (...args) => { + const id = timer(...args) + ids.push(id) + return id +} + +const setTimeout = wrapTimer(timers.setTimeout, timeouts) +const setInterval = wrapTimer(timers.setInterval, intervals) +const setImmediate = wrapTimer(timers.setImmediate, immediates) + +function clearTimer(clear, ids) { + while (ids.length) { + clear(ids.shift()) + } +} + +function removeAllTimers() { + clearTimer(clearTimeout, timeouts) + clearTimer(clearInterval, intervals) + clearTimer(clearImmediate, immediates) +} + +exports.normalizeClientRequestArgs = normalizeClientRequestArgs +exports.normalizeRequestOptions = normalizeRequestOptions +exports.normalizeOrigin = normalizeOrigin +exports.isUtf8Representable = isUtf8Representable +exports.overrideRequests = overrideRequests +exports.restoreOverriddenRequests = restoreOverriddenRequests +exports.stringifyRequest = stringifyRequest +exports.isContentEncoded = isContentEncoded +exports.contentEncoding = contentEncoding +exports.isJSONContent = isJSONContent +exports.headersFieldNamesToLowerCase = headersFieldNamesToLowerCase +exports.headersFieldsArrayToLowerCase = headersFieldsArrayToLowerCase +exports.headersArrayToObject = headersArrayToObject +exports.headersInputToRawArray = headersInputToRawArray +exports.deleteHeadersField = deleteHeadersField +exports.forEachHeader = forEachHeader +exports.percentEncode = percentEncode +exports.percentDecode = percentDecode +exports.matchStringOrRegexp = matchStringOrRegexp +exports.formatQueryValue = formatQueryValue +exports.isStream = isStream +exports.dataEqual = dataEqual +exports.setTimeout = setTimeout +exports.setInterval = setInterval +exports.setImmediate = setImmediate +exports.removeAllTimers = removeAllTimers diff --git a/node_modules/nock/lib/delayed_body.js b/node_modules/nock/lib/delayed_body.js new file mode 100644 index 000000000..f659dcac7 --- /dev/null +++ b/node_modules/nock/lib/delayed_body.js @@ -0,0 +1,52 @@ +'use strict' + +/** + * Creates a stream which becomes the response body of the interceptor when a + * delay is set. The stream outputs the intended body and EOF after the delay. + * + * @param {String|Buffer|Stream} body - the body to write/pipe out + * @param {Integer} ms - The delay in milliseconds + * @constructor + */ + +const { Transform } = require('stream') +const common = require('./common') + +module.exports = class DelayedBody extends Transform { + constructor(ms, body) { + super() + + const self = this + let data = '' + let ended = false + + if (common.isStream(body)) { + body.on('data', function(chunk) { + data += Buffer.isBuffer(chunk) ? chunk.toString() : chunk + }) + + body.once('end', function() { + ended = true + }) + + body.resume() + } + + // TODO: This would be more readable if the stream case were moved into + // the `if` statement above. + common.setTimeout(function() { + if (common.isStream(body) && !ended) { + body.once('end', function() { + self.end(data) + }) + } else { + self.end(data || body) + } + }, ms) + } + + _transform(chunk, encoding, cb) { + this.push(chunk) + process.nextTick(cb) + } +} diff --git a/node_modules/nock/lib/global_emitter.js b/node_modules/nock/lib/global_emitter.js new file mode 100644 index 000000000..d95fbb7b6 --- /dev/null +++ b/node_modules/nock/lib/global_emitter.js @@ -0,0 +1,5 @@ +'use strict' + +const { EventEmitter } = require('events') + +module.exports = new EventEmitter() diff --git a/node_modules/nock/lib/intercept.js b/node_modules/nock/lib/intercept.js new file mode 100644 index 000000000..deec18118 --- /dev/null +++ b/node_modules/nock/lib/intercept.js @@ -0,0 +1,449 @@ +'use strict' + +/** + * @module nock/intercept + */ + +const { InterceptedRequestRouter } = require('./intercepted_request_router') +const common = require('./common') +const { inherits } = require('util') +const http = require('http') +const debug = require('debug')('nock.intercept') +const globalEmitter = require('./global_emitter') + +/** + * @name NetConnectNotAllowedError + * @private + * @desc Error trying to make a connection when disabled external access. + * @class + * @example + * nock.disableNetConnect(); + * http.get('http://zombo.com'); + * // throw NetConnectNotAllowedError + */ +function NetConnectNotAllowedError(host, path) { + Error.call(this) + + this.name = 'NetConnectNotAllowedError' + this.code = 'ENETUNREACH' + this.message = `Nock: Disallowed net connect for "${host}${path}"` + + Error.captureStackTrace(this, this.constructor) +} + +inherits(NetConnectNotAllowedError, Error) + +let allInterceptors = {} +let allowNetConnect + +/** + * Enabled real request. + * @public + * @param {String|RegExp} matcher=RegExp.new('.*') Expression to match + * @example + * // Enables all real requests + * nock.enableNetConnect(); + * @example + * // Enables real requests for url that matches google + * nock.enableNetConnect('google'); + * @example + * // Enables real requests for url that matches google and amazon + * nock.enableNetConnect(/(google|amazon)/); + * @example + * // Enables real requests for url that includes google + * nock.enableNetConnect(host => host.includes('google')); + */ +function enableNetConnect(matcher) { + if (typeof matcher === 'string') { + allowNetConnect = new RegExp(matcher) + } else if (matcher instanceof RegExp) { + allowNetConnect = matcher + } else if (typeof matcher === 'function') { + allowNetConnect = { test: matcher } + } else { + allowNetConnect = /.*/ + } +} + +function isEnabledForNetConnect(options) { + common.normalizeRequestOptions(options) + + const enabled = allowNetConnect && allowNetConnect.test(options.host) + debug('Net connect', enabled ? '' : 'not', 'enabled for', options.host) + return enabled +} + +/** + * Disable all real requests. + * @public + * @example + * nock.disableNetConnect(); + */ +function disableNetConnect() { + allowNetConnect = undefined +} + +function isOn() { + return !isOff() +} + +function isOff() { + return process.env.NOCK_OFF === 'true' +} + +function addInterceptor(key, interceptor, scope, scopeOptions, host) { + if (!(key in allInterceptors)) { + allInterceptors[key] = { key, interceptors: [] } + } + interceptor.__nock_scope = scope + + // We need scope's key and scope options for scope filtering function (if defined) + interceptor.__nock_scopeKey = key + interceptor.__nock_scopeOptions = scopeOptions + // We need scope's host for setting correct request headers for filtered scopes. + interceptor.__nock_scopeHost = host + interceptor.interceptionCounter = 0 + + if (scopeOptions.allowUnmocked) allInterceptors[key].allowUnmocked = true + + allInterceptors[key].interceptors.push(interceptor) +} + +function remove(interceptor) { + if (interceptor.__nock_scope.shouldPersist() || --interceptor.counter > 0) { + return + } + + const { basePath } = interceptor + const interceptors = + (allInterceptors[basePath] && allInterceptors[basePath].interceptors) || [] + + // TODO: There is a clearer way to write that we want to delete the first + // matching instance. I'm also not sure why we couldn't delete _all_ + // matching instances. + interceptors.some(function(thisInterceptor, i) { + return thisInterceptor === interceptor ? interceptors.splice(i, 1) : false + }) +} + +function removeAll() { + Object.keys(allInterceptors).forEach(function(key) { + allInterceptors[key].interceptors.forEach(function(interceptor) { + interceptor.scope.keyedInterceptors = {} + }) + }) + allInterceptors = {} +} + +/** + * Return all the Interceptors whose Scopes match against the base path of the provided options. + * + * @returns {Interceptor[]} + */ +function interceptorsFor(options) { + common.normalizeRequestOptions(options) + + debug('interceptors for %j', options.host) + + const basePath = `${options.proto}://${options.host}` + + debug('filtering interceptors for basepath', basePath) + + // First try to use filteringScope if any of the interceptors has it defined. + for (const { key, interceptors, allowUnmocked } of Object.values( + allInterceptors + )) { + for (const interceptor of interceptors) { + const { filteringScope } = interceptor.__nock_scopeOptions + + // If scope filtering function is defined and returns a truthy value then + // we have to treat this as a match. + if (filteringScope && filteringScope(basePath)) { + debug('found matching scope interceptor') + + // Keep the filtered scope (its key) to signal the rest of the module + // that this wasn't an exact but filtered match. + interceptors.forEach(ic => { + ic.__nock_filteredScope = ic.__nock_scopeKey + }) + return interceptors + } + } + + if (common.matchStringOrRegexp(basePath, key)) { + if (allowUnmocked && interceptors.length === 0) { + debug('matched base path with allowUnmocked (no matching interceptors)') + return [ + { + options: { allowUnmocked: true }, + matchOrigin() { + return false + }, + }, + ] + } else { + debug( + `matched base path (${interceptors.length} interceptor${ + interceptors.length > 1 ? 's' : '' + })` + ) + return interceptors + } + } + } + + return undefined +} + +function removeInterceptor(options) { + // Lazily import to avoid circular imports. + const Interceptor = require('./interceptor') + + let baseUrl, key, method, proto + if (options instanceof Interceptor) { + baseUrl = options.basePath + key = options._key + } else { + proto = options.proto ? options.proto : 'http' + + common.normalizeRequestOptions(options) + baseUrl = `${proto}://${options.host}` + method = (options.method && options.method.toUpperCase()) || 'GET' + key = `${method} ${baseUrl}${options.path || '/'}` + } + + if ( + allInterceptors[baseUrl] && + allInterceptors[baseUrl].interceptors.length > 0 + ) { + for (let i = 0; i < allInterceptors[baseUrl].interceptors.length; i++) { + const interceptor = allInterceptors[baseUrl].interceptors[i] + if (interceptor._key === key) { + allInterceptors[baseUrl].interceptors.splice(i, 1) + interceptor.scope.remove(key, interceptor) + break + } + } + + return true + } + + return false +} +// Variable where we keep the ClientRequest we have overridden +// (which might or might not be node's original http.ClientRequest) +let originalClientRequest + +function ErroringClientRequest(error) { + http.OutgoingMessage.call(this) + process.nextTick( + function() { + this.emit('error', error) + }.bind(this) + ) +} + +inherits(ErroringClientRequest, http.ClientRequest) + +function overrideClientRequest() { + // Here's some background discussion about overriding ClientRequest: + // - https://github.com/nodejitsu/mock-request/issues/4 + // - https://github.com/nock/nock/issues/26 + // It would be good to add a comment that explains this more clearly. + debug('Overriding ClientRequest') + + // ----- Extending http.ClientRequest + + // Define the overriding client request that nock uses internally. + function OverriddenClientRequest(...args) { + const { options, callback } = common.normalizeClientRequestArgs(...args) + + if (Object.keys(options).length === 0) { + // As weird as it is, it's possible to call `http.request` without + // options, and it makes a request to localhost or somesuch. We should + // support it too, for parity. However it doesn't work today, and fixing + // it seems low priority. Giving an explicit error is nicer than + // crashing with a weird stack trace. `http[s].request()`, nock's other + // client-facing entry point, makes a similar check. + // https://github.com/nock/nock/pull/1386 + // https://github.com/nock/nock/pull/1440 + throw Error( + 'Creating a ClientRequest with empty `options` is not supported in Nock' + ) + } + + http.OutgoingMessage.call(this) + + // Filter the interceptors per request options. + const interceptors = interceptorsFor(options) + + if (isOn() && interceptors) { + debug('using', interceptors.length, 'interceptors') + + // Use filtered interceptors to intercept requests. + const overrider = new InterceptedRequestRouter({ + req: this, + options, + interceptors, + }) + Object.assign(this, overrider) + + if (callback) { + this.once('response', callback) + } + } else { + debug('falling back to original ClientRequest') + + // Fallback to original ClientRequest if nock is off or the net connection is enabled. + if (isOff() || isEnabledForNetConnect(options)) { + originalClientRequest.apply(this, arguments) + } else { + common.setImmediate( + function() { + const error = new NetConnectNotAllowedError( + options.host, + options.path + ) + this.emit('error', error) + }.bind(this) + ) + } + } + } + inherits(OverriddenClientRequest, http.ClientRequest) + + // Override the http module's request but keep the original so that we can use it and later restore it. + // NOTE: We only override http.ClientRequest as https module also uses it. + originalClientRequest = http.ClientRequest + http.ClientRequest = OverriddenClientRequest + + debug('ClientRequest overridden') +} + +function restoreOverriddenClientRequest() { + debug('restoring overridden ClientRequest') + + // Restore the ClientRequest we have overridden. + if (!originalClientRequest) { + debug('- ClientRequest was not overridden') + } else { + http.ClientRequest = originalClientRequest + originalClientRequest = undefined + + debug('- ClientRequest restored') + } +} + +function isActive() { + // If ClientRequest has been overwritten by Nock then originalClientRequest is not undefined. + // This means that Nock has been activated. + return originalClientRequest !== undefined +} + +function interceptorScopes() { + const nestedInterceptors = Object.values(allInterceptors).map( + i => i.interceptors + ) + return [].concat(...nestedInterceptors).map(i => i.scope) +} + +function isDone() { + return interceptorScopes().every(scope => scope.isDone()) +} + +function pendingMocks() { + return [].concat(...interceptorScopes().map(scope => scope.pendingMocks())) +} + +function activeMocks() { + return [].concat(...interceptorScopes().map(scope => scope.activeMocks())) +} + +function activate() { + if (originalClientRequest) { + throw new Error('Nock already active') + } + + overrideClientRequest() + + // ----- Overriding http.request and https.request: + + common.overrideRequests(function(proto, overriddenRequest, args) { + // NOTE: overriddenRequest is already bound to its module. + + const { options, callback } = common.normalizeClientRequestArgs(...args) + + if (Object.keys(options).length === 0) { + // As weird as it is, it's possible to call `http.request` without + // options, and it makes a request to localhost or somesuch. We should + // support it too, for parity. However it doesn't work today, and fixing + // it seems low priority. Giving an explicit error is nicer than + // crashing with a weird stack trace. `new ClientRequest()`, nock's + // other client-facing entry point, makes a similar check. + // https://github.com/nock/nock/pull/1386 + // https://github.com/nock/nock/pull/1440 + throw Error( + 'Making a request with empty `options` is not supported in Nock' + ) + } + + // The option per the docs is `protocol`. Its unclear if this line is meant to override that and is misspelled or if + // the intend is to explicitly keep track of which module was called using a separate name. + // Either way, `proto` is used as the source of truth from here on out. + options.proto = proto + + const interceptors = interceptorsFor(options) + + if (isOn() && interceptors) { + const matches = interceptors.some(interceptor => + interceptor.matchOrigin(options) + ) + const allowUnmocked = interceptors.some( + interceptor => interceptor.options.allowUnmocked + ) + + if (!matches && allowUnmocked) { + let req + if (proto === 'https') { + const { ClientRequest } = http + http.ClientRequest = originalClientRequest + req = overriddenRequest(options, callback) + http.ClientRequest = ClientRequest + } else { + req = overriddenRequest(options, callback) + } + globalEmitter.emit('no match', req) + return req + } + + // NOTE: Since we already overrode the http.ClientRequest we are in fact constructing + // our own OverriddenClientRequest. + return new http.ClientRequest(options, callback) + } else { + globalEmitter.emit('no match', options) + if (isOff() || isEnabledForNetConnect(options)) { + return overriddenRequest(options, callback) + } else { + const error = new NetConnectNotAllowedError(options.host, options.path) + return new ErroringClientRequest(error) + } + } + }) +} + +module.exports = { + addInterceptor, + remove, + removeAll, + removeInterceptor, + isOn, + activate, + isActive, + isDone, + pendingMocks, + activeMocks, + enableNetConnect, + disableNetConnect, + restoreOverriddenClientRequest, + abortPendingRequests: common.removeAllTimers, +} diff --git a/node_modules/nock/lib/intercepted_request_router.js b/node_modules/nock/lib/intercepted_request_router.js new file mode 100644 index 000000000..422e27818 --- /dev/null +++ b/node_modules/nock/lib/intercepted_request_router.js @@ -0,0 +1,320 @@ +'use strict' + +const debug = require('debug')('nock.request_overrider') +const { + IncomingMessage, + ClientRequest, + request: originalHttpRequest, +} = require('http') +const { request: originalHttpsRequest } = require('https') +const propagate = require('propagate') +const common = require('./common') +const globalEmitter = require('./global_emitter') +const Socket = require('./socket') +const { playbackInterceptor } = require('./playback_interceptor') + +/** + * Given a group of interceptors, appropriately route an outgoing request. + * Identify which interceptor ought to respond, if any, then delegate to + * `playbackInterceptor()` to consume the request itself. + */ +class InterceptedRequestRouter { + constructor({ req, options, interceptors }) { + this.req = req + this.options = { + // We may be changing the options object and we don't want those changes + // affecting the user so we use a clone of the object. + ...options, + // We use lower-case header field names throughout Nock. + headers: common.headersFieldNamesToLowerCase(options.headers || {}), + } + this.interceptors = interceptors + + this.socket = new Socket(options) + + // support setting `timeout` using request `options` + // https://nodejs.org/docs/latest-v12.x/api/http.html#http_http_request_url_options_callback + if (options.timeout) { + this.socket.setTimeout(options.timeout) + } + + this.response = new IncomingMessage(this.socket) + this.playbackStarted = false + this.requestBodyBuffers = [] + + this.attachToReq() + } + + attachToReq() { + const { req, response, socket, options } = this + + response.req = req + + for (const [name, val] of Object.entries(options.headers)) { + req.setHeader(name.toLowerCase(), val) + } + + if (options.auth && !options.headers.authorization) { + req.setHeader( + // We use lower-case header field names throughout Nock. + 'authorization', + `Basic ${Buffer.from(options.auth).toString('base64')}` + ) + } + + req.path = options.path + req.method = options.method + + // ClientRequest.connection is an alias for ClientRequest.socket + // https://nodejs.org/api/http.html#http_request_socket + // https://github.com/nodejs/node/blob/b0f75818f39ed4e6bd80eb7c4010c1daf5823ef7/lib/_http_client.js#L640-L641 + // The same Socket is shared between the request and response to mimic native behavior. + req.socket = req.connection = socket + + propagate(['error', 'timeout'], req.socket, req) + + req.write = (...args) => this.handleWrite(...args) + req.end = (...args) => this.handleEnd(...args) + req.flushHeaders = (...args) => this.handleFlushHeaders(...args) + req.abort = (...args) => this.handleAbort(...args) + + // https://github.com/nock/nock/issues/256 + if (options.headers.expect === '100-continue') { + common.setImmediate(() => { + debug('continue') + req.emit('continue') + }) + } + + // Emit a fake socket event on the next tick to mimic what would happen on a real request. + // Some clients listen for a 'socket' event to be emitted before calling end(), + // which causes nock to hang. + process.nextTick(() => { + req.emit('socket', socket) + + // https://nodejs.org/api/net.html#net_event_connect + socket.emit('connect') + + // https://nodejs.org/api/tls.html#tls_event_secureconnect + if (socket.authorized) { + socket.emit('secureConnect') + } + }) + } + + emitError(error) { + const { req } = this + process.nextTick(() => { + req.emit('error', error) + }) + } + + handleWrite(buffer, encoding, callback) { + debug('write', arguments) + const { req } = this + + if (!req.aborted) { + if (buffer) { + if (!Buffer.isBuffer(buffer)) { + buffer = Buffer.from(buffer, encoding) + } + this.requestBodyBuffers.push(buffer) + } + // can't use instanceof Function because some test runners + // run tests in vm.runInNewContext where Function is not same + // as that in the current context + // https://github.com/nock/nock/pull/1754#issuecomment-571531407 + if (typeof callback === 'function') { + callback() + } + } else { + this.emitError(new Error('Request aborted')) + } + + common.setImmediate(function() { + req.emit('drain') + }) + + return false + } + + handleEnd(chunk, encoding, callback) { + debug('req.end') + const { req } = this + + // handle the different overloaded param signatures + if (typeof chunk === 'function') { + callback = chunk + chunk = null + } else if (typeof encoding === 'function') { + callback = encoding + encoding = null + } + + if (typeof callback === 'function') { + req.once('finish', callback) + } + + if (!req.aborted && !this.playbackStarted) { + req.write(chunk, encoding) + this.startPlayback() + } + if (req.aborted) { + this.emitError(new Error('Request aborted')) + } + + return req + } + + handleFlushHeaders() { + debug('req.flushHeaders') + const { req } = this + + if (!req.aborted && !this.playbackStarted) { + this.startPlayback() + } + if (req.aborted) { + this.emitError(new Error('Request aborted')) + } + } + + handleAbort() { + debug('req.abort') + const { req, response, socket } = this + + if (req.aborted) { + return + } + req.aborted = Date.now() + if (!this.playbackStarted) { + this.startPlayback() + } + const err = new Error() + err.code = 'aborted' + response.emit('close', err) + + socket.destroy() + + req.emit('abort') + + const connResetError = new Error('socket hang up') + connResetError.code = 'ECONNRESET' + this.emitError(connResetError) + } + + /** + * Set request headers of the given request. This is needed both during the + * routing phase, in case header filters were specified, and during the + * interceptor-playback phase, to correctly pass mocked request headers. + * TODO There are some problems with this; see https://github.com/nock/nock/issues/1718 + */ + setHostHeaderUsingInterceptor(interceptor) { + const { req, options } = this + + // If a filtered scope is being used we have to use scope's host in the + // header, otherwise 'host' header won't match. + // NOTE: We use lower-case header field names throughout Nock. + const HOST_HEADER = 'host' + if (interceptor.__nock_filteredScope && interceptor.__nock_scopeHost) { + options.headers[HOST_HEADER] = interceptor.__nock_scopeHost + req.setHeader(HOST_HEADER, interceptor.__nock_scopeHost) + } else { + // For all other cases, we always add host header equal to the requested + // host unless it was already defined. + if (options.host && !req.getHeader(HOST_HEADER)) { + let hostHeader = options.host + + if (options.port === 80 || options.port === 443) { + hostHeader = hostHeader.split(':')[0] + } + + req.setHeader(HOST_HEADER, hostHeader) + } + } + } + + startPlayback() { + debug('ending') + this.playbackStarted = true + + const { req, response, socket, options, interceptors } = this + + Object.assign(options, { + // Re-update `options` with the current value of `req.path` because badly + // behaving agents like superagent like to change `req.path` mid-flight. + path: req.path, + // Similarly, node-http-proxy will modify headers in flight, so we have + // to put the headers back into options. + // https://github.com/nock/nock/pull/1484 + headers: req.getHeaders(), + // Fixes https://github.com/nock/nock/issues/976 + protocol: `${options.proto}:`, + }) + + interceptors.forEach(interceptor => { + this.setHostHeaderUsingInterceptor(interceptor) + }) + + const requestBodyBuffer = Buffer.concat(this.requestBodyBuffers) + // When request body is a binary buffer we internally use in its hexadecimal + // representation. + const requestBodyIsUtf8Representable = common.isUtf8Representable( + requestBodyBuffer + ) + const requestBodyString = requestBodyBuffer.toString( + requestBodyIsUtf8Representable ? 'utf8' : 'hex' + ) + + const matchedInterceptor = interceptors.find(i => + i.match(req, options, requestBodyString) + ) + + if (matchedInterceptor) { + debug('interceptor identified, starting mocking') + + // wait to emit the finish event until we know for sure an Interceptor is going to playback. + // otherwise an unmocked request might emit finish twice. + req.finished = true + req.emit('finish') + + playbackInterceptor({ + req, + socket, + options, + requestBodyString, + requestBodyIsUtf8Representable, + response, + interceptor: matchedInterceptor, + }) + } else { + globalEmitter.emit('no match', req, options, requestBodyString) + + // Try to find a hostname match that allows unmocked. + const allowUnmocked = interceptors.some( + i => i.matchHostName(options) && i.options.allowUnmocked + ) + + if (allowUnmocked && req instanceof ClientRequest) { + const newReq = + options.proto === 'https' + ? originalHttpsRequest(options) + : originalHttpRequest(options) + + propagate(newReq, req) + // We send the raw buffer as we received it, not as we interpreted it. + newReq.end(requestBodyBuffer) + } else { + const err = new Error( + `Nock: No match for request ${common.stringifyRequest( + options, + requestBodyString + )}` + ) + err.statusCode = err.status = 404 + this.emitError(err) + } + } + } +} + +module.exports = { InterceptedRequestRouter } diff --git a/node_modules/nock/lib/interceptor.js b/node_modules/nock/lib/interceptor.js new file mode 100644 index 000000000..8d1cccba0 --- /dev/null +++ b/node_modules/nock/lib/interceptor.js @@ -0,0 +1,619 @@ +'use strict' + +const debug = require('debug')('nock.interceptor') +const stringify = require('json-stringify-safe') +const _ = require('lodash') +const querystring = require('querystring') +const { URL, URLSearchParams } = require('url') + +const common = require('./common') +const { remove } = require('./intercept') +const matchBody = require('./match_body') + +let fs +try { + fs = require('fs') +} catch (err) { + // do nothing, we're in the browser +} + +module.exports = class Interceptor { + /** + * + * Valid argument types for `uri`: + * - A string used for strict comparisons with pathname. + * The search portion of the URI may also be postfixed, in which case the search params + * are striped and added via the `query` method. + * - A RegExp instance that tests against only the pathname of requests. + * - A synchronous function bound to this Interceptor instance. It's provided the pathname + * of requests and must return a boolean denoting if the request is considered a match. + */ + constructor(scope, uri, method, requestBody, interceptorOptions) { + const uriIsStr = typeof uri === 'string' + // Check for leading slash. Uri can be either a string or a regexp, but + // When enabled filteringScope ignores the passed URL entirely so we skip validation. + + if ( + !scope.scopeOptions.filteringScope && + uriIsStr && + !uri.startsWith('/') && + !uri.startsWith('*') + ) { + throw Error( + `Non-wildcard URL path strings must begin with a slash (otherwise they won't match anything) (got: ${uri})` + ) + } + + if (!method) { + throw new Error( + 'The "method" parameter is required for an intercept call.' + ) + } + + this.scope = scope + this.interceptorMatchHeaders = [] + this.method = method.toUpperCase() + this.uri = uri + this._key = `${this.method} ${scope.basePath}${scope.basePathname}${ + uriIsStr ? '' : '/' + }${uri}` + this.basePath = this.scope.basePath + this.path = uriIsStr ? scope.basePathname + uri : uri + this.queries = null + + this.options = interceptorOptions || {} + this.counter = 1 + this._requestBody = requestBody + + // We use lower-case header field names throughout Nock. + this.reqheaders = common.headersFieldNamesToLowerCase( + scope.scopeOptions.reqheaders || {} + ) + this.badheaders = common.headersFieldsArrayToLowerCase( + scope.scopeOptions.badheaders || [] + ) + + this.delayInMs = 0 + this.delayConnectionInMs = 0 + + this.optional = false + + // strip off literal query parameters if they were provided as part of the URI + if (uriIsStr && uri.includes('?')) { + // localhost is a dummy value because the URL constructor errors for only relative inputs + const parsedURL = new URL(this.path, 'http://localhost') + this.path = parsedURL.pathname + this.query(parsedURL.searchParams) + this._key = `${this.method} ${scope.basePath}${this.path}` + } + } + + optionally(flag = true) { + // The default behaviour of optionally() with no arguments is to make the mock optional. + if (typeof flag !== 'boolean') { + throw new Error('Invalid arguments: argument should be a boolean') + } + + this.optional = flag + + return this + } + + replyWithError(errorMessage) { + this.errorMessage = errorMessage + + this.options = { + ...this.scope.scopeOptions, + ...this.options, + } + + this.scope.add(this._key, this) + return this.scope + } + + reply(statusCode, body, rawHeaders) { + // support the format of only passing in a callback + if (typeof statusCode === 'function') { + if (arguments.length > 1) { + // It's not very Javascript-y to throw an error for extra args to a function, but because + // of legacy behavior, this error was added to reduce confusion for those migrating. + throw Error( + 'Invalid arguments. When providing a function for the first argument, .reply does not accept other arguments.' + ) + } + this.statusCode = null + this.fullReplyFunction = statusCode + } else { + if (statusCode !== undefined && !Number.isInteger(statusCode)) { + throw new Error(`Invalid ${typeof statusCode} value for status code`) + } + + this.statusCode = statusCode || 200 + if (typeof body === 'function') { + this.replyFunction = body + body = null + } + } + + this.options = { + ...this.scope.scopeOptions, + ...this.options, + } + + this.rawHeaders = common.headersInputToRawArray(rawHeaders) + + if (this.scope.date) { + // https://tools.ietf.org/html/rfc7231#section-7.1.1.2 + this.rawHeaders.push('Date', this.scope.date.toUTCString()) + } + + // Prepare the headers temporarily so we can make best guesses about content-encoding and content-type + // below as well as while the response is being processed in RequestOverrider.end(). + // Including all the default headers is safe for our purposes because of the specific headers we introspect. + // A more thoughtful process is used to merge the default headers when the response headers are finally computed. + this.headers = common.headersArrayToObject( + this.rawHeaders.concat(this.scope._defaultReplyHeaders) + ) + + // If the content is not encoded we may need to transform the response body. + // Otherwise we leave it as it is. + if ( + body && + typeof body !== 'string' && + !Buffer.isBuffer(body) && + !common.isStream(body) && + !common.isContentEncoded(this.headers) + ) { + try { + body = stringify(body) + } catch (err) { + throw new Error('Error encoding response body into JSON') + } + + if (!this.headers['content-type']) { + // https://tools.ietf.org/html/rfc7231#section-3.1.1.5 + this.rawHeaders.push('Content-Type', 'application/json') + } + + if (this.scope.contentLen) { + // https://tools.ietf.org/html/rfc7230#section-3.3.2 + this.rawHeaders.push('Content-Length', body.length) + } + } + + debug('reply.headers:', this.headers) + debug('reply.rawHeaders:', this.rawHeaders) + + this.body = body + + this.scope.add(this._key, this) + return this.scope + } + + replyWithFile(statusCode, filePath, headers) { + if (!fs) { + throw new Error('No fs') + } + const readStream = fs.createReadStream(filePath) + readStream.pause() + this.filePath = filePath + return this.reply(statusCode, readStream, headers) + } + + // Also match request headers + // https://github.com/nock/nock/issues/163 + reqheaderMatches(options, key) { + const reqHeader = this.reqheaders[key] + let header = options.headers[key] + + // https://github.com/nock/nock/issues/399 + // https://github.com/nock/nock/issues/822 + if (header && typeof header !== 'string' && header.toString) { + header = header.toString() + } + + // We skip 'host' header comparison unless it's available in both mock and + // actual request. This because 'host' may get inserted by Nock itself and + // then get recorded. NOTE: We use lower-case header field names throughout + // Nock. See https://github.com/nock/nock/pull/196. + if (key === 'host' && (header === undefined || reqHeader === undefined)) { + return true + } + + if (reqHeader !== undefined && header !== undefined) { + if (typeof reqHeader === 'function') { + return reqHeader(header) + } else if (common.matchStringOrRegexp(header, reqHeader)) { + return true + } + } + + debug("request header field doesn't match:", key, header, reqHeader) + return false + } + + match(req, options, body) { + if (debug.enabled) { + debug('match %s, body = %s', stringify(options), stringify(body)) + } + + const method = (options.method || 'GET').toUpperCase() + let { path = '/' } = options + let matches + let matchKey + const { proto } = options + + if (this.method !== method) { + debug( + `Method did not match. Request ${method} Interceptor ${this.method}` + ) + return false + } + + if (this.scope.transformPathFunction) { + path = this.scope.transformPathFunction(path) + } + + const requestMatchesFilter = ({ name, value: predicate }) => { + const headerValue = req.getHeader(name) + if (typeof predicate === 'function') { + return predicate(headerValue) + } else { + return common.matchStringOrRegexp(headerValue, predicate) + } + } + + if ( + !this.scope.matchHeaders.every(requestMatchesFilter) || + !this.interceptorMatchHeaders.every(requestMatchesFilter) + ) { + this.scope.logger("headers don't match") + return false + } + + const reqHeadersMatch = Object.keys(this.reqheaders).every(key => + this.reqheaderMatches(options, key) + ) + + if (!reqHeadersMatch) { + return false + } + + if ( + this.scope.scopeOptions.conditionally && + !this.scope.scopeOptions.conditionally() + ) { + return false + } + + const reqContainsBadHeaders = this.badheaders.some( + header => header in options.headers + ) + + if (reqContainsBadHeaders) { + return false + } + + // Match query strings when using query() + if (this.queries === null) { + debug('query matching skipped') + } else { + // can't rely on pathname or search being in the options, but path has a default + const [pathname, search] = path.split('?') + const matchQueries = this.matchQuery({ search }) + + debug(matchQueries ? 'query matching succeeded' : 'query matching failed') + + if (!matchQueries) { + return false + } + + // If the query string was explicitly checked then subsequent checks against + // the path using a callback or regexp only validate the pathname. + path = pathname + } + + // If we have a filtered scope then we use it instead reconstructing the + // scope from the request options (proto, host and port) as these two won't + // necessarily match and we have to remove the scope that was matched (vs. + // that was defined). + if (this.__nock_filteredScope) { + matchKey = this.__nock_filteredScope + } else { + matchKey = common.normalizeOrigin(proto, options.host, options.port) + } + + if (typeof this.uri === 'function') { + matches = + common.matchStringOrRegexp(matchKey, this.basePath) && + // This is a false positive, as `uri` is not bound to `this`. + // eslint-disable-next-line no-useless-call + this.uri.call(this, path) + } else { + matches = + common.matchStringOrRegexp(matchKey, this.basePath) && + common.matchStringOrRegexp(path, this.path) + } + + this.scope.logger(`matching ${matchKey}${path} to ${this._key}: ${matches}`) + + if (matches && this._requestBody !== undefined) { + if (this.scope.transformRequestBodyFunction) { + body = this.scope.transformRequestBodyFunction(body, this._requestBody) + } + + matches = matchBody(options, this._requestBody, body) + if (!matches) { + this.scope.logger( + "bodies don't match: \n", + this._requestBody, + '\n', + body + ) + } + } + + return matches + } + + /** + * Return true when the interceptor's method, protocol, host, port, and path + * match the provided options. + */ + matchOrigin(options) { + const isPathFn = typeof this.path === 'function' + const isRegex = this.path instanceof RegExp + const isRegexBasePath = this.scope.basePath instanceof RegExp + + const method = (options.method || 'GET').toUpperCase() + let { path } = options + const { proto } = options + + // NOTE: Do not split off the query params as the regex could use them + if (!isRegex) { + path = path ? path.split('?')[0] : '' + } + + if (this.scope.transformPathFunction) { + path = this.scope.transformPathFunction(path) + } + const comparisonKey = isPathFn || isRegex ? this.__nock_scopeKey : this._key + const matchKey = `${method} ${proto}://${options.host}${path}` + + if (isPathFn) { + return !!(matchKey.match(comparisonKey) && this.path(path)) + } + + if (isRegex && !isRegexBasePath) { + return !!matchKey.match(comparisonKey) && this.path.test(path) + } + + if (isRegexBasePath) { + return this.scope.basePath.test(matchKey) && !!path.match(this.path) + } + + return comparisonKey === matchKey + } + + matchHostName(options) { + return options.hostname === this.scope.urlParts.hostname + } + + matchQuery(options) { + if (this.queries === true) { + return true + } + + const reqQueries = querystring.parse(options.search) + debug('Interceptor queries: %j', this.queries) + debug(' Request queries: %j', reqQueries) + + if (typeof this.queries === 'function') { + return this.queries(reqQueries) + } + + return common.dataEqual(this.queries, reqQueries) + } + + filteringPath(...args) { + this.scope.filteringPath(...args) + return this + } + + // TODO filtering by path is valid on the intercept level, but not filtering + // by request body? + + markConsumed() { + this.interceptionCounter++ + + remove(this) + + if ((this.scope.shouldPersist() || this.counter > 0) && this.filePath) { + this.body = fs.createReadStream(this.filePath) + this.body.pause() + } + + if (!this.scope.shouldPersist() && this.counter < 1) { + this.scope.remove(this._key, this) + } + } + + matchHeader(name, value) { + this.interceptorMatchHeaders.push({ name, value }) + return this + } + + basicAuth({ user, pass = '' }) { + const encoded = Buffer.from(`${user}:${pass}`).toString('base64') + this.matchHeader('authorization', `Basic ${encoded}`) + return this + } + + /** + * Set query strings for the interceptor + * @name query + * @param queries Object of query string name,values (accepts regexp values) + * @public + * @example + * // Will match 'http://zombo.com/?q=t' + * nock('http://zombo.com').get('/').query({q: 't'}); + */ + query(queries) { + if (this.queries !== null) { + throw Error(`Query parameters have already been defined`) + } + + // Allow all query strings to match this route + if (queries === true) { + this.queries = queries + return this + } + + if (typeof queries === 'function') { + this.queries = queries + return this + } + + let strFormattingFn + if (this.scope.scopeOptions.encodedQueryParams) { + strFormattingFn = common.percentDecode + } + + if (queries instanceof URLSearchParams) { + // Normalize the data into the shape that is matched against. + // Duplicate keys are handled by combining the values into an array. + queries = querystring.parse(queries.toString()) + } else if (!_.isPlainObject(queries)) { + throw Error(`Argument Error: ${queries}`) + } + + this.queries = {} + for (const [key, value] of Object.entries(queries)) { + const formatted = common.formatQueryValue(key, value, strFormattingFn) + const [formattedKey, formattedValue] = formatted + this.queries[formattedKey] = formattedValue + } + + return this + } + + /** + * Set number of times will repeat the interceptor + * @name times + * @param newCounter Number of times to repeat (should be > 0) + * @public + * @example + * // Will repeat mock 5 times for same king of request + * nock('http://zombo.com).get('/').times(5).reply(200, 'Ok'); + */ + times(newCounter) { + if (newCounter < 1) { + return this + } + + this.counter = newCounter + + return this + } + + /** + * An sugar syntax for times(1) + * @name once + * @see {@link times} + * @public + * @example + * nock('http://zombo.com).get('/').once().reply(200, 'Ok'); + */ + once() { + return this.times(1) + } + + /** + * An sugar syntax for times(2) + * @name twice + * @see {@link times} + * @public + * @example + * nock('http://zombo.com).get('/').twice().reply(200, 'Ok'); + */ + twice() { + return this.times(2) + } + + /** + * An sugar syntax for times(3). + * @name thrice + * @see {@link times} + * @public + * @example + * nock('http://zombo.com).get('/').thrice().reply(200, 'Ok'); + */ + thrice() { + return this.times(3) + } + + /** + * Delay the response by a certain number of ms. + * + * @param {(integer|object)} opts - Number of milliseconds to wait, or an object + * @param {integer} [opts.head] - Number of milliseconds to wait before response is sent + * @param {integer} [opts.body] - Number of milliseconds to wait before response body is sent + * @return {Interceptor} - the current interceptor for chaining + */ + delay(opts) { + let headDelay + let bodyDelay + if (typeof opts === 'number') { + headDelay = opts + bodyDelay = 0 + } else if (typeof opts === 'object') { + headDelay = opts.head || 0 + bodyDelay = opts.body || 0 + } else { + throw new Error(`Unexpected input opts ${opts}`) + } + + return this.delayConnection(headDelay).delayBody(bodyDelay) + } + + /** + * Delay the response body by a certain number of ms. + * + * @param {integer} ms - Number of milliseconds to wait before response is sent + * @return {Interceptor} - the current interceptor for chaining + */ + delayBody(ms) { + this.delayInMs += ms + return this + } + + /** + * Delay the connection by a certain number of ms. + * + * @param {integer} ms - Number of milliseconds to wait + * @return {Interceptor} - the current interceptor for chaining + */ + delayConnection(ms) { + this.delayConnectionInMs += ms + return this + } + + /** + * @private + * @returns {number} + */ + getTotalDelay() { + return this.delayInMs + this.delayConnectionInMs + } + + /** + * Make the socket idle for a certain number of ms (simulated). + * + * @param {integer} ms - Number of milliseconds to wait + * @return {Interceptor} - the current interceptor for chaining + */ + socketDelay(ms) { + this.socketDelayInMs = ms + return this + } +} diff --git a/node_modules/nock/lib/match_body.js b/node_modules/nock/lib/match_body.js new file mode 100644 index 000000000..6eda62dd5 --- /dev/null +++ b/node_modules/nock/lib/match_body.js @@ -0,0 +1,77 @@ +'use strict' + +const _ = require('lodash') +const querystring = require('querystring') + +const common = require('./common') + +module.exports = function matchBody(options, spec, body) { + if (spec instanceof RegExp) { + return spec.test(body) + } + + if (Buffer.isBuffer(spec)) { + const encoding = common.isUtf8Representable(spec) ? 'utf8' : 'hex' + spec = spec.toString(encoding) + } + + const contentType = ( + (options.headers && + (options.headers['Content-Type'] || options.headers['content-type'])) || + '' + ).toString() + + const isMultipart = contentType.includes('multipart') + const isUrlencoded = contentType.includes('application/x-www-form-urlencoded') + + // try to transform body to json + let json + if (typeof spec === 'object' || typeof spec === 'function') { + try { + json = JSON.parse(body) + } catch (err) { + // not a valid JSON string + } + if (json !== undefined) { + body = json + } else if (isUrlencoded) { + body = querystring.parse(body) + } + } + + if (typeof spec === 'function') { + return spec.call(options, body) + } + + // strip line endings from both so that we get a match no matter what OS we are running on + // if Content-Type does not contains 'multipart' + if (!isMultipart && typeof body === 'string') { + body = body.replace(/\r?\n|\r/g, '') + } + + if (!isMultipart && typeof spec === 'string') { + spec = spec.replace(/\r?\n|\r/g, '') + } + + // Because the nature of URL encoding, all the values in the body have been cast to strings. + // dataEqual does strict checking so we we have to cast the non-regexp values in the spec too. + if (isUrlencoded) { + spec = mapValuesDeep(spec, val => (val instanceof RegExp ? val : `${val}`)) + } + + return common.dataEqual(spec, body) +} + +/** + * Based on lodash issue discussion + * https://github.com/lodash/lodash/issues/1244 + */ +function mapValuesDeep(obj, cb) { + if (Array.isArray(obj)) { + return obj.map(v => mapValuesDeep(v, cb)) + } + if (_.isPlainObject(obj)) { + return _.mapValues(obj, v => mapValuesDeep(v, cb)) + } + return cb(obj) +} diff --git a/node_modules/nock/lib/playback_interceptor.js b/node_modules/nock/lib/playback_interceptor.js new file mode 100644 index 000000000..6e45b8b25 --- /dev/null +++ b/node_modules/nock/lib/playback_interceptor.js @@ -0,0 +1,348 @@ +'use strict' + +const util = require('util') +const zlib = require('zlib') +const debug = require('debug')('nock.playback_interceptor') +const common = require('./common') +const DelayedBody = require('./delayed_body') + +function parseJSONRequestBody(req, requestBody) { + if (!requestBody || !common.isJSONContent(req.headers)) { + return requestBody + } + + if (common.contentEncoding(req.headers, 'gzip')) { + requestBody = String(zlib.gunzipSync(Buffer.from(requestBody, 'hex'))) + } else if (common.contentEncoding(req.headers, 'deflate')) { + requestBody = String(zlib.inflateSync(Buffer.from(requestBody, 'hex'))) + } + + return JSON.parse(requestBody) +} + +function parseFullReplyResult(response, fullReplyResult) { + debug('full response from callback result: %j', fullReplyResult) + + if (!Array.isArray(fullReplyResult)) { + throw Error('A single function provided to .reply MUST return an array') + } + + if (fullReplyResult.length > 3) { + throw Error( + 'The array returned from the .reply callback contains too many values' + ) + } + + const [status, body = '', headers] = fullReplyResult + + if (!Number.isInteger(status)) { + throw new Error(`Invalid ${typeof status} value for status code`) + } + + response.statusCode = status + response.rawHeaders.push(...common.headersInputToRawArray(headers)) + debug('response.rawHeaders after reply: %j', response.rawHeaders) + + return body +} + +/** + * Determine which of the default headers should be added to the response. + * + * Don't include any defaults whose case-insensitive keys are already on the response. + */ +function selectDefaultHeaders(existingHeaders, defaultHeaders) { + if (!defaultHeaders.length) { + return [] // return early if we don't need to bother + } + + const definedHeaders = new Set() + const result = [] + + common.forEachHeader(existingHeaders, (_, fieldName) => { + definedHeaders.add(fieldName.toLowerCase()) + }) + common.forEachHeader(defaultHeaders, (value, fieldName) => { + if (!definedHeaders.has(fieldName.toLowerCase())) { + result.push(fieldName, value) + } + }) + + return result +} + +/** + * Play back an interceptor using the given request and mock response. + */ +function playbackInterceptor({ + req, + socket, + options, + requestBodyString, + requestBodyIsUtf8Representable, + response, + interceptor, +}) { + function emitError(error) { + process.nextTick(() => { + req.emit('error', error) + }) + } + + function start() { + interceptor.req = req + req.headers = req.getHeaders() + + interceptor.scope.emit('request', req, interceptor, requestBodyString) + + if (typeof interceptor.errorMessage !== 'undefined') { + interceptor.markConsumed() + + let error + if (typeof interceptor.errorMessage === 'object') { + error = interceptor.errorMessage + } else { + error = new Error(interceptor.errorMessage) + } + common.setTimeout(() => emitError(error), interceptor.getTotalDelay()) + return + } + + // This will be null if we have a fullReplyFunction, + // in that case status code will be set in `parseFullReplyResult` + response.statusCode = interceptor.statusCode + + // Clone headers/rawHeaders to not override them when evaluating later + response.rawHeaders = [...interceptor.rawHeaders] + debug('response.rawHeaders:', response.rawHeaders) + + if (interceptor.replyFunction) { + const parsedRequestBody = parseJSONRequestBody(req, requestBodyString) + + let fn = interceptor.replyFunction + if (fn.length === 3) { + // Handle the case of an async reply function, the third parameter being the callback. + fn = util.promisify(fn) + } + + // At this point `fn` is either a synchronous function or a promise-returning function; + // wrapping in `Promise.resolve` makes it into a promise either way. + Promise.resolve(fn.call(interceptor, options.path, parsedRequestBody)) + .then(responseBody => continueWithResponseBody({ responseBody })) + .catch(err => emitError(err)) + return + } + + if (interceptor.fullReplyFunction) { + const parsedRequestBody = parseJSONRequestBody(req, requestBodyString) + + let fn = interceptor.fullReplyFunction + if (fn.length === 3) { + fn = util.promisify(fn) + } + + Promise.resolve(fn.call(interceptor, options.path, parsedRequestBody)) + .then(fullReplyResult => continueWithFullResponse({ fullReplyResult })) + .catch(err => emitError(err)) + return + } + + if ( + common.isContentEncoded(interceptor.headers) && + !common.isStream(interceptor.body) + ) { + // If the content is encoded we know that the response body *must* be an array + // of response buffers which should be mocked one by one. + // (otherwise decompressions after the first one fails as unzip expects to receive + // buffer by buffer and not one single merged buffer) + + if (interceptor.delayInMs) { + emitError( + new Error( + 'Response delay of the body is currently not supported with content-encoded responses.' + ) + ) + return + } + + const bufferData = Array.isArray(interceptor.body) + ? interceptor.body + : [interceptor.body] + const responseBuffers = bufferData.map(data => Buffer.from(data, 'hex')) + continueWithResponseBody({ responseBuffers }) + return + } + + // If we get to this point, the body is either a string or an object that + // will eventually be JSON stringified. + let responseBody = interceptor.body + + // If the request was not UTF8-representable then we assume that the + // response won't be either. In that case we send the response as a Buffer + // object as that's what the client will expect. + if (!requestBodyIsUtf8Representable && typeof responseBody === 'string') { + // Try to create the buffer from the interceptor's body response as hex. + responseBody = Buffer.from(responseBody, 'hex') + + // Creating buffers does not necessarily throw errors; check for difference in size. + if ( + !responseBody || + (interceptor.body.length > 0 && responseBody.length === 0) + ) { + // We fallback on constructing buffer from utf8 representation of the body. + responseBody = Buffer.from(interceptor.body, 'utf8') + } + } + + return continueWithResponseBody({ responseBody }) + } + + function continueWithFullResponse({ fullReplyResult }) { + let responseBody + try { + responseBody = parseFullReplyResult(response, fullReplyResult) + } catch (innerErr) { + emitError(innerErr) + return + } + + continueWithResponseBody({ responseBody }) + } + + function continueWithResponseBody({ responseBuffers, responseBody }) { + // Transform the response body if it exists (it may not exist + // if we have `responseBuffers` instead) + if (responseBody !== undefined) { + debug('transform the response body') + + if (interceptor.delayInMs) { + debug( + 'delaying the response for', + interceptor.delayInMs, + 'milliseconds' + ) + // Because setTimeout is called immediately in DelayedBody(), so we + // need count in the delayConnectionInMs. + responseBody = new DelayedBody( + interceptor.getTotalDelay(), + responseBody + ) + } + + if (common.isStream(responseBody)) { + debug('response body is a stream') + responseBody.pause() + responseBody.on('data', function(d) { + response.push(d) + }) + responseBody.on('end', function() { + response.push(null) + // https://nodejs.org/dist/latest-v10.x/docs/api/http.html#http_message_complete + response.complete = true + }) + responseBody.on('error', function(err) { + response.emit('error', err) + }) + } else if (!Buffer.isBuffer(responseBody)) { + if (typeof responseBody === 'string') { + responseBody = Buffer.from(responseBody) + } else { + responseBody = JSON.stringify(responseBody) + response.rawHeaders.push('Content-Type', 'application/json') + } + } + // Why are strings converted to a Buffer, but JSON data is left as a string? + // Related to https://github.com/nock/nock/issues/1542 ? + } + + interceptor.markConsumed() + + if (req.aborted) { + return + } + + response.rawHeaders.push( + ...selectDefaultHeaders( + response.rawHeaders, + interceptor.scope._defaultReplyHeaders + ) + ) + + // Evaluate functional headers. + common.forEachHeader(response.rawHeaders, (value, fieldName, i) => { + if (typeof value === 'function') { + response.rawHeaders[i + 1] = value(req, response, responseBody) + } + }) + + response.headers = common.headersArrayToObject(response.rawHeaders) + + process.nextTick(() => + respondUsingInterceptor({ + responseBody, + responseBuffers, + }) + ) + } + + function respondUsingInterceptor({ responseBody, responseBuffers }) { + if (req.aborted) { + return + } + + function respond() { + if (req.aborted) { + return + } + + debug('emitting response') + req.emit('response', response) + + if (common.isStream(responseBody)) { + debug('resuming response stream') + responseBody.resume() + } else { + responseBuffers = responseBuffers || [] + if (typeof responseBody !== 'undefined') { + debug('adding body to buffer list') + responseBuffers.push(responseBody) + } + + // Stream the response chunks one at a time. + common.setImmediate(function emitChunk() { + const chunk = responseBuffers.shift() + + if (chunk) { + debug('emitting response chunk') + response.push(chunk) + common.setImmediate(emitChunk) + } else { + debug('ending response stream') + response.push(null) + // https://nodejs.org/dist/latest-v10.x/docs/api/http.html#http_message_complete + response.complete = true + interceptor.scope.emit('replied', req, interceptor) + } + }) + } + } + + if (interceptor.socketDelayInMs && interceptor.socketDelayInMs > 0) { + socket.applyDelay(interceptor.socketDelayInMs) + } + + if ( + interceptor.delayConnectionInMs && + interceptor.delayConnectionInMs > 0 + ) { + socket.applyDelay(interceptor.delayConnectionInMs) + common.setTimeout(respond, interceptor.delayConnectionInMs) + } else { + respond() + } + } + + start() +} + +module.exports = { playbackInterceptor } diff --git a/node_modules/nock/lib/recorder.js b/node_modules/nock/lib/recorder.js new file mode 100644 index 000000000..f5cf28e2d --- /dev/null +++ b/node_modules/nock/lib/recorder.js @@ -0,0 +1,386 @@ +'use strict' + +const debug = require('debug')('nock.recorder') +const querystring = require('querystring') +const { inspect } = require('util') + +const common = require('./common') +const { restoreOverriddenClientRequest } = require('./intercept') + +const SEPARATOR = '\n<<<<<<-- cut here -->>>>>>\n' +let recordingInProgress = false +let outputs = [] + +function getScope(options) { + const { proto, host, port } = common.normalizeRequestOptions(options) + return common.normalizeOrigin(proto, host, port) +} + +function getMethod(options) { + return options.method || 'GET' +} + +function getBodyFromChunks(chunks, headers) { + // If we have headers and there is content-encoding it means that the body + // shouldn't be merged but instead persisted as an array of hex strings so + // that the response chunks can be mocked one by one. + if (headers && common.isContentEncoded(headers)) { + return { + body: chunks.map(chunk => chunk.toString('hex')), + } + } + + const mergedBuffer = Buffer.concat(chunks) + + // The merged buffer can be one of three things: + // 1. A UTF-8-representable string buffer which represents a JSON object. + // 2. A UTF-8-representable buffer which doesn't represent a JSON object. + // 3. A non-UTF-8-representable buffer which then has to be recorded as a hex string. + const isUtf8Representable = common.isUtf8Representable(mergedBuffer) + if (isUtf8Representable) { + const maybeStringifiedJson = mergedBuffer.toString('utf8') + try { + return { + isUtf8Representable, + body: JSON.parse(maybeStringifiedJson), + } + } catch (err) { + return { + isUtf8Representable, + body: maybeStringifiedJson, + } + } + } else { + return { + isUtf8Representable, + body: mergedBuffer.toString('hex'), + } + } +} + +function generateRequestAndResponseObject({ + req, + bodyChunks, + options, + res, + dataChunks, + reqheaders, +}) { + const { body, isUtf8Representable } = getBodyFromChunks( + dataChunks, + res.headers + ) + options.path = req.path + + return { + scope: getScope(options), + method: getMethod(options), + path: options.path, + // Is it deliberate that `getBodyFromChunks()` is called a second time? + body: getBodyFromChunks(bodyChunks).body, + status: res.statusCode, + response: body, + rawHeaders: res.rawHeaders, + reqheaders: reqheaders || undefined, + // When content-encoding is enabled, isUtf8Representable is `undefined`, + // so we explicitly check for `false`. + responseIsBinary: isUtf8Representable === false, + } +} + +function generateRequestAndResponse({ + req, + bodyChunks, + options, + res, + dataChunks, + reqheaders, +}) { + const requestBody = getBodyFromChunks(bodyChunks).body + const responseBody = getBodyFromChunks(dataChunks, res.headers).body + + // Remove any query params from options.path so they can be added in the query() function + let { path } = options + const queryIndex = req.path.indexOf('?') + let queryObj = {} + if (queryIndex !== -1) { + // Remove the query from the path + path = path.substring(0, queryIndex) + + const queryStr = req.path.slice(queryIndex + 1) + queryObj = querystring.parse(queryStr) + } + // Always encode the query parameters when recording. + const encodedQueryObj = {} + for (const key in queryObj) { + const formattedPair = common.formatQueryValue( + key, + queryObj[key], + common.percentEncode + ) + encodedQueryObj[formattedPair[0]] = formattedPair[1] + } + + const lines = [] + + // We want a leading newline. + lines.push('') + + const scope = getScope(options) + lines.push(`nock('${scope}', {"encodedQueryParams":true})`) + + const methodName = getMethod(options).toLowerCase() + if (requestBody) { + lines.push(` .${methodName}('${path}', ${JSON.stringify(requestBody)})`) + } else { + lines.push(` .${methodName}('${path}')`) + } + + Object.entries(reqheaders || {}).forEach(([fieldName, fieldValue]) => { + const safeName = JSON.stringify(fieldName) + const safeValue = JSON.stringify(fieldValue) + lines.push(` .matchHeader(${safeName}, ${safeValue})`) + }) + + if (queryIndex !== -1) { + lines.push(` .query(${JSON.stringify(encodedQueryObj)})`) + } + + const statusCode = res.statusCode.toString() + const stringifiedResponseBody = JSON.stringify(responseBody) + const headers = inspect(res.rawHeaders) + lines.push(` .reply(${statusCode}, ${stringifiedResponseBody}, ${headers});`) + + return lines.join('\n') +} + +// This module variable is used to identify a unique recording ID in order to skip +// spurious requests that sometimes happen. This problem has been, so far, +// exclusively detected in nock's unit testing where 'checks if callback is specified' +// interferes with other tests as its t.end() is invoked without waiting for request +// to finish (which is the point of the test). +let currentRecordingId = 0 + +const defaultRecordOptions = { + dont_print: false, + enable_reqheaders_recording: false, + logging: console.log, + output_objects: false, + use_separator: true, +} + +function record(recOptions) { + // Trying to start recording with recording already in progress implies an error + // in the recording configuration (double recording makes no sense and used to lead + // to duplicates in output) + if (recordingInProgress) { + throw new Error('Nock recording already in progress') + } + + recordingInProgress = true + + // Set the new current recording ID and capture its value in this instance of record(). + currentRecordingId = currentRecordingId + 1 + const thisRecordingId = currentRecordingId + + // Originally the parameter was a dont_print boolean flag. + // To keep the existing code compatible we take that case into account. + if (typeof recOptions === 'boolean') { + recOptions = { dont_print: recOptions } + } + + recOptions = { ...defaultRecordOptions, ...recOptions } + + debug('start recording', thisRecordingId, recOptions) + + const { + dont_print: dontPrint, + enable_reqheaders_recording: enableReqHeadersRecording, + logging, + output_objects: outputObjects, + use_separator: useSeparator, + } = recOptions + + debug(thisRecordingId, 'restoring overridden requests before new overrides') + // To preserve backward compatibility (starting recording wasn't throwing if nock was already active) + // we restore any requests that may have been overridden by other parts of nock (e.g. intercept) + // NOTE: This is hacky as hell but it keeps the backward compatibility *and* allows correct + // behavior in the face of other modules also overriding ClientRequest. + common.restoreOverriddenRequests() + // We restore ClientRequest as it messes with recording of modules that also override ClientRequest (e.g. xhr2) + restoreOverriddenClientRequest() + + // We override the requests so that we can save information on them before executing. + common.overrideRequests(function(proto, overriddenRequest, rawArgs) { + const { options, callback } = common.normalizeClientRequestArgs(...rawArgs) + const bodyChunks = [] + + // Node 0.11 https.request calls http.request -- don't want to record things + // twice. + /* istanbul ignore if */ + if (options._recording) { + return overriddenRequest(options, callback) + } + options._recording = true + + const req = overriddenRequest(options, function(res) { + debug(thisRecordingId, 'intercepting', proto, 'request to record') + + // We put our 'end' listener to the front of the listener array. + res.once('end', function() { + debug(thisRecordingId, proto, 'intercepted request ended') + + let reqheaders + // Ignore request headers completely unless it was explicitly enabled by the user (see README) + if (enableReqHeadersRecording) { + // We never record user-agent headers as they are worse than useless - + // they actually make testing more difficult without providing any benefit (see README) + reqheaders = req.getHeaders() + common.deleteHeadersField(reqheaders, 'user-agent') + } + + const generateFn = outputObjects + ? generateRequestAndResponseObject + : generateRequestAndResponse + let out = generateFn({ + req, + bodyChunks, + options, + res, + dataChunks, + reqheaders, + }) + + debug('out:', out) + + // Check that the request was made during the current recording. + // If it hasn't then skip it. There is no other simple way to handle + // this as it depends on the timing of requests and responses. Throwing + // will make some recordings/unit tests fail randomly depending on how + // fast/slow the response arrived. + // If you are seeing this error then you need to make sure that all + // the requests made during a single recording session finish before + // ending the same recording session. + if (thisRecordingId !== currentRecordingId) { + debug('skipping recording of an out-of-order request', out) + return + } + + outputs.push(out) + + if (!dontPrint) { + if (useSeparator) { + if (typeof out !== 'string') { + out = JSON.stringify(out, null, 2) + } + logging(SEPARATOR + out + SEPARATOR) + } else { + logging(out) + } + } + }) + + let encoding + // We need to be aware of changes to the stream's encoding so that we + // don't accidentally mangle the data. + const { setEncoding } = res + res.setEncoding = function(newEncoding) { + encoding = newEncoding + return setEncoding.apply(this, arguments) + } + + const dataChunks = [] + // Replace res.push with our own implementation that stores chunks + const origResPush = res.push + res.push = function(data) { + if (data) { + if (encoding) { + data = Buffer.from(data, encoding) + } + dataChunks.push(data) + } + + return origResPush.call(res, data) + } + + if (callback) { + callback(res, options, callback) + } else { + res.resume() + } + + debug('finished setting up intercepting') + + // We override both the http and the https modules; when we are + // serializing the request, we need to know which was called. + // By stuffing the state, we can make sure that nock records + // the intended protocol. + if (proto === 'https') { + options.proto = 'https' + } + }) + + const recordChunk = (chunk, encoding) => { + debug(thisRecordingId, 'new', proto, 'body chunk') + if (!Buffer.isBuffer(chunk)) { + chunk = Buffer.from(chunk, encoding) + } + bodyChunks.push(chunk) + } + + const oldWrite = req.write + req.write = function(chunk, encoding) { + if (typeof chunk !== 'undefined') { + recordChunk(chunk, encoding) + oldWrite.apply(req, arguments) + } else { + throw new Error('Data was undefined.') + } + } + + // Starting in Node 8, `OutgoingMessage.end()` directly calls an internal + // `write_` function instead of proxying to the public + // `OutgoingMessage.write()` method, so we have to wrap `end` too. + const oldEnd = req.end + req.end = function(chunk, encoding, callback) { + debug('req.end') + if (typeof chunk === 'function') { + callback = chunk + chunk = null + } else if (typeof encoding === 'function') { + callback = encoding + encoding = null + } + + if (chunk) { + recordChunk(chunk, encoding) + } + oldEnd.call(req, chunk, encoding, callback) + } + + return req + }) +} + +// Restore *all* the overridden http/https modules' properties. +function restore() { + debug( + currentRecordingId, + 'restoring all the overridden http/https properties' + ) + + common.restoreOverriddenRequests() + restoreOverriddenClientRequest() + recordingInProgress = false +} + +function clear() { + outputs = [] +} + +module.exports = { + record, + outputs: () => outputs, + restore, + clear, +} diff --git a/node_modules/nock/lib/scope.js b/node_modules/nock/lib/scope.js new file mode 100644 index 000000000..c10390f01 --- /dev/null +++ b/node_modules/nock/lib/scope.js @@ -0,0 +1,391 @@ +'use strict' + +/** + * @module nock/scope + */ +const { addInterceptor, isOn } = require('./intercept') +const common = require('./common') +const assert = require('assert') +const url = require('url') +const debug = require('debug')('nock.scope') +const { EventEmitter } = require('events') +const util = require('util') +const Interceptor = require('./interceptor') + +let fs + +try { + fs = require('fs') +} catch (err) { + // do nothing, we're in the browser +} + +/** + * @param {string|RegExp|url.url} basePath + * @param {Object} options + * @param {boolean} options.allowUnmocked + * @param {string[]} options.badheaders + * @param {function} options.conditionally + * @param {boolean} options.encodedQueryParams + * @param {function} options.filteringScope + * @param {Object} options.reqheaders + * @constructor + */ +class Scope extends EventEmitter { + constructor(basePath, options) { + super() + + this.keyedInterceptors = {} + this.interceptors = [] + this.transformPathFunction = null + this.transformRequestBodyFunction = null + this.matchHeaders = [] + this.logger = debug + this.scopeOptions = options || {} + this.urlParts = {} + this._persist = false + this.contentLen = false + this.date = null + this.basePath = basePath + this.basePathname = '' + this.port = null + this._defaultReplyHeaders = [] + + if (!(basePath instanceof RegExp)) { + this.urlParts = url.parse(basePath) + this.port = + this.urlParts.port || (this.urlParts.protocol === 'http:' ? 80 : 443) + this.basePathname = this.urlParts.pathname.replace(/\/$/, '') + this.basePath = `${this.urlParts.protocol}//${this.urlParts.hostname}:${this.port}` + } + } + + add(key, interceptor) { + if (!(key in this.keyedInterceptors)) { + this.keyedInterceptors[key] = [] + } + this.keyedInterceptors[key].push(interceptor) + addInterceptor( + this.basePath, + interceptor, + this, + this.scopeOptions, + this.urlParts.hostname + ) + } + + remove(key, interceptor) { + if (this._persist) { + return + } + const arr = this.keyedInterceptors[key] + if (arr) { + arr.splice(arr.indexOf(interceptor), 1) + if (arr.length === 0) { + delete this.keyedInterceptors[key] + } + } + } + + intercept(uri, method, requestBody, interceptorOptions) { + const ic = new Interceptor( + this, + uri, + method, + requestBody, + interceptorOptions + ) + + this.interceptors.push(ic) + return ic + } + + get(uri, requestBody, options) { + return this.intercept(uri, 'GET', requestBody, options) + } + + post(uri, requestBody, options) { + return this.intercept(uri, 'POST', requestBody, options) + } + + put(uri, requestBody, options) { + return this.intercept(uri, 'PUT', requestBody, options) + } + + head(uri, requestBody, options) { + return this.intercept(uri, 'HEAD', requestBody, options) + } + + patch(uri, requestBody, options) { + return this.intercept(uri, 'PATCH', requestBody, options) + } + + merge(uri, requestBody, options) { + return this.intercept(uri, 'MERGE', requestBody, options) + } + + delete(uri, requestBody, options) { + return this.intercept(uri, 'DELETE', requestBody, options) + } + + options(uri, requestBody, options) { + return this.intercept(uri, 'OPTIONS', requestBody, options) + } + + // Returns the list of keys for non-optional Interceptors that haven't been completed yet. + // TODO: This assumes that completed mocks are removed from the keyedInterceptors list + // (when persistence is off). We should change that (and this) in future. + pendingMocks() { + return this.activeMocks().filter(key => + this.keyedInterceptors[key].some(({ interceptionCounter, optional }) => { + const persistedAndUsed = this._persist && interceptionCounter > 0 + return !persistedAndUsed && !optional + }) + ) + } + + // Returns all keyedInterceptors that are active. + // This includes incomplete interceptors, persisted but complete interceptors, and + // optional interceptors, but not non-persisted and completed interceptors. + activeMocks() { + return Object.keys(this.keyedInterceptors) + } + + isDone() { + if (!isOn()) { + return true + } + + return this.pendingMocks().length === 0 + } + + done() { + assert.ok( + this.isDone(), + `Mocks not yet satisfied:\n${this.pendingMocks().join('\n')}` + ) + } + + buildFilter() { + const filteringArguments = arguments + + if (arguments[0] instanceof RegExp) { + return function(candidate) { + /* istanbul ignore if */ + if (typeof candidate !== 'string') { + // Given the way nock is written, it seems like `candidate` will always + // be a string, regardless of what options might be passed to it. + // However the code used to contain a truthiness test of `candidate`. + // The check is being preserved for now. + throw Error( + `Nock internal assertion failed: typeof candidate is ${typeof candidate}. If you encounter this error, please report it as a bug.` + ) + } + return candidate.replace(filteringArguments[0], filteringArguments[1]) + } + } else if (typeof arguments[0] === 'function') { + return arguments[0] + } + } + + filteringPath() { + this.transformPathFunction = this.buildFilter.apply(this, arguments) + if (!this.transformPathFunction) { + throw new Error( + 'Invalid arguments: filtering path should be a function or a regular expression' + ) + } + return this + } + + filteringRequestBody() { + this.transformRequestBodyFunction = this.buildFilter.apply(this, arguments) + if (!this.transformRequestBodyFunction) { + throw new Error( + 'Invalid arguments: filtering request body should be a function or a regular expression' + ) + } + return this + } + + matchHeader(name, value) { + // We use lower-case header field names throughout Nock. + this.matchHeaders.push({ name: name.toLowerCase(), value }) + return this + } + + defaultReplyHeaders(headers) { + this._defaultReplyHeaders = common.headersInputToRawArray(headers) + return this + } + + log(newLogger) { + this.logger = newLogger + return this + } + + persist(flag = true) { + if (typeof flag !== 'boolean') { + throw new Error('Invalid arguments: argument should be a boolean') + } + this._persist = flag + return this + } + + /** + * @private + * @returns {boolean} + */ + shouldPersist() { + return this._persist + } + + replyContentLength() { + this.contentLen = true + return this + } + + replyDate(d) { + this.date = d || new Date() + return this + } +} + +function loadDefs(path) { + if (!fs) { + throw new Error('No fs') + } + + const contents = fs.readFileSync(path) + return JSON.parse(contents) +} + +function load(path) { + return define(loadDefs(path)) +} + +function getStatusFromDefinition(nockDef) { + // Backward compatibility for when `status` was encoded as string in `reply`. + if (nockDef.reply !== undefined) { + const parsedReply = parseInt(nockDef.reply, 10) + if (isNaN(parsedReply)) { + throw Error('`reply`, when present, must be a numeric string') + } + + return parsedReply + } + + const DEFAULT_STATUS_OK = 200 + return nockDef.status || DEFAULT_STATUS_OK +} + +function getScopeFromDefinition(nockDef) { + // Backward compatibility for when `port` was part of definition. + if (nockDef.port !== undefined) { + // Include `port` into scope if it doesn't exist. + const options = url.parse(nockDef.scope) + if (options.port === null) { + return `${nockDef.scope}:${nockDef.port}` + } else { + if (parseInt(options.port) !== parseInt(nockDef.port)) { + throw new Error( + 'Mismatched port numbers in scope and port properties of nock definition.' + ) + } + } + } + + return nockDef.scope +} + +function tryJsonParse(string) { + try { + return JSON.parse(string) + } catch (err) { + return string + } +} + +// Use a noop deprecate util instead calling emitWarning directly so we get --no-deprecation and single warning behavior for free. +const emitAsteriskDeprecation = util.deprecate( + () => {}, + 'Skipping body matching using "*" is deprecated. Set the definition body to undefined instead.', + 'NOCK1579' +) + +function define(nockDefs) { + const scopes = [] + + nockDefs.forEach(function(nockDef) { + const nscope = getScopeFromDefinition(nockDef) + const npath = nockDef.path + if (!nockDef.method) { + throw Error('Method is required') + } + const method = nockDef.method.toLowerCase() + const status = getStatusFromDefinition(nockDef) + const rawHeaders = nockDef.rawHeaders || [] + const reqheaders = nockDef.reqheaders || {} + const badheaders = nockDef.badheaders || [] + const options = { ...nockDef.options } + + // We use request headers for both filtering (see below) and mocking. + // Here we are setting up mocked request headers but we don't want to + // be changing the user's options object so we clone it first. + options.reqheaders = reqheaders + options.badheaders = badheaders + + let { body } = nockDef + + if (body === '*') { + // In previous versions, it was impossible to NOT filter on request bodies. This special value + // is sniffed out for users manipulating the definitions and not wanting to match on the + // request body. For newer versions, users should remove the `body` key or set to `undefined` + // to achieve the same affect. Maintaining legacy behavior for now. + emitAsteriskDeprecation() + body = undefined + } + + // Response is not always JSON as it could be a string or binary data or + // even an array of binary buffers (e.g. when content is encoded). + let response + if (!nockDef.response) { + response = '' + // TODO: Rename `responseIsBinary` to `reponseIsUtf8Representable`. + } else if (nockDef.responseIsBinary) { + response = Buffer.from(nockDef.response, 'hex') + } else { + response = + typeof nockDef.response === 'string' + ? tryJsonParse(nockDef.response) + : nockDef.response + } + + const scope = new Scope(nscope, options) + + // If request headers were specified filter by them. + Object.entries(reqheaders).forEach(([fieldName, value]) => { + scope.matchHeader(fieldName, value) + }) + + const acceptableFilters = ['filteringRequestBody', 'filteringPath'] + acceptableFilters.forEach(filter => { + if (nockDef[filter]) { + scope[filter](nockDef[filter]) + } + }) + + scope.intercept(npath, method, body).reply(status, response, rawHeaders) + + scopes.push(scope) + }) + + return scopes +} + +module.exports = { + Scope, + load, + loadDefs, + define, +} diff --git a/node_modules/nock/lib/socket.js b/node_modules/nock/lib/socket.js new file mode 100644 index 000000000..02f0cb7bd --- /dev/null +++ b/node_modules/nock/lib/socket.js @@ -0,0 +1,80 @@ +'use strict' + +const { EventEmitter } = require('events') +const debug = require('debug')('nock.socket') + +module.exports = class Socket extends EventEmitter { + constructor(options) { + super() + + if (options.proto === 'https') { + // https://github.com/nock/nock/issues/158 + this.authorized = true + } + + this.bufferSize = 0 + this.writableLength = 0 + this.writable = true + this.readable = true + this.pending = false + this.destroyed = false + this.connecting = false + + // totalDelay that has already been applied to the current + // request/connection, timeout error will be generated if + // it is timed-out. + this.totalDelayMs = 0 + // Maximum allowed delay. Null means unlimited. + this.timeoutMs = null + + const ipv6 = options.family === 6 + this.remoteFamily = ipv6 ? 'IPv6' : 'IPv4' + this.localAddress = this.remoteAddress = ipv6 ? '::1' : '127.0.0.1' + this.localPort = this.remotePort = parseInt(options.port) + } + + setNoDelay() {} + setKeepAlive() {} + resume() {} + ref() {} + unref() {} + + address() { + return { + port: this.remotePort, + family: this.remoteFamily, + address: this.remoteAddress, + } + } + + setTimeout(timeoutMs, fn) { + this.timeoutMs = timeoutMs + if (fn) { + this.once('timeout', fn) + } + } + + applyDelay(delayMs) { + this.totalDelayMs += delayMs + + if (this.timeoutMs && this.totalDelayMs > this.timeoutMs) { + debug('socket timeout') + this.emit('timeout') + } + } + + getPeerCertificate() { + return Buffer.from( + (Math.random() * 10000 + Date.now()).toString() + ).toString('base64') + } + + destroy(err) { + this.destroyed = true + this.readable = this.writable = false + if (err) { + this.emit('error', err) + } + return this + } +} diff --git a/node_modules/nock/package.json b/node_modules/nock/package.json new file mode 100644 index 000000000..2f2ee7d72 --- /dev/null +++ b/node_modules/nock/package.json @@ -0,0 +1,117 @@ +{ + "_from": "nock", + "_id": "nock@12.0.3", + "_inBundle": false, + "_integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==", + "_location": "/nock", + "_phantomChildren": {}, + "_requested": { + "type": "tag", + "registry": true, + "raw": "nock", + "name": "nock", + "escapedName": "nock", + "rawSpec": "", + "saveSpec": null, + "fetchSpec": "latest" + }, + "_requiredBy": [ + "#DEV:/", + "#USER", + "/@types/nock" + ], + "_resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz", + "_shasum": "83f25076dbc4c9aa82b5cdf54c9604c7a778d1c9", + "_spec": "nock", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com" + }, + "bugs": { + "url": "http://github.com/nock/nock/issues" + }, + "bundleDependencies": false, + "dependencies": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.13", + "propagate": "^2.0.0" + }, + "deprecated": false, + "description": "HTTP server mocking and expectations library for Node.js", + "devDependencies": { + "@sinonjs/fake-timers": "^6.0.0", + "assert-rejects": "^1.0.0", + "chai": "^4.1.2", + "dirty-chai": "^2.0.1", + "dtslint": "^3.0.0", + "eslint": "^6.0.0", + "eslint-config-prettier": "^6.0.0", + "eslint-config-standard": "^14.0.0", + "eslint-plugin-import": "^2.16.0", + "eslint-plugin-mocha": "^6.2.0", + "eslint-plugin-node": "^11.0.0", + "eslint-plugin-promise": "^4.1.1", + "eslint-plugin-standard": "^4.0.0", + "got": "^10.5.2", + "mocha": "^7.0.1", + "npm-run-all": "^4.1.5", + "nyc": "^15.0.0", + "prettier": "1.19.0", + "proxyquire": "^2.1.0", + "request": "^2.83.0", + "rimraf": "^3.0.0", + "semantic-release": "^17.0.2", + "sinon": "^9.0.0", + "sinon-chai": "^3.3.0", + "superagent": "^5.0.2", + "tap": "14.6.1" + }, + "engines": { + "node": ">= 10.13" + }, + "files": [ + "index.js", + "lib", + "types/index.d.ts" + ], + "homepage": "https://github.com/nock/nock#readme", + "license": "MIT", + "main": "./index.js", + "name": "nock", + "nyc": { + "reporter": [ + "lcov", + "text-summary" + ], + "exclude": [ + "tests/" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/nock/nock.git" + }, + "scripts": { + "format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'", + "format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'", + "lint": "run-p lint:js lint:ts", + "lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'", + "lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'", + "lint:ts": "dtslint types", + "semantic-release": "semantic-release", + "test": "run-s test:mocha test:tap", + "test:coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html", + "test:mocha": "nyc mocha $(grep -lr '^\\s*it(' tests)", + "test:tap": "tap --100 --coverage --coverage-report=text ./tests/test_*.js" + }, + "tags": [ + "Mock", + "HTTP", + "testing", + "isolation" + ], + "types": "types", + "version": "12.0.3" +} diff --git a/node_modules/nock/types/index.d.ts b/node_modules/nock/types/index.d.ts new file mode 100644 index 000000000..5d93ebc48 --- /dev/null +++ b/node_modules/nock/types/index.d.ts @@ -0,0 +1,278 @@ +// TypeScript Version: 3.5 + +import { ReadStream } from 'fs' +import { ClientRequest, IncomingMessage, RequestOptions } from 'http' +import { ParsedUrlQuery } from 'querystring' +import { Url, URLSearchParams } from 'url' + +export = nock + +declare function nock( + basePath: string | RegExp | Url, + options?: nock.Options +): nock.Scope + +declare namespace nock { + function cleanAll(): void + function activate(): void + function isActive(): boolean + function isDone(): boolean + function pendingMocks(): string[] + function activeMocks(): string[] + function removeInterceptor(interceptor: Interceptor | ReqOptions): boolean + function disableNetConnect(): void + function enableNetConnect( + matcher?: string | RegExp | ((host: string) => boolean) + ): void + function load(path: string): Scope[] + function loadDefs(path: string): Definition[] + function define(defs: Definition[]): Scope[] + function restore(): void + function abortPendingRequests(): void + + let back: Back + let emitter: NodeJS.EventEmitter + let recorder: Recorder + + type InterceptFunction = ( + uri: string | RegExp | { (uri: string): boolean }, + requestBody?: RequestBodyMatcher, + interceptorOptions?: Options + ) => Interceptor + + // Essentially valid, decoded JSON with the addition of possible RegExp. TS doesn't currently have + // a great way to represent JSON type data, this data matcher design is based off this comment. + // https://github.com/microsoft/TypeScript/issues/1897#issuecomment-338650717 + type DataMatcher = + | boolean + | number + | string + | null + | undefined + | RegExp + | DataMatcherArray + | DataMatcherMap + interface DataMatcherArray extends Array {} + interface DataMatcherMap { + [key: string]: DataMatcher + } + + type RequestBodyMatcher = + | string + | Buffer + | RegExp + | DataMatcherArray + | DataMatcherMap + | { (body: any): boolean } + + type RequestHeaderMatcher = + | string + | RegExp + | { (fieldValue: string): boolean } + + type Body = string | Record // a string or decoded JSON + type ReplyBody = Body | Buffer | ReadStream + + type ReplyHeaderFunction = ( + req: ClientRequest, + res: IncomingMessage, + body: string | Buffer + ) => string | string[] + type ReplyHeaderValue = string | string[] | ReplyHeaderFunction + type ReplyHeaders = + | Record + | Map + | ReplyHeaderValue[] + + type StatusCode = number + type ReplyFnResult = + | readonly [StatusCode] + | readonly [StatusCode, ReplyBody] + | readonly [StatusCode, ReplyBody, ReplyHeaders] + + interface ReplyFnContext extends Interceptor { + req: ClientRequest & { + headers: Record + } + } + + interface Scope extends NodeJS.EventEmitter { + get: InterceptFunction + post: InterceptFunction + put: InterceptFunction + head: InterceptFunction + patch: InterceptFunction + merge: InterceptFunction + delete: InterceptFunction + options: InterceptFunction + + intercept: ( + uri: string | RegExp | { (uri: string): boolean }, + method: string, + requestBody?: RequestBodyMatcher, + options?: Options + ) => Interceptor + + defaultReplyHeaders(headers: ReplyHeaders): this + matchHeader(name: string, value: RequestHeaderMatcher): this + filteringPath(regex: RegExp, replace: string): this + filteringPath(fn: (path: string) => string): this + filteringRequestBody(regex: RegExp, replace: string): this + filteringRequestBody(fn: (body: string) => string): this + + log(out: (message: any, ...optionalParams: any[]) => void): this + persist(flag?: boolean): this + replyContentLength(): this + replyDate(d?: Date): this + + done(): void + isDone(): boolean + pendingMocks(): string[] + activeMocks(): string[] + } + + interface Interceptor { + query( + matcher: + | boolean + | string + | DataMatcherMap + | URLSearchParams + | { (parsedObj: ParsedUrlQuery): boolean } + ): this + + // tslint (as of 5.16) is under the impression that the callback types can be unified, + // however, doing so causes the params to lose their inherited types during use. + // the order of the overrides is important for determining the param types in the replay fns. + /* tslint:disable:unified-signatures */ + reply( + replyFnWithCallback: ( + this: ReplyFnContext, + uri: string, + body: Body, + callback: ( + err: NodeJS.ErrnoException | null, + result: ReplyFnResult + ) => void + ) => void + ): Scope + reply( + replyFn: ( + this: ReplyFnContext, + uri: string, + body: Body + ) => ReplyFnResult | Promise + ): Scope + reply( + statusCode: StatusCode, + replyBodyFnWithCallback: ( + this: ReplyFnContext, + uri: string, + body: Body, + callback: (err: NodeJS.ErrnoException | null, result: ReplyBody) => void + ) => void, + headers?: ReplyHeaders + ): Scope + reply( + statusCode: StatusCode, + replyBodyFn: ( + this: ReplyFnContext, + uri: string, + body: Body + ) => ReplyBody | Promise, + headers?: ReplyHeaders + ): Scope + reply(responseCode?: StatusCode, body?: Body, headers?: ReplyHeaders): Scope + /* tslint:enable:unified-signatures */ + + replyWithError(errorMessage: string | object): Scope + replyWithFile( + statusCode: StatusCode, + fileName: string, + headers?: ReplyHeaders + ): Scope + + matchHeader(name: string, value: RequestHeaderMatcher): this + basicAuth(options: { user: string; pass?: string }): this + + times(newCounter: number): this + once(): this + twice(): this + thrice(): this + optionally(): this + + delay(opts: number | { head?: number; body?: number }): this + delayBody(timeMs: number): this + delayConnection(timeMs: number): this + socketDelay(timeMs: number): this + } + + interface Options { + allowUnmocked?: boolean + reqheaders?: Record + badheaders?: string[] + filteringScope?: { (scope: string): boolean } + encodedQueryParams?: boolean + } + + interface Recorder { + rec(options?: boolean | RecorderOptions): void + clear(): void + play(): string[] | Definition[] + } + + interface RecorderOptions { + dont_print?: boolean + output_objects?: boolean + enable_reqheaders_recording?: boolean + logging?: (content: string) => void + use_separator?: boolean + } + + interface Definition { + scope: string + path: string + port?: number | string + method?: string + status?: number + body?: RequestBodyMatcher + reqheaders?: Record + response?: ReplyBody + headers?: ReplyHeaders + options?: Options + } + + type BackMode = 'wild' | 'dryrun' | 'record' | 'lockdown' + + interface Back { + currentMode: BackMode + fixtures: string + setMode(mode: BackMode): void + + (fixtureName: string, nockedFn: (nockDone: () => void) => void): void + ( + fixtureName: string, + options: BackOptions, + nockedFn: (nockDone: () => void) => void + ): void + (fixtureName: string, options?: BackOptions): Promise<{ + nockDone: () => void + context: BackContext + }> + } + + interface BackContext { + isLoaded: boolean + scopes: Scope[] + assertScopesFinished(): void + } + + interface BackOptions { + before?: (def: Definition) => void + after?: (scope: Scope) => void + afterRecord?: (defs: Definition[]) => Definition[] + recorder?: RecorderOptions + } +} + +type ReqOptions = RequestOptions & { proto?: string } diff --git a/node_modules/node-fetch/package.json b/node_modules/node-fetch/package.json index 78a30d35a..2a6b2f547 100644 --- a/node_modules/node-fetch/package.json +++ b/node_modules/node-fetch/package.json @@ -1,41 +1,41 @@ { - "name": "node-fetch", - "version": "2.6.0", - "description": "A light-weight module that brings window.fetch to node.js", - "main": "lib/index", - "browser": "./browser.js", - "module": "lib/index.mjs", - "files": [ - "lib/index.js", - "lib/index.mjs", - "lib/index.es.js", - "browser.js" + "_args": [ + [ + "node-fetch@2.6.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": "4.x || >=6.0.0" - }, - "scripts": { - "build": "cross-env BABEL_ENV=rollup rollup -c", - "prepare": "npm run build", - "test": "cross-env BABEL_ENV=test mocha --require babel-register --throw-deprecation test/test.js", - "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js", - "coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json" + "_from": "node-fetch@2.6.0", + "_id": "node-fetch@2.6.0", + "_inBundle": false, + "_integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==", + "_location": "/node-fetch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "node-fetch@2.6.0", + "name": "node-fetch", + "escapedName": "node-fetch", + "rawSpec": "2.6.0", + "saveSpec": null, + "fetchSpec": "2.6.0" }, - "repository": { - "type": "git", - "url": "https://github.com/bitinn/node-fetch.git" - }, - "keywords": [ - "fetch", - "http", - "promise" + "_requiredBy": [ + "/@octokit/request" ], - "author": "David Frank", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", + "_spec": "2.6.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "David Frank" + }, + "browser": "./browser.js", "bugs": { "url": "https://github.com/bitinn/node-fetch/issues" }, - "homepage": "https://github.com/bitinn/node-fetch", + "dependencies": {}, + "description": "A light-weight module that brings window.fetch to node.js", "devDependencies": { "@ungap/url-search-params": "^0.1.2", "abort-controller": "^1.1.0", @@ -62,5 +62,35 @@ "string-to-arraybuffer": "^1.0.2", "whatwg-url": "^5.0.0" }, - "dependencies": {} -} \ No newline at end of file + "engines": { + "node": "4.x || >=6.0.0" + }, + "files": [ + "lib/index.js", + "lib/index.mjs", + "lib/index.es.js", + "browser.js" + ], + "homepage": "https://github.com/bitinn/node-fetch", + "keywords": [ + "fetch", + "http", + "promise" + ], + "license": "MIT", + "main": "lib/index", + "module": "lib/index.mjs", + "name": "node-fetch", + "repository": { + "type": "git", + "url": "git+https://github.com/bitinn/node-fetch.git" + }, + "scripts": { + "build": "cross-env BABEL_ENV=rollup rollup -c", + "coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json", + "prepare": "npm run build", + "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js", + "test": "cross-env BABEL_ENV=test mocha --require babel-register --throw-deprecation test/test.js" + }, + "version": "2.6.0" +} diff --git a/node_modules/normalize-package-data/node_modules/.bin/semver b/node_modules/normalize-package-data/node_modules/.bin/semver new file mode 120000 index 000000000..317eb293d --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/.bin/semver @@ -0,0 +1 @@ +../semver/bin/semver \ No newline at end of file diff --git a/node_modules/normalize-package-data/node_modules/semver/CHANGELOG.md b/node_modules/normalize-package-data/node_modules/semver/CHANGELOG.md new file mode 100644 index 000000000..66304fdd2 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/CHANGELOG.md @@ -0,0 +1,39 @@ +# changes log + +## 5.7 + +* Add `minVersion` method + +## 5.6 + +* Move boolean `loose` param to an options object, with + backwards-compatibility protection. +* Add ability to opt out of special prerelease version handling with + the `includePrerelease` option flag. + +## 5.5 + +* Add version coercion capabilities + +## 5.4 + +* Add intersection checking + +## 5.3 + +* Add `minSatisfying` method + +## 5.2 + +* Add `prerelease(v)` that returns prerelease components + +## 5.1 + +* Add Backus-Naur for ranges +* Remove excessively cute inspection methods + +## 5.0 + +* Remove AMD/Browserified build artifacts +* Fix ltr and gtr when using the `*` range +* Fix for range `*` with a prerelease identifier diff --git a/node_modules/normalize-package-data/node_modules/semver/LICENSE b/node_modules/normalize-package-data/node_modules/semver/LICENSE new file mode 100644 index 000000000..19129e315 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/normalize-package-data/node_modules/semver/README.md b/node_modules/normalize-package-data/node_modules/semver/README.md new file mode 100644 index 000000000..f8dfa5a0d --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/README.md @@ -0,0 +1,412 @@ +semver(1) -- The semantic versioner for npm +=========================================== + +## Install + +```bash +npm install --save semver +```` + +## Usage + +As a node module: + +```js +const semver = require('semver') + +semver.valid('1.2.3') // '1.2.3' +semver.valid('a.b.c') // null +semver.clean(' =v1.2.3 ') // '1.2.3' +semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true +semver.gt('1.2.3', '9.8.7') // false +semver.lt('1.2.3', '9.8.7') // true +semver.minVersion('>=1.0.0') // '1.0.0' +semver.valid(semver.coerce('v2')) // '2.0.0' +semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7' +``` + +As a command-line utility: + +``` +$ semver -h + +A JavaScript implementation of the https://semver.org/ specification +Copyright Isaac Z. Schlueter + +Usage: semver [options] [ [...]] +Prints valid versions sorted by SemVer precedence + +Options: +-r --range + Print versions that match the specified range. + +-i --increment [] + Increment a version by the specified level. Level can + be one of: major, minor, patch, premajor, preminor, + prepatch, or prerelease. Default level is 'patch'. + Only one version may be specified. + +--preid + Identifier to be used to prefix premajor, preminor, + prepatch or prerelease version increments. + +-l --loose + Interpret versions and ranges loosely + +-p --include-prerelease + Always include prerelease versions in range matching + +-c --coerce + Coerce a string into SemVer if possible + (does not imply --loose) + +Program exits successfully if any valid version satisfies +all supplied ranges, and prints all satisfying versions. + +If no satisfying versions are found, then exits failure. + +Versions are printed in ascending order, so supplying +multiple versions to the utility will just sort them. +``` + +## Versions + +A "version" is described by the `v2.0.0` specification found at +. + +A leading `"="` or `"v"` character is stripped off and ignored. + +## Ranges + +A `version range` is a set of `comparators` which specify versions +that satisfy the range. + +A `comparator` is composed of an `operator` and a `version`. The set +of primitive `operators` is: + +* `<` Less than +* `<=` Less than or equal to +* `>` Greater than +* `>=` Greater than or equal to +* `=` Equal. If no operator is specified, then equality is assumed, + so this operator is optional, but MAY be included. + +For example, the comparator `>=1.2.7` would match the versions +`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6` +or `1.1.0`. + +Comparators can be joined by whitespace to form a `comparator set`, +which is satisfied by the **intersection** of all of the comparators +it includes. + +A range is composed of one or more comparator sets, joined by `||`. A +version matches a range if and only if every comparator in at least +one of the `||`-separated comparator sets is satisfied by the version. + +For example, the range `>=1.2.7 <1.3.0` would match the versions +`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`, +or `1.1.0`. + +The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`, +`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`. + +### Prerelease Tags + +If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then +it will only be allowed to satisfy comparator sets if at least one +comparator with the same `[major, minor, patch]` tuple also has a +prerelease tag. + +For example, the range `>1.2.3-alpha.3` would be allowed to match the +version `1.2.3-alpha.7`, but it would *not* be satisfied by +`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater +than" `1.2.3-alpha.3` according to the SemVer sort rules. The version +range only accepts prerelease tags on the `1.2.3` version. The +version `3.4.5` *would* satisfy the range, because it does not have a +prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`. + +The purpose for this behavior is twofold. First, prerelease versions +frequently are updated very quickly, and contain many breaking changes +that are (by the author's design) not yet fit for public consumption. +Therefore, by default, they are excluded from range matching +semantics. + +Second, a user who has opted into using a prerelease version has +clearly indicated the intent to use *that specific* set of +alpha/beta/rc versions. By including a prerelease tag in the range, +the user is indicating that they are aware of the risk. However, it +is still not appropriate to assume that they have opted into taking a +similar risk on the *next* set of prerelease versions. + +Note that this behavior can be suppressed (treating all prerelease +versions as if they were normal versions, for the purpose of range +matching) by setting the `includePrerelease` flag on the options +object to any +[functions](https://github.com/npm/node-semver#functions) that do +range matching. + +#### Prerelease Identifiers + +The method `.inc` takes an additional `identifier` string argument that +will append the value of the string as a prerelease identifier: + +```javascript +semver.inc('1.2.3', 'prerelease', 'beta') +// '1.2.4-beta.0' +``` + +command-line example: + +```bash +$ semver 1.2.3 -i prerelease --preid beta +1.2.4-beta.0 +``` + +Which then can be used to increment further: + +```bash +$ semver 1.2.4-beta.0 -i prerelease +1.2.4-beta.1 +``` + +### Advanced Range Syntax + +Advanced range syntax desugars to primitive comparators in +deterministic ways. + +Advanced ranges may be combined in the same way as primitive +comparators using white space or `||`. + +#### Hyphen Ranges `X.Y.Z - A.B.C` + +Specifies an inclusive set. + +* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4` + +If a partial version is provided as the first version in the inclusive +range, then the missing pieces are replaced with zeroes. + +* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4` + +If a partial version is provided as the second version in the +inclusive range, then all versions that start with the supplied parts +of the tuple are accepted, but nothing that would be greater than the +provided tuple parts. + +* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` +* `1.2.3 - 2` := `>=1.2.3 <3.0.0` + +#### X-Ranges `1.2.x` `1.X` `1.2.*` `*` + +Any of `X`, `x`, or `*` may be used to "stand in" for one of the +numeric values in the `[major, minor, patch]` tuple. + +* `*` := `>=0.0.0` (Any version satisfies) +* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) +* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) + +A partial version range is treated as an X-Range, so the special +character is in fact optional. + +* `""` (empty string) := `*` := `>=0.0.0` +* `1` := `1.x.x` := `>=1.0.0 <2.0.0` +* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` + +#### Tilde Ranges `~1.2.3` `~1.2` `~1` + +Allows patch-level changes if a minor version is specified on the +comparator. Allows minor-level changes if not. + +* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` +* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) +* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) +* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` +* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) +* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) +* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. + +#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` + +Allows changes that do not modify the left-most non-zero digit in the +`[major, minor, patch]` tuple. In other words, this allows patch and +minor updates for versions `1.0.0` and above, patch updates for +versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. + +Many authors treat a `0.x` version as if the `x` were the major +"breaking-change" indicator. + +Caret ranges are ideal when an author may make breaking changes +between `0.2.4` and `0.3.0` releases, which is a common practice. +However, it presumes that there will *not* be breaking changes between +`0.2.4` and `0.2.5`. It allows for changes that are presumed to be +additive (but non-breaking), according to commonly observed practices. + +* `^1.2.3` := `>=1.2.3 <2.0.0` +* `^0.2.3` := `>=0.2.3 <0.3.0` +* `^0.0.3` := `>=0.0.3 <0.0.4` +* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. +* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the + `0.0.3` version *only* will be allowed, if they are greater than or + equal to `beta`. So, `0.0.3-pr.2` would be allowed. + +When parsing caret ranges, a missing `patch` value desugars to the +number `0`, but will allow flexibility within that value, even if the +major and minor versions are both `0`. + +* `^1.2.x` := `>=1.2.0 <2.0.0` +* `^0.0.x` := `>=0.0.0 <0.1.0` +* `^0.0` := `>=0.0.0 <0.1.0` + +A missing `minor` and `patch` values will desugar to zero, but also +allow flexibility within those values, even if the major version is +zero. + +* `^1.x` := `>=1.0.0 <2.0.0` +* `^0.x` := `>=0.0.0 <1.0.0` + +### Range Grammar + +Putting all this together, here is a Backus-Naur grammar for ranges, +for the benefit of parser authors: + +```bnf +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ +``` + +## Functions + +All methods and classes take a final `options` object argument. All +options in this object are `false` by default. The options supported +are: + +- `loose` Be more forgiving about not-quite-valid semver strings. + (Any resulting output will always be 100% strict compliant, of + course.) For backwards compatibility reasons, if the `options` + argument is a boolean value instead of an object, it is interpreted + to be the `loose` param. +- `includePrerelease` Set to suppress the [default + behavior](https://github.com/npm/node-semver#prerelease-tags) of + excluding prerelease tagged versions from ranges unless they are + explicitly opted into. + +Strict-mode Comparators and Ranges will be strict about the SemVer +strings that they parse. + +* `valid(v)`: Return the parsed version, or null if it's not valid. +* `inc(v, release)`: Return the version incremented by the release + type (`major`, `premajor`, `minor`, `preminor`, `patch`, + `prepatch`, or `prerelease`), or null if it's not valid + * `premajor` in one call will bump the version up to the next major + version and down to a prerelease of that major version. + `preminor`, and `prepatch` work the same way. + * If called from a non-prerelease version, the `prerelease` will work the + same as `prepatch`. It increments the patch version, then makes a + prerelease. If the input version is already a prerelease it simply + increments it. +* `prerelease(v)`: Returns an array of prerelease components, or null + if none exist. Example: `prerelease('1.2.3-alpha.1') -> ['alpha', 1]` +* `major(v)`: Return the major version number. +* `minor(v)`: Return the minor version number. +* `patch(v)`: Return the patch version number. +* `intersects(r1, r2, loose)`: Return true if the two supplied ranges + or comparators intersect. +* `parse(v)`: Attempt to parse a string as a semantic version, returning either + a `SemVer` object or `null`. + +### Comparison + +* `gt(v1, v2)`: `v1 > v2` +* `gte(v1, v2)`: `v1 >= v2` +* `lt(v1, v2)`: `v1 < v2` +* `lte(v1, v2)`: `v1 <= v2` +* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent, + even if they're not the exact same string. You already know how to + compare strings. +* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`. +* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call + the corresponding function above. `"==="` and `"!=="` do simple + string comparison, but are included for completeness. Throws if an + invalid comparison string is provided. +* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if + `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. +* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions + in descending order when passed to `Array.sort()`. +* `diff(v1, v2)`: Returns difference between two versions by the release type + (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), + or null if the versions are the same. + +### Comparators + +* `intersects(comparator)`: Return true if the comparators intersect + +### Ranges + +* `validRange(range)`: Return the valid range or null if it's not valid +* `satisfies(version, range)`: Return true if the version satisfies the + range. +* `maxSatisfying(versions, range)`: Return the highest version in the list + that satisfies the range, or `null` if none of them do. +* `minSatisfying(versions, range)`: Return the lowest version in the list + that satisfies the range, or `null` if none of them do. +* `minVersion(range)`: Return the lowest version that can possibly match + the given range. +* `gtr(version, range)`: Return `true` if version is greater than all the + versions possible in the range. +* `ltr(version, range)`: Return `true` if version is less than all the + versions possible in the range. +* `outside(version, range, hilo)`: Return true if the version is outside + the bounds of the range in either the high or low direction. The + `hilo` argument must be either the string `'>'` or `'<'`. (This is + the function called by `gtr` and `ltr`.) +* `intersects(range)`: Return true if any of the ranges comparators intersect + +Note that, since ranges may be non-contiguous, a version might not be +greater than a range, less than a range, *or* satisfy a range! For +example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9` +until `2.0.0`, so the version `1.2.10` would not be greater than the +range (because `2.0.1` satisfies, which is higher), nor less than the +range (since `1.2.8` satisfies, which is lower), and it also does not +satisfy the range. + +If you want to know if a version satisfies or does not satisfy a +range, use the `satisfies(version, range)` function. + +### Coercion + +* `coerce(version)`: Coerces a string to semver if possible + +This aims to provide a very forgiving translation of a non-semver string to +semver. It looks for the first digit in a string, and consumes all +remaining characters which satisfy at least a partial semver (e.g., `1`, +`1.2`, `1.2.3`) up to the max permitted length (256 characters). Longer +versions are simply truncated (`4.6.3.9.2-alpha2` becomes `4.6.3`). All +surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes +`3.4.0`). Only text which lacks digits will fail coercion (`version one` +is not valid). The maximum length for any semver component considered for +coercion is 16 characters; longer components will be ignored +(`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any +semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value +components are invalid (`9999999999999999.4.7.4` is likely invalid). diff --git a/node_modules/normalize-package-data/node_modules/semver/bin/semver b/node_modules/normalize-package-data/node_modules/semver/bin/semver new file mode 100755 index 000000000..801e77f13 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/bin/semver @@ -0,0 +1,160 @@ +#!/usr/bin/env node +// Standalone semver comparison program. +// Exits successfully and prints matching version(s) if +// any supplied version is valid and passes all tests. + +var argv = process.argv.slice(2) + +var versions = [] + +var range = [] + +var inc = null + +var version = require('../package.json').version + +var loose = false + +var includePrerelease = false + +var coerce = false + +var identifier + +var semver = require('../semver') + +var reverse = false + +var options = {} + +main() + +function main () { + if (!argv.length) return help() + while (argv.length) { + var a = argv.shift() + var indexOfEqualSign = a.indexOf('=') + if (indexOfEqualSign !== -1) { + a = a.slice(0, indexOfEqualSign) + argv.unshift(a.slice(indexOfEqualSign + 1)) + } + switch (a) { + case '-rv': case '-rev': case '--rev': case '--reverse': + reverse = true + break + case '-l': case '--loose': + loose = true + break + case '-p': case '--include-prerelease': + includePrerelease = true + break + case '-v': case '--version': + versions.push(argv.shift()) + break + case '-i': case '--inc': case '--increment': + switch (argv[0]) { + case 'major': case 'minor': case 'patch': case 'prerelease': + case 'premajor': case 'preminor': case 'prepatch': + inc = argv.shift() + break + default: + inc = 'patch' + break + } + break + case '--preid': + identifier = argv.shift() + break + case '-r': case '--range': + range.push(argv.shift()) + break + case '-c': case '--coerce': + coerce = true + break + case '-h': case '--help': case '-?': + return help() + default: + versions.push(a) + break + } + } + + var options = { loose: loose, includePrerelease: includePrerelease } + + versions = versions.map(function (v) { + return coerce ? (semver.coerce(v) || { version: v }).version : v + }).filter(function (v) { + return semver.valid(v) + }) + if (!versions.length) return fail() + if (inc && (versions.length !== 1 || range.length)) { return failInc() } + + for (var i = 0, l = range.length; i < l; i++) { + versions = versions.filter(function (v) { + return semver.satisfies(v, range[i], options) + }) + if (!versions.length) return fail() + } + return success(versions) +} + +function failInc () { + console.error('--inc can only be used on a single version with no range') + fail() +} + +function fail () { process.exit(1) } + +function success () { + var compare = reverse ? 'rcompare' : 'compare' + versions.sort(function (a, b) { + return semver[compare](a, b, options) + }).map(function (v) { + return semver.clean(v, options) + }).map(function (v) { + return inc ? semver.inc(v, inc, options, identifier) : v + }).forEach(function (v, i, _) { console.log(v) }) +} + +function help () { + console.log(['SemVer ' + version, + '', + 'A JavaScript implementation of the https://semver.org/ specification', + 'Copyright Isaac Z. Schlueter', + '', + 'Usage: semver [options] [ [...]]', + 'Prints valid versions sorted by SemVer precedence', + '', + 'Options:', + '-r --range ', + ' Print versions that match the specified range.', + '', + '-i --increment []', + ' Increment a version by the specified level. Level can', + ' be one of: major, minor, patch, premajor, preminor,', + " prepatch, or prerelease. Default level is 'patch'.", + ' Only one version may be specified.', + '', + '--preid ', + ' Identifier to be used to prefix premajor, preminor,', + ' prepatch or prerelease version increments.', + '', + '-l --loose', + ' Interpret versions and ranges loosely', + '', + '-p --include-prerelease', + ' Always include prerelease versions in range matching', + '', + '-c --coerce', + ' Coerce a string into SemVer if possible', + ' (does not imply --loose)', + '', + 'Program exits successfully if any valid version satisfies', + 'all supplied ranges, and prints all satisfying versions.', + '', + 'If no satisfying versions are found, then exits failure.', + '', + 'Versions are printed in ascending order, so supplying', + 'multiple versions to the utility will just sort them.' + ].join('\n')) +} diff --git a/node_modules/normalize-package-data/node_modules/semver/package.json b/node_modules/normalize-package-data/node_modules/semver/package.json new file mode 100644 index 000000000..c3111c358 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/package.json @@ -0,0 +1,60 @@ +{ + "_from": "semver@2 || 3 || 4 || 5", + "_id": "semver@5.7.1", + "_inBundle": false, + "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "_location": "/normalize-package-data/semver", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "semver@2 || 3 || 4 || 5", + "name": "semver", + "escapedName": "semver", + "rawSpec": "2 || 3 || 4 || 5", + "saveSpec": null, + "fetchSpec": "2 || 3 || 4 || 5" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", + "_spec": "semver@2 || 3 || 4 || 5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/normalize-package-data", + "bin": { + "semver": "bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.1" +} diff --git a/node_modules/normalize-package-data/node_modules/semver/range.bnf b/node_modules/normalize-package-data/node_modules/semver/range.bnf new file mode 100644 index 000000000..d4c6ae0d7 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/range.bnf @@ -0,0 +1,16 @@ +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | [1-9] ( [0-9] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ diff --git a/node_modules/normalize-package-data/node_modules/semver/semver.js b/node_modules/normalize-package-data/node_modules/semver/semver.js new file mode 100644 index 000000000..d315d5d68 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/semver.js @@ -0,0 +1,1483 @@ +exports = module.exports = SemVer + +var debug +/* istanbul ignore next */ +if (typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG)) { + debug = function () { + var args = Array.prototype.slice.call(arguments, 0) + args.unshift('SEMVER') + console.log.apply(console, args) + } +} else { + debug = function () {} +} + +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +exports.SEMVER_SPEC_VERSION = '2.0.0' + +var MAX_LENGTH = 256 +var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || + /* istanbul ignore next */ 9007199254740991 + +// Max safe segment length for coercion. +var MAX_SAFE_COMPONENT_LENGTH = 16 + +// The actual regexps go on exports.re +var re = exports.re = [] +var src = exports.src = [] +var R = 0 + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +var NUMERICIDENTIFIER = R++ +src[NUMERICIDENTIFIER] = '0|[1-9]\\d*' +var NUMERICIDENTIFIERLOOSE = R++ +src[NUMERICIDENTIFIERLOOSE] = '[0-9]+' + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +var NONNUMERICIDENTIFIER = R++ +src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*' + +// ## Main Version +// Three dot-separated numeric identifiers. + +var MAINVERSION = R++ +src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')' + +var MAINVERSIONLOOSE = R++ +src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')' + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. + +var PRERELEASEIDENTIFIER = R++ +src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +var PRERELEASEIDENTIFIERLOOSE = R++ +src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +var PRERELEASE = R++ +src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + + '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))' + +var PRERELEASELOOSE = R++ +src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + + '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))' + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +var BUILDIDENTIFIER = R++ +src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+' + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +var BUILD = R++ +src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + + '(?:\\.' + src[BUILDIDENTIFIER] + ')*))' + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +var FULL = R++ +var FULLPLAIN = 'v?' + src[MAINVERSION] + + src[PRERELEASE] + '?' + + src[BUILD] + '?' + +src[FULL] = '^' + FULLPLAIN + '$' + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + + src[PRERELEASELOOSE] + '?' + + src[BUILD] + '?' + +var LOOSE = R++ +src[LOOSE] = '^' + LOOSEPLAIN + '$' + +var GTLT = R++ +src[GTLT] = '((?:<|>)?=?)' + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +var XRANGEIDENTIFIERLOOSE = R++ +src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*' +var XRANGEIDENTIFIER = R++ +src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*' + +var XRANGEPLAIN = R++ +src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:' + src[PRERELEASE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGEPLAINLOOSE = R++ +src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:' + src[PRERELEASELOOSE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGE = R++ +src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$' +var XRANGELOOSE = R++ +src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$' + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +var COERCE = R++ +src[COERCE] = '(?:^|[^\\d])' + + '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:$|[^\\d])' + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +var LONETILDE = R++ +src[LONETILDE] = '(?:~>?)' + +var TILDETRIM = R++ +src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+' +re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g') +var tildeTrimReplace = '$1~' + +var TILDE = R++ +src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$' +var TILDELOOSE = R++ +src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$' + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +var LONECARET = R++ +src[LONECARET] = '(?:\\^)' + +var CARETTRIM = R++ +src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+' +re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g') +var caretTrimReplace = '$1^' + +var CARET = R++ +src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$' +var CARETLOOSE = R++ +src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$' + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +var COMPARATORLOOSE = R++ +src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$' +var COMPARATOR = R++ +src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$' + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +var COMPARATORTRIM = R++ +src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + + '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')' + +// this one has to use the /g flag +re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g') +var comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +var HYPHENRANGE = R++ +src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAIN] + ')' + + '\\s*$' + +var HYPHENRANGELOOSE = R++ +src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s*$' + +// Star ranges basically just allow anything at all. +var STAR = R++ +src[STAR] = '(<|>)?=?\\s*\\*' + +// Compile to actual regexp objects. +// All are flag-free, unless they were created above with a flag. +for (var i = 0; i < R; i++) { + debug(i, src[i]) + if (!re[i]) { + re[i] = new RegExp(src[i]) + } +} + +exports.parse = parse +function parse (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + if (version.length > MAX_LENGTH) { + return null + } + + var r = options.loose ? re[LOOSE] : re[FULL] + if (!r.test(version)) { + return null + } + + try { + return new SemVer(version, options) + } catch (er) { + return null + } +} + +exports.valid = valid +function valid (version, options) { + var v = parse(version, options) + return v ? v.version : null +} + +exports.clean = clean +function clean (version, options) { + var s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} + +exports.SemVer = SemVer + +function SemVer (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + if (version instanceof SemVer) { + if (version.loose === options.loose) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError('Invalid Version: ' + version) + } + + if (version.length > MAX_LENGTH) { + throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') + } + + if (!(this instanceof SemVer)) { + return new SemVer(version, options) + } + + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + + var m = version.trim().match(options.loose ? re[LOOSE] : re[FULL]) + + if (!m) { + throw new TypeError('Invalid Version: ' + version) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map(function (id) { + if (/^[0-9]+$/.test(id)) { + var num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() +} + +SemVer.prototype.format = function () { + this.version = this.major + '.' + this.minor + '.' + this.patch + if (this.prerelease.length) { + this.version += '-' + this.prerelease.join('.') + } + return this.version +} + +SemVer.prototype.toString = function () { + return this.version +} + +SemVer.prototype.compare = function (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return this.compareMain(other) || this.comparePre(other) +} + +SemVer.prototype.compareMain = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) +} + +SemVer.prototype.comparePre = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + var i = 0 + do { + var a = this.prerelease[i] + var b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) +} + +// preminor will bump the version up to the next minor release, and immediately +// down to pre-release. premajor and prepatch work the same way. +SemVer.prototype.inc = function (release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier) + this.inc('pre', identifier) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier) + } + this.inc('pre', identifier) + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if (this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) { + this.prerelease = [0] + } else { + var i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + this.prerelease.push(0) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) { + this.prerelease = [identifier, 0] + } + } else { + this.prerelease = [identifier, 0] + } + } + break + + default: + throw new Error('invalid increment argument: ' + release) + } + this.format() + this.raw = this.version + return this +} + +exports.inc = inc +function inc (version, release, loose, identifier) { + if (typeof (loose) === 'string') { + identifier = loose + loose = undefined + } + + try { + return new SemVer(version, loose).inc(release, identifier).version + } catch (er) { + return null + } +} + +exports.diff = diff +function diff (version1, version2) { + if (eq(version1, version2)) { + return null + } else { + var v1 = parse(version1) + var v2 = parse(version2) + var prefix = '' + if (v1.prerelease.length || v2.prerelease.length) { + prefix = 'pre' + var defaultResult = 'prerelease' + } + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return prefix + key + } + } + } + return defaultResult // may be undefined + } +} + +exports.compareIdentifiers = compareIdentifiers + +var numeric = /^[0-9]+$/ +function compareIdentifiers (a, b) { + var anum = numeric.test(a) + var bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +exports.rcompareIdentifiers = rcompareIdentifiers +function rcompareIdentifiers (a, b) { + return compareIdentifiers(b, a) +} + +exports.major = major +function major (a, loose) { + return new SemVer(a, loose).major +} + +exports.minor = minor +function minor (a, loose) { + return new SemVer(a, loose).minor +} + +exports.patch = patch +function patch (a, loose) { + return new SemVer(a, loose).patch +} + +exports.compare = compare +function compare (a, b, loose) { + return new SemVer(a, loose).compare(new SemVer(b, loose)) +} + +exports.compareLoose = compareLoose +function compareLoose (a, b) { + return compare(a, b, true) +} + +exports.rcompare = rcompare +function rcompare (a, b, loose) { + return compare(b, a, loose) +} + +exports.sort = sort +function sort (list, loose) { + return list.sort(function (a, b) { + return exports.compare(a, b, loose) + }) +} + +exports.rsort = rsort +function rsort (list, loose) { + return list.sort(function (a, b) { + return exports.rcompare(a, b, loose) + }) +} + +exports.gt = gt +function gt (a, b, loose) { + return compare(a, b, loose) > 0 +} + +exports.lt = lt +function lt (a, b, loose) { + return compare(a, b, loose) < 0 +} + +exports.eq = eq +function eq (a, b, loose) { + return compare(a, b, loose) === 0 +} + +exports.neq = neq +function neq (a, b, loose) { + return compare(a, b, loose) !== 0 +} + +exports.gte = gte +function gte (a, b, loose) { + return compare(a, b, loose) >= 0 +} + +exports.lte = lte +function lte (a, b, loose) { + return compare(a, b, loose) <= 0 +} + +exports.cmp = cmp +function cmp (a, op, b, loose) { + switch (op) { + case '===': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a === b + + case '!==': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError('Invalid operator: ' + op) + } +} + +exports.Comparator = Comparator +function Comparator (comp, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value + } + } + + if (!(this instanceof Comparator)) { + return new Comparator(comp, options) + } + + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) +} + +var ANY = {} +Comparator.prototype.parse = function (comp) { + var r = this.options.loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var m = comp.match(r) + + if (!m) { + throw new TypeError('Invalid comparator: ' + comp) + } + + this.operator = m[1] + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } +} + +Comparator.prototype.toString = function () { + return this.value +} + +Comparator.prototype.test = function (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY) { + return true + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + return cmp(version, this.operator, this.semver, this.options) +} + +Comparator.prototype.intersects = function (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + var rangeTmp + + if (this.operator === '') { + rangeTmp = new Range(comp.value, options) + return satisfies(this.value, rangeTmp, options) + } else if (comp.operator === '') { + rangeTmp = new Range(this.value, options) + return satisfies(comp.semver, rangeTmp, options) + } + + var sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>') + var sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<') + var sameSemVer = this.semver.version === comp.semver.version + var differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<=') + var oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, options) && + ((this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<')) + var oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, options) && + ((this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>')) + + return sameDirectionIncreasing || sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || oppositeDirectionsGreaterThan +} + +exports.Range = Range +function Range (range, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (range instanceof Range) { + if (range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease) { + return range + } else { + return new Range(range.raw, options) + } + } + + if (range instanceof Comparator) { + return new Range(range.value, options) + } + + if (!(this instanceof Range)) { + return new Range(range, options) + } + + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease + + // First, split based on boolean or || + this.raw = range + this.set = range.split(/\s*\|\|\s*/).map(function (range) { + return this.parseRange(range.trim()) + }, this).filter(function (c) { + // throw out any that are not relevant for whatever reason + return c.length + }) + + if (!this.set.length) { + throw new TypeError('Invalid SemVer Range: ' + range) + } + + this.format() +} + +Range.prototype.format = function () { + this.range = this.set.map(function (comps) { + return comps.join(' ').trim() + }).join('||').trim() + return this.range +} + +Range.prototype.toString = function () { + return this.range +} + +Range.prototype.parseRange = function (range) { + var loose = this.options.loose + range = range.trim() + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE] + range = range.replace(hr, hyphenReplace) + debug('hyphen replace', range) + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, re[COMPARATORTRIM]) + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[TILDETRIM], tildeTrimReplace) + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[CARETTRIM], caretTrimReplace) + + // normalize spaces + range = range.split(/\s+/).join(' ') + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var set = range.split(' ').map(function (comp) { + return parseComparator(comp, this.options) + }, this).join(' ').split(/\s+/) + if (this.options.loose) { + // in loose mode, throw out any that are not valid comparators + set = set.filter(function (comp) { + return !!comp.match(compRe) + }) + } + set = set.map(function (comp) { + return new Comparator(comp, this.options) + }, this) + + return set +} + +Range.prototype.intersects = function (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } + + return this.set.some(function (thisComparators) { + return thisComparators.every(function (thisComparator) { + return range.set.some(function (rangeComparators) { + return rangeComparators.every(function (rangeComparator) { + return thisComparator.intersects(rangeComparator, options) + }) + }) + }) + }) +} + +// Mostly just for testing and legacy API reasons +exports.toComparators = toComparators +function toComparators (range, options) { + return new Range(range, options).set.map(function (comp) { + return comp.map(function (c) { + return c.value + }).join(' ').trim().split(' ') + }) +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +function parseComparator (comp, options) { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} + +function isX (id) { + return !id || id.toLowerCase() === 'x' || id === '*' +} + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 +function replaceTildes (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceTilde(comp, options) + }).join(' ') +} + +function replaceTilde (comp, options) { + var r = options.loose ? re[TILDELOOSE] : re[TILDE] + return comp.replace(r, function (_, M, m, p, pr) { + debug('tilde', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0 + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else if (pr) { + debug('replaceTilde pr', pr) + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } else { + // ~1.2.3 == >=1.2.3 <1.3.0 + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + + debug('tilde return', ret) + return ret + }) +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 +// ^1.2.3 --> >=1.2.3 <2.0.0 +// ^1.2.0 --> >=1.2.0 <2.0.0 +function replaceCarets (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceCaret(comp, options) + }).join(' ') +} + +function replaceCaret (comp, options) { + debug('caret', comp, options) + var r = options.loose ? re[CARETLOOSE] : re[CARET] + return comp.replace(r, function (_, M, m, p, pr) { + debug('caret', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + if (M === '0') { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else { + ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0' + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + (+M + 1) + '.0.0' + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + (+M + 1) + '.0.0' + } + } + + debug('caret return', ret) + return ret + }) +} + +function replaceXRanges (comp, options) { + debug('replaceXRanges', comp, options) + return comp.split(/\s+/).map(function (comp) { + return replaceXRange(comp, options) + }).join(' ') +} + +function replaceXRange (comp, options) { + comp = comp.trim() + var r = options.loose ? re[XRANGELOOSE] : re[XRANGE] + return comp.replace(r, function (ret, gtlt, M, m, p, pr) { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + var xM = isX(M) + var xm = xM || isX(m) + var xp = xm || isX(p) + var anyX = xp + + if (gtlt === '=' && anyX) { + gtlt = '' + } + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + // >1.2.3 => >= 1.2.4 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } + + ret = gtlt + M + '.' + m + '.' + p + } else if (xm) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (xp) { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } + + debug('xRange return', ret) + + return ret + }) +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +function replaceStars (comp, options) { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(re[STAR], '') +} + +// This function is passed to string.replace(re[HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0 +function hyphenReplace ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = '>=' + fM + '.0.0' + } else if (isX(fp)) { + from = '>=' + fM + '.' + fm + '.0' + } else { + from = '>=' + from + } + + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = '<' + (+tM + 1) + '.0.0' + } else if (isX(tp)) { + to = '<' + tM + '.' + (+tm + 1) + '.0' + } else if (tpr) { + to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr + } else { + to = '<=' + to + } + + return (from + ' ' + to).trim() +} + +// if ANY of the sets match ALL of its comparators, then pass +Range.prototype.test = function (version) { + if (!version) { + return false + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + for (var i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } + } + return false +} + +function testSet (set, version, options) { + for (var i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } + } + + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === ANY) { + continue + } + + if (set[i].semver.prerelease.length > 0) { + var allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false + } + + return true +} + +exports.satisfies = satisfies +function satisfies (version, range, options) { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) +} + +exports.maxSatisfying = maxSatisfying +function maxSatisfying (versions, range, options) { + var max = null + var maxSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max +} + +exports.minSatisfying = minSatisfying +function minSatisfying (versions, range, options) { + var min = null + var minSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min +} + +exports.minVersion = minVersion +function minVersion (range, loose) { + range = new Range(range, loose) + + var minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } + + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + + minver = null + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + comparators.forEach(function (comparator) { + // Clone to avoid manipulating the comparator's semver object. + var compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!minver || gt(minver, compver)) { + minver = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error('Unexpected operation: ' + comparator.operator) + } + }) + } + + if (minver && range.test(minver)) { + return minver + } + + return null +} + +exports.validRange = validRange +function validRange (range, options) { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } +} + +// Determine if version is less than all the versions possible in the range +exports.ltr = ltr +function ltr (version, range, options) { + return outside(version, range, '<', options) +} + +// Determine if version is greater than all the versions possible in the range. +exports.gtr = gtr +function gtr (version, range, options) { + return outside(version, range, '>', options) +} + +exports.outside = outside +function outside (version, range, hilo, options) { + version = new SemVer(version, options) + range = new Range(range, options) + + var gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } + + // If it satisifes the range it is not outside + if (satisfies(version, range, options)) { + return false + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + var high = null + var low = null + + comparators.forEach(function (comparator) { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } + } + return true +} + +exports.prerelease = prerelease +function prerelease (version, options) { + var parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} + +exports.intersects = intersects +function intersects (r1, r2, options) { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2) +} + +exports.coerce = coerce +function coerce (version) { + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + var match = version.match(re[COERCE]) + + if (match == null) { + return null + } + + return parse(match[1] + + '.' + (match[2] || '0') + + '.' + (match[3] || '0')) +} diff --git a/node_modules/normalize-package-data/package.json b/node_modules/normalize-package-data/package.json index b427a6052..8fa546d11 100644 --- a/node_modules/normalize-package-data/package.json +++ b/node_modules/normalize-package-data/package.json @@ -1,23 +1,61 @@ { - "name": "normalize-package-data", - "version": "2.5.0", - "author": "Meryn Stol ", - "description": "Normalizes data that can be found in package.json files.", - "license": "BSD-2-Clause", - "repository": { - "type": "git", - "url": "git://github.com/npm/normalize-package-data.git" + "_args": [ + [ + "normalize-package-data@2.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "normalize-package-data@2.5.0", + "_id": "normalize-package-data@2.5.0", + "_inBundle": false, + "_integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "_location": "/normalize-package-data", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "normalize-package-data@2.5.0", + "name": "normalize-package-data", + "escapedName": "normalize-package-data", + "rawSpec": "2.5.0", + "saveSpec": null, + "fetchSpec": "2.5.0" }, - "main": "lib/normalize.js", - "scripts": { - "test": "tap test/*.js" + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "_spec": "2.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Meryn Stol", + "email": "merynstol@gmail.com" }, + "bugs": { + "url": "https://github.com/npm/normalize-package-data/issues" + }, + "contributors": [ + { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + { + "name": "Meryn Stol", + "email": "merynstol@gmail.com" + }, + { + "name": "Robert Kowalski", + "email": "rok@kowalski.gd" + } + ], "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" }, + "description": "Normalizes data that can be found in package.json files.", "devDependencies": { "async": "^2.6.1", "tap": "^12.4.0", @@ -27,5 +65,17 @@ "lib/*.js", "lib/*.json", "AUTHORS" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/npm/normalize-package-data#readme", + "license": "BSD-2-Clause", + "main": "lib/normalize.js", + "name": "normalize-package-data", + "repository": { + "type": "git", + "url": "git://github.com/npm/normalize-package-data.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "2.5.0" +} diff --git a/node_modules/normalize-url/package.json b/node_modules/normalize-url/package.json index 84adbb278..a18f55b61 100644 --- a/node_modules/normalize-url/package.json +++ b/node_modules/normalize-url/package.json @@ -1,24 +1,57 @@ { - "name": "normalize-url", - "version": "4.5.0", - "description": "Normalize a URL", - "license": "MIT", - "repository": "sindresorhus/normalize-url", + "_args": [ + [ + "normalize-url@4.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "normalize-url@4.5.0", + "_id": "normalize-url@4.5.0", + "_inBundle": false, + "_integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "_location": "/normalize-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "normalize-url@4.5.0", + "name": "normalize-url", + "escapedName": "normalize-url", + "rawSpec": "4.5.0", + "saveSpec": null, + "fetchSpec": "4.5.0" + }, + "_requiredBy": [ + "/cacheable-request" + ], + "_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "_spec": "4.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/normalize-url/issues" + }, + "description": "Normalize a URL", + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.6", + "nyc": "^14.1.1", + "tsd": "^0.8.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/normalize-url#readme", "keywords": [ "normalize", "url", @@ -34,11 +67,14 @@ "trim", "canonical" ], - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.6", - "nyc": "^14.1.1", - "tsd": "^0.8.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "normalize-url", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/normalize-url.git" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "version": "4.5.0" +} diff --git a/node_modules/npm-run-path/package.json b/node_modules/npm-run-path/package.json index 509723438..d09ec041c 100644 --- a/node_modules/npm-run-path/package.json +++ b/node_modules/npm-run-path/package.json @@ -1,23 +1,55 @@ { - "name": "npm-run-path", - "version": "2.0.2", - "description": "Get your PATH prepended with locally installed binaries", - "license": "MIT", - "repository": "sindresorhus/npm-run-path", + "_args": [ + [ + "npm-run-path@2.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "npm-run-path@2.0.2", + "_id": "npm-run-path@2.0.2", + "_inBundle": false, + "_integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "_location": "/npm-run-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "npm-run-path@2.0.2", + "name": "npm-run-path", + "escapedName": "npm-run-path", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/npm-run-path/issues" + }, + "dependencies": { + "path-key": "^2.0.0" + }, + "description": "Get your PATH prepended with locally installed binaries", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/npm-run-path#readme", "keywords": [ "npm", "run", @@ -32,14 +64,17 @@ "execute", "executable" ], - "dependencies": { - "path-key": "^2.0.0" + "license": "MIT", + "name": "npm-run-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/npm-run-path.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" + "scripts": { + "test": "xo && ava" }, + "version": "2.0.2", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/once/package.json b/node_modules/once/package.json index c827b2595..80b98b97b 100644 --- a/node_modules/once/package.json +++ b/node_modules/once/package.json @@ -1,33 +1,74 @@ { - "name": "once", - "version": "1.4.0", - "description": "Run a function exactly one time", - "main": "once.js", - "directories": { - "test": "test" + "_args": [ + [ + "once@1.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "once@1.4.0", + "_id": "once@1.4.0", + "_inBundle": false, + "_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "_location": "/once", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "once@1.4.0", + "name": "once", + "escapedName": "once", + "rawSpec": "1.4.0", + "saveSpec": null, + "fetchSpec": "1.4.0" + }, + "_requiredBy": [ + "/@octokit/request", + "/@octokit/request-error", + "/end-of-stream", + "/glob", + "/inflight", + "/pump" + ], + "_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "_spec": "1.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/once/issues" }, "dependencies": { "wrappy": "1" }, + "description": "Run a function exactly one time", "devDependencies": { "tap": "^7.0.1" }, - "scripts": { - "test": "tap test/*.js" + "directories": { + "test": "test" }, "files": [ "once.js" ], - "repository": { - "type": "git", - "url": "git://github.com/isaacs/once" - }, + "homepage": "https://github.com/isaacs/once#readme", "keywords": [ "once", "function", "one", "single" ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC" -} \ No newline at end of file + "license": "ISC", + "main": "once.js", + "name": "once", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/once.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "1.4.0" +} diff --git a/node_modules/onetime/package.json b/node_modules/onetime/package.json index 19a7f198c..4032fb353 100644 --- a/node_modules/onetime/package.json +++ b/node_modules/onetime/package.json @@ -1,24 +1,58 @@ { - "name": "onetime", - "version": "5.1.0", - "description": "Ensure a function is only called once", - "license": "MIT", - "repository": "sindresorhus/onetime", + "_args": [ + [ + "onetime@5.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "onetime@5.1.0", + "_id": "onetime@5.1.0", + "_inBundle": false, + "_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", + "_location": "/onetime", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "onetime@5.1.0", + "name": "onetime", + "escapedName": "onetime", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/restore-cursor" + ], + "_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/onetime/issues" + }, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "description": "Ensure a function is only called once", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/onetime#readme", "keywords": [ "once", "function", @@ -31,12 +65,14 @@ "called", "prevent" ], - "dependencies": { - "mimic-fn": "^2.1.0" + "license": "MIT", + "name": "onetime", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/onetime.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.1.0" +} diff --git a/node_modules/ora/node_modules/ansi-styles/package.json b/node_modules/ora/node_modules/ansi-styles/package.json index 1a7731952..2c9819234 100644 --- a/node_modules/ora/node_modules/ansi-styles/package.json +++ b/node_modules/ora/node_modules/ansi-styles/package.json @@ -1,26 +1,62 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/ora/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/ora/chalk" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +79,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/ora/node_modules/chalk/package.json b/node_modules/ora/node_modules/chalk/package.json index b68e931e7..481a79dfb 100644 --- a/node_modules/ora/node_modules/chalk/package.json +++ b/node_modules/ora/node_modules/chalk/package.json @@ -1,21 +1,60 @@ { - "name": "chalk", - "version": "3.0.0", + "_args": [ + [ + "chalk@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "chalk@3.0.0", + "_id": "chalk@3.0.0", + "_inBundle": false, + "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "_location": "/ora/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@3.0.0", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, "files": [ "source", "index.d.ts" ], + "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -39,25 +78,22 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "license": "MIT", + "main": "source", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" + "scripts": { + "bench": "matcha benchmark.js", + "test": "xo && nyc ava && tsd" }, + "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", "unicorn/prefer-includes": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/ora/node_modules/color-convert/package.json b/node_modules/ora/node_modules/color-convert/package.json index d169f869b..bc8eeba39 100644 --- a/node_modules/ora/node_modules/color-convert/package.json +++ b/node_modules/ora/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/ora/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/ora/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/ora/node_modules/color-name/package.json b/node_modules/ora/node_modules/color-name/package.json index fecb8dcfb..f85a98024 100644 --- a/node_modules/ora/node_modules/color-name/package.json +++ b/node_modules/ora/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/ora/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/ora/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/ora/node_modules/has-flag/package.json b/node_modules/ora/node_modules/has-flag/package.json index 55d0058e4..49ea1d8ca 100644 --- a/node_modules/ora/node_modules/has-flag/package.json +++ b/node_modules/ora/node_modules/has-flag/package.json @@ -1,24 +1,55 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", + "_args": [ + [ + "has-flag@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-flag@4.0.0", + "_id": "has-flag@4.0.0", + "_inBundle": false, + "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "_location": "/ora/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@4.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/ora/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -38,9 +69,14 @@ "minimist", "optimist" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/ora/node_modules/supports-color/package.json b/node_modules/ora/node_modules/supports-color/package.json index 79856038d..1dc423da7 100644 --- a/node_modules/ora/node_modules/supports-color/package.json +++ b/node_modules/ora/node_modules/supports-color/package.json @@ -1,24 +1,59 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", + "_args": [ + [ + "supports-color@7.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supports-color@7.1.0", + "_id": "supports-color@7.1.0", + "_inBundle": false, + "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "_location": "/ora/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@7.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "7.1.0", + "saveSpec": null, + "fetchSpec": "7.1.0" + }, + "_requiredBy": [ + "/ora/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "_spec": "7.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^4.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -41,13 +76,14 @@ "truecolor", "16m" ], - "dependencies": { - "has-flag": "^4.0.0" + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "7.1.0" +} diff --git a/node_modules/ora/package.json b/node_modules/ora/package.json index f5e907f91..9c8147276 100644 --- a/node_modules/ora/package.json +++ b/node_modules/ora/package.json @@ -1,25 +1,70 @@ { - "name": "ora", - "version": "4.0.4", - "description": "Elegant terminal spinner", - "license": "MIT", - "repository": "sindresorhus/ora", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "ora@4.0.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ora@4.0.4", + "_id": "ora@4.0.4", + "_inBundle": false, + "_integrity": "sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==", + "_location": "/ora", + "_phantomChildren": { + "@types/color-name": "1.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "ora@4.0.4", + "name": "ora", + "escapedName": "ora", + "rawSpec": "4.0.4", + "saveSpec": null, + "fetchSpec": "4.0.4" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.4.tgz", + "_spec": "4.0.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/ora/issues" + }, + "dependencies": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "description": "Elegant terminal spinner", + "devDependencies": { + "@types/node": "^12.7.5", + "ava": "^2.4.0", + "get-stream": "^5.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/ora#readme", "keywords": [ "cli", "spinner", @@ -36,21 +81,14 @@ "wait", "idle" ], - "dependencies": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "license": "MIT", + "name": "ora", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/ora.git" }, - "devDependencies": { - "@types/node": "^12.7.5", - "ava": "^2.4.0", - "get-stream": "^5.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.4" +} diff --git a/node_modules/os-name/package.json b/node_modules/os-name/package.json index 3418bf392..23ada222c 100644 --- a/node_modules/os-name/package.json +++ b/node_modules/os-name/package.json @@ -1,24 +1,60 @@ { - "name": "os-name", - "version": "3.1.0", - "description": "Get the name of the current operating system. Example: macOS Sierra", - "license": "MIT", - "repository": "sindresorhus/os-name", + "_args": [ + [ + "os-name@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "os-name@3.1.0", + "_id": "os-name@3.1.0", + "_inBundle": false, + "_integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", + "_location": "/os-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "os-name@3.1.0", + "name": "os-name", + "escapedName": "os-name", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/@octokit/graphql/universal-user-agent", + "/universal-user-agent" + ], + "_resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/os-name/issues" + }, + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + }, + "description": "Get the name of the current operating system. Example: macOS Sierra", + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/os-name#readme", "keywords": [ "os", "operating", @@ -32,14 +68,14 @@ "windows", "linux" ], - "dependencies": { - "macos-release": "^2.2.0", - "windows-release": "^3.1.0" + "license": "MIT", + "name": "os-name", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/os-name.git" }, - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/p-cancelable/package.json b/node_modules/p-cancelable/package.json index 98d0b765a..f7b1e1bb9 100644 --- a/node_modules/p-cancelable/package.json +++ b/node_modules/p-cancelable/package.json @@ -1,24 +1,57 @@ { - "name": "p-cancelable", - "version": "1.1.0", - "description": "Create a promise that can be canceled", - "license": "MIT", - "repository": "sindresorhus/p-cancelable", + "_args": [ + [ + "p-cancelable@1.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-cancelable@1.1.0", + "_id": "p-cancelable@1.1.0", + "_inBundle": false, + "_integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "_location": "/p-cancelable", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-cancelable@1.1.0", + "name": "p-cancelable", + "escapedName": "p-cancelable", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-cancelable/issues" + }, + "description": "Create a promise that can be canceled", + "devDependencies": { + "ava": "^1.3.1", + "delay": "^4.1.0", + "promise.prototype.finally": "^3.1.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/p-cancelable#readme", "keywords": [ "promise", "cancelable", @@ -39,11 +72,14 @@ "promises", "bluebird" ], - "devDependencies": { - "ava": "^1.3.1", - "delay": "^4.1.0", - "promise.prototype.finally": "^3.1.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "p-cancelable", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-cancelable.git" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "1.1.0" +} diff --git a/node_modules/p-defer/package.json b/node_modules/p-defer/package.json index d7f9b811b..3bdce9252 100644 --- a/node_modules/p-defer/package.json +++ b/node_modules/p-defer/package.json @@ -1,23 +1,53 @@ { - "name": "p-defer", - "version": "1.0.0", - "description": "Create a deferred promise", - "license": "MIT", - "repository": "sindresorhus/p-defer", + "_args": [ + [ + "p-defer@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-defer@1.0.0", + "_id": "p-defer@1.0.0", + "_inBundle": false, + "_integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "_location": "/p-defer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-defer@1.0.0", + "name": "p-defer", + "escapedName": "p-defer", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/map-age-cleaner" + ], + "_resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-defer/issues" + }, + "description": "Create a deferred promise", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/p-defer#readme", "keywords": [ "promise", "defer", @@ -31,11 +61,17 @@ "promises", "bluebird" ], - "devDependencies": { - "ava": "*", - "xo": "*" + "license": "MIT", + "name": "p-defer", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-defer.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "1.0.0", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/p-finally/package.json b/node_modules/p-finally/package.json index 8a58ebb94..b178c9b27 100644 --- a/node_modules/p-finally/package.json +++ b/node_modules/p-finally/package.json @@ -1,23 +1,52 @@ { - "name": "p-finally", - "version": "1.0.0", - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "license": "MIT", - "repository": "sindresorhus/p-finally", + "_args": [ + [ + "p-finally@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "p-finally@1.0.0", + "_id": "p-finally@1.0.0", + "_inBundle": false, + "_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "_location": "/p-finally", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-finally@1.0.0", + "name": "p-finally", + "escapedName": "p-finally", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-finally/issues" + }, + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/p-finally#readme", "keywords": [ "promise", "finally", @@ -32,11 +61,17 @@ "shim", "bluebird" ], - "devDependencies": { - "ava": "*", - "xo": "*" + "license": "MIT", + "name": "p-finally", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-finally.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "1.0.0", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/p-limit/package.json b/node_modules/p-limit/package.json index 8a8f33e00..df7673f56 100644 --- a/node_modules/p-limit/package.json +++ b/node_modules/p-limit/package.json @@ -1,24 +1,63 @@ { - "name": "p-limit", - "version": "2.2.1", - "description": "Run multiple promise-returning & async functions with limited concurrency", - "license": "MIT", - "repository": "sindresorhus/p-limit", + "_args": [ + [ + "p-limit@2.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-limit@2.2.1", + "_id": "p-limit@2.2.1", + "_inBundle": false, + "_integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "_location": "/p-limit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-limit@2.2.1", + "name": "p-limit", + "escapedName": "p-limit", + "rawSpec": "2.2.1", + "saveSpec": null, + "fetchSpec": "2.2.1" + }, + "_requiredBy": [ + "/p-locate", + "/pkg-conf/p-locate" + ], + "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "_spec": "2.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + "dependencies": { + "p-try": "^2.0.0" + }, + "description": "Run multiple promise-returning & async functions with limited concurrency", + "devDependencies": { + "ava": "^1.2.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "random-int": "^1.0.0", + "time-span": "^2.0.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/p-limit#readme", "keywords": [ "promise", "limit", @@ -36,16 +75,14 @@ "promises", "bluebird" ], - "dependencies": { - "p-try": "^2.0.0" + "license": "MIT", + "name": "p-limit", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-limit.git" }, - "devDependencies": { - "ava": "^1.2.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "random-int": "^1.0.0", - "time-span": "^2.0.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "2.2.1" +} diff --git a/node_modules/p-locate/package.json b/node_modules/p-locate/package.json index 24bf49512..1e9629e69 100644 --- a/node_modules/p-locate/package.json +++ b/node_modules/p-locate/package.json @@ -1,24 +1,61 @@ { - "name": "p-locate", - "version": "4.1.0", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "license": "MIT", - "repository": "sindresorhus/p-locate", + "_args": [ + [ + "p-locate@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-locate@4.1.0", + "_id": "p-locate@4.1.0", + "_inBundle": false, + "_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "_location": "/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@4.1.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.2.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "time-span": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", "keywords": [ "promise", "locate", @@ -39,15 +76,14 @@ "promises", "bluebird" ], - "dependencies": { - "p-limit": "^2.2.0" + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" }, - "devDependencies": { - "ava": "^1.4.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "time-span": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.1.0" +} diff --git a/node_modules/p-map/package.json b/node_modules/p-map/package.json index 8782cb6af..df3a1e6a5 100644 --- a/node_modules/p-map/package.json +++ b/node_modules/p-map/package.json @@ -1,25 +1,63 @@ { - "name": "p-map", - "version": "4.0.0", - "description": "Map over promises concurrently", - "license": "MIT", - "repository": "sindresorhus/p-map", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "p-map@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-map@4.0.0", + "_id": "p-map@4.0.0", + "_inBundle": false, + "_integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "_location": "/p-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-map@4.0.0", + "name": "p-map", + "escapedName": "p-map", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-map/issues" + }, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "description": "Map over promises concurrently", + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.4", + "xo": "^0.27.2" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/p-map#readme", "keywords": [ "promise", "map", @@ -38,16 +76,14 @@ "parallel", "bluebird" ], - "dependencies": { - "aggregate-error": "^3.0.0" + "license": "MIT", + "name": "p-map", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-map.git" }, - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.4", - "xo": "^0.27.2" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/p-try/package.json b/node_modules/p-try/package.json index 43c139fa7..22bdaae21 100644 --- a/node_modules/p-try/package.json +++ b/node_modules/p-try/package.json @@ -1,24 +1,55 @@ { - "name": "p-try", - "version": "2.2.0", - "description": "`Start a promise chain", - "license": "MIT", - "repository": "sindresorhus/p-try", + "_args": [ + [ + "p-try@2.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-try@2.2.0", + "_id": "p-try@2.2.0", + "_inBundle": false, + "_integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "_location": "/p-try", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-try@2.2.0", + "name": "p-try", + "escapedName": "p-try", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/p-limit" + ], + "_resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-try/issues" + }, + "description": "`Start a promise chain", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/p-try#readme", "keywords": [ "promise", "try", @@ -34,9 +65,14 @@ "shim", "bluebird" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "p-try", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-try.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/package-json/node_modules/semver/package.json b/node_modules/package-json/node_modules/semver/package.json index a330b56c2..bd437ad63 100644 --- a/node_modules/package-json/node_modules/semver/package.json +++ b/node_modules/package-json/node_modules/semver/package.json @@ -1,28 +1,64 @@ { - "name": "semver", - "version": "6.3.0", - "description": "The semantic version parser used by npm.", - "main": "semver.js", - "scripts": { - "test": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags" + "_args": [ + [ + "semver@6.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "semver@6.3.0", + "_id": "semver@6.3.0", + "_inBundle": false, + "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "_location": "/package-json/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@6.3.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "6.3.0", + "saveSpec": null, + "fetchSpec": "6.3.0" + }, + "_requiredBy": [ + "/package-json" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "_spec": "6.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "semver": "bin/semver.js" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" }, + "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^14.3.1" }, - "license": "ISC", - "repository": "https://github.com/npm/node-semver", - "bin": { - "semver": "./bin/semver.js" - }, "files": [ "bin", "range.bnf", "semver.js" ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, "tap": { "check-coverage": true - } -} \ No newline at end of file + }, + "version": "6.3.0" +} diff --git a/node_modules/package-json/package.json b/node_modules/package-json/package.json index f090b5552..aeb6ceb28 100644 --- a/node_modules/package-json/package.json +++ b/node_modules/package-json/package.json @@ -1,24 +1,63 @@ { - "name": "package-json", - "version": "6.5.0", - "description": "Get metadata of a package from the npm registry", - "license": "MIT", - "repository": "sindresorhus/package-json", + "_args": [ + [ + "package-json@6.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "package-json@6.5.0", + "_id": "package-json@6.5.0", + "_inBundle": false, + "_integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "_location": "/package-json", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "package-json@6.5.0", + "name": "package-json", + "escapedName": "package-json", + "rawSpec": "6.5.0", + "saveSpec": null, + "fetchSpec": "6.5.0" + }, + "_requiredBy": [ + "/latest-version" + ], + "_resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "_spec": "6.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/package-json/issues" + }, + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "description": "Get metadata of a package from the npm registry", + "devDependencies": { + "@types/node": "^12.6.8", + "ava": "^2.2.0", + "mock-private-registry": "^1.1.2", + "tsd": "^0.7.4", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/package-json#readme", "keywords": [ "npm", "registry", @@ -30,17 +69,14 @@ "scope", "scoped" ], - "dependencies": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" + "license": "MIT", + "name": "package-json", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/package-json.git" }, - "devDependencies": { - "@types/node": "^12.6.8", - "ava": "^2.2.0", - "mock-private-registry": "^1.1.2", - "tsd": "^0.7.4", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "6.5.0" +} diff --git a/node_modules/parse-json/package.json b/node_modules/parse-json/package.json index 9bbcba68c..09e9fa54b 100644 --- a/node_modules/parse-json/package.json +++ b/node_modules/parse-json/package.json @@ -1,24 +1,59 @@ { - "name": "parse-json", - "version": "4.0.0", - "description": "Parse JSON with more helpful errors", - "license": "MIT", - "repository": "sindresorhus/parse-json", + "_args": [ + [ + "parse-json@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "parse-json@4.0.0", + "_id": "parse-json@4.0.0", + "_inBundle": false, + "_integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "_location": "/parse-json", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse-json@4.0.0", + "name": "parse-json", + "escapedName": "parse-json", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "description": "Parse JSON with more helpful errors", + "devDependencies": { + "ava": "*", + "nyc": "^11.2.1", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && nyc ava" - }, "files": [ "index.js", "vendor" ], + "homepage": "https://github.com/sindresorhus/parse-json#readme", "keywords": [ "parse", "json", @@ -31,13 +66,14 @@ "string", "str" ], - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "license": "MIT", + "name": "parse-json", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/parse-json.git" }, - "devDependencies": { - "ava": "*", - "nyc": "^11.2.1", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && nyc ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/parse-ms/package.json b/node_modules/parse-ms/package.json index 556e3e088..d933a1193 100644 --- a/node_modules/parse-ms/package.json +++ b/node_modules/parse-ms/package.json @@ -1,24 +1,55 @@ { - "name": "parse-ms", - "version": "2.1.0", - "description": "Parse milliseconds into an object", - "license": "MIT", - "repository": "sindresorhus/parse-ms", + "_args": [ + [ + "parse-ms@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "parse-ms@2.1.0", + "_id": "parse-ms@2.1.0", + "_inBundle": false, + "_integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "_location": "/parse-ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse-ms@2.1.0", + "name": "parse-ms", + "escapedName": "parse-ms", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/pretty-ms" + ], + "_resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/parse-ms/issues" + }, + "description": "Parse milliseconds into an object", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/parse-ms#readme", "keywords": [ "browser", "parse", @@ -32,9 +63,14 @@ "range", "interval" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "parse-ms", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/parse-ms.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json index 90039cc2f..32a34c509 100644 --- a/node_modules/path-exists/package.json +++ b/node_modules/path-exists/package.json @@ -1,24 +1,55 @@ { - "name": "path-exists", - "version": "4.0.0", - "description": "Check if a path exists", - "license": "MIT", - "repository": "sindresorhus/path-exists", + "_args": [ + [ + "path-exists@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "path-exists@4.0.0", + "_id": "path-exists@4.0.0", + "_inBundle": false, + "_integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "_location": "/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@4.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/find-up" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", "keywords": [ "path", "exists", @@ -31,9 +62,14 @@ "access", "stat" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/path-is-absolute/package.json b/node_modules/path-is-absolute/package.json index b17117f3e..f9172fabb 100644 --- a/node_modules/path-is-absolute/package.json +++ b/node_modules/path-is-absolute/package.json @@ -1,23 +1,52 @@ { - "name": "path-is-absolute", - "version": "1.0.1", - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "license": "MIT", - "repository": "sindresorhus/path-is-absolute", + "_args": [ + [ + "path-is-absolute@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "path-is-absolute@1.0.1", + "_id": "path-is-absolute@1.0.1", + "_inBundle": false, + "_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "_location": "/path-is-absolute", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-is-absolute@1.0.1", + "name": "path-is-absolute", + "escapedName": "path-is-absolute", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/glob" + ], + "_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/path-is-absolute/issues" + }, + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "devDependencies": { + "xo": "^0.16.0" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && node test.js" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/path-is-absolute#readme", "keywords": [ "path", "paths", @@ -37,7 +66,14 @@ "detect", "check" ], - "devDependencies": { - "xo": "^0.16.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "path-is-absolute", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-is-absolute.git" + }, + "scripts": { + "test": "xo && node test.js" + }, + "version": "1.0.1" +} diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json index 843f0b378..1b6a424a3 100644 --- a/node_modules/path-key/package.json +++ b/node_modules/path-key/package.json @@ -1,23 +1,53 @@ { - "name": "path-key", - "version": "2.0.1", - "description": "Get the PATH environment variable key cross-platform", - "license": "MIT", - "repository": "sindresorhus/path-key", + "_args": [ + [ + "path-key@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "path-key@2.0.1", + "_id": "path-key@2.0.1", + "_inBundle": false, + "_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "_location": "/path-key", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-key@2.0.1", + "name": "path-key", + "escapedName": "path-key", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/cross-spawn", + "/npm-run-path" + ], + "_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/path-key/issues" + }, + "description": "Get the PATH environment variable key cross-platform", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/path-key#readme", "keywords": [ "path", "key", @@ -29,11 +59,17 @@ "cross-platform", "windows" ], - "devDependencies": { - "ava": "*", - "xo": "*" + "license": "MIT", + "name": "path-key", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-key.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "2.0.1", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/path-parse/package.json b/node_modules/path-parse/package.json index b5cca7a87..c89648063 100644 --- a/node_modules/path-parse/package.json +++ b/node_modules/path-parse/package.json @@ -1,15 +1,42 @@ { - "name": "path-parse", - "version": "1.0.6", - "description": "Node.js path.parse() ponyfill", - "main": "index.js", - "scripts": { - "test": "node test.js" + "_args": [ + [ + "path-parse@1.0.6", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "path-parse@1.0.6", + "_id": "path-parse@1.0.6", + "_inBundle": false, + "_integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "_location": "/path-parse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-parse@1.0.6", + "name": "path-parse", + "escapedName": "path-parse", + "rawSpec": "1.0.6", + "saveSpec": null, + "fetchSpec": "1.0.6" }, - "repository": { - "type": "git", - "url": "https://github.com/jbgutierrez/path-parse.git" + "_requiredBy": [ + "/resolve" + ], + "_resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "_spec": "1.0.6", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Javier Blanco", + "email": "http://jbgutierrez.info" + }, + "bugs": { + "url": "https://github.com/jbgutierrez/path-parse/issues" }, + "description": "Node.js path.parse() ponyfill", + "homepage": "https://github.com/jbgutierrez/path-parse#readme", "keywords": [ "path", "paths", @@ -24,10 +51,15 @@ "polyfill", "shim" ], - "author": "Javier Blanco ", "license": "MIT", - "bugs": { - "url": "https://github.com/jbgutierrez/path-parse/issues" + "main": "index.js", + "name": "path-parse", + "repository": { + "type": "git", + "url": "git+https://github.com/jbgutierrez/path-parse.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/jbgutierrez/path-parse#readme" -} \ No newline at end of file + "version": "1.0.6" +} diff --git a/node_modules/path-type/package.json b/node_modules/path-type/package.json index 25d8b90c3..0c3631c64 100644 --- a/node_modules/path-type/package.json +++ b/node_modules/path-type/package.json @@ -1,24 +1,56 @@ { - "name": "path-type", - "version": "4.0.0", - "description": "Check if a path is a file, directory, or symlink", - "license": "MIT", - "repository": "sindresorhus/path-type", + "_args": [ + [ + "path-type@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "path-type@4.0.0", + "_id": "path-type@4.0.0", + "_inBundle": false, + "_integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "_location": "/path-type", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-type@4.0.0", + "name": "path-type", + "escapedName": "path-type", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/dir-glob" + ], + "_resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/path-type/issues" + }, + "description": "Check if a path is a file, directory, or symlink", + "devDependencies": { + "ava": "^1.3.1", + "nyc": "^13.3.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd-check" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/path-type#readme", "keywords": [ "path", "fs", @@ -36,10 +68,14 @@ "stats", "filesystem" ], - "devDependencies": { - "ava": "^1.3.1", - "nyc": "^13.3.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "path-type", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-type.git" + }, + "scripts": { + "test": "xo && nyc ava && tsd-check" + }, + "version": "4.0.0" +} diff --git a/node_modules/path/package.json b/node_modules/path/package.json index de70fbf83..9c9867386 100644 --- a/node_modules/path/package.json +++ b/node_modules/path/package.json @@ -1,24 +1,55 @@ { + "_args": [ + [ + "path@0.12.7", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "path@0.12.7", + "_id": "path@0.12.7", + "_inBundle": false, + "_integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "_location": "/path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path@0.12.7", + "name": "path", + "escapedName": "path", + "rawSpec": "0.12.7", + "saveSpec": null, + "fetchSpec": "0.12.7" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "_spec": "0.12.7", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Joyent", "url": "http://www.joyent.com" }, - "name": "path", + "bugs": { + "url": "https://github.com/jinder/path/issues" + }, + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + }, "description": "Node.JS path module", + "homepage": "http://nodejs.org/docs/latest/api/path.html", "keywords": [ "ender", "path" ], "license": "MIT", - "version": "0.12.7", - "homepage": "http://nodejs.org/docs/latest/api/path.html", + "main": "./path.js", + "name": "path", "repository": { "type": "git", "url": "git://github.com/jinder/path.git" }, - "main": "./path.js", - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - } -} \ No newline at end of file + "version": "0.12.7" +} diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 882d1dff3..7b2cbeb21 100755 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,30 +1,45 @@ { - "name": "picomatch", - "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", - "version": "2.2.2", - "homepage": "https://github.com/micromatch/picomatch", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "funding": "https://github.com/sponsors/jonschlinkert", - "repository": "micromatch/picomatch", - "bugs": { - "url": "https://github.com/micromatch/picomatch/issues" + "_args": [ + [ + "picomatch@2.2.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "picomatch@2.2.2", + "_id": "picomatch@2.2.2", + "_inBundle": false, + "_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "_location": "/picomatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "picomatch@2.2.2", + "name": "picomatch", + "escapedName": "picomatch", + "rawSpec": "2.2.2", + "saveSpec": null, + "fetchSpec": "2.2.2" }, - "license": "MIT", - "files": [ - "index.js", - "lib" + "_requiredBy": [ + "/ava", + "/chokidar/anymatch", + "/fast-glob", + "/micromatch", + "/readdirp" ], - "main": "index.js", - "engines": { - "node": ">=8.6" + "_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "_spec": "2.2.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --reporter dot", - "test": "npm run lint && npm run mocha", - "test:ci": "npm run test:cover", - "test:cover": "nyc npm run mocha" + "bugs": { + "url": "https://github.com/micromatch/picomatch/issues" }, + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", "devDependencies": { "eslint": "^6.8.0", "fill-range": "^7.0.1", @@ -33,11 +48,23 @@ "nyc": "^15.0.0", "time-require": "github:jonschlinkert/time-require" }, + "engines": { + "node": ">=8.6" + }, + "files": [ + "index.js", + "lib" + ], + "funding": "https://github.com/sponsors/jonschlinkert", + "homepage": "https://github.com/micromatch/picomatch", "keywords": [ "glob", "match", "picomatch" ], + "license": "MIT", + "main": "index.js", + "name": "picomatch", "nyc": { "reporter": [ "html", @@ -45,6 +72,17 @@ "text-summary" ] }, + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/picomatch.git" + }, + "scripts": { + "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --reporter dot", + "test": "npm run lint && npm run mocha", + "test:ci": "npm run test:cover", + "test:cover": "nyc npm run mocha" + }, "verb": { "toc": { "render": true, @@ -77,5 +115,6 @@ "nanomatch", "picomatch" ] - } -} \ No newline at end of file + }, + "version": "2.2.2" +} diff --git a/node_modules/pify/package.json b/node_modules/pify/package.json index ea9e54fd5..08edc44d3 100644 --- a/node_modules/pify/package.json +++ b/node_modules/pify/package.json @@ -1,24 +1,55 @@ { - "name": "pify", - "version": "4.0.1", - "description": "Promisify a callback-style function", - "license": "MIT", - "repository": "sindresorhus/pify", + "_args": [ + [ + "pify@4.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "pify@4.0.1", + "_id": "pify@4.0.1", + "_inBundle": false, + "_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "_location": "/pify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pify@4.0.1", + "name": "pify", + "escapedName": "pify", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/pify/issues" + }, + "description": "Promisify a callback-style function", + "devDependencies": { + "ava": "^0.25.0", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.1.0", + "xo": "^0.23.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava", - "optimization-test": "node --allow-natives-syntax optimization-test.js" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/pify#readme", "keywords": [ "promise", "promises", @@ -42,10 +73,15 @@ "es2015", "bluebird" ], - "devDependencies": { - "ava": "^0.25.0", - "pinkie-promise": "^2.0.0", - "v8-natives": "^1.1.0", - "xo": "^0.23.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "pify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pify.git" + }, + "scripts": { + "optimization-test": "node --allow-natives-syntax optimization-test.js", + "test": "xo && ava" + }, + "version": "4.0.1" +} diff --git a/node_modules/pkg-conf/node_modules/find-up/package.json b/node_modules/pkg-conf/node_modules/find-up/package.json index c4045d882..8fe905601 100644 --- a/node_modules/pkg-conf/node_modules/find-up/package.json +++ b/node_modules/pkg-conf/node_modules/find-up/package.json @@ -1,23 +1,57 @@ { - "name": "find-up", - "version": "3.0.0", - "description": "Find a file or directory by walking up parent directories", - "license": "MIT", - "repository": "sindresorhus/find-up", + "_args": [ + [ + "find-up@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "find-up@3.0.0", + "_id": "find-up@3.0.0", + "_inBundle": false, + "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "_location": "/pkg-conf/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@3.0.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/pkg-conf" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^3.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/find-up#readme", "keywords": [ "find", "up", @@ -39,12 +73,14 @@ "walking", "path" ], - "dependencies": { - "locate-path": "^3.0.0" + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" }, - "devDependencies": { - "ava": "*", - "tempy": "^0.2.1", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/pkg-conf/node_modules/locate-path/package.json b/node_modules/pkg-conf/node_modules/locate-path/package.json index ee35ddc2c..c9cc8c272 100644 --- a/node_modules/pkg-conf/node_modules/locate-path/package.json +++ b/node_modules/pkg-conf/node_modules/locate-path/package.json @@ -1,23 +1,57 @@ { - "name": "locate-path", - "version": "3.0.0", - "description": "Get the first path that exists on disk of multiple paths", - "license": "MIT", - "repository": "sindresorhus/locate-path", + "_args": [ + [ + "locate-path@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "locate-path@3.0.0", + "_id": "locate-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "_location": "/pkg-conf/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@3.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/pkg-conf/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", "keywords": [ "locate", "path", @@ -33,12 +67,14 @@ "iterable", "iterator" ], - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/pkg-conf/node_modules/p-locate/package.json b/node_modules/pkg-conf/node_modules/p-locate/package.json index fd4966219..6d8907ada 100644 --- a/node_modules/pkg-conf/node_modules/p-locate/package.json +++ b/node_modules/pkg-conf/node_modules/p-locate/package.json @@ -1,23 +1,59 @@ { - "name": "p-locate", - "version": "3.0.0", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "license": "MIT", - "repository": "sindresorhus/p-locate", + "_args": [ + [ + "p-locate@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "p-locate@3.0.0", + "_id": "p-locate@3.0.0", + "_inBundle": false, + "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "_location": "/pkg-conf/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@3.0.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/pkg-conf/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.0.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", "keywords": [ "promise", "locate", @@ -38,14 +74,14 @@ "promises", "bluebird" ], - "dependencies": { - "p-limit": "^2.0.0" + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" }, - "devDependencies": { - "ava": "*", - "delay": "^3.0.0", - "in-range": "^1.0.0", - "time-span": "^2.0.0", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/pkg-conf/node_modules/path-exists/package.json b/node_modules/pkg-conf/node_modules/path-exists/package.json index ed507545d..7cbb24ef9 100644 --- a/node_modules/pkg-conf/node_modules/path-exists/package.json +++ b/node_modules/pkg-conf/node_modules/path-exists/package.json @@ -1,23 +1,53 @@ { - "name": "path-exists", - "version": "3.0.0", - "description": "Check if a path exists", - "license": "MIT", - "repository": "sindresorhus/path-exists", + "_args": [ + [ + "path-exists@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "path-exists@3.0.0", + "_id": "path-exists@3.0.0", + "_inBundle": false, + "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "_location": "/pkg-conf/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@3.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/pkg-conf/locate-path" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", "keywords": [ "path", "exists", @@ -30,11 +60,17 @@ "access", "stat" ], - "devDependencies": { - "ava": "*", - "xo": "*" + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava" }, + "version": "3.0.0", "xo": { "esnext": true } -} \ No newline at end of file +} diff --git a/node_modules/pkg-conf/package.json b/node_modules/pkg-conf/package.json index 9b163c318..d2d9a4f94 100644 --- a/node_modules/pkg-conf/package.json +++ b/node_modules/pkg-conf/package.json @@ -1,24 +1,64 @@ { - "name": "pkg-conf", - "version": "3.1.0", - "description": "Get namespaced config from the closest package.json", - "license": "MIT", - "repository": "sindresorhus/pkg-conf", + "_args": [ + [ + "pkg-conf@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "pkg-conf@3.1.0", + "_id": "pkg-conf@3.1.0", + "_inBundle": false, + "_integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "_location": "/pkg-conf", + "_phantomChildren": { + "p-limit": "2.2.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "pkg-conf@3.1.0", + "name": "pkg-conf", + "escapedName": "pkg-conf", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/pkg-conf/issues" + }, + "dependencies": { + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" + }, + "description": "Get namespaced config from the closest package.json", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "fixture": { + "foo": true + }, + "homepage": "https://github.com/sindresorhus/pkg-conf#readme", "keywords": [ "json", "read", @@ -36,16 +76,14 @@ "namespace", "namespaced" ], - "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" + "license": "MIT", + "name": "pkg-conf", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pkg-conf.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava && tsd" }, - "fixture": { - "foo": true - } -} \ No newline at end of file + "version": "3.1.0" +} diff --git a/node_modules/pkg-dir/package.json b/node_modules/pkg-dir/package.json index 6759a9ce7..147379fdf 100644 --- a/node_modules/pkg-dir/package.json +++ b/node_modules/pkg-dir/package.json @@ -1,24 +1,59 @@ { - "name": "pkg-dir", - "version": "4.2.0", - "description": "Find the root directory of a Node.js project or npm package", - "license": "MIT", - "repository": "sindresorhus/pkg-dir", + "_args": [ + [ + "pkg-dir@4.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "pkg-dir@4.2.0", + "_id": "pkg-dir@4.2.0", + "_inBundle": false, + "_integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "_location": "/pkg-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pkg-dir@4.2.0", + "name": "pkg-dir", + "escapedName": "pkg-dir", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/import-local" + ], + "_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + "dependencies": { + "find-up": "^4.0.0" + }, + "description": "Find the root directory of a Node.js project or npm package", + "devDependencies": { + "ava": "^1.4.1", + "tempy": "^0.3.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/pkg-dir#readme", "keywords": [ "package", "json", @@ -44,13 +79,14 @@ "walking", "path" ], - "dependencies": { - "find-up": "^4.0.0" + "license": "MIT", + "name": "pkg-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tempy": "^0.3.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.2.0" +} diff --git a/node_modules/plur/package.json b/node_modules/plur/package.json index fe91e1771..29738915f 100644 --- a/node_modules/plur/package.json +++ b/node_modules/plur/package.json @@ -1,25 +1,59 @@ { - "name": "plur", - "version": "4.0.0", - "description": "Pluralize a word", - "license": "MIT", - "repository": "sindresorhus/plur", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "plur@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "plur@4.0.0", + "_id": "plur@4.0.0", + "_inBundle": false, + "_integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==", + "_location": "/plur", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "plur@4.0.0", + "name": "plur", + "escapedName": "plur", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/plur/issues" + }, + "dependencies": { + "irregular-plurals": "^3.2.0" + }, + "description": "Pluralize a word", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.26.1" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/plur#readme", "keywords": [ "plural", "plurals", @@ -32,12 +66,14 @@ "noun", "nouns" ], - "dependencies": { - "irregular-plurals": "^3.2.0" + "license": "MIT", + "name": "plur", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/plur.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.26.1" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/prepend-http/package.json b/node_modules/prepend-http/package.json index 9dfb56a48..7d9dae5ee 100644 --- a/node_modules/prepend-http/package.json +++ b/node_modules/prepend-http/package.json @@ -1,23 +1,53 @@ { - "name": "prepend-http", - "version": "2.0.0", - "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", - "license": "MIT", - "repository": "sindresorhus/prepend-http", + "_args": [ + [ + "prepend-http@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "prepend-http@2.0.0", + "_id": "prepend-http@2.0.0", + "_inBundle": false, + "_integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "_location": "/prepend-http", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "prepend-http@2.0.0", + "name": "prepend-http", + "escapedName": "prepend-http", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/url-parse-lax" + ], + "_resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/prepend-http/issues" + }, + "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/prepend-http#readme", "keywords": [ "prepend", "protocol", @@ -28,8 +58,14 @@ "https", "humanized" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "prepend-http", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/prepend-http.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/pretty-ms/package.json b/node_modules/pretty-ms/package.json index c491ffca7..2e2631f56 100644 --- a/node_modules/pretty-ms/package.json +++ b/node_modules/pretty-ms/package.json @@ -1,25 +1,59 @@ { - "name": "pretty-ms", - "version": "6.0.1", - "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", - "license": "MIT", - "repository": "sindresorhus/pretty-ms", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "pretty-ms@6.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "pretty-ms@6.0.1", + "_id": "pretty-ms@6.0.1", + "_inBundle": false, + "_integrity": "sha512-ke4njoVmlotekHlHyCZ3wI/c5AMT8peuHs8rKJqekj/oR5G8lND2dVpicFlUz5cbZgE290vvkMuDwfj/OcW1kw==", + "_location": "/pretty-ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pretty-ms@6.0.1", + "name": "pretty-ms", + "escapedName": "pretty-ms", + "rawSpec": "6.0.1", + "saveSpec": null, + "fetchSpec": "6.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-6.0.1.tgz", + "_spec": "6.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/pretty-ms/issues" + }, + "dependencies": { + "parse-ms": "^2.1.0" + }, + "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=10" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/pretty-ms#readme", "keywords": [ "pretty", "prettify", @@ -38,12 +72,14 @@ "number", "hrtime" ], - "dependencies": { - "parse-ms": "^2.1.0" + "license": "MIT", + "name": "pretty-ms", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pretty-ms.git" }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "6.0.1" +} diff --git a/node_modules/process/package.json b/node_modules/process/package.json index 390815d12..caad8b826 100644 --- a/node_modules/process/package.json +++ b/node_modules/process/package.json @@ -1,27 +1,62 @@ { - "author": "Roman Shtylman ", - "name": "process", + "_args": [ + [ + "process@0.11.10", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "process@0.11.10", + "_id": "process@0.11.10", + "_inBundle": false, + "_integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "_location": "/process", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "process@0.11.10", + "name": "process", + "escapedName": "process", + "rawSpec": "0.11.10", + "saveSpec": null, + "fetchSpec": "0.11.10" + }, + "_requiredBy": [ + "/path" + ], + "_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "_spec": "0.11.10", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Roman Shtylman", + "email": "shtylman@gmail.com" + }, + "browser": "./browser.js", + "bugs": { + "url": "https://github.com/shtylman/node-process/issues" + }, "description": "process information for node.js and browsers", + "devDependencies": { + "mocha": "2.2.1", + "zuul": "^3.10.3" + }, + "engines": { + "node": ">= 0.6.0" + }, + "homepage": "https://github.com/shtylman/node-process#readme", "keywords": [ "process" ], - "scripts": { - "test": "mocha test.js", - "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js" - }, - "version": "0.11.10", + "license": "MIT", + "main": "./index.js", + "name": "process", "repository": { "type": "git", "url": "git://github.com/shtylman/node-process.git" }, - "license": "MIT", - "browser": "./browser.js", - "main": "./index.js", - "engines": { - "node": ">= 0.6.0" + "scripts": { + "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js", + "test": "mocha test.js" }, - "devDependencies": { - "mocha": "2.2.1", - "zuul": "^3.10.3" - } -} \ No newline at end of file + "version": "0.11.10" +} diff --git a/node_modules/tunnel/.npmignore b/node_modules/propagate/.eslintignore similarity index 58% rename from node_modules/tunnel/.npmignore rename to node_modules/propagate/.eslintignore index 6684c763e..ccc29308b 100644 --- a/node_modules/tunnel/.npmignore +++ b/node_modules/propagate/.eslintignore @@ -1,2 +1,2 @@ -/.idea +/coverage /node_modules diff --git a/node_modules/propagate/.eslintrc.yml b/node_modules/propagate/.eslintrc.yml new file mode 100644 index 000000000..ad4168bb4 --- /dev/null +++ b/node_modules/propagate/.eslintrc.yml @@ -0,0 +1,35 @@ +env: + node: true + +parserOptions: + ecmaVersion: 9 + # Override eslint-config-standard, which incorrectly sets this to "module", + # though that setting is only for ES6 modules, not CommonJS modules. + sourceType: 'script' + +extends: + - 'eslint:recommended' + - standard + - prettier + +rules: + # Override some recommended rules. + no-unused-vars: ['error', { 'args': 'none' }] + no-empty: ['error', { 'allowEmptyCatch': true }] + + # Nock additions. + strict: ['error', 'safe'] + no-loop-func: 'error' + no-var: 'error' + prefer-const: 'error' + object-shorthand: ['error', 'properties'] + prefer-template: 'error' + arrow-body-style: ['error', 'as-needed'] + prefer-destructuring: + [ + 'error', + { + 'VariableDeclarator': { 'array': false, 'object': true }, + 'AssignmentExpression': { 'array': false, 'object': false }, + }, + ] diff --git a/node_modules/propagate/.prettierignore b/node_modules/propagate/.prettierignore new file mode 100644 index 000000000..59590966f --- /dev/null +++ b/node_modules/propagate/.prettierignore @@ -0,0 +1,4 @@ +package.json +package-lock.json +/.nyc_output +/coverage diff --git a/node_modules/propagate/.prettierrc.yml b/node_modules/propagate/.prettierrc.yml new file mode 100644 index 000000000..d894f6300 --- /dev/null +++ b/node_modules/propagate/.prettierrc.yml @@ -0,0 +1,5 @@ +semi: false +singleQuote: true +trailingComma: es5 +bracketSpacing: true +endOfLine: lf diff --git a/node_modules/propagate/.travis.yml b/node_modules/propagate/.travis.yml new file mode 100644 index 000000000..4e2fc0334 --- /dev/null +++ b/node_modules/propagate/.travis.yml @@ -0,0 +1,27 @@ +language: node_js +cache: npm + +# Trigger a push build on master and greenkeeper branches + PRs build on every branches +# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147) +branches: + only: + - master + - /^greenkeeper.*$/ + - beta # semantic-release preview releases + - next # semantic-release @next releases + - /^\d+\.x$/ # semantic-release maintenance releases + +stages: + - test + - name: release + if: branch =~ /^(\d+\.x|master|next|beta)$/ AND type IN (push) + +jobs: + include: + - stage: test + node_js: 10 + - node_js: 8 + - stage: release + node_js: lts/* + env: semantic-release + script: npx semantic-release diff --git a/node_modules/tunnel/LICENSE b/node_modules/propagate/LICENSE.md similarity index 92% rename from node_modules/tunnel/LICENSE rename to node_modules/propagate/LICENSE.md index 8b8a895c8..ebb06d4e0 100644 --- a/node_modules/tunnel/LICENSE +++ b/node_modules/propagate/LICENSE.md @@ -1,6 +1,6 @@ -The MIT License (MIT) +The MIT License -Copyright (c) 2012 Koichi Kobayashi +Copyright (c) 2015-2019 Pedro Teixeira and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/node_modules/propagate/README.md b/node_modules/propagate/README.md new file mode 100644 index 000000000..dbe46900c --- /dev/null +++ b/node_modules/propagate/README.md @@ -0,0 +1,72 @@ +# propagate + +[![npm](https://img.shields.io/npm/v/nock.svg?style=flat-square)][npmjs] +[![Build Status](https://img.shields.io/travis/nock/propagate/master.svg?style=flat-square)][build] +[![Coverage](https://img.shields.io/coveralls/github/nock/propagate.svg?style=flat-square)][coverage] + +[npmjs]: https://www.npmjs.com/package/propagate +[build]: https://travis-ci.org/nock/propagate +[coverage]: https://coveralls.io/github/nock/propagate + +Propagate events from one event emitter into another. + +## Install + +```bash +$ npm install propagate +``` + +## Propagate + +```javascript +var ee1 = new EventEmitter() +var ee2 = new EventEmitter() +propagate(ee1, ee2) + +ee2.on('event', function(a, b) { + console.log('got propagated event', a, b) +}) + +ee1.emit('event', 'a', 'b') +``` + +## Unpropagate + +You can unpropagate by ending the propagation like this: + +```javascript +var ee1 = new EventEmitter() +var ee2 = new EventEmitter() +var p = propagate(ee1, ee2) + +// ... + +p.end() +``` + +## Only propagate certain events: + +```javascript +var ee1 = new EventEmitter() +var ee2 = new EventEmitter() +var p = propagate(['event1', 'event2'], ee1, ee2) +``` + +## Propagate certain events as other events: + +```javascript +var ee1 = new EventEmitter() +var ee2 = new EventEmitter() +var p = propagate( + { + event1: 'other-event1', + event2: 'other-event2', + }, + ee1, + ee2 +) +``` + +# License + +MIT diff --git a/node_modules/propagate/index.js b/node_modules/propagate/index.js new file mode 100644 index 000000000..ea4643491 --- /dev/null +++ b/node_modules/propagate/index.js @@ -0,0 +1,85 @@ +'use strict' + +function propagate(events, source, dest) { + if (arguments.length < 3) { + dest = source + source = events + events = undefined + } + + // events should be an array or object + const eventsIsObject = typeof events === 'object' + if (events && !eventsIsObject) events = [events] + + if (eventsIsObject) { + return explicitPropagate(events, source, dest) + } + + const shouldPropagate = eventName => + events === undefined || events.includes(eventName) + + const oldEmit = source.emit + + // Returns true if the event had listeners, false otherwise. + // https://nodejs.org/api/events.html#events_emitter_emit_eventname_args + source.emit = (eventName, ...args) => { + const oldEmitHadListeners = oldEmit.call(source, eventName, ...args) + + let destEmitHadListeners = false + if (shouldPropagate(eventName)) { + destEmitHadListeners = dest.emit(eventName, ...args) + } + + return oldEmitHadListeners || destEmitHadListeners + } + + function end() { + source.emit = oldEmit + } + + return { + end, + } +} + +module.exports = propagate + +function explicitPropagate(events, source, dest) { + let eventsIn + let eventsOut + if (Array.isArray(events)) { + eventsIn = events + eventsOut = events + } else { + eventsIn = Object.keys(events) + eventsOut = eventsIn.map(function(key) { + return events[key] + }) + } + + const listeners = eventsOut.map(function(event) { + return function() { + const args = Array.prototype.slice.call(arguments) + args.unshift(event) + dest.emit.apply(dest, args) + } + }) + + listeners.forEach(register) + + return { + end, + } + + function register(listener, i) { + source.on(eventsIn[i], listener) + } + + function unregister(listener, i) { + source.removeListener(eventsIn[i], listener) + } + + function end() { + listeners.forEach(unregister) + } +} diff --git a/node_modules/propagate/package.json b/node_modules/propagate/package.json new file mode 100644 index 000000000..41277ac2f --- /dev/null +++ b/node_modules/propagate/package.json @@ -0,0 +1,86 @@ +{ + "_from": "propagate@^2.0.0", + "_id": "propagate@2.0.1", + "_inBundle": false, + "_integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", + "_location": "/propagate", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "propagate@^2.0.0", + "name": "propagate", + "escapedName": "propagate", + "rawSpec": "^2.0.0", + "saveSpec": null, + "fetchSpec": "^2.0.0" + }, + "_requiredBy": [ + "/nock" + ], + "_resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "_shasum": "40cdedab18085c792334e64f0ac17256d38f9a45", + "_spec": "propagate@^2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/nock", + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com" + }, + "bugs": { + "url": "http://github.com/nock/propagate/issues" + }, + "bundleDependencies": false, + "contributors": [ + { + "name": "Pedro Teixeira" + } + ], + "dependencies": {}, + "deprecated": false, + "description": "Propagate events from one event emitter into another", + "devDependencies": { + "eslint": "^5.16.0", + "eslint-config-prettier": "^4.1.0", + "eslint-config-standard": "^12.0.0", + "eslint-plugin-import": "^2.16.0", + "eslint-plugin-node": "^8.0.1", + "eslint-plugin-promise": "^4.1.1", + "eslint-plugin-standard": "^4.0.0", + "prettier": "^1.16.4", + "semantic-release": "16.0.0-beta.18", + "tap": "^12.6.1" + }, + "engines": { + "node": ">= 8" + }, + "homepage": "http://github.com/nock/propagate#readme", + "keywords": [ + "event", + "events", + "emitter", + "eventemitter", + "propagation" + ], + "license": "MIT", + "name": "propagate", + "nyc": { + "exclude": [ + "tests/" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/nock/propagate.git" + }, + "scripts": { + "coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html", + "lint": "eslint \"**/*.js\"", + "posttest": "npm run -s prettier:check", + "pretest": "npm run lint", + "prettier": "prettier --write \"**/*.@(js|md|yml|json)\"", + "prettier:check": "prettier --check \"**/*.@(js|md|yml|json)\"", + "test": "npm run -s unit", + "unit": "tap tests/index.js" + }, + "version": "2.0.1" +} diff --git a/node_modules/propagate/tests/index.js b/node_modules/propagate/tests/index.js new file mode 100644 index 000000000..6612a682b --- /dev/null +++ b/node_modules/propagate/tests/index.js @@ -0,0 +1,168 @@ +'use strict' + +const { test } = require('tap') +const { EventEmitter } = require('events') +const propagate = require('..') + +test('propagates events', t => { + t.plan(16) + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + propagate(ee1, ee2) + + ee2.on('event-1', (a, b, c) => { + t.equal(a, 'a') + t.equal(b, 'b') + t.equal(c, undefined) + }) + + ee2.on('event-2', (a, b, c) => { + t.equal(a, 'c') + t.equal(b, 'd') + t.equal(c, undefined) + }) + + t.true(ee1.emit('event-1', 'a', 'b')) + t.true(ee1.emit('event-1', 'a', 'b')) + t.true(ee1.emit('event-2', 'c', 'd')) + t.true(ee1.emit('event-2', 'c', 'd')) +}) + +test('propagates can end', t => { + t.plan(3) + + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + const prop = propagate(ee1, ee2) + + ee2.on('event', () => { + t.ok('true', 'propagated') + }) + + t.true(ee1.emit('event')) + prop.end() + t.false(ee1.emit('event')) +}) + +test('after propagation old one still emits', t => { + t.plan(4) + + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + const prop = propagate(ee1, ee2) + + ee1.on('event', () => { + t.ok('true', 'propagated') + }) + + t.true(ee1.emit('event')) + prop.end() + t.true(ee1.emit('event')) +}) + +test('emit on source before destination', t => { + t.plan(2) + + const source = new EventEmitter() + const dest = new EventEmitter() + + // Set up test case for "propagate all" + // `count` should have been incremented by handler on source when handler on dest is invoked + let count = 0 + propagate(source, dest) + source.on('event', () => { + count++ + }) + dest.on('event', () => { + t.equal(count, 1, 'emit on source first') + }) + + // Emit the events for assertion + t.true(source.emit('event')) +}) + +test('is able to propagate only certain events', t => { + t.plan(6) + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + // propagate only event-1 and event-2, leaving out + const p = propagate(['event-1', 'event-2'], ee1, ee2) + + ee2.on('event-1', () => { + t.ok(true, 'event 1 received') + }) + + ee2.on('event-2', (a, b, c) => { + t.ok(true, 'event 2 received') + }) + + ee2.on('event-3', (a, b, c) => { + t.fail('event 3 should not have been received') + }) + + t.true(ee1.emit('event-1')) + t.true(ee1.emit('event-2')) + t.false(ee1.emit('event-3')) + + p.end() + + t.false(ee1.emit('event-1')) +}) + +test('is able to propagate and map certain events', t => { + t.plan(6) + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + // propagate only event-1 and event-2, leaving out + const p = propagate( + { + 'event-1': 'other-event-1', + 'event-2': 'other-event-2', + }, + ee1, + ee2 + ) + + ee2.on('other-event-1', () => { + t.ok(true, 'event 1 received') + }) + + ee2.on('other-event-2', (a, b, c) => { + t.ok(true, 'event 2 received') + }) + + ee2.on('event-3', (a, b, c) => { + t.fail('event 3 should not have been received') + }) + + t.true(ee1.emit('event-1')) + t.true(ee1.emit('event-2')) + t.false(ee1.emit('event-3')) + + p.end() + + t.false(ee1.emit('event-1')) +}) + +test('is able to propagate a single event', t => { + t.plan(5) + const ee1 = new EventEmitter() + const ee2 = new EventEmitter() + const p = propagate('event-1', ee1, ee2) + + ee2.on('event-1', () => { + t.ok(true, 'event 1 received') + }) + + ee2.on('event-2', (a, b, c) => { + t.fail('event 3 should not have been received') + }) + + t.true(ee1.emit('event-1')) + t.false(ee1.emit('event-2')) + + p.end() + + t.false(ee1.emit('event-1')) + t.false(ee1.emit('event-2')) +}) diff --git a/node_modules/pump/package.json b/node_modules/pump/package.json index 638a6a24d..ede8507e2 100644 --- a/node_modules/pump/package.json +++ b/node_modules/pump/package.json @@ -1,24 +1,63 @@ { - "name": "pump", - "version": "3.0.0", - "repository": "git://github.com/mafintosh/pump.git", - "license": "MIT", - "description": "pipe streams together and close all of them if one of them closes", + "_args": [ + [ + "pump@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "pump@3.0.0", + "_id": "pump@3.0.0", + "_inBundle": false, + "_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "_location": "/pump", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pump@3.0.0", + "name": "pump", + "escapedName": "pump", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/cacheable-request/get-stream", + "/get-stream" + ], + "_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, "browser": { "fs": false }, + "bugs": { + "url": "https://github.com/mafintosh/pump/issues" + }, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "description": "pipe streams together and close all of them if one of them closes", + "homepage": "https://github.com/mafintosh/pump#readme", "keywords": [ "streams", "pipe", "destroy", "callback" ], - "author": "Mathias Buus Madsen ", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "license": "MIT", + "name": "pump", + "repository": { + "type": "git", + "url": "git://github.com/mafintosh/pump.git" }, "scripts": { "test": "node test-browser.js && node test-node.js" - } -} \ No newline at end of file + }, + "version": "3.0.0" +} diff --git a/node_modules/pupa/package.json b/node_modules/pupa/package.json index 0bb8cca69..270301f2a 100644 --- a/node_modules/pupa/package.json +++ b/node_modules/pupa/package.json @@ -1,24 +1,58 @@ { - "name": "pupa", - "version": "2.0.1", - "description": "Simple micro templating", - "license": "MIT", - "repository": "sindresorhus/pupa", + "_args": [ + [ + "pupa@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "pupa@2.0.1", + "_id": "pupa@2.0.1", + "_inBundle": false, + "_integrity": "sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==", + "_location": "/pupa", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pupa@2.0.1", + "name": "pupa", + "escapedName": "pupa", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/pupa/-/pupa-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/pupa/issues" + }, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "description": "Simple micro templating", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/pupa#readme", "keywords": [ "string", "formatting", @@ -36,12 +70,14 @@ "transform", "micro" ], - "dependencies": { - "escape-goat": "^2.0.0" + "license": "MIT", + "name": "pupa", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pupa.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.1" +} diff --git a/node_modules/rc/package.json b/node_modules/rc/package.json index 07a1a16b0..59dc652a3 100644 --- a/node_modules/rc/package.json +++ b/node_modules/rc/package.json @@ -1,29 +1,69 @@ { - "name": "rc", - "version": "1.2.8", - "description": "hardwired configuration loader", - "main": "index.js", + "_args": [ + [ + "rc@1.2.8", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "rc@1.2.8", + "_id": "rc@1.2.8", + "_inBundle": false, + "_integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "_location": "/rc", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "rc@1.2.8", + "name": "rc", + "escapedName": "rc", + "rawSpec": "1.2.8", + "saveSpec": null, + "fetchSpec": "1.2.8" + }, + "_requiredBy": [ + "/registry-auth-token", + "/registry-url" + ], + "_resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "_spec": "1.2.8", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "dominictarr.com" + }, + "bin": { + "rc": "cli.js" + }, "browser": "browser.js", - "scripts": { - "test": "set -e; node test/test.js; node test/ini.js; node test/nested-env-vars.js" + "bugs": { + "url": "https://github.com/dominictarr/rc/issues" }, - "repository": { - "type": "git", - "url": "https://github.com/dominictarr/rc.git" + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "description": "hardwired configuration loader", + "homepage": "https://github.com/dominictarr/rc#readme", "keywords": [ "config", "rc", "unix", "defaults" ], - "bin": "./cli.js", - "author": "Dominic Tarr (dominictarr.com)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } -} \ No newline at end of file + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "main": "index.js", + "name": "rc", + "repository": { + "type": "git", + "url": "git+https://github.com/dominictarr/rc.git" + }, + "scripts": { + "test": "set -e; node test/test.js; node test/ini.js; node test/nested-env-vars.js" + }, + "version": "1.2.8" +} diff --git a/node_modules/read-pkg/node_modules/parse-json/package.json b/node_modules/read-pkg/node_modules/parse-json/package.json index 6c5bb850d..0b7fa2cae 100644 --- a/node_modules/read-pkg/node_modules/parse-json/package.json +++ b/node_modules/read-pkg/node_modules/parse-json/package.json @@ -1,24 +1,61 @@ { - "name": "parse-json", - "version": "5.0.0", - "description": "Parse JSON with more helpful errors", - "license": "MIT", - "repository": "sindresorhus/parse-json", + "_args": [ + [ + "parse-json@5.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "parse-json@5.0.0", + "_id": "parse-json@5.0.0", + "_inBundle": false, + "_integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "_location": "/read-pkg/parse-json", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse-json@5.0.0", + "name": "parse-json", + "escapedName": "parse-json", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + }, + "description": "Parse JSON with more helpful errors", + "devDependencies": { + "ava": "^1.4.1", + "nyc": "^14.1.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava" - }, "files": [ "index.js", "vendor" ], + "homepage": "https://github.com/sindresorhus/parse-json#readme", "keywords": [ "parse", "json", @@ -30,15 +67,14 @@ "helpful", "string" ], - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" + "license": "MIT", + "name": "parse-json", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/parse-json.git" }, - "devDependencies": { - "ava": "^1.4.1", - "nyc": "^14.1.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && nyc ava" + }, + "version": "5.0.0" +} diff --git a/node_modules/read-pkg/node_modules/type-fest/package.json b/node_modules/read-pkg/node_modules/type-fest/package.json index 03b929edc..fc8c77b80 100644 --- a/node_modules/read-pkg/node_modules/type-fest/package.json +++ b/node_modules/read-pkg/node_modules/type-fest/package.json @@ -1,24 +1,58 @@ { - "name": "type-fest", - "version": "0.6.0", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", + "_args": [ + [ + "type-fest@0.6.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "type-fest@0.6.0", + "_id": "type-fest@0.6.0", + "_inBundle": false, + "_integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "_location": "/read-pkg/type-fest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "type-fest@0.6.0", + "name": "type-fest", + "escapedName": "type-fest", + "rawSpec": "0.6.0", + "saveSpec": null, + "fetchSpec": "0.6.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "_spec": "0.6.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/type-fest/issues" + }, + "description": "A collection of essential TypeScript types", + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^1.9.0", + "@typescript-eslint/parser": "^1.10.2", + "eslint-config-xo-typescript": "^0.14.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && tsd" - }, "files": [ "index.d.ts", "source" ], + "homepage": "https://github.com/sindresorhus/type-fest#readme", "keywords": [ "typescript", "ts", @@ -30,14 +64,16 @@ "merge", "json" ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^1.9.0", - "@typescript-eslint/parser": "^1.10.2", - "eslint-config-xo-typescript": "^0.14.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "license": "(MIT OR CC0-1.0)", + "name": "type-fest", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/type-fest.git" }, + "scripts": { + "test": "xo && tsd" + }, + "version": "0.6.0", "xo": { "extends": "xo-typescript", "extensions": [ @@ -48,4 +84,4 @@ "@typescript-eslint/indent": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/read-pkg/package.json b/node_modules/read-pkg/package.json index 8330328dd..f6707bf9c 100644 --- a/node_modules/read-pkg/package.json +++ b/node_modules/read-pkg/package.json @@ -1,24 +1,66 @@ { - "name": "read-pkg", - "version": "5.2.0", - "description": "Read a package.json file", - "license": "MIT", - "repository": "sindresorhus/read-pkg", + "_args": [ + [ + "read-pkg@5.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "read-pkg@5.2.0", + "_id": "read-pkg@5.2.0", + "_inBundle": false, + "_integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "_location": "/read-pkg", + "_phantomChildren": { + "@babel/code-frame": "7.5.5", + "error-ex": "1.3.2", + "json-parse-better-errors": "1.0.2", + "lines-and-columns": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "read-pkg@5.2.0", + "name": "read-pkg", + "escapedName": "read-pkg", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "description": "Read a package.json file", + "devDependencies": { + "ava": "^2.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/read-pkg#readme", "keywords": [ "json", "read", @@ -30,20 +72,19 @@ "package", "normalize" ], - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "license": "MIT", + "name": "read-pkg", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/read-pkg.git" }, - "devDependencies": { - "ava": "^2.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava && tsd" }, + "version": "5.2.0", "xo": { "ignores": [ "test/test.js" ] } -} \ No newline at end of file +} diff --git a/node_modules/readdirp/package.json b/node_modules/readdirp/package.json index a7424e864..3ce82c81e 100644 --- a/node_modules/readdirp/package.json +++ b/node_modules/readdirp/package.json @@ -1,49 +1,56 @@ { - "name": "readdirp", - "description": "Recursive version of fs.readdir with streaming API.", - "version": "3.4.0", - "homepage": "https://github.com/paulmillr/readdirp", - "repository": { - "type": "git", - "url": "git://github.com/paulmillr/readdirp.git" + "_args": [ + [ + "readdirp@3.4.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "readdirp@3.4.0", + "_id": "readdirp@3.4.0", + "_inBundle": false, + "_integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", + "_location": "/readdirp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "readdirp@3.4.0", + "name": "readdirp", + "escapedName": "readdirp", + "rawSpec": "3.4.0", + "saveSpec": null, + "fetchSpec": "3.4.0" + }, + "_requiredBy": [ + "/chokidar" + ], + "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", + "_spec": "3.4.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "thlorenz.com" }, - "license": "MIT", "bugs": { "url": "https://github.com/paulmillr/readdirp/issues" }, - "author": "Thorsten Lorenz (thlorenz.com)", "contributors": [ - "Thorsten Lorenz (thlorenz.com)", - "Paul Miller (https://paulmillr.com)" - ], - "main": "index.js", - "engines": { - "node": ">=8.10.0" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "recursive", - "fs", - "stream", - "streams", - "readdir", - "filesystem", - "find", - "filter" + { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "thlorenz.com" + }, + { + "name": "Paul Miller", + "url": "https://paulmillr.com" + } ], - "scripts": { - "dtslint": "dtslint", - "nyc": "nyc", - "mocha": "mocha --exit", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "test": "npm run lint && nyc npm run mocha" - }, "dependencies": { "picomatch": "^2.2.1" }, + "description": "Recursive version of fs.readdir with streaming API.", "devDependencies": { "@types/node": "^13", "chai": "^4.2", @@ -54,11 +61,8 @@ "nyc": "^15.0.0", "rimraf": "^3.0.0" }, - "nyc": { - "reporter": [ - "html", - "text" - ] + "engines": { + "node": ">=8.10.0" }, "eslintConfig": { "root": true, @@ -117,5 +121,41 @@ "single" ] } - } -} \ No newline at end of file + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/paulmillr/readdirp", + "keywords": [ + "recursive", + "fs", + "stream", + "streams", + "readdir", + "filesystem", + "find", + "filter" + ], + "license": "MIT", + "main": "index.js", + "name": "readdirp", + "nyc": { + "reporter": [ + "html", + "text" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/paulmillr/readdirp.git" + }, + "scripts": { + "dtslint": "dtslint", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --exit", + "nyc": "nyc", + "test": "npm run lint && nyc npm run mocha" + }, + "version": "3.4.0" +} diff --git a/node_modules/registry-auth-token/package.json b/node_modules/registry-auth-token/package.json index f98fc4d62..94ebe60ca 100644 --- a/node_modules/registry-auth-token/package.json +++ b/node_modules/registry-auth-token/package.json @@ -1,20 +1,54 @@ { - "name": "registry-auth-token", - "version": "4.1.1", - "description": "Get the auth token set for an npm registry (if any)", - "main": "index.js", - "scripts": { - "test": "mocha", - "posttest": "standard", - "coverage": "istanbul cover _mocha" + "_args": [ + [ + "registry-auth-token@4.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "registry-auth-token@4.1.1", + "_id": "registry-auth-token@4.1.1", + "_inBundle": false, + "_integrity": "sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==", + "_location": "/registry-auth-token", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "registry-auth-token@4.1.1", + "name": "registry-auth-token", + "escapedName": "registry-auth-token", + "rawSpec": "4.1.1", + "saveSpec": null, + "fetchSpec": "4.1.1" }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git" + "_requiredBy": [ + "/package-json" + ], + "_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.1.1.tgz", + "_spec": "4.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Espen Hovlandsdal", + "email": "espen@hovlandsdal.com" + }, + "bugs": { + "url": "https://github.com/rexxars/registry-auth-token/issues" + }, + "dependencies": { + "rc": "^1.2.8" + }, + "description": "Get the auth token set for an npm registry (if any)", + "devDependencies": { + "istanbul": "^0.4.2", + "mocha": "^6.1.4", + "require-uncached": "^1.0.2", + "standard": "^12.0.1" }, "engines": { "node": ">=6.0.0" }, + "homepage": "https://github.com/rexxars/registry-auth-token#readme", "keywords": [ "npm", "conf", @@ -25,24 +59,22 @@ "token", "authtoken" ], - "author": "Espen Hovlandsdal ", "license": "MIT", - "bugs": { - "url": "https://github.com/rexxars/registry-auth-token/issues" - }, - "homepage": "https://github.com/rexxars/registry-auth-token#readme", - "dependencies": { - "rc": "^1.2.8" + "main": "index.js", + "name": "registry-auth-token", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git" }, - "devDependencies": { - "istanbul": "^0.4.2", - "mocha": "^6.1.4", - "require-uncached": "^1.0.2", - "standard": "^12.0.1" + "scripts": { + "coverage": "istanbul cover _mocha", + "posttest": "standard", + "test": "mocha" }, "standard": { "ignore": [ "coverage/**" ] - } -} \ No newline at end of file + }, + "version": "4.1.1" +} diff --git a/node_modules/registry-url/package.json b/node_modules/registry-url/package.json index eb2b76756..46cf99cb3 100644 --- a/node_modules/registry-url/package.json +++ b/node_modules/registry-url/package.json @@ -1,24 +1,62 @@ { - "name": "registry-url", - "version": "5.1.0", - "description": "Get the set npm registry URL", - "license": "MIT", - "repository": "sindresorhus/registry-url", + "_args": [ + [ + "registry-url@5.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "registry-url@5.1.0", + "_id": "registry-url@5.1.0", + "_inBundle": false, + "_integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "_location": "/registry-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "registry-url@5.1.0", + "name": "registry-url", + "escapedName": "registry-url", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/package-json" + ], + "_resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "ava": { + "serial": true + }, + "bugs": { + "url": "https://github.com/sindresorhus/registry-url/issues" + }, + "dependencies": { + "rc": "^1.2.8" + }, + "description": "Get the set npm registry URL", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/registry-url#readme", "keywords": [ "npm", "conf", @@ -29,16 +67,14 @@ "uri", "scope" ], - "dependencies": { - "rc": "^1.2.8" + "license": "MIT", + "name": "registry-url", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/registry-url.git" }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava && tsd" }, - "ava": { - "serial": true - } -} \ No newline at end of file + "version": "5.1.0" +} diff --git a/node_modules/removeNPMAbsolutePaths/package.json b/node_modules/removeNPMAbsolutePaths/package.json index 28ccddcaa..92f4c4b75 100644 --- a/node_modules/removeNPMAbsolutePaths/package.json +++ b/node_modules/removeNPMAbsolutePaths/package.json @@ -1,39 +1,45 @@ { - "name": "removeNPMAbsolutePaths", - "version": "2.0.0", - "description": "Remove the fields containing local aboslute paths created by NPM", - "keywords": [ - "npm", - "modules" + "_args": [ + [ + "removeNPMAbsolutePaths@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "main": "src/removeNPMAbsolutePaths.js", - "scripts": { - "lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'", - "test": "mocha test", - "test-with-coverage": "nyc --reporter=text mocha test", - "travis": "npm run lint && npm run test-with-coverage", - "coveralls": "nyc report --reporter=text-lcov | coveralls" - }, - "author": "Juanjo Diaz ", - "repository": { - "type": "git", - "url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths" + "_development": true, + "_from": "removeNPMAbsolutePaths@2.0.0", + "_id": "removeNPMAbsolutePaths@2.0.0", + "_inBundle": false, + "_integrity": "sha512-Hea7U6iJcD0NE/aqBqxBMPKeKaxjqMNyTTajmH2dH9hhafJ9Tem5r4UeJK8+BdE1MK9lqoOYqNM0Sq9rl1OIbQ==", + "_location": "/removeNPMAbsolutePaths", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "removeNPMAbsolutePaths@2.0.0", + "name": "removeNPMAbsolutePaths", + "escapedName": "removeNPMAbsolutePaths", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" }, - "bugs": { - "url": "https://github.com/removeNPMAbsolutePaths/issues", + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/removeNPMAbsolutePaths/-/removeNPMAbsolutePaths-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Juanjo Diaz", "email": "juanjo.diazmo@gmail.com" }, - "license": "MIT", - "preferGlobal": true, "bin": { "removeNPMAbsolutePaths": "bin/removeNPMAbsolutePaths" }, - "files": [ - "LICENSE", - "README.md", - "bin/", - "src/" - ], + "bugs": { + "url": "https://github.com/removeNPMAbsolutePaths/issues", + "email": "juanjo.diazmo@gmail.com" + }, + "description": "Remove the fields containing local aboslute paths created by NPM", "devDependencies": { "chai": "^4.2.0", "chai-as-promised": "^7.1.1", @@ -48,5 +54,32 @@ }, "engines": { "node": ">=4.0.0" - } -} \ No newline at end of file + }, + "files": [ + "LICENSE", + "README.md", + "bin/", + "src/" + ], + "homepage": "https://github.com/juanjoDiaz/removeNPMAbsolutePaths#readme", + "keywords": [ + "npm", + "modules" + ], + "license": "MIT", + "main": "src/removeNPMAbsolutePaths.js", + "name": "removeNPMAbsolutePaths", + "preferGlobal": true, + "repository": { + "type": "git", + "url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths.git" + }, + "scripts": { + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'", + "test": "mocha test", + "test-with-coverage": "nyc --reporter=text mocha test", + "travis": "npm run lint && npm run test-with-coverage" + }, + "version": "2.0.0" +} diff --git a/node_modules/require-directory/package.json b/node_modules/require-directory/package.json index 0970ec04c..dcee541d6 100644 --- a/node_modules/require-directory/package.json +++ b/node_modules/require-directory/package.json @@ -1,40 +1,73 @@ { - "author": "Troy Goode (http://github.com/troygoode/)", - "name": "require-directory", - "version": "2.1.1", - "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", - "keywords": [ - "require", - "directory", - "library", - "recursive" + "_args": [ + [ + "require-directory@2.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "homepage": "https://github.com/troygoode/node-require-directory/", - "main": "index.js", - "repository": { - "type": "git", - "url": "git://github.com/troygoode/node-require-directory.git" + "_development": true, + "_from": "require-directory@2.1.1", + "_id": "require-directory@2.1.1", + "_inBundle": false, + "_integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "_location": "/require-directory", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "require-directory@2.1.1", + "name": "require-directory", + "escapedName": "require-directory", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Troy Goode", + "email": "troygoode@gmail.com", + "url": "http://github.com/troygoode/" + }, + "bugs": { + "url": "http://github.com/troygoode/node-require-directory/issues/" }, "contributors": [ { "name": "Troy Goode", "email": "troygoode@gmail.com", - "web": "http://github.com/troygoode/" + "url": "http://github.com/troygoode/" } ], - "license": "MIT", - "bugs": { - "url": "http://github.com/troygoode/node-require-directory/issues/" + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "devDependencies": { + "jshint": "^2.6.0", + "mocha": "^2.1.0" }, "engines": { "node": ">=0.10.0" }, - "devDependencies": { - "jshint": "^2.6.0", - "mocha": "^2.1.0" + "homepage": "https://github.com/troygoode/node-require-directory/", + "keywords": [ + "require", + "directory", + "library", + "recursive" + ], + "license": "MIT", + "main": "index.js", + "name": "require-directory", + "repository": { + "type": "git", + "url": "git://github.com/troygoode/node-require-directory.git" }, "scripts": { - "test": "mocha", - "lint": "jshint index.js test/test.js" - } -} \ No newline at end of file + "lint": "jshint index.js test/test.js", + "test": "mocha" + }, + "version": "2.1.1" +} diff --git a/node_modules/require-main-filename/package.json b/node_modules/require-main-filename/package.json index 3c441b325..23597f448 100644 --- a/node_modules/require-main-filename/package.json +++ b/node_modules/require-main-filename/package.json @@ -1,35 +1,67 @@ { - "name": "require-main-filename", - "version": "2.0.0", - "description": "shim for require.main.filename() that works in as many environments as possible", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "tap --coverage test.js", - "release": "standard-version" - }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/yargs/require-main-filename.git" - }, - "keywords": [ - "require", - "shim", - "iisnode" + "_args": [ + [ + "require-main-filename@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "files": [ - "index.js" + "_development": true, + "_from": "require-main-filename@2.0.0", + "_id": "require-main-filename@2.0.0", + "_inBundle": false, + "_integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "_location": "/require-main-filename", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "require-main-filename@2.0.0", + "name": "require-main-filename", + "escapedName": "require-main-filename", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/yargs" ], - "author": "Ben Coe ", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, "bugs": { "url": "https://github.com/yargs/require-main-filename/issues" }, - "homepage": "https://github.com/yargs/require-main-filename#readme", + "description": "shim for require.main.filename() that works in as many environments as possible", "devDependencies": { "chai": "^4.0.0", "standard": "^10.0.3", "standard-version": "^4.0.0", "tap": "^11.0.0" - } -} \ No newline at end of file + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/yargs/require-main-filename#readme", + "keywords": [ + "require", + "shim", + "iisnode" + ], + "license": "ISC", + "main": "index.js", + "name": "require-main-filename", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" + }, + "scripts": { + "pretest": "standard", + "release": "standard-version", + "test": "tap --coverage test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json index a7d509c0f..f67b07666 100644 --- a/node_modules/resolve-cwd/package.json +++ b/node_modules/resolve-cwd/package.json @@ -1,24 +1,59 @@ { - "name": "resolve-cwd", - "version": "3.0.0", - "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", - "license": "MIT", - "repository": "sindresorhus/resolve-cwd", + "_args": [ + [ + "resolve-cwd@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "resolve-cwd@3.0.0", + "_id": "resolve-cwd@3.0.0", + "_inBundle": false, + "_integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "_location": "/resolve-cwd", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve-cwd@3.0.0", + "name": "resolve-cwd", + "escapedName": "resolve-cwd", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/ava", + "/import-local" + ], + "_resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/resolve-cwd/issues" + }, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/resolve-cwd#readme", "keywords": [ "require", "resolve", @@ -32,12 +67,14 @@ "directory", "import" ], - "dependencies": { - "resolve-from": "^5.0.0" + "license": "MIT", + "name": "resolve-cwd", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/resolve-cwd.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/resolve-from/package.json b/node_modules/resolve-from/package.json index 3d6db83a4..ca351be02 100644 --- a/node_modules/resolve-from/package.json +++ b/node_modules/resolve-from/package.json @@ -1,24 +1,55 @@ { - "name": "resolve-from", - "version": "5.0.0", - "description": "Resolve the path of a module like `require.resolve()` but from a given path", - "license": "MIT", - "repository": "sindresorhus/resolve-from", + "_args": [ + [ + "resolve-from@5.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "resolve-from@5.0.0", + "_id": "resolve-from@5.0.0", + "_inBundle": false, + "_integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "_location": "/resolve-from", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve-from@5.0.0", + "name": "resolve-from", + "escapedName": "resolve-from", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/resolve-cwd" + ], + "_resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/resolve-from/issues" + }, + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/resolve-from#readme", "keywords": [ "require", "resolve", @@ -28,9 +59,14 @@ "like", "import" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "resolve-from", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/resolve-from.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.0.0" +} diff --git a/node_modules/resolve/package.json b/node_modules/resolve/package.json index f8e40a6ac..bc007e0b9 100644 --- a/node_modules/resolve/package.json +++ b/node_modules/resolve/package.json @@ -1,28 +1,46 @@ { - "name": "resolve", - "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", - "version": "1.13.1", - "repository": { - "type": "git", - "url": "git://github.com/browserify/resolve.git" + "_args": [ + [ + "resolve@1.13.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "resolve@1.13.1", + "_id": "resolve@1.13.1", + "_inBundle": false, + "_integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==", + "_location": "/resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve@1.13.1", + "name": "resolve", + "escapedName": "resolve", + "rawSpec": "1.13.1", + "saveSpec": null, + "fetchSpec": "1.13.1" }, - "main": "index.js", - "keywords": [ - "resolve", - "require", - "node", - "module" + "_requiredBy": [ + "/normalize-package-data", + "/tslint" ], - "scripts": { - "prepublish": "safe-publish-latest", - "lint": "eslint .", - "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", - "tests-only": "tape test/*.js", - "pretest": "npm run lint", - "test": "npm run --silent tests-only", - "posttest": "npm run test:multirepo", - "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" + "_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz", + "_spec": "1.13.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/browserify/resolve/issues" }, + "dependencies": { + "path-parse": "^1.0.6" + }, + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", "devDependencies": { "@ljharb/eslint-config": "^15.0.2", "array.prototype.map": "^1.0.1", @@ -32,16 +50,32 @@ "tap": "0.4.13", "tape": "^4.11.0" }, - "license": "MIT", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, "funding": { "url": "https://github.com/sponsors/ljharb" }, - "dependencies": { - "path-parse": "^1.0.6" - } -} \ No newline at end of file + "homepage": "https://github.com/browserify/resolve#readme", + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "license": "MIT", + "main": "index.js", + "name": "resolve", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" + }, + "scripts": { + "lint": "eslint .", + "posttest": "npm run test:multirepo", + "prepublish": "safe-publish-latest", + "pretest": "npm run lint", + "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", + "test": "npm run --silent tests-only", + "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test", + "tests-only": "tape test/*.js" + }, + "version": "1.13.1" +} diff --git a/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json index a60376465..c13b8cf6a 100644 --- a/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +++ b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json @@ -1,3 +1,3 @@ { "main": "main.js" -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/baz/package.json b/node_modules/resolve/test/resolver/baz/package.json index ddf31dc61..c41e4dbf7 100644 --- a/node_modules/resolve/test/resolver/baz/package.json +++ b/node_modules/resolve/test/resolver/baz/package.json @@ -1,3 +1,3 @@ { - "main": "quux.js" -} \ No newline at end of file + "main": "quux.js" +} diff --git a/node_modules/resolve/test/resolver/browser_field/package.json b/node_modules/resolve/test/resolver/browser_field/package.json index 291ab03bc..bf406f083 100644 --- a/node_modules/resolve/test/resolver/browser_field/package.json +++ b/node_modules/resolve/test/resolver/browser_field/package.json @@ -2,4 +2,4 @@ "name": "browser_field", "main": "a", "browser": "b" -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/dot_main/package.json b/node_modules/resolve/test/resolver/dot_main/package.json index d08e00e9d..d7f4fc807 100644 --- a/node_modules/resolve/test/resolver/dot_main/package.json +++ b/node_modules/resolve/test/resolver/dot_main/package.json @@ -1,3 +1,3 @@ { - "main": "." -} \ No newline at end of file + "main": "." +} diff --git a/node_modules/resolve/test/resolver/dot_slash_main/package.json b/node_modules/resolve/test/resolver/dot_slash_main/package.json index a92bfd7b1..f51287b9d 100644 --- a/node_modules/resolve/test/resolver/dot_slash_main/package.json +++ b/node_modules/resolve/test/resolver/dot_slash_main/package.json @@ -1,3 +1,3 @@ { - "main": "./" -} \ No newline at end of file + "main": "./" +} diff --git a/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/resolve/test/resolver/incorrect_main/package.json index b3b73da08..b71880417 100644 --- a/node_modules/resolve/test/resolver/incorrect_main/package.json +++ b/node_modules/resolve/test/resolver/incorrect_main/package.json @@ -1,3 +1,3 @@ { - "main": "wrong.js" -} \ No newline at end of file + "main": "wrong.js" +} diff --git a/node_modules/resolve/test/resolver/invalid_main/package.json b/node_modules/resolve/test/resolver/invalid_main/package.json index 3158504f6..0cf827995 100644 --- a/node_modules/resolve/test/resolver/invalid_main/package.json +++ b/node_modules/resolve/test/resolver/invalid_main/package.json @@ -4,4 +4,4 @@ "why is this a thing", "srsly omg wtf" ] -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/multirepo/package.json b/node_modules/resolve/test/resolver/multirepo/package.json index 9c6d56b61..8508f9d2c 100644 --- a/node_modules/resolve/test/resolver/multirepo/package.json +++ b/node_modules/resolve/test/resolver/multirepo/package.json @@ -17,4 +17,4 @@ "devDependencies": { "lerna": "^3.4.3" } -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json index a2bbfff89..204de51e0 100644 --- a/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json @@ -11,4 +11,4 @@ "dependencies": { "@my-scope/package-b": "^0.0.0" } -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json index f7adacdeb..f57c3b5f5 100644 --- a/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json @@ -11,4 +11,4 @@ "dependencies": { "@my-scope/package-a": "^0.0.0" } -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json b/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json index f3fffe71c..acfe9e951 100644 --- a/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +++ b/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json @@ -12,4 +12,4 @@ "dependencies": { "buffer": "*" } -} \ No newline at end of file +} diff --git a/node_modules/resolve/test/resolver/symlinked/package/package.json b/node_modules/resolve/test/resolver/symlinked/package/package.json index b6e6d85fd..8e1b58591 100644 --- a/node_modules/resolve/test/resolver/symlinked/package/package.json +++ b/node_modules/resolve/test/resolver/symlinked/package/package.json @@ -1,3 +1,3 @@ { - "main": "bar.js" + "main": "bar.js" } \ No newline at end of file diff --git a/node_modules/responselike/package.json b/node_modules/responselike/package.json index 67f605a8d..1e6cb6c31 100644 --- a/node_modules/responselike/package.json +++ b/node_modules/responselike/package.json @@ -1,15 +1,52 @@ { - "name": "responselike", - "version": "1.0.2", - "description": "A response-like object for mocking a Node.js HTTP response stream", - "main": "src/index.js", - "scripts": { - "test": "xo && nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls" + "_args": [ + [ + "responselike@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "responselike@1.0.2", + "_id": "responselike@1.0.2", + "_inBundle": false, + "_integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "_location": "/responselike", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "responselike@1.0.2", + "name": "responselike", + "escapedName": "responselike", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" }, - "xo": { - "extends": "xo-lukechilds" + "_requiredBy": [ + "/cacheable-request" + ], + "_resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "lukechilds" + }, + "bugs": { + "url": "https://github.com/lukechilds/responselike/issues" }, + "dependencies": { + "lowercase-keys": "^1.0.0" + }, + "description": "A response-like object for mocking a Node.js HTTP response stream", + "devDependencies": { + "ava": "^0.22.0", + "coveralls": "^2.13.1", + "eslint-config-xo-lukechilds": "^1.0.0", + "get-stream": "^3.0.0", + "nyc": "^11.1.0", + "xo": "^0.19.0" + }, + "homepage": "https://github.com/lukechilds/responselike#readme", "keywords": [ "http", "https", @@ -18,21 +55,19 @@ "request", "responselike" ], + "license": "MIT", + "main": "src/index.js", + "name": "responselike", "repository": { "type": "git", - "url": "https://github.com/lukechilds/responselike.git" + "url": "git+https://github.com/lukechilds/responselike.git" }, - "author": "lukechilds", - "license": "MIT", - "devDependencies": { - "ava": "^0.22.0", - "coveralls": "^2.13.1", - "eslint-config-xo-lukechilds": "^1.0.0", - "get-stream": "^3.0.0", - "nyc": "^11.1.0", - "xo": "^0.19.0" + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" }, - "dependencies": { - "lowercase-keys": "^1.0.0" + "version": "1.0.2", + "xo": { + "extends": "xo-lukechilds" } -} \ No newline at end of file +} diff --git a/node_modules/restore-cursor/package.json b/node_modules/restore-cursor/package.json index d23571572..21bfc4b5c 100644 --- a/node_modules/restore-cursor/package.json +++ b/node_modules/restore-cursor/package.json @@ -1,24 +1,58 @@ { - "name": "restore-cursor", - "version": "3.1.0", - "description": "Gracefully restore the CLI cursor on exit", - "license": "MIT", - "repository": "sindresorhus/restore-cursor", + "_args": [ + [ + "restore-cursor@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "restore-cursor@3.1.0", + "_id": "restore-cursor@3.1.0", + "_inBundle": false, + "_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "_location": "/restore-cursor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "restore-cursor@3.1.0", + "name": "restore-cursor", + "escapedName": "restore-cursor", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/cli-cursor" + ], + "_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/restore-cursor/issues" + }, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "description": "Gracefully restore the CLI cursor on exit", + "devDependencies": { + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/restore-cursor#readme", "keywords": [ "exit", "quit", @@ -41,12 +75,14 @@ "shell", "command-line" ], - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "license": "MIT", + "name": "restore-cursor", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/restore-cursor.git" }, - "devDependencies": { - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/reusify/package.json b/node_modules/reusify/package.json index 4572b152f..14952d153 100644 --- a/node_modules/reusify/package.json +++ b/node_modules/reusify/package.json @@ -1,39 +1,41 @@ { - "name": "reusify", - "version": "1.0.4", - "description": "Reuse objects and functions with style", - "main": "reusify.js", - "scripts": { - "lint": "standard", - "test": "tape test.js | faucet", - "istanbul": "istanbul cover tape test.js", - "coverage": "npm run istanbul; cat coverage/lcov.info | coveralls" - }, - "pre-commit": [ - "lint", - "test" + "_args": [ + [ + "reusify@1.0.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": { - "type": "git", - "url": "git+https://github.com/mcollina/reusify.git" + "_development": true, + "_from": "reusify@1.0.4", + "_id": "reusify@1.0.4", + "_inBundle": false, + "_integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "_location": "/reusify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "reusify@1.0.4", + "name": "reusify", + "escapedName": "reusify", + "rawSpec": "1.0.4", + "saveSpec": null, + "fetchSpec": "1.0.4" }, - "keywords": [ - "reuse", - "object", - "performance", - "function", - "fast" + "_requiredBy": [ + "/fastq" ], - "author": "Matteo Collina ", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "_spec": "1.0.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Matteo Collina", + "email": "hello@matteocollina.com" + }, "bugs": { "url": "https://github.com/mcollina/reusify/issues" }, - "homepage": "https://github.com/mcollina/reusify#readme", - "engines": { - "node": ">=0.10.0", - "iojs": ">=1.0.0" - }, + "description": "Reuse objects and functions with style", "devDependencies": { "coveralls": "^2.13.3", "faucet": "0.0.1", @@ -41,5 +43,35 @@ "pre-commit": "^1.2.2", "standard": "^10.0.3", "tape": "^4.8.0" - } -} \ No newline at end of file + }, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + }, + "homepage": "https://github.com/mcollina/reusify#readme", + "keywords": [ + "reuse", + "object", + "performance", + "function", + "fast" + ], + "license": "MIT", + "main": "reusify.js", + "name": "reusify", + "pre-commit": [ + "lint", + "test" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/mcollina/reusify.git" + }, + "scripts": { + "coverage": "npm run istanbul; cat coverage/lcov.info | coveralls", + "istanbul": "istanbul cover tape test.js", + "lint": "standard", + "test": "tape test.js | faucet" + }, + "version": "1.0.4" +} diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json index 56eb03067..3c987ded8 100644 --- a/node_modules/rimraf/package.json +++ b/node_modules/rimraf/package.json @@ -1,32 +1,74 @@ { - "name": "rimraf", - "version": "3.0.2", - "main": "rimraf.js", - "description": "A deep deletion module for node (like `rm -rf`)", - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "repository": "git://github.com/isaacs/rimraf.git", - "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags", - "test": "tap test/*.js" + "_args": [ + [ + "rimraf@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "rimraf@3.0.2", + "_id": "rimraf@3.0.2", + "_inBundle": false, + "_integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "_location": "/rimraf", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "rimraf@3.0.2", + "name": "rimraf", + "escapedName": "rimraf", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/del" + ], + "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bin": { + "rimraf": "bin.js" + }, + "bugs": { + "url": "https://github.com/isaacs/rimraf/issues" }, - "bin": "./bin.js", "dependencies": { "glob": "^7.1.3" }, + "description": "A deep deletion module for node (like `rm -rf`)", + "devDependencies": { + "mkdirp": "^0.5.1", + "tap": "^12.1.1" + }, "files": [ "LICENSE", "README.md", "bin.js", "rimraf.js" ], - "devDependencies": { - "mkdirp": "^0.5.1", - "tap": "^12.1.1" - }, "funding": { "url": "https://github.com/sponsors/isaacs" - } -} \ No newline at end of file + }, + "homepage": "https://github.com/isaacs/rimraf#readme", + "license": "ISC", + "main": "rimraf.js", + "name": "rimraf", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/rimraf.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js" + }, + "version": "3.0.2" +} diff --git a/node_modules/run-parallel/package.json b/node_modules/run-parallel/package.json index 87ebaf64b..89ae96537 100644 --- a/node_modules/run-parallel/package.json +++ b/node_modules/run-parallel/package.json @@ -1,7 +1,33 @@ { - "name": "run-parallel", - "description": "Run an array of functions in parallel", - "version": "1.1.9", + "_args": [ + [ + "run-parallel@1.1.9", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "run-parallel@1.1.9", + "_id": "run-parallel@1.1.9", + "_inBundle": false, + "_integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "_location": "/run-parallel", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "run-parallel@1.1.9", + "name": "run-parallel", + "escapedName": "run-parallel", + "rawSpec": "1.1.9", + "saveSpec": null, + "fetchSpec": "1.1.9" + }, + "_requiredBy": [ + "/@nodelib/fs.scandir" + ], + "_resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", + "_spec": "1.1.9", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -11,6 +37,7 @@ "url": "https://github.com/feross/run-parallel/issues" }, "dependencies": {}, + "description": "Run an array of functions in parallel", "devDependencies": { "airtap": "0.0.4", "standard": "*", @@ -29,6 +56,7 @@ ], "license": "MIT", "main": "index.js", + "name": "run-parallel", "repository": { "type": "git", "url": "git://github.com/feross/run-parallel.git" @@ -38,5 +66,6 @@ "test-browser": "airtap -- test/*.js", "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" - } -} \ No newline at end of file + }, + "version": "1.1.9" +} diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json index fdb8bc5f3..ff3b48781 100644 --- a/node_modules/safe-buffer/package.json +++ b/node_modules/safe-buffer/package.json @@ -1,7 +1,33 @@ { - "name": "safe-buffer", - "description": "Safer Node.js Buffer API", - "version": "5.1.2", + "_args": [ + [ + "safe-buffer@5.1.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "safe-buffer@5.1.2", + "_id": "safe-buffer@5.1.2", + "_inBundle": false, + "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "_location": "/safe-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "safe-buffer@5.1.2", + "name": "safe-buffer", + "escapedName": "safe-buffer", + "rawSpec": "5.1.2", + "saveSpec": null, + "fetchSpec": "5.1.2" + }, + "_requiredBy": [ + "/convert-source-map" + ], + "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "_spec": "5.1.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -10,6 +36,7 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, + "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^4.0.0" @@ -26,12 +53,14 @@ ], "license": "MIT", "main": "index.js", - "types": "index.d.ts", + "name": "safe-buffer", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" }, "scripts": { "test": "standard && tape test/*.js" - } -} \ No newline at end of file + }, + "types": "index.d.ts", + "version": "5.1.2" +} diff --git a/node_modules/semver-diff/node_modules/semver/package.json b/node_modules/semver-diff/node_modules/semver/package.json index a330b56c2..ad96b485b 100644 --- a/node_modules/semver-diff/node_modules/semver/package.json +++ b/node_modules/semver-diff/node_modules/semver/package.json @@ -1,28 +1,64 @@ { - "name": "semver", - "version": "6.3.0", - "description": "The semantic version parser used by npm.", - "main": "semver.js", - "scripts": { - "test": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags" + "_args": [ + [ + "semver@6.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "semver@6.3.0", + "_id": "semver@6.3.0", + "_inBundle": false, + "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "_location": "/semver-diff/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@6.3.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "6.3.0", + "saveSpec": null, + "fetchSpec": "6.3.0" + }, + "_requiredBy": [ + "/semver-diff" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "_spec": "6.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "semver": "bin/semver.js" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" }, + "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^14.3.1" }, - "license": "ISC", - "repository": "https://github.com/npm/node-semver", - "bin": { - "semver": "./bin/semver.js" - }, "files": [ "bin", "range.bnf", "semver.js" ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, "tap": { "check-coverage": true - } -} \ No newline at end of file + }, + "version": "6.3.0" +} diff --git a/node_modules/semver-diff/package.json b/node_modules/semver-diff/package.json index 0cc0c3e34..527f950df 100644 --- a/node_modules/semver-diff/package.json +++ b/node_modules/semver-diff/package.json @@ -1,24 +1,58 @@ { - "name": "semver-diff", - "version": "3.1.1", - "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", - "license": "MIT", - "repository": "sindresorhus/semver-diff", + "_args": [ + [ + "semver-diff@3.1.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "semver-diff@3.1.1", + "_id": "semver-diff@3.1.1", + "_inBundle": false, + "_integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "_location": "/semver-diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver-diff@3.1.1", + "name": "semver-diff", + "escapedName": "semver-diff", + "rawSpec": "3.1.1", + "saveSpec": null, + "fetchSpec": "3.1.1" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "_spec": "3.1.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/semver-diff/issues" + }, + "dependencies": { + "semver": "^6.3.0" + }, + "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/semver-diff#readme", "keywords": [ "semver", "version", @@ -26,12 +60,14 @@ "diff", "difference" ], - "dependencies": { - "semver": "^6.3.0" + "license": "MIT", + "name": "semver-diff", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/semver-diff.git" }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.1" +} diff --git a/node_modules/semver/CHANGELOG.md b/node_modules/semver/CHANGELOG.md index 66304fdd2..220af176f 100644 --- a/node_modules/semver/CHANGELOG.md +++ b/node_modules/semver/CHANGELOG.md @@ -1,5 +1,77 @@ # changes log +## 7.3.0 + +* Add `subset(r1, r2)` method to determine if `r1` range is entirely + contained by `r2` range. + +## 7.2.3 + +* Fix handling of `includePrelease` mode where version ranges like `1.0.0 - + 2.0.0` would include `3.0.0-pre` and not `1.0.0-pre`. + +## 7.2.2 + +* Fix bug where `2.0.0-pre` would be included in `^1.0.0` if + `includePrerelease` was set to true. + +## 7.2.0 + +* Add `simplifyRange` method to attempt to generate a more human-readable + range expression that is equivalent to a supplied range, for a given set + of versions. + +## 7.1.2 + +* Remove fancy lazy-loading logic, as it was causing problems for webpack + users. + +## 7.1.0 + +* Add `require('semver/preload')` to load the entire module without using + lazy getter methods. + +## 7.0.0 + +* Refactor module into separate files for better tree-shaking +* Drop support for very old node versions, use const/let, `=>` functions, + and classes. + +## 6.3.0 + +* Expose the token enum on the exports + +## 6.2.0 + +* Coerce numbers to strings when passed to semver.coerce() +* Add `rtl` option to coerce from right to left + +## 6.1.3 + +* Handle X-ranges properly in includePrerelease mode + +## 6.1.2 + +* Do not throw when testing invalid version strings + +## 6.1.1 + +* Add options support for semver.coerce() +* Handle undefined version passed to Range.test + +## 6.1.0 + +* Add semver.compareBuild function +* Support `*` in semver.intersects + +## 6.0 + +* Fix `intersects` logic. + + This is technically a bug fix, but since it is also a change to behavior + that may require users updating their code, it is marked as a major + version increment. + ## 5.7 * Add `minVersion` method diff --git a/node_modules/semver/README.md b/node_modules/semver/README.md index f8dfa5a0d..9bef045af 100644 --- a/node_modules/semver/README.md +++ b/node_modules/semver/README.md @@ -4,7 +4,7 @@ semver(1) -- The semantic versioner for npm ## Install ```bash -npm install --save semver +npm install semver ```` ## Usage @@ -25,6 +25,63 @@ semver.valid(semver.coerce('v2')) // '2.0.0' semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7' ``` +You can also just load the module for the function that you care about, if +you'd like to minimize your footprint. + +```js +// load the whole API at once in a single object +const semver = require('semver') + +// or just load the bits you need +// all of them listed here, just pick and choose what you want + +// classes +const SemVer = require('semver/classes/semver') +const Comparator = require('semver/classes/comparator') +const Range = require('semver/classes/range') + +// functions for working with versions +const semverParse = require('semver/functions/parse') +const semverValid = require('semver/functions/valid') +const semverClean = require('semver/functions/clean') +const semverInc = require('semver/functions/inc') +const semverDiff = require('semver/functions/diff') +const semverMajor = require('semver/functions/major') +const semverMinor = require('semver/functions/minor') +const semverPatch = require('semver/functions/patch') +const semverPrerelease = require('semver/functions/prerelease') +const semverCompare = require('semver/functions/compare') +const semverRcompare = require('semver/functions/rcompare') +const semverCompareLoose = require('semver/functions/compare-loose') +const semverCompareBuild = require('semver/functions/compare-build') +const semverSort = require('semver/functions/sort') +const semverRsort = require('semver/functions/rsort') + +// low-level comparators between versions +const semverGt = require('semver/functions/gt') +const semverLt = require('semver/functions/lt') +const semverEq = require('semver/functions/eq') +const semverNeq = require('semver/functions/neq') +const semverGte = require('semver/functions/gte') +const semverLte = require('semver/functions/lte') +const semverCmp = require('semver/functions/cmp') +const semverCoerce = require('semver/functions/coerce') + +// working with ranges +const semverSatisfies = require('semver/functions/satisfies') +const semverMaxSatisfying = require('semver/ranges/max-satisfying') +const semverMinSatisfying = require('semver/ranges/min-satisfying') +const semverToComparators = require('semver/ranges/to-comparators') +const semverMinVersion = require('semver/ranges/min-version') +const semverValidRange = require('semver/ranges/valid') +const semverOutside = require('semver/ranges/outside') +const semverGtr = require('semver/ranges/gtr') +const semverLtr = require('semver/ranges/ltr') +const semverIntersects = require('semver/ranges/intersects') +const simplifyRange = require('semver/ranges/simplify') +const rangeSubset = require('semver/ranges/subset') +``` + As a command-line utility: ``` @@ -60,6 +117,12 @@ Options: Coerce a string into SemVer if possible (does not imply --loose) +--rtl + Coerce version strings right to left + +--ltr + Coerce version strings left to right (default) + Program exits successfully if any valid version satisfies all supplied ranges, and prints all satisfying versions. @@ -193,8 +256,8 @@ inclusive range, then all versions that start with the supplied parts of the tuple are accepted, but nothing that would be greater than the provided tuple parts. -* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` -* `1.2.3 - 2` := `>=1.2.3 <3.0.0` +* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0-0` +* `1.2.3 - 2` := `>=1.2.3 <3.0.0-0` #### X-Ranges `1.2.x` `1.X` `1.2.*` `*` @@ -202,28 +265,28 @@ Any of `X`, `x`, or `*` may be used to "stand in" for one of the numeric values in the `[major, minor, patch]` tuple. * `*` := `>=0.0.0` (Any version satisfies) -* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) -* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) +* `1.x` := `>=1.0.0 <2.0.0-0` (Matching major version) +* `1.2.x` := `>=1.2.0 <1.3.0-0` (Matching major and minor versions) A partial version range is treated as an X-Range, so the special character is in fact optional. * `""` (empty string) := `*` := `>=0.0.0` -* `1` := `1.x.x` := `>=1.0.0 <2.0.0` -* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` +* `1` := `1.x.x` := `>=1.0.0 <2.0.0-0` +* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0-0` #### Tilde Ranges `~1.2.3` `~1.2` `~1` Allows patch-level changes if a minor version is specified on the comparator. Allows minor-level changes if not. -* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` -* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) -* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) -* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` -* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) -* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) -* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in +* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0-0` +* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0-0` (Same as `1.2.x`) +* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0-0` (Same as `1.x`) +* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0-0` +* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0-0` (Same as `0.2.x`) +* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0-0` (Same as `0.x`) +* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0-0` Note that prereleases in the `1.2.3` version will be allowed, if they are greater than or equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but `1.2.4-beta.2` would not, because it is a prerelease of a @@ -231,7 +294,7 @@ comparator. Allows minor-level changes if not. #### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` -Allows changes that do not modify the left-most non-zero digit in the +Allows changes that do not modify the left-most non-zero element in the `[major, minor, patch]` tuple. In other words, this allows patch and minor updates for versions `1.0.0` and above, patch updates for versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. @@ -245,15 +308,15 @@ However, it presumes that there will *not* be breaking changes between `0.2.4` and `0.2.5`. It allows for changes that are presumed to be additive (but non-breaking), according to commonly observed practices. -* `^1.2.3` := `>=1.2.3 <2.0.0` -* `^0.2.3` := `>=0.2.3 <0.3.0` -* `^0.0.3` := `>=0.0.3 <0.0.4` -* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in +* `^1.2.3` := `>=1.2.3 <2.0.0-0` +* `^0.2.3` := `>=0.2.3 <0.3.0-0` +* `^0.0.3` := `>=0.0.3 <0.0.4-0` +* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0-0` Note that prereleases in the `1.2.3` version will be allowed, if they are greater than or equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but `1.2.4-beta.2` would not, because it is a prerelease of a different `[major, minor, patch]` tuple. -* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the +* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4-0` Note that prereleases in the `0.0.3` version *only* will be allowed, if they are greater than or equal to `beta`. So, `0.0.3-pr.2` would be allowed. @@ -261,16 +324,16 @@ When parsing caret ranges, a missing `patch` value desugars to the number `0`, but will allow flexibility within that value, even if the major and minor versions are both `0`. -* `^1.2.x` := `>=1.2.0 <2.0.0` -* `^0.0.x` := `>=0.0.0 <0.1.0` -* `^0.0` := `>=0.0.0 <0.1.0` +* `^1.2.x` := `>=1.2.0 <2.0.0-0` +* `^0.0.x` := `>=0.0.0 <0.1.0-0` +* `^0.0` := `>=0.0.0 <0.1.0-0` A missing `minor` and `patch` values will desugar to zero, but also allow flexibility within those values, even if the major version is zero. -* `^1.x` := `>=1.0.0 <2.0.0` -* `^0.x` := `>=0.0.0 <1.0.0` +* `^1.x` := `>=1.0.0 <2.0.0-0` +* `^0.x` := `>=0.0.0 <1.0.0-0` ### Range Grammar @@ -354,6 +417,9 @@ strings that they parse. `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. * `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions in descending order when passed to `Array.sort()`. +* `compareBuild(v1, v2)`: The same as `compare` but considers `build` when two versions + are equal. Sorts in ascending order if passed to `Array.sort()`. + `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. * `diff(v1, v2)`: Returns difference between two versions by the release type (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), or null if the versions are the same. @@ -382,6 +448,16 @@ strings that they parse. `hilo` argument must be either the string `'>'` or `'<'`. (This is the function called by `gtr` and `ltr`.) * `intersects(range)`: Return true if any of the ranges comparators intersect +* `simplifyRange(versions, range)`: Return a "simplified" range that + matches the same items in `versions` list as the range specified. Note + that it does *not* guarantee that it would match the same versions in all + cases, only for the set of versions provided. This is useful when + generating ranges by joining together multiple versions with `||` + programmatically, to provide the user with something a bit more + ergonomic. If the provided range is shorter in string-length than the + generated range, then that is returned. +* `subset(subRange, superRange)`: Return `true` if the `subRange` range is + entirely contained by the `superRange` range. Note that, since ranges may be non-contiguous, a version might not be greater than a range, less than a range, *or* satisfy a range! For @@ -396,7 +472,7 @@ range, use the `satisfies(version, range)` function. ### Coercion -* `coerce(version)`: Coerces a string to semver if possible +* `coerce(version, options)`: Coerces a string to semver if possible This aims to provide a very forgiving translation of a non-semver string to semver. It looks for the first digit in a string, and consumes all @@ -410,3 +486,81 @@ coercion is 16 characters; longer components will be ignored (`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value components are invalid (`9999999999999999.4.7.4` is likely invalid). + +If the `options.rtl` flag is set, then `coerce` will return the right-most +coercible tuple that does not share an ending index with a longer coercible +tuple. For example, `1.2.3.4` will return `2.3.4` in rtl mode, not +`4.0.0`. `1.2.3/4` will return `4.0.0`, because the `4` is not a part of +any other overlapping SemVer tuple. + +### Clean + +* `clean(version)`: Clean a string to be a valid semver if possible + +This will return a cleaned and trimmed semver version. If the provided +version is not valid a null will be returned. This does not work for +ranges. + +ex. +* `s.clean(' = v 2.1.5foo')`: `null` +* `s.clean(' = v 2.1.5foo', { loose: true })`: `'2.1.5-foo'` +* `s.clean(' = v 2.1.5-foo')`: `null` +* `s.clean(' = v 2.1.5-foo', { loose: true })`: `'2.1.5-foo'` +* `s.clean('=v2.1.5')`: `'2.1.5'` +* `s.clean(' =v2.1.5')`: `2.1.5` +* `s.clean(' 2.1.5 ')`: `'2.1.5'` +* `s.clean('~1.0.0')`: `null` + +## Exported Modules + + + +You may pull in just the part of this semver utility that you need, if you +are sensitive to packing and tree-shaking concerns. The main +`require('semver')` export uses getter functions to lazily load the parts +of the API that are used. + +The following modules are available: + +* `require('semver')` +* `require('semver/classes')` +* `require('semver/classes/comparator')` +* `require('semver/classes/range')` +* `require('semver/classes/semver')` +* `require('semver/functions/clean')` +* `require('semver/functions/cmp')` +* `require('semver/functions/coerce')` +* `require('semver/functions/compare')` +* `require('semver/functions/compare-build')` +* `require('semver/functions/compare-loose')` +* `require('semver/functions/diff')` +* `require('semver/functions/eq')` +* `require('semver/functions/gt')` +* `require('semver/functions/gte')` +* `require('semver/functions/inc')` +* `require('semver/functions/lt')` +* `require('semver/functions/lte')` +* `require('semver/functions/major')` +* `require('semver/functions/minor')` +* `require('semver/functions/neq')` +* `require('semver/functions/parse')` +* `require('semver/functions/patch')` +* `require('semver/functions/prerelease')` +* `require('semver/functions/rcompare')` +* `require('semver/functions/rsort')` +* `require('semver/functions/satisfies')` +* `require('semver/functions/sort')` +* `require('semver/functions/valid')` +* `require('semver/ranges/gtr')` +* `require('semver/ranges/intersects')` +* `require('semver/ranges/ltr')` +* `require('semver/ranges/max-satisfying')` +* `require('semver/ranges/min-satisfying')` +* `require('semver/ranges/min-version')` +* `require('semver/ranges/outside')` +* `require('semver/ranges/to-comparators')` +* `require('semver/ranges/valid')` diff --git a/node_modules/semver/bin/semver.js b/node_modules/semver/bin/semver.js new file mode 100755 index 000000000..73fe29538 --- /dev/null +++ b/node_modules/semver/bin/semver.js @@ -0,0 +1,173 @@ +#!/usr/bin/env node +// Standalone semver comparison program. +// Exits successfully and prints matching version(s) if +// any supplied version is valid and passes all tests. + +const argv = process.argv.slice(2) + +let versions = [] + +const range = [] + +let inc = null + +const version = require('../package.json').version + +let loose = false + +let includePrerelease = false + +let coerce = false + +let rtl = false + +let identifier + +const semver = require('../') + +let reverse = false + +const options = {} + +const main = () => { + if (!argv.length) return help() + while (argv.length) { + let a = argv.shift() + const indexOfEqualSign = a.indexOf('=') + if (indexOfEqualSign !== -1) { + a = a.slice(0, indexOfEqualSign) + argv.unshift(a.slice(indexOfEqualSign + 1)) + } + switch (a) { + case '-rv': case '-rev': case '--rev': case '--reverse': + reverse = true + break + case '-l': case '--loose': + loose = true + break + case '-p': case '--include-prerelease': + includePrerelease = true + break + case '-v': case '--version': + versions.push(argv.shift()) + break + case '-i': case '--inc': case '--increment': + switch (argv[0]) { + case 'major': case 'minor': case 'patch': case 'prerelease': + case 'premajor': case 'preminor': case 'prepatch': + inc = argv.shift() + break + default: + inc = 'patch' + break + } + break + case '--preid': + identifier = argv.shift() + break + case '-r': case '--range': + range.push(argv.shift()) + break + case '-c': case '--coerce': + coerce = true + break + case '--rtl': + rtl = true + break + case '--ltr': + rtl = false + break + case '-h': case '--help': case '-?': + return help() + default: + versions.push(a) + break + } + } + + const options = { loose: loose, includePrerelease: includePrerelease, rtl: rtl } + + versions = versions.map((v) => { + return coerce ? (semver.coerce(v, options) || { version: v }).version : v + }).filter((v) => { + return semver.valid(v) + }) + if (!versions.length) return fail() + if (inc && (versions.length !== 1 || range.length)) { return failInc() } + + for (let i = 0, l = range.length; i < l; i++) { + versions = versions.filter((v) => { + return semver.satisfies(v, range[i], options) + }) + if (!versions.length) return fail() + } + return success(versions) +} + + +const failInc = () => { + console.error('--inc can only be used on a single version with no range') + fail() +} + +const fail = () => process.exit(1) + +const success = () => { + const compare = reverse ? 'rcompare' : 'compare' + versions.sort((a, b) => { + return semver[compare](a, b, options) + }).map((v) => { + return semver.clean(v, options) + }).map((v) => { + return inc ? semver.inc(v, inc, options, identifier) : v + }).forEach((v, i, _) => { console.log(v) }) +} + +const help = () => console.log( +`SemVer ${version} + +A JavaScript implementation of the https://semver.org/ specification +Copyright Isaac Z. Schlueter + +Usage: semver [options] [ [...]] +Prints valid versions sorted by SemVer precedence + +Options: +-r --range + Print versions that match the specified range. + +-i --increment [] + Increment a version by the specified level. Level can + be one of: major, minor, patch, premajor, preminor, + prepatch, or prerelease. Default level is 'patch'. + Only one version may be specified. + +--preid + Identifier to be used to prefix premajor, preminor, + prepatch or prerelease version increments. + +-l --loose + Interpret versions and ranges loosely + +-p --include-prerelease + Always include prerelease versions in range matching + +-c --coerce + Coerce a string into SemVer if possible + (does not imply --loose) + +--rtl + Coerce version strings right to left + +--ltr + Coerce version strings left to right (default) + +Program exits successfully if any valid version satisfies +all supplied ranges, and prints all satisfying versions. + +If no satisfying versions are found, then exits failure. + +Versions are printed in ascending order, so supplying +multiple versions to the utility will just sort them.`) + +main() diff --git a/node_modules/semver/classes/comparator.js b/node_modules/semver/classes/comparator.js new file mode 100644 index 000000000..3595792d0 --- /dev/null +++ b/node_modules/semver/classes/comparator.js @@ -0,0 +1,139 @@ +const ANY = Symbol('SemVer ANY') +// hoisted class for cyclic dependency +class Comparator { + static get ANY () { + return ANY + } + constructor (comp, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value + } + } + + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) + } + + parse (comp) { + const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + const m = comp.match(r) + + if (!m) { + throw new TypeError(`Invalid comparator: ${comp}`) + } + + this.operator = m[1] !== undefined ? m[1] : '' + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } + } + + toString () { + return this.value + } + + test (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY || version === ANY) { + return true + } + + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } + } + + return cmp(version, this.operator, this.semver, this.options) + } + + intersects (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (this.operator === '') { + if (this.value === '') { + return true + } + return new Range(comp.value, options).test(this.value) + } else if (comp.operator === '') { + if (comp.value === '') { + return true + } + return new Range(this.value, options).test(comp.semver) + } + + const sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>') + const sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<') + const sameSemVer = this.semver.version === comp.semver.version + const differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<=') + const oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, options) && + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<') + const oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, options) && + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>') + + return ( + sameDirectionIncreasing || + sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || + oppositeDirectionsGreaterThan + ) + } +} + +module.exports = Comparator + +const {re, t} = require('../internal/re') +const cmp = require('../functions/cmp') +const debug = require('../internal/debug') +const SemVer = require('./semver') +const Range = require('./range') diff --git a/node_modules/semver/classes/index.js b/node_modules/semver/classes/index.js new file mode 100644 index 000000000..198b84d66 --- /dev/null +++ b/node_modules/semver/classes/index.js @@ -0,0 +1,5 @@ +module.exports = { + SemVer: require('./semver.js'), + Range: require('./range.js'), + Comparator: require('./comparator.js') +} diff --git a/node_modules/semver/classes/range.js b/node_modules/semver/classes/range.js new file mode 100644 index 000000000..83f896771 --- /dev/null +++ b/node_modules/semver/classes/range.js @@ -0,0 +1,463 @@ +// hoisted class for cyclic dependency +class Range { + constructor (range, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (range instanceof Range) { + if ( + range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease + ) { + return range + } else { + return new Range(range.raw, options) + } + } + + if (range instanceof Comparator) { + // just put it in the set and return + this.raw = range.value + this.set = [[range]] + this.format() + return this + } + + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease + + // First, split based on boolean or || + this.raw = range + this.set = range + .split(/\s*\|\|\s*/) + // map the range to a 2d array of comparators + .map(range => this.parseRange(range.trim())) + // throw out any comparator lists that are empty + // this generally means that it was not a valid range, which is allowed + // in loose mode, but will still throw if the WHOLE range is invalid. + .filter(c => c.length) + + if (!this.set.length) { + throw new TypeError(`Invalid SemVer Range: ${range}`) + } + + this.format() + } + + format () { + this.range = this.set + .map((comps) => { + return comps.join(' ').trim() + }) + .join('||') + .trim() + return this.range + } + + toString () { + return this.range + } + + parseRange (range) { + const loose = this.options.loose + range = range.trim() + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE] + range = range.replace(hr, hyphenReplace(this.options.includePrerelease)) + debug('hyphen replace', range) + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, re[t.COMPARATORTRIM]) + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[t.TILDETRIM], tildeTrimReplace) + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[t.CARETTRIM], caretTrimReplace) + + // normalize spaces + range = range.split(/\s+/).join(' ') + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + const compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + return range + .split(' ') + .map(comp => parseComparator(comp, this.options)) + .join(' ') + .split(/\s+/) + .map(comp => replaceGTE0(comp, this.options)) + // in loose mode, throw out any that are not valid comparators + .filter(this.options.loose ? comp => !!comp.match(compRe) : () => true) + .map(comp => new Comparator(comp, this.options)) + } + + intersects (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } + + return this.set.some((thisComparators) => { + return ( + isSatisfiable(thisComparators, options) && + range.set.some((rangeComparators) => { + return ( + isSatisfiable(rangeComparators, options) && + thisComparators.every((thisComparator) => { + return rangeComparators.every((rangeComparator) => { + return thisComparator.intersects(rangeComparator, options) + }) + }) + ) + }) + ) + }) + } + + // if ANY of the sets match ALL of its comparators, then pass + test (version) { + if (!version) { + return false + } + + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } + } + + for (let i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } + } + return false + } +} +module.exports = Range + +const Comparator = require('./comparator') +const debug = require('../internal/debug') +const SemVer = require('./semver') +const { + re, + t, + comparatorTrimReplace, + tildeTrimReplace, + caretTrimReplace +} = require('../internal/re') + +// take a set of comparators and determine whether there +// exists a version which can satisfy it +const isSatisfiable = (comparators, options) => { + let result = true + const remainingComparators = comparators.slice() + let testComparator = remainingComparators.pop() + + while (result && remainingComparators.length) { + result = remainingComparators.every((otherComparator) => { + return testComparator.intersects(otherComparator, options) + }) + + testComparator = remainingComparators.pop() + } + + return result +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +const parseComparator = (comp, options) => { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} + +const isX = id => !id || id.toLowerCase() === 'x' || id === '*' + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0 +const replaceTildes = (comp, options) => + comp.trim().split(/\s+/).map((comp) => { + return replaceTilde(comp, options) + }).join(' ') + +const replaceTilde = (comp, options) => { + const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE] + return comp.replace(r, (_, M, m, p, pr) => { + debug('tilde', comp, _, M, m, p, pr) + let ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0 <${+M + 1}.0.0-0` + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0-0 + ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0` + } else if (pr) { + debug('replaceTilde pr', pr) + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` + } else { + // ~1.2.3 == >=1.2.3 <1.3.0-0 + ret = `>=${M}.${m}.${p + } <${M}.${+m + 1}.0-0` + } + + debug('tilde return', ret) + return ret + }) +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0 +// ^1.2.3 --> >=1.2.3 <2.0.0-0 +// ^1.2.0 --> >=1.2.0 <2.0.0-0 +const replaceCarets = (comp, options) => + comp.trim().split(/\s+/).map((comp) => { + return replaceCaret(comp, options) + }).join(' ') + +const replaceCaret = (comp, options) => { + debug('caret', comp, options) + const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET] + const z = options.includePrerelease ? '-0' : '' + return comp.replace(r, (_, M, m, p, pr) => { + debug('caret', comp, _, M, m, p, pr) + let ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0` + } else if (isX(p)) { + if (M === '0') { + ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0` + } else { + ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0` + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` + } + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${+M + 1}.0.0-0` + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p + }${z} <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p + }${z} <${M}.${+m + 1}.0-0` + } + } else { + ret = `>=${M}.${m}.${p + } <${+M + 1}.0.0-0` + } + } + + debug('caret return', ret) + return ret + }) +} + +const replaceXRanges = (comp, options) => { + debug('replaceXRanges', comp, options) + return comp.split(/\s+/).map((comp) => { + return replaceXRange(comp, options) + }).join(' ') +} + +const replaceXRange = (comp, options) => { + comp = comp.trim() + const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE] + return comp.replace(r, (ret, gtlt, M, m, p, pr) => { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + const xM = isX(M) + const xm = xM || isX(m) + const xp = xm || isX(p) + const anyX = xp + + if (gtlt === '=' && anyX) { + gtlt = '' + } + + // if we're including prereleases in the match, then we need + // to fix this to -0, the lowest possible prerelease value + pr = options.includePrerelease ? '-0' : '' + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0-0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } + + if (gtlt === '<') + pr = '-0' + + ret = `${gtlt + M}.${m}.${p}${pr}` + } else if (xm) { + ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0` + } else if (xp) { + ret = `>=${M}.${m}.0${pr + } <${M}.${+m + 1}.0-0` + } + + debug('xRange return', ret) + + return ret + }) +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +const replaceStars = (comp, options) => { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(re[t.STAR], '') +} + +const replaceGTE0 = (comp, options) => { + debug('replaceGTE0', comp, options) + return comp.trim() + .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '') +} + +// This function is passed to string.replace(re[t.HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0-0 +const hyphenReplace = incPr => ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) => { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = `>=${fM}.0.0${incPr ? '-0' : ''}` + } else if (isX(fp)) { + from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}` + } else if (fpr) { + from = `>=${from}` + } else { + from = `>=${from}${incPr ? '-0' : ''}` + } + + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = `<${+tM + 1}.0.0-0` + } else if (isX(tp)) { + to = `<${tM}.${+tm + 1}.0-0` + } else if (tpr) { + to = `<=${tM}.${tm}.${tp}-${tpr}` + } else if (incPr) { + to = `<${tM}.${tm}.${+tp + 1}-0` + } else { + to = `<=${to}` + } + + return (`${from} ${to}`).trim() +} + +const testSet = (set, version, options) => { + for (let i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } + } + + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (let i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === Comparator.ANY) { + continue + } + + if (set[i].semver.prerelease.length > 0) { + const allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false + } + + return true +} diff --git a/node_modules/semver/classes/semver.js b/node_modules/semver/classes/semver.js new file mode 100644 index 000000000..73247ad2b --- /dev/null +++ b/node_modules/semver/classes/semver.js @@ -0,0 +1,290 @@ +const debug = require('../internal/debug') +const { MAX_LENGTH, MAX_SAFE_INTEGER } = require('../internal/constants') +const { re, t } = require('../internal/re') + +const { compareIdentifiers } = require('../internal/identifiers') +class SemVer { + constructor (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + if (version instanceof SemVer) { + if (version.loose === !!options.loose && + version.includePrerelease === !!options.includePrerelease) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError(`Invalid Version: ${version}`) + } + + if (version.length > MAX_LENGTH) { + throw new TypeError( + `version is longer than ${MAX_LENGTH} characters` + ) + } + + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + // this isn't actually relevant for versions, but keep it so that we + // don't run into trouble passing this.options around. + this.includePrerelease = !!options.includePrerelease + + const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]) + + if (!m) { + throw new TypeError(`Invalid Version: ${version}`) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map((id) => { + if (/^[0-9]+$/.test(id)) { + const num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() + } + + format () { + this.version = `${this.major}.${this.minor}.${this.patch}` + if (this.prerelease.length) { + this.version += `-${this.prerelease.join('.')}` + } + return this.version + } + + toString () { + return this.version + } + + compare (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + if (typeof other === 'string' && other === this.version) { + return 0 + } + other = new SemVer(other, this.options) + } + + if (other.version === this.version) { + return 0 + } + + return this.compareMain(other) || this.comparePre(other) + } + + compareMain (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return ( + compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) + ) + } + + comparePre (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + let i = 0 + do { + const a = this.prerelease[i] + const b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) + } + + compareBuild (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + let i = 0 + do { + const a = this.build[i] + const b = other.build[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) + } + + // preminor will bump the version up to the next minor release, and immediately + // down to pre-release. premajor and prepatch work the same way. + inc (release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier) + this.inc('pre', identifier) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier) + } + this.inc('pre', identifier) + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if ( + this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0 + ) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) { + this.prerelease = [0] + } else { + let i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + this.prerelease.push(0) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) { + this.prerelease = [identifier, 0] + } + } else { + this.prerelease = [identifier, 0] + } + } + break + + default: + throw new Error(`invalid increment argument: ${release}`) + } + this.format() + this.raw = this.version + return this + } +} + +module.exports = SemVer diff --git a/node_modules/semver/functions/clean.js b/node_modules/semver/functions/clean.js new file mode 100644 index 000000000..811fe6b82 --- /dev/null +++ b/node_modules/semver/functions/clean.js @@ -0,0 +1,6 @@ +const parse = require('./parse') +const clean = (version, options) => { + const s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} +module.exports = clean diff --git a/node_modules/semver/functions/cmp.js b/node_modules/semver/functions/cmp.js new file mode 100644 index 000000000..3b89db779 --- /dev/null +++ b/node_modules/semver/functions/cmp.js @@ -0,0 +1,48 @@ +const eq = require('./eq') +const neq = require('./neq') +const gt = require('./gt') +const gte = require('./gte') +const lt = require('./lt') +const lte = require('./lte') + +const cmp = (a, op, b, loose) => { + switch (op) { + case '===': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a === b + + case '!==': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError(`Invalid operator: ${op}`) + } +} +module.exports = cmp diff --git a/node_modules/semver/functions/coerce.js b/node_modules/semver/functions/coerce.js new file mode 100644 index 000000000..106ca71c9 --- /dev/null +++ b/node_modules/semver/functions/coerce.js @@ -0,0 +1,51 @@ +const SemVer = require('../classes/semver') +const parse = require('./parse') +const {re, t} = require('../internal/re') + +const coerce = (version, options) => { + if (version instanceof SemVer) { + return version + } + + if (typeof version === 'number') { + version = String(version) + } + + if (typeof version !== 'string') { + return null + } + + options = options || {} + + let match = null + if (!options.rtl) { + match = version.match(re[t.COERCE]) + } else { + // Find the right-most coercible string that does not share + // a terminus with a more left-ward coercible string. + // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' + // + // Walk through the string checking with a /g regexp + // Manually set the index so as to pick up overlapping matches. + // Stop when we get a match that ends at the string end, since no + // coercible string can be more right-ward without the same terminus. + let next + while ((next = re[t.COERCERTL].exec(version)) && + (!match || match.index + match[0].length !== version.length) + ) { + if (!match || + next.index + next[0].length !== match.index + match[0].length) { + match = next + } + re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length + } + // leave it in a clean state + re[t.COERCERTL].lastIndex = -1 + } + + if (match === null) + return null + + return parse(`${match[2]}.${match[3] || '0'}.${match[4] || '0'}`, options) +} +module.exports = coerce diff --git a/node_modules/semver/functions/compare-build.js b/node_modules/semver/functions/compare-build.js new file mode 100644 index 000000000..9eb881bef --- /dev/null +++ b/node_modules/semver/functions/compare-build.js @@ -0,0 +1,7 @@ +const SemVer = require('../classes/semver') +const compareBuild = (a, b, loose) => { + const versionA = new SemVer(a, loose) + const versionB = new SemVer(b, loose) + return versionA.compare(versionB) || versionA.compareBuild(versionB) +} +module.exports = compareBuild diff --git a/node_modules/semver/functions/compare-loose.js b/node_modules/semver/functions/compare-loose.js new file mode 100644 index 000000000..4881fbe00 --- /dev/null +++ b/node_modules/semver/functions/compare-loose.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const compareLoose = (a, b) => compare(a, b, true) +module.exports = compareLoose diff --git a/node_modules/semver/functions/compare.js b/node_modules/semver/functions/compare.js new file mode 100644 index 000000000..748b7afa5 --- /dev/null +++ b/node_modules/semver/functions/compare.js @@ -0,0 +1,5 @@ +const SemVer = require('../classes/semver') +const compare = (a, b, loose) => + new SemVer(a, loose).compare(new SemVer(b, loose)) + +module.exports = compare diff --git a/node_modules/semver/functions/diff.js b/node_modules/semver/functions/diff.js new file mode 100644 index 000000000..87200ef3b --- /dev/null +++ b/node_modules/semver/functions/diff.js @@ -0,0 +1,23 @@ +const parse = require('./parse') +const eq = require('./eq') + +const diff = (version1, version2) => { + if (eq(version1, version2)) { + return null + } else { + const v1 = parse(version1) + const v2 = parse(version2) + const hasPre = v1.prerelease.length || v2.prerelease.length + const prefix = hasPre ? 'pre' : '' + const defaultResult = hasPre ? 'prerelease' : '' + for (const key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return prefix + key + } + } + } + return defaultResult // may be undefined + } +} +module.exports = diff diff --git a/node_modules/semver/functions/eq.js b/node_modules/semver/functions/eq.js new file mode 100644 index 000000000..271fed976 --- /dev/null +++ b/node_modules/semver/functions/eq.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const eq = (a, b, loose) => compare(a, b, loose) === 0 +module.exports = eq diff --git a/node_modules/semver/functions/gt.js b/node_modules/semver/functions/gt.js new file mode 100644 index 000000000..d9b2156d8 --- /dev/null +++ b/node_modules/semver/functions/gt.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const gt = (a, b, loose) => compare(a, b, loose) > 0 +module.exports = gt diff --git a/node_modules/semver/functions/gte.js b/node_modules/semver/functions/gte.js new file mode 100644 index 000000000..5aeaa6347 --- /dev/null +++ b/node_modules/semver/functions/gte.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const gte = (a, b, loose) => compare(a, b, loose) >= 0 +module.exports = gte diff --git a/node_modules/semver/functions/inc.js b/node_modules/semver/functions/inc.js new file mode 100644 index 000000000..aa4d83ab4 --- /dev/null +++ b/node_modules/semver/functions/inc.js @@ -0,0 +1,15 @@ +const SemVer = require('../classes/semver') + +const inc = (version, release, options, identifier) => { + if (typeof (options) === 'string') { + identifier = options + options = undefined + } + + try { + return new SemVer(version, options).inc(release, identifier).version + } catch (er) { + return null + } +} +module.exports = inc diff --git a/node_modules/semver/functions/lt.js b/node_modules/semver/functions/lt.js new file mode 100644 index 000000000..b440ab7d4 --- /dev/null +++ b/node_modules/semver/functions/lt.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const lt = (a, b, loose) => compare(a, b, loose) < 0 +module.exports = lt diff --git a/node_modules/semver/functions/lte.js b/node_modules/semver/functions/lte.js new file mode 100644 index 000000000..6dcc95650 --- /dev/null +++ b/node_modules/semver/functions/lte.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const lte = (a, b, loose) => compare(a, b, loose) <= 0 +module.exports = lte diff --git a/node_modules/semver/functions/major.js b/node_modules/semver/functions/major.js new file mode 100644 index 000000000..4283165e9 --- /dev/null +++ b/node_modules/semver/functions/major.js @@ -0,0 +1,3 @@ +const SemVer = require('../classes/semver') +const major = (a, loose) => new SemVer(a, loose).major +module.exports = major diff --git a/node_modules/semver/functions/minor.js b/node_modules/semver/functions/minor.js new file mode 100644 index 000000000..57b3455f8 --- /dev/null +++ b/node_modules/semver/functions/minor.js @@ -0,0 +1,3 @@ +const SemVer = require('../classes/semver') +const minor = (a, loose) => new SemVer(a, loose).minor +module.exports = minor diff --git a/node_modules/semver/functions/neq.js b/node_modules/semver/functions/neq.js new file mode 100644 index 000000000..f944c0157 --- /dev/null +++ b/node_modules/semver/functions/neq.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const neq = (a, b, loose) => compare(a, b, loose) !== 0 +module.exports = neq diff --git a/node_modules/semver/functions/parse.js b/node_modules/semver/functions/parse.js new file mode 100644 index 000000000..457fee04a --- /dev/null +++ b/node_modules/semver/functions/parse.js @@ -0,0 +1,37 @@ +const {MAX_LENGTH} = require('../internal/constants') +const { re, t } = require('../internal/re') +const SemVer = require('../classes/semver') + +const parse = (version, options) => { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + if (version.length > MAX_LENGTH) { + return null + } + + const r = options.loose ? re[t.LOOSE] : re[t.FULL] + if (!r.test(version)) { + return null + } + + try { + return new SemVer(version, options) + } catch (er) { + return null + } +} + +module.exports = parse diff --git a/node_modules/semver/functions/patch.js b/node_modules/semver/functions/patch.js new file mode 100644 index 000000000..63afca252 --- /dev/null +++ b/node_modules/semver/functions/patch.js @@ -0,0 +1,3 @@ +const SemVer = require('../classes/semver') +const patch = (a, loose) => new SemVer(a, loose).patch +module.exports = patch diff --git a/node_modules/semver/functions/prerelease.js b/node_modules/semver/functions/prerelease.js new file mode 100644 index 000000000..06aa13248 --- /dev/null +++ b/node_modules/semver/functions/prerelease.js @@ -0,0 +1,6 @@ +const parse = require('./parse') +const prerelease = (version, options) => { + const parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} +module.exports = prerelease diff --git a/node_modules/semver/functions/rcompare.js b/node_modules/semver/functions/rcompare.js new file mode 100644 index 000000000..0ac509e79 --- /dev/null +++ b/node_modules/semver/functions/rcompare.js @@ -0,0 +1,3 @@ +const compare = require('./compare') +const rcompare = (a, b, loose) => compare(b, a, loose) +module.exports = rcompare diff --git a/node_modules/semver/functions/rsort.js b/node_modules/semver/functions/rsort.js new file mode 100644 index 000000000..82404c5cf --- /dev/null +++ b/node_modules/semver/functions/rsort.js @@ -0,0 +1,3 @@ +const compareBuild = require('./compare-build') +const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) +module.exports = rsort diff --git a/node_modules/semver/functions/satisfies.js b/node_modules/semver/functions/satisfies.js new file mode 100644 index 000000000..50af1c199 --- /dev/null +++ b/node_modules/semver/functions/satisfies.js @@ -0,0 +1,10 @@ +const Range = require('../classes/range') +const satisfies = (version, range, options) => { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) +} +module.exports = satisfies diff --git a/node_modules/semver/functions/sort.js b/node_modules/semver/functions/sort.js new file mode 100644 index 000000000..4d10917ab --- /dev/null +++ b/node_modules/semver/functions/sort.js @@ -0,0 +1,3 @@ +const compareBuild = require('./compare-build') +const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) +module.exports = sort diff --git a/node_modules/semver/functions/valid.js b/node_modules/semver/functions/valid.js new file mode 100644 index 000000000..f27bae107 --- /dev/null +++ b/node_modules/semver/functions/valid.js @@ -0,0 +1,6 @@ +const parse = require('./parse') +const valid = (version, options) => { + const v = parse(version, options) + return v ? v.version : null +} +module.exports = valid diff --git a/node_modules/semver/index.js b/node_modules/semver/index.js new file mode 100644 index 000000000..57e2ae649 --- /dev/null +++ b/node_modules/semver/index.js @@ -0,0 +1,48 @@ +// just pre-load all the stuff that index.js lazily exports +const internalRe = require('./internal/re') +module.exports = { + re: internalRe.re, + src: internalRe.src, + tokens: internalRe.t, + SEMVER_SPEC_VERSION: require('./internal/constants').SEMVER_SPEC_VERSION, + SemVer: require('./classes/semver'), + compareIdentifiers: require('./internal/identifiers').compareIdentifiers, + rcompareIdentifiers: require('./internal/identifiers').rcompareIdentifiers, + parse: require('./functions/parse'), + valid: require('./functions/valid'), + clean: require('./functions/clean'), + inc: require('./functions/inc'), + diff: require('./functions/diff'), + major: require('./functions/major'), + minor: require('./functions/minor'), + patch: require('./functions/patch'), + prerelease: require('./functions/prerelease'), + compare: require('./functions/compare'), + rcompare: require('./functions/rcompare'), + compareLoose: require('./functions/compare-loose'), + compareBuild: require('./functions/compare-build'), + sort: require('./functions/sort'), + rsort: require('./functions/rsort'), + gt: require('./functions/gt'), + lt: require('./functions/lt'), + eq: require('./functions/eq'), + neq: require('./functions/neq'), + gte: require('./functions/gte'), + lte: require('./functions/lte'), + cmp: require('./functions/cmp'), + coerce: require('./functions/coerce'), + Comparator: require('./classes/comparator'), + Range: require('./classes/range'), + satisfies: require('./functions/satisfies'), + toComparators: require('./ranges/to-comparators'), + maxSatisfying: require('./ranges/max-satisfying'), + minSatisfying: require('./ranges/min-satisfying'), + minVersion: require('./ranges/min-version'), + validRange: require('./ranges/valid'), + outside: require('./ranges/outside'), + gtr: require('./ranges/gtr'), + ltr: require('./ranges/ltr'), + intersects: require('./ranges/intersects'), + simplifyRange: require('./ranges/simplify'), + subset: require('./ranges/subset'), +} diff --git a/node_modules/semver/internal/constants.js b/node_modules/semver/internal/constants.js new file mode 100644 index 000000000..49df215ad --- /dev/null +++ b/node_modules/semver/internal/constants.js @@ -0,0 +1,17 @@ +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +const SEMVER_SPEC_VERSION = '2.0.0' + +const MAX_LENGTH = 256 +const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || + /* istanbul ignore next */ 9007199254740991 + +// Max safe segment length for coercion. +const MAX_SAFE_COMPONENT_LENGTH = 16 + +module.exports = { + SEMVER_SPEC_VERSION, + MAX_LENGTH, + MAX_SAFE_INTEGER, + MAX_SAFE_COMPONENT_LENGTH +} diff --git a/node_modules/semver/internal/debug.js b/node_modules/semver/internal/debug.js new file mode 100644 index 000000000..1c00e1369 --- /dev/null +++ b/node_modules/semver/internal/debug.js @@ -0,0 +1,9 @@ +const debug = ( + typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG) +) ? (...args) => console.error('SEMVER', ...args) + : () => {} + +module.exports = debug diff --git a/node_modules/semver/internal/identifiers.js b/node_modules/semver/internal/identifiers.js new file mode 100644 index 000000000..ed1309421 --- /dev/null +++ b/node_modules/semver/internal/identifiers.js @@ -0,0 +1,23 @@ +const numeric = /^[0-9]+$/ +const compareIdentifiers = (a, b) => { + const anum = numeric.test(a) + const bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a) + +module.exports = { + compareIdentifiers, + rcompareIdentifiers +} diff --git a/node_modules/semver/internal/re.js b/node_modules/semver/internal/re.js new file mode 100644 index 000000000..54d4176de --- /dev/null +++ b/node_modules/semver/internal/re.js @@ -0,0 +1,182 @@ +const { MAX_SAFE_COMPONENT_LENGTH } = require('./constants') +const debug = require('./debug') +exports = module.exports = {} + +// The actual regexps go on exports.re +const re = exports.re = [] +const src = exports.src = [] +const t = exports.t = {} +let R = 0 + +const createToken = (name, value, isGlobal) => { + const index = R++ + debug(index, value) + t[name] = index + src[index] = value + re[index] = new RegExp(value, isGlobal ? 'g' : undefined) +} + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +createToken('NUMERICIDENTIFIER', '0|[1-9]\\d*') +createToken('NUMERICIDENTIFIERLOOSE', '[0-9]+') + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +createToken('NONNUMERICIDENTIFIER', '\\d*[a-zA-Z-][a-zA-Z0-9-]*') + +// ## Main Version +// Three dot-separated numeric identifiers. + +createToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})`) + +createToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})`) + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. + +createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NUMERICIDENTIFIER] +}|${src[t.NONNUMERICIDENTIFIER]})`) + +createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NUMERICIDENTIFIERLOOSE] +}|${src[t.NONNUMERICIDENTIFIER]})`) + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +createToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER] +}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`) + +createToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE] +}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`) + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +createToken('BUILDIDENTIFIER', '[0-9A-Za-z-]+') + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +createToken('BUILD', `(?:\\+(${src[t.BUILDIDENTIFIER] +}(?:\\.${src[t.BUILDIDENTIFIER]})*))`) + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +createToken('FULLPLAIN', `v?${src[t.MAINVERSION] +}${src[t.PRERELEASE]}?${ + src[t.BUILD]}?`) + +createToken('FULL', `^${src[t.FULLPLAIN]}$`) + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +createToken('LOOSEPLAIN', `[v=\\s]*${src[t.MAINVERSIONLOOSE] +}${src[t.PRERELEASELOOSE]}?${ + src[t.BUILD]}?`) + +createToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`) + +createToken('GTLT', '((?:<|>)?=?)') + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +createToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`) +createToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`) + +createToken('XRANGEPLAIN', `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:${src[t.PRERELEASE]})?${ + src[t.BUILD]}?` + + `)?)?`) + +createToken('XRANGEPLAINLOOSE', `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:${src[t.PRERELEASELOOSE]})?${ + src[t.BUILD]}?` + + `)?)?`) + +createToken('XRANGE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`) +createToken('XRANGELOOSE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`) + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +createToken('COERCE', `${'(^|[^\\d])' + + '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + + `(?:$|[^\\d])`) +createToken('COERCERTL', src[t.COERCE], true) + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +createToken('LONETILDE', '(?:~>?)') + +createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true) +exports.tildeTrimReplace = '$1~' + +createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`) +createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`) + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +createToken('LONECARET', '(?:\\^)') + +createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true) +exports.caretTrimReplace = '$1^' + +createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`) +createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`) + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`) +createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`) + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT] +}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true) +exports.comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAIN]})` + + `\\s*$`) + +createToken('HYPHENRANGELOOSE', `^\\s*(${src[t.XRANGEPLAINLOOSE]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAINLOOSE]})` + + `\\s*$`) + +// Star ranges basically just allow anything at all. +createToken('STAR', '(<|>)?=?\\s*\\*') +// >=0.0.0 is like a star +createToken('GTE0', '^\\s*>=\\s*0\.0\.0\\s*$') +createToken('GTE0PRE', '^\\s*>=\\s*0\.0\.0-0\\s*$') diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json index 90e287ecf..4c4cb60d2 100644 --- a/node_modules/semver/package.json +++ b/node_modules/semver/package.json @@ -1,28 +1,71 @@ { - "name": "semver", - "version": "5.7.1", - "description": "The semantic version parser used by npm.", - "main": "semver.js", - "scripts": { - "test": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "_from": "semver", + "_id": "semver@7.3.2", + "_inBundle": false, + "_integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "_location": "/semver", + "_phantomChildren": {}, + "_requested": { + "type": "tag", + "registry": true, + "raw": "semver", + "name": "semver", + "escapedName": "semver", + "rawSpec": "", + "saveSpec": null, + "fetchSpec": "latest" }, + "_requiredBy": [ + "#USER", + "/" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "_shasum": "604962b052b81ed0786aae84389ffba70ffd3938", + "_spec": "semver", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bin": { + "semver": "bin/semver.js" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "The semantic version parser used by npm.", "devDependencies": { - "tap": "^13.0.0-rc.18" + "tap": "^14.10.7" }, - "license": "ISC", - "repository": "https://github.com/npm/node-semver", - "bin": { - "semver": "./bin/semver" + "engines": { + "node": ">=10" }, "files": [ - "bin", + "bin/**/*.js", "range.bnf", - "semver.js" + "classes/**/*.js", + "functions/**/*.js", + "internal/**/*.js", + "ranges/**/*.js", + "index.js", + "preload.js" ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "index.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "snap": "tap", + "test": "tap" + }, "tap": { - "check-coverage": true - } -} \ No newline at end of file + "check-coverage": true, + "coverage-map": "map.js" + }, + "version": "7.3.2" +} diff --git a/node_modules/semver/preload.js b/node_modules/semver/preload.js new file mode 100644 index 000000000..947cd4f79 --- /dev/null +++ b/node_modules/semver/preload.js @@ -0,0 +1,2 @@ +// XXX remove in v8 or beyond +module.exports = require('./index.js') diff --git a/node_modules/semver/ranges/gtr.js b/node_modules/semver/ranges/gtr.js new file mode 100644 index 000000000..db7e35599 --- /dev/null +++ b/node_modules/semver/ranges/gtr.js @@ -0,0 +1,4 @@ +// Determine if version is greater than all the versions possible in the range. +const outside = require('./outside') +const gtr = (version, range, options) => outside(version, range, '>', options) +module.exports = gtr diff --git a/node_modules/semver/ranges/intersects.js b/node_modules/semver/ranges/intersects.js new file mode 100644 index 000000000..3d1a6f31d --- /dev/null +++ b/node_modules/semver/ranges/intersects.js @@ -0,0 +1,7 @@ +const Range = require('../classes/range') +const intersects = (r1, r2, options) => { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2) +} +module.exports = intersects diff --git a/node_modules/semver/ranges/ltr.js b/node_modules/semver/ranges/ltr.js new file mode 100644 index 000000000..528a885eb --- /dev/null +++ b/node_modules/semver/ranges/ltr.js @@ -0,0 +1,4 @@ +const outside = require('./outside') +// Determine if version is less than all the versions possible in the range +const ltr = (version, range, options) => outside(version, range, '<', options) +module.exports = ltr diff --git a/node_modules/semver/ranges/max-satisfying.js b/node_modules/semver/ranges/max-satisfying.js new file mode 100644 index 000000000..6e3d993c6 --- /dev/null +++ b/node_modules/semver/ranges/max-satisfying.js @@ -0,0 +1,25 @@ +const SemVer = require('../classes/semver') +const Range = require('../classes/range') + +const maxSatisfying = (versions, range, options) => { + let max = null + let maxSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max +} +module.exports = maxSatisfying diff --git a/node_modules/semver/ranges/min-satisfying.js b/node_modules/semver/ranges/min-satisfying.js new file mode 100644 index 000000000..9b60974e2 --- /dev/null +++ b/node_modules/semver/ranges/min-satisfying.js @@ -0,0 +1,24 @@ +const SemVer = require('../classes/semver') +const Range = require('../classes/range') +const minSatisfying = (versions, range, options) => { + let min = null + let minSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min +} +module.exports = minSatisfying diff --git a/node_modules/semver/ranges/min-version.js b/node_modules/semver/ranges/min-version.js new file mode 100644 index 000000000..7118d237b --- /dev/null +++ b/node_modules/semver/ranges/min-version.js @@ -0,0 +1,57 @@ +const SemVer = require('../classes/semver') +const Range = require('../classes/range') +const gt = require('../functions/gt') + +const minVersion = (range, loose) => { + range = new Range(range, loose) + + let minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } + + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + + minver = null + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] + + comparators.forEach((comparator) => { + // Clone to avoid manipulating the comparator's semver object. + const compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!minver || gt(minver, compver)) { + minver = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error(`Unexpected operation: ${comparator.operator}`) + } + }) + } + + if (minver && range.test(minver)) { + return minver + } + + return null +} +module.exports = minVersion diff --git a/node_modules/semver/ranges/outside.js b/node_modules/semver/ranges/outside.js new file mode 100644 index 000000000..e35ed1176 --- /dev/null +++ b/node_modules/semver/ranges/outside.js @@ -0,0 +1,80 @@ +const SemVer = require('../classes/semver') +const Comparator = require('../classes/comparator') +const {ANY} = Comparator +const Range = require('../classes/range') +const satisfies = require('../functions/satisfies') +const gt = require('../functions/gt') +const lt = require('../functions/lt') +const lte = require('../functions/lte') +const gte = require('../functions/gte') + +const outside = (version, range, hilo, options) => { + version = new SemVer(version, options) + range = new Range(range, options) + + let gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } + + // If it satisifes the range it is not outside + if (satisfies(version, range, options)) { + return false + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] + + let high = null + let low = null + + comparators.forEach((comparator) => { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } + } + return true +} + +module.exports = outside diff --git a/node_modules/semver/ranges/simplify.js b/node_modules/semver/ranges/simplify.js new file mode 100644 index 000000000..b792f9729 --- /dev/null +++ b/node_modules/semver/ranges/simplify.js @@ -0,0 +1,44 @@ +// given a set of versions and a range, create a "simplified" range +// that includes the same versions that the original range does +// If the original range is shorter than the simplified one, return that. +const satisfies = require('../functions/satisfies.js') +const compare = require('../functions/compare.js') +module.exports = (versions, range, options) => { + const set = [] + let min = null + let prev = null + const v = versions.sort((a, b) => compare(a, b, options)) + for (const version of v) { + const included = satisfies(version, range, options) + if (included) { + prev = version + if (!min) + min = version + } else { + if (prev) { + set.push([min, prev]) + } + prev = null + min = null + } + } + if (min) + set.push([min, null]) + + const ranges = [] + for (const [min, max] of set) { + if (min === max) + ranges.push(min) + else if (!max && min === v[0]) + ranges.push('*') + else if (!max) + ranges.push(`>=${min}`) + else if (min === v[0]) + ranges.push(`<=${max}`) + else + ranges.push(`${min} - ${max}`) + } + const simplified = ranges.join(' || ') + const original = typeof range.raw === 'string' ? range.raw : String(range) + return simplified.length < original.length ? simplified : range +} diff --git a/node_modules/semver/ranges/subset.js b/node_modules/semver/ranges/subset.js new file mode 100644 index 000000000..6ae29a3c9 --- /dev/null +++ b/node_modules/semver/ranges/subset.js @@ -0,0 +1,155 @@ +const Range = require('../classes/range.js') +const { ANY } = require('../classes/comparator.js') +const satisfies = require('../functions/satisfies.js') +const compare = require('../functions/compare.js') + +// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff: +// - Every simple range `r1, r2, ...` is a subset of some `R1, R2, ...` +// +// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff: +// - If c is only the ANY comparator +// - If C is only the ANY comparator, return true +// - Else return false +// - Let EQ be the set of = comparators in c +// - If EQ is more than one, return true (null set) +// - Let GT be the highest > or >= comparator in c +// - Let LT be the lowest < or <= comparator in c +// - If GT and LT, and GT.semver > LT.semver, return true (null set) +// - If EQ +// - If GT, and EQ does not satisfy GT, return true (null set) +// - If LT, and EQ does not satisfy LT, return true (null set) +// - If EQ satisfies every C, return true +// - Else return false +// - If GT +// - If GT is lower than any > or >= comp in C, return false +// - If GT is >=, and GT.semver does not satisfy every C, return false +// - If LT +// - If LT.semver is greater than that of any > comp in C, return false +// - If LT is <=, and LT.semver does not satisfy every C, return false +// - If any C is a = range, and GT or LT are set, return false +// - Else return true + +const subset = (sub, dom, options) => { + sub = new Range(sub, options) + dom = new Range(dom, options) + let sawNonNull = false + + OUTER: for (const simpleSub of sub.set) { + for (const simpleDom of dom.set) { + const isSub = simpleSubset(simpleSub, simpleDom, options) + sawNonNull = sawNonNull || isSub !== null + if (isSub) + continue OUTER + } + // the null set is a subset of everything, but null simple ranges in + // a complex range should be ignored. so if we saw a non-null range, + // then we know this isn't a subset, but if EVERY simple range was null, + // then it is a subset. + if (sawNonNull) + return false + } + return true +} + +const simpleSubset = (sub, dom, options) => { + if (sub.length === 1 && sub[0].semver === ANY) + return dom.length === 1 && dom[0].semver === ANY + + const eqSet = new Set() + let gt, lt + for (const c of sub) { + if (c.operator === '>' || c.operator === '>=') + gt = higherGT(gt, c, options) + else if (c.operator === '<' || c.operator === '<=') + lt = lowerLT(lt, c, options) + else + eqSet.add(c.semver) + } + + if (eqSet.size > 1) + return null + + let gtltComp + if (gt && lt) { + gtltComp = compare(gt.semver, lt.semver, options) + if (gtltComp > 0) + return null + else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) + return null + } + + // will iterate one or zero times + for (const eq of eqSet) { + if (gt && !satisfies(eq, String(gt), options)) + return null + + if (lt && !satisfies(eq, String(lt), options)) + return null + + for (const c of dom) { + if (!satisfies(eq, String(c), options)) + return false + } + return true + } + + let higher, lower + let hasDomLT, hasDomGT + for (const c of dom) { + hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>=' + hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<=' + if (gt) { + if (c.operator === '>' || c.operator === '>=') { + higher = higherGT(gt, c, options) + if (higher === c) + return false + } else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) + return false + } + if (lt) { + if (c.operator === '<' || c.operator === '<=') { + lower = lowerLT(lt, c, options) + if (lower === c) + return false + } else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) + return false + } + if (!c.operator && (lt || gt) && gtltComp !== 0) + return false + } + + // if there was a < or >, and nothing in the dom, then must be false + // UNLESS it was limited by another range in the other direction. + // Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0 + if (gt && hasDomLT && !lt && gtltComp !== 0) + return false + + if (lt && hasDomGT && !gt && gtltComp !== 0) + return false + + return true +} + +// >=1.2.3 is lower than >1.2.3 +const higherGT = (a, b, options) => { + if (!a) + return b + const comp = compare(a.semver, b.semver, options) + return comp > 0 ? a + : comp < 0 ? b + : b.operator === '>' && a.operator === '>=' ? b + : a +} + +// <=1.2.3 is higher than <1.2.3 +const lowerLT = (a, b, options) => { + if (!a) + return b + const comp = compare(a.semver, b.semver, options) + return comp < 0 ? a + : comp > 0 ? b + : b.operator === '<' && a.operator === '<=' ? b + : a +} + +module.exports = subset diff --git a/node_modules/semver/ranges/to-comparators.js b/node_modules/semver/ranges/to-comparators.js new file mode 100644 index 000000000..6c8bc7e6f --- /dev/null +++ b/node_modules/semver/ranges/to-comparators.js @@ -0,0 +1,8 @@ +const Range = require('../classes/range') + +// Mostly just for testing and legacy API reasons +const toComparators = (range, options) => + new Range(range, options).set + .map(comp => comp.map(c => c.value).join(' ').trim().split(' ')) + +module.exports = toComparators diff --git a/node_modules/semver/ranges/valid.js b/node_modules/semver/ranges/valid.js new file mode 100644 index 000000000..365f35689 --- /dev/null +++ b/node_modules/semver/ranges/valid.js @@ -0,0 +1,11 @@ +const Range = require('../classes/range') +const validRange = (range, options) => { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } +} +module.exports = validRange diff --git a/node_modules/serialize-error/package.json b/node_modules/serialize-error/package.json index 7be0a0f03..cf65eba3d 100644 --- a/node_modules/serialize-error/package.json +++ b/node_modules/serialize-error/package.json @@ -1,23 +1,53 @@ { - "name": "serialize-error", - "version": "2.1.0", - "description": "Serialize an error into a plain object", - "license": "MIT", - "repository": "sindresorhus/serialize-error", + "_args": [ + [ + "serialize-error@2.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "serialize-error@2.1.0", + "_id": "serialize-error@2.1.0", + "_inBundle": false, + "_integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=", + "_location": "/serialize-error", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "serialize-error@2.1.0", + "name": "serialize-error", + "escapedName": "serialize-error", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/supertap" + ], + "_resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/serialize-error/issues" + }, + "description": "Serialize an error into a plain object", + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/serialize-error#readme", "keywords": [ "error", "err", @@ -29,8 +59,14 @@ "process", "send" ], - "devDependencies": { - "ava": "*", - "xo": "^0.16.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "serialize-error", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/serialize-error.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/set-blocking/package.json b/node_modules/set-blocking/package.json index c082db72c..4df83c7c7 100644 --- a/node_modules/set-blocking/package.json +++ b/node_modules/set-blocking/package.json @@ -1,32 +1,41 @@ { - "name": "set-blocking", - "version": "2.0.0", - "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "nyc mocha ./test/*.js", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "version": "standard-version" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/yargs/set-blocking.git" + "_args": [ + [ + "set-blocking@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "set-blocking@2.0.0", + "_id": "set-blocking@2.0.0", + "_inBundle": false, + "_integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "_location": "/set-blocking", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "set-blocking@2.0.0", + "name": "set-blocking", + "escapedName": "set-blocking", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" }, - "keywords": [ - "flush", - "terminal", - "blocking", - "shim", - "stdio", - "stderr" + "_requiredBy": [ + "/yargs" ], - "author": "Ben Coe ", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, "bugs": { "url": "https://github.com/yargs/set-blocking/issues" }, - "homepage": "https://github.com/yargs/set-blocking#readme", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", "devDependencies": { "chai": "^3.5.0", "coveralls": "^2.11.9", @@ -38,5 +47,28 @@ "files": [ "index.js", "LICENSE.txt" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/yargs/set-blocking#readme", + "keywords": [ + "flush", + "terminal", + "blocking", + "shim", + "stdio", + "stderr" + ], + "license": "ISC", + "main": "index.js", + "name": "set-blocking", + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/set-blocking.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "test": "nyc mocha ./test/*.js", + "version": "standard-version" + }, + "version": "2.0.0" +} diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json index a836941a1..5de9f6497 100644 --- a/node_modules/shebang-command/package.json +++ b/node_modules/shebang-command/package.json @@ -1,39 +1,74 @@ { - "name": "shebang-command", - "version": "1.2.0", - "description": "Get the command from a shebang", - "license": "MIT", - "repository": "kevva/shebang-command", + "_args": [ + [ + "shebang-command@1.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "shebang-command@1.2.0", + "_id": "shebang-command@1.2.0", + "_inBundle": false, + "_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "_location": "/shebang-command", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "shebang-command@1.2.0", + "name": "shebang-command", + "escapedName": "shebang-command", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Kevin Martensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, + "bugs": { + "url": "https://github.com/kevva/shebang-command/issues" + }, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "description": "Get the command from a shebang", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/kevva/shebang-command#readme", "keywords": [ "cmd", "command", "parse", "shebang" ], - "dependencies": { - "shebang-regex": "^1.0.0" + "license": "MIT", + "name": "shebang-command", + "repository": { + "type": "git", + "url": "git+https://github.com/kevva/shebang-command.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" + "scripts": { + "test": "xo && ava" }, + "version": "1.2.0", "xo": { "ignores": [ "test.js" ] } -} \ No newline at end of file +} diff --git a/node_modules/shebang-regex/package.json b/node_modules/shebang-regex/package.json index f174dc29e..6b160c23d 100644 --- a/node_modules/shebang-regex/package.json +++ b/node_modules/shebang-regex/package.json @@ -1,23 +1,51 @@ { - "name": "shebang-regex", - "version": "1.0.0", - "description": "Regular expression for matching a shebang", - "license": "MIT", - "repository": "sindresorhus/shebang-regex", + "_args": [ + [ + "shebang-regex@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "shebang-regex@1.0.0", + "_id": "shebang-regex@1.0.0", + "_inBundle": false, + "_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "_location": "/shebang-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "shebang-regex@1.0.0", + "name": "shebang-regex", + "escapedName": "shebang-regex", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/shebang-command" + ], + "_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/shebang-regex/issues" + }, + "description": "Regular expression for matching a shebang", + "devDependencies": { + "ava": "0.0.4" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "node test.js" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/shebang-regex#readme", "keywords": [ "re", "regex", @@ -26,7 +54,14 @@ "match", "test" ], - "devDependencies": { - "ava": "0.0.4" - } -} \ No newline at end of file + "license": "MIT", + "name": "shebang-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/shebang-regex.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.0.0" +} diff --git a/node_modules/signal-exit/package.json b/node_modules/signal-exit/package.json index 2bee5637f..27eccbcb6 100644 --- a/node_modules/signal-exit/package.json +++ b/node_modules/signal-exit/package.json @@ -1,32 +1,42 @@ { - "name": "signal-exit", - "version": "3.0.2", - "description": "when you want to fire an event no matter how a process exits.", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "tap --timeout=240 ./test/*.js --cov", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "release": "standard-version" - }, - "files": [ - "index.js", - "signals.js" + "_args": [ + [ + "signal-exit@3.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": { - "type": "git", - "url": "https://github.com/tapjs/signal-exit.git" + "_from": "signal-exit@3.0.2", + "_id": "signal-exit@3.0.2", + "_inBundle": false, + "_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "_location": "/signal-exit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "signal-exit@3.0.2", + "name": "signal-exit", + "escapedName": "signal-exit", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" }, - "keywords": [ - "signal", - "exit" + "_requiredBy": [ + "/execa", + "/restore-cursor", + "/write-file-atomic" ], - "author": "Ben Coe ", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, "bugs": { "url": "https://github.com/tapjs/signal-exit/issues" }, - "homepage": "https://github.com/tapjs/signal-exit", + "description": "when you want to fire an event no matter how a process exits.", "devDependencies": { "chai": "^3.5.0", "coveralls": "^2.11.10", @@ -34,5 +44,28 @@ "standard": "^7.1.2", "standard-version": "^2.3.0", "tap": "^8.0.1" - } -} \ No newline at end of file + }, + "files": [ + "index.js", + "signals.js" + ], + "homepage": "https://github.com/tapjs/signal-exit", + "keywords": [ + "signal", + "exit" + ], + "license": "ISC", + "main": "index.js", + "name": "signal-exit", + "repository": { + "type": "git", + "url": "git+https://github.com/tapjs/signal-exit.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "tap --timeout=240 ./test/*.js --cov" + }, + "version": "3.0.2" +} diff --git a/node_modules/slash/package.json b/node_modules/slash/package.json index c845a31bb..91289a909 100644 --- a/node_modules/slash/package.json +++ b/node_modules/slash/package.json @@ -1,24 +1,58 @@ { - "name": "slash", - "version": "3.0.0", - "description": "Convert Windows backslash paths to slash paths", - "license": "MIT", - "repository": "sindresorhus/slash", + "_args": [ + [ + "slash@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "slash@3.0.0", + "_id": "slash@3.0.0", + "_inBundle": false, + "_integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "_location": "/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@3.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/ava", + "/del", + "/del/globby", + "/globby" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/slash#readme", "keywords": [ "path", "seperator", @@ -27,9 +61,14 @@ "windows", "convert" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/slice-ansi/node_modules/ansi-styles/package.json b/node_modules/slice-ansi/node_modules/ansi-styles/package.json index 1a7731952..d57158236 100644 --- a/node_modules/slice-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/slice-ansi/node_modules/ansi-styles/package.json @@ -1,26 +1,62 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/slice-ansi/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/slice-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +79,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/slice-ansi/node_modules/astral-regex/package.json b/node_modules/slice-ansi/node_modules/astral-regex/package.json index 744e3ea07..74640f242 100644 --- a/node_modules/slice-ansi/node_modules/astral-regex/package.json +++ b/node_modules/slice-ansi/node_modules/astral-regex/package.json @@ -1,33 +1,69 @@ { - "name": "astral-regex", - "version": "2.0.0", - "description": "Regular expression for matching astral symbols", - "license": "MIT", - "repository": "kevva/astral-regex", + "_args": [ + [ + "astral-regex@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "astral-regex@2.0.0", + "_id": "astral-regex@2.0.0", + "_inBundle": false, + "_integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "_location": "/slice-ansi/astral-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "astral-regex@2.0.0", + "name": "astral-regex", + "escapedName": "astral-regex", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/slice-ansi" + ], + "_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Kevin Mårtensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, + "bugs": { + "url": "https://github.com/kevva/astral-regex/issues" + }, + "description": "Regular expression for matching astral symbols", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/kevva/astral-regex#readme", "keywords": [ "astral", "emoji", "regex", "surrogate" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "astral-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/kevva/astral-regex.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/slice-ansi/node_modules/color-convert/package.json b/node_modules/slice-ansi/node_modules/color-convert/package.json index d169f869b..416a1b37d 100644 --- a/node_modules/slice-ansi/node_modules/color-convert/package.json +++ b/node_modules/slice-ansi/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/slice-ansi/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/slice-ansi/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/slice-ansi/node_modules/color-name/package.json b/node_modules/slice-ansi/node_modules/color-name/package.json index fecb8dcfb..cd924f3bc 100644 --- a/node_modules/slice-ansi/node_modules/color-name/package.json +++ b/node_modules/slice-ansi/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/slice-ansi/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/slice-ansi/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/slice-ansi/package.json b/node_modules/slice-ansi/package.json index a5e103ef1..e8fcb2ced 100644 --- a/node_modules/slice-ansi/package.json +++ b/node_modules/slice-ansi/package.json @@ -1,18 +1,58 @@ { - "name": "slice-ansi", - "version": "3.0.0", + "_args": [ + [ + "slice-ansi@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "slice-ansi@3.0.0", + "_id": "slice-ansi@3.0.0", + "_inBundle": false, + "_integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "_location": "/slice-ansi", + "_phantomChildren": { + "@types/color-name": "1.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "slice-ansi@3.0.0", + "name": "slice-ansi", + "escapedName": "slice-ansi", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/cli-truncate" + ], + "_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/slice-ansi/issues" + }, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, "description": "Slice a string with ANSI escape codes", - "license": "MIT", - "repository": "chalk/slice-ansi", + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "random-item": "^3.0.0", + "strip-ansi": "^5.0.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/slice-ansi#readme", "keywords": [ "slice", "string", @@ -36,16 +76,14 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "license": "MIT", + "name": "slice-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/slice-ansi.git" }, - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "random-item": "^3.0.0", - "strip-ansi": "^5.0.0", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/source-map/package.json b/node_modules/source-map/package.json index eb649bf17..b9ce0dd66 100644 --- a/node_modules/source-map/package.json +++ b/node_modules/source-map/package.json @@ -1,52 +1,194 @@ { - "name": "source-map", - "description": "Generates and consumes source maps", - "version": "0.6.1", - "homepage": "https://github.com/mozilla/source-map", - "author": "Nick Fitzgerald ", + "_args": [ + [ + "source-map@0.6.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "source-map@0.6.1", + "_id": "source-map@0.6.1", + "_inBundle": false, + "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "_location": "/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map@0.6.1", + "name": "source-map", + "escapedName": "source-map", + "rawSpec": "0.6.1", + "saveSpec": null, + "fetchSpec": "0.6.1" + }, + "_requiredBy": [ + "/ava/source-map-support" + ], + "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "_spec": "0.6.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "bugs": { + "url": "https://github.com/mozilla/source-map/issues" + }, "contributors": [ - "Tobias Koppers ", - "Duncan Beevers ", - "Stephen Crane ", - "Ryan Seddon ", - "Miles Elam ", - "Mihai Bazon ", - "Michael Ficarra ", - "Todd Wolfson ", - "Alexander Solovyov ", - "Felix Gnass ", - "Conrad Irwin ", - "usrbincc ", - "David Glasser ", - "Chase Douglas ", - "Evan Wallace ", - "Heather Arthur ", - "Hugh Kennedy ", - "David Glasser ", - "Simon Lydell ", - "Jmeas Smith ", - "Michael Z Goddard ", - "azu ", - "John Gozde ", - "Adam Kirkton ", - "Chris Montgomery ", - "J. Ryan Stinnett ", - "Jack Herrington ", - "Chris Truter ", - "Daniel Espeset ", - "Jamie Wong ", - "Eddy Bruël ", - "Hawken Rives ", - "Gilad Peleg ", - "djchie ", - "Gary Ye ", - "Nicolas Lalevée " + { + "name": "Tobias Koppers", + "email": "tobias.koppers@googlemail.com" + }, + { + "name": "Duncan Beevers", + "email": "duncan@dweebd.com" + }, + { + "name": "Stephen Crane", + "email": "scrane@mozilla.com" + }, + { + "name": "Ryan Seddon", + "email": "seddon.ryan@gmail.com" + }, + { + "name": "Miles Elam", + "email": "miles.elam@deem.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com" + }, + { + "name": "Michael Ficarra", + "email": "github.public.email@michael.ficarra.me" + }, + { + "name": "Todd Wolfson", + "email": "todd@twolfson.com" + }, + { + "name": "Alexander Solovyov", + "email": "alexander@solovyov.net" + }, + { + "name": "Felix Gnass", + "email": "fgnass@gmail.com" + }, + { + "name": "Conrad Irwin", + "email": "conrad.irwin@gmail.com" + }, + { + "name": "usrbincc", + "email": "usrbincc@yahoo.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Chase Douglas", + "email": "chase@newrelic.com" + }, + { + "name": "Evan Wallace", + "email": "evan.exe@gmail.com" + }, + { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Simon Lydell", + "email": "simon.lydell@gmail.com" + }, + { + "name": "Jmeas Smith", + "email": "jellyes2@gmail.com" + }, + { + "name": "Michael Z Goddard", + "email": "mzgoddard@gmail.com" + }, + { + "name": "azu", + "email": "azu@users.noreply.github.com" + }, + { + "name": "John Gozde", + "email": "john@gozde.ca" + }, + { + "name": "Adam Kirkton", + "email": "akirkton@truefitinnovation.com" + }, + { + "name": "Chris Montgomery", + "email": "christopher.montgomery@dowjones.com" + }, + { + "name": "J. Ryan Stinnett", + "email": "jryans@gmail.com" + }, + { + "name": "Jack Herrington", + "email": "jherrington@walmartlabs.com" + }, + { + "name": "Chris Truter", + "email": "jeffpalentine@gmail.com" + }, + { + "name": "Daniel Espeset", + "email": "daniel@danielespeset.com" + }, + { + "name": "Jamie Wong", + "email": "jamie.lf.wong@gmail.com" + }, + { + "name": "Eddy Bruël", + "email": "ejpbruel@mozilla.com" + }, + { + "name": "Hawken Rives", + "email": "hawkrives@gmail.com" + }, + { + "name": "Gilad Peleg", + "email": "giladp007@gmail.com" + }, + { + "name": "djchie", + "email": "djchie.dev@gmail.com" + }, + { + "name": "Gary Ye", + "email": "garysye@gmail.com" + }, + { + "name": "Nicolas Lalevée", + "email": "nicolas.lalevee@hibnet.org" + } ], - "repository": { - "type": "git", - "url": "http://github.com/mozilla/source-map.git" + "description": "Generates and consumes source maps", + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "engines": { + "node": ">=0.10.0" }, - "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -56,18 +198,19 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "engines": { - "node": ">=0.10.0" - }, + "homepage": "https://github.com/mozilla/source-map", "license": "BSD-3-Clause", + "main": "./source-map.js", + "name": "source-map", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + }, "scripts": { - "test": "npm run build && node test/run-tests.js", "build": "webpack --color", + "test": "npm run build && node test/run-tests.js", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "typings": "source-map" -} \ No newline at end of file + "typings": "source-map", + "version": "0.6.1" +} diff --git a/node_modules/spdx-correct/package.json b/node_modules/spdx-correct/package.json index 4002158a8..8e3bff4f9 100644 --- a/node_modules/spdx-correct/package.json +++ b/node_modules/spdx-correct/package.json @@ -1,18 +1,65 @@ { - "name": "spdx-correct", - "description": "correct invalid SPDX expressions", - "version": "3.1.0", - "author": "Kyle E. Mitchell (https://kemitchell.com)", + "_args": [ + [ + "spdx-correct@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "spdx-correct@3.1.0", + "_id": "spdx-correct@3.1.0", + "_inBundle": false, + "_integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "_location": "/spdx-correct", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-correct@3.1.0", + "name": "spdx-correct", + "escapedName": "spdx-correct", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/validate-npm-package-license" + ], + "_resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/jslicense/spdx-correct.js/issues" + }, "contributors": [ - "Kyle E. Mitchell (https://kemitchell.com)", - "Christian Zommerfelds ", - "Tal Einat ", - "Dan Butvinik " + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + { + "name": "Christian Zommerfelds", + "email": "aero_super@yahoo.com" + }, + { + "name": "Tal Einat", + "email": "taleinat@gmail.com" + }, + { + "name": "Dan Butvinik", + "email": "butvinik@outlook.com" + } ], "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" }, + "description": "correct invalid SPDX expressions", "devDependencies": { "defence-cli": "^2.0.1", "replace-require-self": "^1.0.0", @@ -23,6 +70,7 @@ "files": [ "index.js" ], + "homepage": "https://github.com/jslicense/spdx-correct.js#readme", "keywords": [ "SPDX", "law", @@ -31,9 +79,14 @@ "metadata" ], "license": "Apache-2.0", - "repository": "jslicense/spdx-correct.js", + "name": "spdx-correct", + "repository": { + "type": "git", + "url": "git+https://github.com/jslicense/spdx-correct.js.git" + }, "scripts": { "lint": "standard && standard-markdown README.md", "test": "defence README.md | replace-require-self | node && node test.js" - } -} \ No newline at end of file + }, + "version": "3.1.0" +} diff --git a/node_modules/spdx-exceptions/package.json b/node_modules/spdx-exceptions/package.json index 1b39b16d9..859c22ec7 100644 --- a/node_modules/spdx-exceptions/package.json +++ b/node_modules/spdx-exceptions/package.json @@ -1,17 +1,59 @@ { - "name": "spdx-exceptions", - "description": "list of SPDX standard license exceptions", - "version": "2.3.0", - "author": "The Linux Foundation", + "_args": [ + [ + "spdx-exceptions@2.3.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "spdx-exceptions@2.3.0", + "_id": "spdx-exceptions@2.3.0", + "_inBundle": false, + "_integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "_location": "/spdx-exceptions", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-exceptions@2.3.0", + "name": "spdx-exceptions", + "escapedName": "spdx-exceptions", + "rawSpec": "2.3.0", + "saveSpec": null, + "fetchSpec": "2.3.0" + }, + "_requiredBy": [ + "/spdx-expression-parse" + ], + "_resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "_spec": "2.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "The Linux Foundation" + }, + "bugs": { + "url": "https://github.com/kemitchell/spdx-exceptions.json/issues" + }, "contributors": [ - "Kyle E. Mitchell (https://kemitchell.com/)" + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com/" + } ], - "license": "CC-BY-3.0", - "repository": "kemitchell/spdx-exceptions.json", + "description": "list of SPDX standard license exceptions", "files": [ "index.json" ], + "homepage": "https://github.com/kemitchell/spdx-exceptions.json#readme", + "license": "CC-BY-3.0", + "name": "spdx-exceptions", + "repository": { + "type": "git", + "url": "git+https://github.com/kemitchell/spdx-exceptions.json.git" + }, "scripts": { "build": "node build.js" - } -} \ No newline at end of file + }, + "version": "2.3.0" +} diff --git a/node_modules/spdx-expression-parse/package.json b/node_modules/spdx-expression-parse/package.json index 93d94baa4..48717f29f 100644 --- a/node_modules/spdx-expression-parse/package.json +++ b/node_modules/spdx-expression-parse/package.json @@ -1,24 +1,80 @@ { - "name": "spdx-expression-parse", - "description": "parse SPDX license expressions", - "version": "3.0.0", - "author": "Kyle E. Mitchell (http://kemitchell.com)", - "files": [ - "AUTHORS", - "index.js", - "parse.js", - "scan.js" + "_args": [ + [ + "spdx-expression-parse@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "spdx-expression-parse@3.0.0", + "_id": "spdx-expression-parse@3.0.0", + "_inBundle": false, + "_integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "_location": "/spdx-expression-parse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-expression-parse@3.0.0", + "name": "spdx-expression-parse", + "escapedName": "spdx-expression-parse", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/spdx-correct", + "/validate-npm-package-license" + ], + "_resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "http://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/jslicense/spdx-expression-parse.js/issues" + }, + "contributors": [ + { + "name": "C. Scott Ananian", + "email": "cscott@cscott.net", + "url": "http://cscott.net" + }, + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + { + "name": "Shinnosuke Watanabe", + "email": "snnskwtnb@gmail.com" + }, + { + "name": "Antoine Motet", + "email": "antoine.motet@gmail.com" + } ], "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" }, + "description": "parse SPDX license expressions", "devDependencies": { "defence-cli": "^2.0.1", "mocha": "^3.4.2", "replace-require-self": "^1.0.0", "standard": "^10.0.2" }, + "files": [ + "AUTHORS", + "index.js", + "parse.js", + "scan.js" + ], + "homepage": "https://github.com/jslicense/spdx-expression-parse.js#readme", "keywords": [ "SPDX", "law", @@ -30,11 +86,16 @@ "standards" ], "license": "MIT", - "repository": "jslicense/spdx-expression-parse.js", + "name": "spdx-expression-parse", + "repository": { + "type": "git", + "url": "git+https://github.com/jslicense/spdx-expression-parse.js.git" + }, "scripts": { "lint": "standard", - "test:readme": "defence -i javascript README.md | replace-require-self | node", + "test": "npm run test:mocha && npm run test:readme", "test:mocha": "mocha test/index.js", - "test": "npm run test:mocha && npm run test:readme" - } -} \ No newline at end of file + "test:readme": "defence -i javascript README.md | replace-require-self | node" + }, + "version": "3.0.0" +} diff --git a/node_modules/spdx-license-ids/package.json b/node_modules/spdx-license-ids/package.json index a21e42587..e6419020e 100644 --- a/node_modules/spdx-license-ids/package.json +++ b/node_modules/spdx-license-ids/package.json @@ -1,19 +1,58 @@ { - "name": "spdx-license-ids", - "version": "3.0.5", + "_args": [ + [ + "spdx-license-ids@3.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "spdx-license-ids@3.0.5", + "_id": "spdx-license-ids@3.0.5", + "_inBundle": false, + "_integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "_location": "/spdx-license-ids", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-license-ids@3.0.5", + "name": "spdx-license-ids", + "escapedName": "spdx-license-ids", + "rawSpec": "3.0.5", + "saveSpec": null, + "fetchSpec": "3.0.5" + }, + "_requiredBy": [ + "/spdx-correct", + "/spdx-expression-parse" + ], + "_resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "_spec": "3.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Shinnosuke Watanabe", + "url": "https://github.com/shinnn" + }, + "bugs": { + "url": "https://github.com/shinnn/spdx-license-ids/issues" + }, "description": "A list of SPDX license identifiers", - "repository": "shinnn/spdx-license-ids", - "author": "Shinnosuke Watanabe (https://github.com/shinnn)", - "license": "CC0-1.0", - "scripts": { - "build": "node build.js", - "pretest": "eslint .", - "test": "node test.js" + "devDependencies": { + "@shinnn/eslint-config": "^6.8.7", + "chalk": "^2.4.1", + "eslint": "^5.10.0", + "get-spdx-license-ids": "^2.1.0", + "rmfr": "^2.0.0", + "tape": "^4.9.1" + }, + "eslintConfig": { + "extends": "@shinnn" }, "files": [ "deprecated.json", "index.json" ], + "homepage": "https://github.com/shinnn/spdx-license-ids#readme", "keywords": [ "spdx", "license", @@ -25,15 +64,16 @@ "array", "oss" ], - "devDependencies": { - "@shinnn/eslint-config": "^6.8.7", - "chalk": "^2.4.1", - "eslint": "^5.10.0", - "get-spdx-license-ids": "^2.1.0", - "rmfr": "^2.0.0", - "tape": "^4.9.1" + "license": "CC0-1.0", + "name": "spdx-license-ids", + "repository": { + "type": "git", + "url": "git+https://github.com/shinnn/spdx-license-ids.git" }, - "eslintConfig": { - "extends": "@shinnn" - } -} \ No newline at end of file + "scripts": { + "build": "node build.js", + "pretest": "eslint .", + "test": "node test.js" + }, + "version": "3.0.5" +} diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json index b49b1926d..76a89f8d1 100644 --- a/node_modules/sprintf-js/package.json +++ b/node_modules/sprintf-js/package.json @@ -1,22 +1,57 @@ { - "name": "sprintf-js", - "version": "1.0.3", - "description": "JavaScript sprintf implementation", - "author": "Alexandru Marasteanu (http://alexei.ro/)", - "main": "src/sprintf.js", - "scripts": { - "test": "mocha test/test.js" + "_args": [ + [ + "sprintf-js@1.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "sprintf-js@1.0.3", + "_id": "sprintf-js@1.0.3", + "_inBundle": false, + "_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "_location": "/sprintf-js", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sprintf-js@1.0.3", + "name": "sprintf-js", + "escapedName": "sprintf-js", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" }, - "repository": { - "type": "git", - "url": "https://github.com/alexei/sprintf.js.git" + "_requiredBy": [ + "/argparse" + ], + "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Alexandru Marasteanu", + "email": "hello@alexei.ro", + "url": "http://alexei.ro/" }, - "license": "BSD-3-Clause", - "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/alexei/sprintf.js/issues" + }, + "description": "JavaScript sprintf implementation", "devDependencies": { - "mocha": "*", "grunt": "*", + "grunt-contrib-uglify": "*", "grunt-contrib-watch": "*", - "grunt-contrib-uglify": "*" - } -} \ No newline at end of file + "mocha": "*" + }, + "homepage": "https://github.com/alexei/sprintf.js#readme", + "license": "BSD-3-Clause", + "main": "src/sprintf.js", + "name": "sprintf-js", + "repository": { + "type": "git", + "url": "git+https://github.com/alexei/sprintf.js.git" + }, + "scripts": { + "test": "mocha test/test.js" + }, + "version": "1.0.3" +} diff --git a/node_modules/string-width/package.json b/node_modules/string-width/package.json index 8a570010a..244a937b0 100644 --- a/node_modules/string-width/package.json +++ b/node_modules/string-width/package.json @@ -1,24 +1,65 @@ { - "name": "string-width", - "version": "4.2.0", - "description": "Get the visual width of a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/string-width", + "_args": [ + [ + "string-width@4.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "string-width@4.2.0", + "_id": "string-width@4.2.0", + "_inBundle": false, + "_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "_location": "/string-width", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string-width@4.2.0", + "name": "string-width", + "escapedName": "string-width", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/boxen", + "/cli-truncate", + "/cliui", + "/widest-line", + "/wrap-ansi", + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/string-width/issues" + }, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "description": "Get the visual width of a string - the number of columns required to display it", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/string-width#readme", "keywords": [ "string", "character", @@ -43,14 +84,14 @@ "korean", "fixed-width" ], - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "license": "MIT", + "name": "string-width", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/string-width.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.2.0" +} diff --git a/node_modules/strip-ansi/node_modules/ansi-regex/package.json b/node_modules/strip-ansi/node_modules/ansi-regex/package.json index b6c1efa36..ba964ed1d 100644 --- a/node_modules/strip-ansi/node_modules/ansi-regex/package.json +++ b/node_modules/strip-ansi/node_modules/ansi-regex/package.json @@ -1,25 +1,55 @@ { - "name": "ansi-regex", - "version": "5.0.0", - "description": "Regular expression for matching ANSI escape codes", - "license": "MIT", - "repository": "chalk/ansi-regex", + "_args": [ + [ + "ansi-regex@5.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-regex@5.0.0", + "_id": "ansi-regex@5.0.0", + "_inBundle": false, + "_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "_location": "/strip-ansi/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@5.0.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "view-supported": "node fixtures/view-codes.js" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/chalk/ansi-regex#readme", "keywords": [ "ansi", "styles", @@ -47,9 +77,15 @@ "find", "pattern" ], - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava && tsd", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "5.0.0" +} diff --git a/node_modules/strip-ansi/package.json b/node_modules/strip-ansi/package.json index 303816b1a..35ef03c26 100644 --- a/node_modules/strip-ansi/package.json +++ b/node_modules/strip-ansi/package.json @@ -1,24 +1,62 @@ { - "name": "strip-ansi", - "version": "6.0.0", - "description": "Strip ANSI escape codes from a string", - "license": "MIT", - "repository": "chalk/strip-ansi", + "_args": [ + [ + "strip-ansi@6.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "strip-ansi@6.0.0", + "_id": "strip-ansi@6.0.0", + "_inBundle": false, + "_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "_location": "/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@6.0.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "6.0.0", + "saveSpec": null, + "fetchSpec": "6.0.0" + }, + "_requiredBy": [ + "/ava", + "/cliui", + "/ora", + "/string-width", + "/wrap-ansi" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "_spec": "6.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "description": "Strip ANSI escape codes from a string", + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -43,12 +81,14 @@ "command-line", "text" ], - "dependencies": { - "ansi-regex": "^5.0.0" + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "6.0.0" +} diff --git a/node_modules/strip-eof/package.json b/node_modules/strip-eof/package.json index 2e22eeb61..38f149527 100644 --- a/node_modules/strip-eof/package.json +++ b/node_modules/strip-eof/package.json @@ -1,23 +1,52 @@ { - "name": "strip-eof", - "version": "1.0.0", - "description": "Strip the End-Of-File (EOF) character from a string/buffer", - "license": "MIT", - "repository": "sindresorhus/strip-eof", + "_args": [ + [ + "strip-eof@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "strip-eof@1.0.0", + "_id": "strip-eof@1.0.0", + "_inBundle": false, + "_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "_location": "/strip-eof", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-eof@1.0.0", + "name": "strip-eof", + "escapedName": "strip-eof", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/strip-eof/issues" + }, + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/strip-eof#readme", "keywords": [ "strip", "trim", @@ -32,8 +61,14 @@ "string", "buffer" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "strip-eof", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/strip-eof.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/strip-json-comments/package.json b/node_modules/strip-json-comments/package.json index 2b00952d9..2db7c99ab 100644 --- a/node_modules/strip-json-comments/package.json +++ b/node_modules/strip-json-comments/package.json @@ -1,23 +1,53 @@ { - "name": "strip-json-comments", - "version": "2.0.1", - "description": "Strip comments from JSON. Lets you use comments in your JSON files!", - "license": "MIT", - "repository": "sindresorhus/strip-json-comments", + "_args": [ + [ + "strip-json-comments@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "strip-json-comments@2.0.1", + "_id": "strip-json-comments@2.0.1", + "_inBundle": false, + "_integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "_location": "/strip-json-comments", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-json-comments@2.0.1", + "name": "strip-json-comments", + "escapedName": "strip-json-comments", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/rc" + ], + "_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/strip-json-comments/issues" + }, + "description": "Strip comments from JSON. Lets you use comments in your JSON files!", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/strip-json-comments#readme", "keywords": [ "json", "strip", @@ -35,8 +65,14 @@ "env", "environment" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "strip-json-comments", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/strip-json-comments.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.1" +} diff --git a/node_modules/supertap/node_modules/ansi-regex/package.json b/node_modules/supertap/node_modules/ansi-regex/package.json index d8a414df3..66a301026 100644 --- a/node_modules/supertap/node_modules/ansi-regex/package.json +++ b/node_modules/supertap/node_modules/ansi-regex/package.json @@ -1,24 +1,53 @@ { - "name": "ansi-regex", - "version": "3.0.0", - "description": "Regular expression for matching ANSI escape codes", - "license": "MIT", - "repository": "chalk/ansi-regex", + "_args": [ + [ + "ansi-regex@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-regex@3.0.0", + "_id": "ansi-regex@3.0.0", + "_inBundle": false, + "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "_location": "/supertap/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@3.0.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/supertap/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava", - "view-supported": "node fixtures/view-codes.js" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/ansi-regex#readme", "keywords": [ "ansi", "styles", @@ -46,8 +75,15 @@ "find", "pattern" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "3.0.0" +} diff --git a/node_modules/supertap/node_modules/arrify/package.json b/node_modules/supertap/node_modules/arrify/package.json index d60245659..7208826ac 100644 --- a/node_modules/supertap/node_modules/arrify/package.json +++ b/node_modules/supertap/node_modules/arrify/package.json @@ -1,23 +1,53 @@ { - "name": "arrify", - "version": "1.0.1", - "description": "Convert a value to an array", - "license": "MIT", - "repository": "sindresorhus/arrify", + "_args": [ + [ + "arrify@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "arrify@1.0.1", + "_id": "arrify@1.0.1", + "_inBundle": false, + "_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "_location": "/supertap/arrify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arrify@1.0.1", + "name": "arrify", + "escapedName": "arrify", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/supertap" + ], + "_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/arrify/issues" + }, + "description": "Convert a value to an array", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/arrify#readme", "keywords": [ "array", "arr", @@ -26,8 +56,14 @@ "convert", "value" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "arrify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/arrify.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.1" +} diff --git a/node_modules/supertap/node_modules/indent-string/package.json b/node_modules/supertap/node_modules/indent-string/package.json index e235bb620..1ea4ae14c 100644 --- a/node_modules/supertap/node_modules/indent-string/package.json +++ b/node_modules/supertap/node_modules/indent-string/package.json @@ -1,23 +1,53 @@ { - "name": "indent-string", - "version": "3.2.0", - "description": "Indent each line in a string", - "license": "MIT", - "repository": "sindresorhus/indent-string", + "_args": [ + [ + "indent-string@3.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "indent-string@3.2.0", + "_id": "indent-string@3.2.0", + "_inBundle": false, + "_integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", + "_location": "/supertap/indent-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "indent-string@3.2.0", + "name": "indent-string", + "escapedName": "indent-string", + "rawSpec": "3.2.0", + "saveSpec": null, + "fetchSpec": "3.2.0" + }, + "_requiredBy": [ + "/supertap" + ], + "_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "_spec": "3.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/indent-string/issues" + }, + "description": "Indent each line in a string", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/indent-string#readme", "keywords": [ "indent", "string", @@ -29,8 +59,14 @@ "each", "every" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "indent-string", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/indent-string.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.2.0" +} diff --git a/node_modules/supertap/node_modules/strip-ansi/package.json b/node_modules/supertap/node_modules/strip-ansi/package.json index e6f25b887..92a89fc54 100644 --- a/node_modules/supertap/node_modules/strip-ansi/package.json +++ b/node_modules/supertap/node_modules/strip-ansi/package.json @@ -1,23 +1,56 @@ { - "name": "strip-ansi", - "version": "4.0.0", - "description": "Strip ANSI escape codes", - "license": "MIT", - "repository": "chalk/strip-ansi", + "_args": [ + [ + "strip-ansi@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "strip-ansi@4.0.0", + "_id": "strip-ansi@4.0.0", + "_inBundle": false, + "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "_location": "/supertap/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@4.0.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/supertap" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "description": "Strip ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -42,11 +75,14 @@ "command-line", "text" ], - "dependencies": { - "ansi-regex": "^3.0.0" + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/supertap/package.json b/node_modules/supertap/package.json index 5fdd242e6..a2763fa08 100644 --- a/node_modules/supertap/package.json +++ b/node_modules/supertap/package.json @@ -1,28 +1,44 @@ { - "name": "supertap", - "version": "1.0.0", - "description": "Generate TAP output", - "license": "MIT", - "repository": "vadimdemedes/supertap", + "_args": [ + [ + "supertap@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supertap@1.0.0", + "_id": "supertap@1.0.0", + "_inBundle": false, + "_integrity": "sha512-HZJ3geIMPgVwKk2VsmO5YHqnnJYl6bV5A9JW2uzqV43WmpgliNEYbuvukfor7URpaqpxuw3CfZ3ONdVbZjCgIA==", + "_location": "/supertap", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supertap@1.0.0", + "name": "supertap", + "escapedName": "supertap", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/supertap/-/supertap-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Vadim Demedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, - "engines": { - "node": ">=4" + "ava": { + "serial": true }, - "scripts": { - "test": "xo && ava" + "bugs": { + "url": "https://github.com/vadimdemedes/supertap/issues" }, - "files": [ - "index.js" - ], - "keywords": [ - "tap", - "tape", - "output" - ], "dependencies": { "arrify": "^1.0.1", "indent-string": "^3.2.0", @@ -30,6 +46,7 @@ "serialize-error": "^2.1.0", "strip-ansi": "^4.0.0" }, + "description": "Generate TAP output", "devDependencies": { "ava": "^0.20.0", "ctrlc-exit": "^1.0.0", @@ -47,7 +64,26 @@ "wait-for-enter": "^1.0.0", "xo": "^0.18.2" }, - "ava": { - "serial": true - } -} \ No newline at end of file + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/vadimdemedes/supertap#readme", + "keywords": [ + "tap", + "tape", + "output" + ], + "license": "MIT", + "name": "supertap", + "repository": { + "type": "git", + "url": "git+https://github.com/vadimdemedes/supertap.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json index efeb00b06..b40f7c47d 100644 --- a/node_modules/supports-color/package.json +++ b/node_modules/supports-color/package.json @@ -1,24 +1,59 @@ { - "name": "supports-color", - "version": "5.5.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", + "_args": [ + [ + "supports-color@5.5.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supports-color@5.5.0", + "_id": "supports-color@5.5.0", + "_inBundle": false, + "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "_location": "/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@5.5.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "5.5.0", + "saveSpec": null, + "fetchSpec": "5.5.0" + }, + "_requiredBy": [ + "/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "_spec": "5.5.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^3.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -41,13 +76,14 @@ "truecolor", "16m" ], - "dependencies": { - "has-flag": "^3.0.0" + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" }, - "devDependencies": { - "ava": "^0.25.0", - "import-fresh": "^2.0.0", - "xo": "^0.20.0" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "5.5.0" +} diff --git a/node_modules/temp-dir/package.json b/node_modules/temp-dir/package.json index ad951f149..b7b67c8e5 100644 --- a/node_modules/temp-dir/package.json +++ b/node_modules/temp-dir/package.json @@ -1,24 +1,56 @@ { - "name": "temp-dir", - "version": "2.0.0", - "description": "Get the real path of the system temp directory", - "license": "MIT", - "repository": "sindresorhus/temp-dir", + "_args": [ + [ + "temp-dir@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "temp-dir@2.0.0", + "_id": "temp-dir@2.0.0", + "_inBundle": false, + "_integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "_location": "/temp-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "temp-dir@2.0.0", + "name": "temp-dir", + "escapedName": "temp-dir", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/temp-dir/issues" + }, + "description": "Get the real path of the system temp directory", + "devDependencies": { + "ava": "^1.4.1", + "proxyquire": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/temp-dir#readme", "keywords": [ "temp", "tmpdir", @@ -32,10 +64,14 @@ "directory", "folder" ], - "devDependencies": { - "ava": "^1.4.1", - "proxyquire": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "temp-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/temp-dir.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/term-size/package.json b/node_modules/term-size/package.json index 6e1b27a37..dab69a067 100644 --- a/node_modules/term-size/package.json +++ b/node_modules/term-size/package.json @@ -1,26 +1,58 @@ { - "name": "term-size", - "version": "2.2.0", - "description": "Reliably get the terminal window size (columns & rows)", - "license": "MIT", - "repository": "sindresorhus/term-size", - "funding": "https://github.com/sponsors/sindresorhus", + "_args": [ + [ + "term-size@2.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "term-size@2.2.0", + "_id": "term-size@2.2.0", + "_inBundle": false, + "_integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==", + "_location": "/term-size", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "term-size@2.2.0", + "name": "term-size", + "escapedName": "term-size", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/boxen" + ], + "_resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/term-size/issues" + }, + "description": "Reliably get the terminal window size (columns & rows)", + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts", "vendor" ], + "funding": "https://github.com/sponsors/sindresorhus", + "homepage": "https://github.com/sindresorhus/term-size#readme", "keywords": [ "terminal", "size", @@ -34,10 +66,14 @@ "tty", "redirected" ], - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "license": "MIT", + "name": "term-size", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/term-size.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/time-zone/package.json b/node_modules/time-zone/package.json index 8e3e1e1a1..7013adc72 100644 --- a/node_modules/time-zone/package.json +++ b/node_modules/time-zone/package.json @@ -1,23 +1,53 @@ { - "name": "time-zone", - "version": "1.0.0", - "description": "Pretty time zone: `+2` or `-9:30`", - "license": "MIT", - "repository": "sindresorhus/time-zone", + "_args": [ + [ + "time-zone@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "time-zone@1.0.0", + "_id": "time-zone@1.0.0", + "_inBundle": false, + "_integrity": "sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=", + "_location": "/time-zone", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "time-zone@1.0.0", + "name": "time-zone", + "escapedName": "time-zone", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/date-time" + ], + "_resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/time-zone/issues" + }, + "description": "Pretty time zone: `+2` or `-9:30`", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/time-zone#readme", "keywords": [ "timezone", "utc", @@ -28,8 +58,14 @@ "iso", "zone" ], - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "time-zone", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/time-zone.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/to-readable-stream/package.json b/node_modules/to-readable-stream/package.json index 3a078880d..9c15a6107 100644 --- a/node_modules/to-readable-stream/package.json +++ b/node_modules/to-readable-stream/package.json @@ -1,23 +1,54 @@ { - "name": "to-readable-stream", - "version": "1.0.0", - "description": "Convert a string/Buffer/Uint8Array to a readable stream", - "license": "MIT", - "repository": "sindresorhus/to-readable-stream", + "_args": [ + [ + "to-readable-stream@1.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "to-readable-stream@1.0.0", + "_id": "to-readable-stream@1.0.0", + "_inBundle": false, + "_integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "_location": "/to-readable-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-readable-stream@1.0.0", + "name": "to-readable-stream", + "escapedName": "to-readable-stream", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/to-readable-stream/issues" + }, + "description": "Convert a string/Buffer/Uint8Array to a readable stream", + "devDependencies": { + "ava": "*", + "get-stream": "^3.0.0", + "xo": "*" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/to-readable-stream#readme", "keywords": [ "stream", "readablestream", @@ -32,9 +63,14 @@ "readable", "pull" ], - "devDependencies": { - "ava": "*", - "get-stream": "^3.0.0", - "xo": "*" - } -} \ No newline at end of file + "license": "MIT", + "name": "to-readable-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/to-readable-stream.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json index 54d82acde..ea59177f9 100644 --- a/node_modules/to-regex-range/package.json +++ b/node_modules/to-regex-range/package.json @@ -1,31 +1,54 @@ { - "name": "to-regex-range", - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", - "version": "5.0.1", - "homepage": "https://github.com/micromatch/to-regex-range", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Rouven Weßling (www.rouvenwessling.de)" + "_args": [ + [ + "to-regex-range@5.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "repository": "micromatch/to-regex-range", - "bugs": { - "url": "https://github.com/micromatch/to-regex-range/issues" + "_development": true, + "_from": "to-regex-range@5.0.1", + "_id": "to-regex-range@5.0.1", + "_inBundle": false, + "_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "_location": "/to-regex-range", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-regex-range@5.0.1", + "name": "to-regex-range", + "escapedName": "to-regex-range", + "rawSpec": "5.0.1", + "saveSpec": null, + "fetchSpec": "5.0.1" }, - "license": "MIT", - "files": [ - "index.js" + "_requiredBy": [ + "/fill-range" ], - "main": "index.js", - "engines": { - "node": ">=8.0" + "_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "_spec": "5.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" }, - "scripts": { - "test": "mocha" + "bugs": { + "url": "https://github.com/micromatch/to-regex-range/issues" }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], "dependencies": { "is-number": "^7.0.0" }, + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", "devDependencies": { "fill-range": "^6.0.0", "gulp-format-md": "^2.0.0", @@ -33,6 +56,13 @@ "text-table": "^0.2.0", "time-diff": "^0.3.1" }, + "engines": { + "node": ">=8.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/micromatch/to-regex-range", "keywords": [ "bash", "date", @@ -58,6 +88,16 @@ "regular expression", "sequence" ], + "license": "MIT", + "main": "index.js", + "name": "to-regex-range", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/to-regex-range.git" + }, + "scripts": { + "test": "mocha" + }, "verb": { "layout": "default", "toc": false, @@ -84,5 +124,6 @@ "repeat-string" ] } - } -} \ No newline at end of file + }, + "version": "5.0.1" +} diff --git a/node_modules/trim-off-newlines/package.json b/node_modules/trim-off-newlines/package.json index 83b8f3d6a..5fcc67356 100644 --- a/node_modules/trim-off-newlines/package.json +++ b/node_modules/trim-off-newlines/package.json @@ -1,23 +1,54 @@ { - "name": "trim-off-newlines", - "version": "1.0.1", - "description": "Similar to String#trim() but removes only newlines", - "license": "MIT", - "repository": "stevemao/trim-off-newlines", + "_args": [ + [ + "trim-off-newlines@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "trim-off-newlines@1.0.1", + "_id": "trim-off-newlines@1.0.1", + "_inBundle": false, + "_integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=", + "_location": "/trim-off-newlines", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "trim-off-newlines@1.0.1", + "name": "trim-off-newlines", + "escapedName": "trim-off-newlines", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Steve Mao", "email": "maochenyan@gmail.com", "url": "github.com/stevemao" }, + "bugs": { + "url": "https://github.com/stevemao/trim-off-newlines/issues" + }, + "dependencies": {}, + "description": "Similar to String#trim() but removes only newlines", + "devDependencies": { + "mocha": "*", + "xo": "*" + }, "engines": { "node": ">=0.10.0" }, - "scripts": { - "test": "xo && mocha" - }, "files": [ "index.js" ], + "homepage": "https://github.com/stevemao/trim-off-newlines#readme", "keywords": [ "trim", "newlines", @@ -34,15 +65,20 @@ "remove", "delete" ], - "dependencies": {}, - "devDependencies": { - "mocha": "*", - "xo": "*" + "license": "MIT", + "name": "trim-off-newlines", + "repository": { + "type": "git", + "url": "git+https://github.com/stevemao/trim-off-newlines.git" }, + "scripts": { + "test": "xo && mocha" + }, + "version": "1.0.1", "xo": { "envs": [ "node", "mocha" ] } -} \ No newline at end of file +} diff --git a/node_modules/tslib/package.json b/node_modules/tslib/package.json index 7878659d5..ee80ba144 100644 --- a/node_modules/tslib/package.json +++ b/node_modules/tslib/package.json @@ -1,10 +1,43 @@ { - "name": "tslib", - "author": "Microsoft Corp.", - "homepage": "https://www.typescriptlang.org/", - "version": "1.11.1", - "license": "Apache-2.0", + "_args": [ + [ + "tslib@1.11.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "tslib@1.11.1", + "_id": "tslib@1.11.1", + "_inBundle": false, + "_integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==", + "_location": "/tslib", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tslib@1.11.1", + "name": "tslib", + "escapedName": "tslib", + "rawSpec": "1.11.1", + "saveSpec": null, + "fetchSpec": "1.11.1" + }, + "_requiredBy": [ + "/tslint", + "/tsutils" + ], + "_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", + "_spec": "1.11.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Microsoft Corp." + }, + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, "description": "Runtime library for TypeScript helper functions", + "homepage": "https://www.typescriptlang.org/", + "jsnext:main": "tslib.es6.js", "keywords": [ "TypeScript", "Microsoft", @@ -14,16 +47,15 @@ "tslib", "runtime" ], - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, + "license": "Apache-2.0", + "main": "tslib.js", + "module": "tslib.es6.js", + "name": "tslib", "repository": { "type": "git", - "url": "https://github.com/Microsoft/tslib.git" + "url": "git+https://github.com/Microsoft/tslib.git" }, - "main": "tslib.js", - "module": "tslib.es6.js", - "jsnext:main": "tslib.es6.js", + "sideEffects": false, "typings": "tslib.d.ts", - "sideEffects": false -} \ No newline at end of file + "version": "1.11.1" +} diff --git a/node_modules/tslint/node_modules/.bin/semver b/node_modules/tslint/node_modules/.bin/semver new file mode 120000 index 000000000..317eb293d --- /dev/null +++ b/node_modules/tslint/node_modules/.bin/semver @@ -0,0 +1 @@ +../semver/bin/semver \ No newline at end of file diff --git a/node_modules/tslint/node_modules/semver/CHANGELOG.md b/node_modules/tslint/node_modules/semver/CHANGELOG.md new file mode 100644 index 000000000..66304fdd2 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/CHANGELOG.md @@ -0,0 +1,39 @@ +# changes log + +## 5.7 + +* Add `minVersion` method + +## 5.6 + +* Move boolean `loose` param to an options object, with + backwards-compatibility protection. +* Add ability to opt out of special prerelease version handling with + the `includePrerelease` option flag. + +## 5.5 + +* Add version coercion capabilities + +## 5.4 + +* Add intersection checking + +## 5.3 + +* Add `minSatisfying` method + +## 5.2 + +* Add `prerelease(v)` that returns prerelease components + +## 5.1 + +* Add Backus-Naur for ranges +* Remove excessively cute inspection methods + +## 5.0 + +* Remove AMD/Browserified build artifacts +* Fix ltr and gtr when using the `*` range +* Fix for range `*` with a prerelease identifier diff --git a/node_modules/tslint/node_modules/semver/LICENSE b/node_modules/tslint/node_modules/semver/LICENSE new file mode 100644 index 000000000..19129e315 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/tslint/node_modules/semver/README.md b/node_modules/tslint/node_modules/semver/README.md new file mode 100644 index 000000000..f8dfa5a0d --- /dev/null +++ b/node_modules/tslint/node_modules/semver/README.md @@ -0,0 +1,412 @@ +semver(1) -- The semantic versioner for npm +=========================================== + +## Install + +```bash +npm install --save semver +```` + +## Usage + +As a node module: + +```js +const semver = require('semver') + +semver.valid('1.2.3') // '1.2.3' +semver.valid('a.b.c') // null +semver.clean(' =v1.2.3 ') // '1.2.3' +semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true +semver.gt('1.2.3', '9.8.7') // false +semver.lt('1.2.3', '9.8.7') // true +semver.minVersion('>=1.0.0') // '1.0.0' +semver.valid(semver.coerce('v2')) // '2.0.0' +semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7' +``` + +As a command-line utility: + +``` +$ semver -h + +A JavaScript implementation of the https://semver.org/ specification +Copyright Isaac Z. Schlueter + +Usage: semver [options] [ [...]] +Prints valid versions sorted by SemVer precedence + +Options: +-r --range + Print versions that match the specified range. + +-i --increment [] + Increment a version by the specified level. Level can + be one of: major, minor, patch, premajor, preminor, + prepatch, or prerelease. Default level is 'patch'. + Only one version may be specified. + +--preid + Identifier to be used to prefix premajor, preminor, + prepatch or prerelease version increments. + +-l --loose + Interpret versions and ranges loosely + +-p --include-prerelease + Always include prerelease versions in range matching + +-c --coerce + Coerce a string into SemVer if possible + (does not imply --loose) + +Program exits successfully if any valid version satisfies +all supplied ranges, and prints all satisfying versions. + +If no satisfying versions are found, then exits failure. + +Versions are printed in ascending order, so supplying +multiple versions to the utility will just sort them. +``` + +## Versions + +A "version" is described by the `v2.0.0` specification found at +. + +A leading `"="` or `"v"` character is stripped off and ignored. + +## Ranges + +A `version range` is a set of `comparators` which specify versions +that satisfy the range. + +A `comparator` is composed of an `operator` and a `version`. The set +of primitive `operators` is: + +* `<` Less than +* `<=` Less than or equal to +* `>` Greater than +* `>=` Greater than or equal to +* `=` Equal. If no operator is specified, then equality is assumed, + so this operator is optional, but MAY be included. + +For example, the comparator `>=1.2.7` would match the versions +`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6` +or `1.1.0`. + +Comparators can be joined by whitespace to form a `comparator set`, +which is satisfied by the **intersection** of all of the comparators +it includes. + +A range is composed of one or more comparator sets, joined by `||`. A +version matches a range if and only if every comparator in at least +one of the `||`-separated comparator sets is satisfied by the version. + +For example, the range `>=1.2.7 <1.3.0` would match the versions +`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`, +or `1.1.0`. + +The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`, +`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`. + +### Prerelease Tags + +If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then +it will only be allowed to satisfy comparator sets if at least one +comparator with the same `[major, minor, patch]` tuple also has a +prerelease tag. + +For example, the range `>1.2.3-alpha.3` would be allowed to match the +version `1.2.3-alpha.7`, but it would *not* be satisfied by +`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater +than" `1.2.3-alpha.3` according to the SemVer sort rules. The version +range only accepts prerelease tags on the `1.2.3` version. The +version `3.4.5` *would* satisfy the range, because it does not have a +prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`. + +The purpose for this behavior is twofold. First, prerelease versions +frequently are updated very quickly, and contain many breaking changes +that are (by the author's design) not yet fit for public consumption. +Therefore, by default, they are excluded from range matching +semantics. + +Second, a user who has opted into using a prerelease version has +clearly indicated the intent to use *that specific* set of +alpha/beta/rc versions. By including a prerelease tag in the range, +the user is indicating that they are aware of the risk. However, it +is still not appropriate to assume that they have opted into taking a +similar risk on the *next* set of prerelease versions. + +Note that this behavior can be suppressed (treating all prerelease +versions as if they were normal versions, for the purpose of range +matching) by setting the `includePrerelease` flag on the options +object to any +[functions](https://github.com/npm/node-semver#functions) that do +range matching. + +#### Prerelease Identifiers + +The method `.inc` takes an additional `identifier` string argument that +will append the value of the string as a prerelease identifier: + +```javascript +semver.inc('1.2.3', 'prerelease', 'beta') +// '1.2.4-beta.0' +``` + +command-line example: + +```bash +$ semver 1.2.3 -i prerelease --preid beta +1.2.4-beta.0 +``` + +Which then can be used to increment further: + +```bash +$ semver 1.2.4-beta.0 -i prerelease +1.2.4-beta.1 +``` + +### Advanced Range Syntax + +Advanced range syntax desugars to primitive comparators in +deterministic ways. + +Advanced ranges may be combined in the same way as primitive +comparators using white space or `||`. + +#### Hyphen Ranges `X.Y.Z - A.B.C` + +Specifies an inclusive set. + +* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4` + +If a partial version is provided as the first version in the inclusive +range, then the missing pieces are replaced with zeroes. + +* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4` + +If a partial version is provided as the second version in the +inclusive range, then all versions that start with the supplied parts +of the tuple are accepted, but nothing that would be greater than the +provided tuple parts. + +* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` +* `1.2.3 - 2` := `>=1.2.3 <3.0.0` + +#### X-Ranges `1.2.x` `1.X` `1.2.*` `*` + +Any of `X`, `x`, or `*` may be used to "stand in" for one of the +numeric values in the `[major, minor, patch]` tuple. + +* `*` := `>=0.0.0` (Any version satisfies) +* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) +* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) + +A partial version range is treated as an X-Range, so the special +character is in fact optional. + +* `""` (empty string) := `*` := `>=0.0.0` +* `1` := `1.x.x` := `>=1.0.0 <2.0.0` +* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` + +#### Tilde Ranges `~1.2.3` `~1.2` `~1` + +Allows patch-level changes if a minor version is specified on the +comparator. Allows minor-level changes if not. + +* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` +* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) +* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) +* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` +* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) +* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) +* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. + +#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` + +Allows changes that do not modify the left-most non-zero digit in the +`[major, minor, patch]` tuple. In other words, this allows patch and +minor updates for versions `1.0.0` and above, patch updates for +versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. + +Many authors treat a `0.x` version as if the `x` were the major +"breaking-change" indicator. + +Caret ranges are ideal when an author may make breaking changes +between `0.2.4` and `0.3.0` releases, which is a common practice. +However, it presumes that there will *not* be breaking changes between +`0.2.4` and `0.2.5`. It allows for changes that are presumed to be +additive (but non-breaking), according to commonly observed practices. + +* `^1.2.3` := `>=1.2.3 <2.0.0` +* `^0.2.3` := `>=0.2.3 <0.3.0` +* `^0.0.3` := `>=0.0.3 <0.0.4` +* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in + the `1.2.3` version will be allowed, if they are greater than or + equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but + `1.2.4-beta.2` would not, because it is a prerelease of a + different `[major, minor, patch]` tuple. +* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the + `0.0.3` version *only* will be allowed, if they are greater than or + equal to `beta`. So, `0.0.3-pr.2` would be allowed. + +When parsing caret ranges, a missing `patch` value desugars to the +number `0`, but will allow flexibility within that value, even if the +major and minor versions are both `0`. + +* `^1.2.x` := `>=1.2.0 <2.0.0` +* `^0.0.x` := `>=0.0.0 <0.1.0` +* `^0.0` := `>=0.0.0 <0.1.0` + +A missing `minor` and `patch` values will desugar to zero, but also +allow flexibility within those values, even if the major version is +zero. + +* `^1.x` := `>=1.0.0 <2.0.0` +* `^0.x` := `>=0.0.0 <1.0.0` + +### Range Grammar + +Putting all this together, here is a Backus-Naur grammar for ranges, +for the benefit of parser authors: + +```bnf +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ +``` + +## Functions + +All methods and classes take a final `options` object argument. All +options in this object are `false` by default. The options supported +are: + +- `loose` Be more forgiving about not-quite-valid semver strings. + (Any resulting output will always be 100% strict compliant, of + course.) For backwards compatibility reasons, if the `options` + argument is a boolean value instead of an object, it is interpreted + to be the `loose` param. +- `includePrerelease` Set to suppress the [default + behavior](https://github.com/npm/node-semver#prerelease-tags) of + excluding prerelease tagged versions from ranges unless they are + explicitly opted into. + +Strict-mode Comparators and Ranges will be strict about the SemVer +strings that they parse. + +* `valid(v)`: Return the parsed version, or null if it's not valid. +* `inc(v, release)`: Return the version incremented by the release + type (`major`, `premajor`, `minor`, `preminor`, `patch`, + `prepatch`, or `prerelease`), or null if it's not valid + * `premajor` in one call will bump the version up to the next major + version and down to a prerelease of that major version. + `preminor`, and `prepatch` work the same way. + * If called from a non-prerelease version, the `prerelease` will work the + same as `prepatch`. It increments the patch version, then makes a + prerelease. If the input version is already a prerelease it simply + increments it. +* `prerelease(v)`: Returns an array of prerelease components, or null + if none exist. Example: `prerelease('1.2.3-alpha.1') -> ['alpha', 1]` +* `major(v)`: Return the major version number. +* `minor(v)`: Return the minor version number. +* `patch(v)`: Return the patch version number. +* `intersects(r1, r2, loose)`: Return true if the two supplied ranges + or comparators intersect. +* `parse(v)`: Attempt to parse a string as a semantic version, returning either + a `SemVer` object or `null`. + +### Comparison + +* `gt(v1, v2)`: `v1 > v2` +* `gte(v1, v2)`: `v1 >= v2` +* `lt(v1, v2)`: `v1 < v2` +* `lte(v1, v2)`: `v1 <= v2` +* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent, + even if they're not the exact same string. You already know how to + compare strings. +* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`. +* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call + the corresponding function above. `"==="` and `"!=="` do simple + string comparison, but are included for completeness. Throws if an + invalid comparison string is provided. +* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if + `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. +* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions + in descending order when passed to `Array.sort()`. +* `diff(v1, v2)`: Returns difference between two versions by the release type + (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), + or null if the versions are the same. + +### Comparators + +* `intersects(comparator)`: Return true if the comparators intersect + +### Ranges + +* `validRange(range)`: Return the valid range or null if it's not valid +* `satisfies(version, range)`: Return true if the version satisfies the + range. +* `maxSatisfying(versions, range)`: Return the highest version in the list + that satisfies the range, or `null` if none of them do. +* `minSatisfying(versions, range)`: Return the lowest version in the list + that satisfies the range, or `null` if none of them do. +* `minVersion(range)`: Return the lowest version that can possibly match + the given range. +* `gtr(version, range)`: Return `true` if version is greater than all the + versions possible in the range. +* `ltr(version, range)`: Return `true` if version is less than all the + versions possible in the range. +* `outside(version, range, hilo)`: Return true if the version is outside + the bounds of the range in either the high or low direction. The + `hilo` argument must be either the string `'>'` or `'<'`. (This is + the function called by `gtr` and `ltr`.) +* `intersects(range)`: Return true if any of the ranges comparators intersect + +Note that, since ranges may be non-contiguous, a version might not be +greater than a range, less than a range, *or* satisfy a range! For +example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9` +until `2.0.0`, so the version `1.2.10` would not be greater than the +range (because `2.0.1` satisfies, which is higher), nor less than the +range (since `1.2.8` satisfies, which is lower), and it also does not +satisfy the range. + +If you want to know if a version satisfies or does not satisfy a +range, use the `satisfies(version, range)` function. + +### Coercion + +* `coerce(version)`: Coerces a string to semver if possible + +This aims to provide a very forgiving translation of a non-semver string to +semver. It looks for the first digit in a string, and consumes all +remaining characters which satisfy at least a partial semver (e.g., `1`, +`1.2`, `1.2.3`) up to the max permitted length (256 characters). Longer +versions are simply truncated (`4.6.3.9.2-alpha2` becomes `4.6.3`). All +surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes +`3.4.0`). Only text which lacks digits will fail coercion (`version one` +is not valid). The maximum length for any semver component considered for +coercion is 16 characters; longer components will be ignored +(`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any +semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value +components are invalid (`9999999999999999.4.7.4` is likely invalid). diff --git a/node_modules/tslint/node_modules/semver/bin/semver b/node_modules/tslint/node_modules/semver/bin/semver new file mode 100755 index 000000000..801e77f13 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/bin/semver @@ -0,0 +1,160 @@ +#!/usr/bin/env node +// Standalone semver comparison program. +// Exits successfully and prints matching version(s) if +// any supplied version is valid and passes all tests. + +var argv = process.argv.slice(2) + +var versions = [] + +var range = [] + +var inc = null + +var version = require('../package.json').version + +var loose = false + +var includePrerelease = false + +var coerce = false + +var identifier + +var semver = require('../semver') + +var reverse = false + +var options = {} + +main() + +function main () { + if (!argv.length) return help() + while (argv.length) { + var a = argv.shift() + var indexOfEqualSign = a.indexOf('=') + if (indexOfEqualSign !== -1) { + a = a.slice(0, indexOfEqualSign) + argv.unshift(a.slice(indexOfEqualSign + 1)) + } + switch (a) { + case '-rv': case '-rev': case '--rev': case '--reverse': + reverse = true + break + case '-l': case '--loose': + loose = true + break + case '-p': case '--include-prerelease': + includePrerelease = true + break + case '-v': case '--version': + versions.push(argv.shift()) + break + case '-i': case '--inc': case '--increment': + switch (argv[0]) { + case 'major': case 'minor': case 'patch': case 'prerelease': + case 'premajor': case 'preminor': case 'prepatch': + inc = argv.shift() + break + default: + inc = 'patch' + break + } + break + case '--preid': + identifier = argv.shift() + break + case '-r': case '--range': + range.push(argv.shift()) + break + case '-c': case '--coerce': + coerce = true + break + case '-h': case '--help': case '-?': + return help() + default: + versions.push(a) + break + } + } + + var options = { loose: loose, includePrerelease: includePrerelease } + + versions = versions.map(function (v) { + return coerce ? (semver.coerce(v) || { version: v }).version : v + }).filter(function (v) { + return semver.valid(v) + }) + if (!versions.length) return fail() + if (inc && (versions.length !== 1 || range.length)) { return failInc() } + + for (var i = 0, l = range.length; i < l; i++) { + versions = versions.filter(function (v) { + return semver.satisfies(v, range[i], options) + }) + if (!versions.length) return fail() + } + return success(versions) +} + +function failInc () { + console.error('--inc can only be used on a single version with no range') + fail() +} + +function fail () { process.exit(1) } + +function success () { + var compare = reverse ? 'rcompare' : 'compare' + versions.sort(function (a, b) { + return semver[compare](a, b, options) + }).map(function (v) { + return semver.clean(v, options) + }).map(function (v) { + return inc ? semver.inc(v, inc, options, identifier) : v + }).forEach(function (v, i, _) { console.log(v) }) +} + +function help () { + console.log(['SemVer ' + version, + '', + 'A JavaScript implementation of the https://semver.org/ specification', + 'Copyright Isaac Z. Schlueter', + '', + 'Usage: semver [options] [ [...]]', + 'Prints valid versions sorted by SemVer precedence', + '', + 'Options:', + '-r --range ', + ' Print versions that match the specified range.', + '', + '-i --increment []', + ' Increment a version by the specified level. Level can', + ' be one of: major, minor, patch, premajor, preminor,', + " prepatch, or prerelease. Default level is 'patch'.", + ' Only one version may be specified.', + '', + '--preid ', + ' Identifier to be used to prefix premajor, preminor,', + ' prepatch or prerelease version increments.', + '', + '-l --loose', + ' Interpret versions and ranges loosely', + '', + '-p --include-prerelease', + ' Always include prerelease versions in range matching', + '', + '-c --coerce', + ' Coerce a string into SemVer if possible', + ' (does not imply --loose)', + '', + 'Program exits successfully if any valid version satisfies', + 'all supplied ranges, and prints all satisfying versions.', + '', + 'If no satisfying versions are found, then exits failure.', + '', + 'Versions are printed in ascending order, so supplying', + 'multiple versions to the utility will just sort them.' + ].join('\n')) +} diff --git a/node_modules/tslint/node_modules/semver/package.json b/node_modules/tslint/node_modules/semver/package.json new file mode 100644 index 000000000..18ef06811 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/package.json @@ -0,0 +1,60 @@ +{ + "_from": "semver@^5.3.0", + "_id": "semver@5.7.1", + "_inBundle": false, + "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "_location": "/tslint/semver", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "semver@^5.3.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "^5.3.0", + "saveSpec": null, + "fetchSpec": "^5.3.0" + }, + "_requiredBy": [ + "/tslint" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", + "_spec": "semver@^5.3.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/tslint", + "bin": { + "semver": "bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "bundleDependencies": false, + "deprecated": false, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.1" +} diff --git a/node_modules/tslint/node_modules/semver/range.bnf b/node_modules/tslint/node_modules/semver/range.bnf new file mode 100644 index 000000000..d4c6ae0d7 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/range.bnf @@ -0,0 +1,16 @@ +range-set ::= range ( logical-or range ) * +logical-or ::= ( ' ' ) * '||' ( ' ' ) * +range ::= hyphen | simple ( ' ' simple ) * | '' +hyphen ::= partial ' - ' partial +simple ::= primitive | partial | tilde | caret +primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial +partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? +xr ::= 'x' | 'X' | '*' | nr +nr ::= '0' | [1-9] ( [0-9] ) * +tilde ::= '~' partial +caret ::= '^' partial +qualifier ::= ( '-' pre )? ( '+' build )? +pre ::= parts +build ::= parts +parts ::= part ( '.' part ) * +part ::= nr | [-0-9A-Za-z]+ diff --git a/node_modules/tslint/node_modules/semver/semver.js b/node_modules/tslint/node_modules/semver/semver.js new file mode 100644 index 000000000..d315d5d68 --- /dev/null +++ b/node_modules/tslint/node_modules/semver/semver.js @@ -0,0 +1,1483 @@ +exports = module.exports = SemVer + +var debug +/* istanbul ignore next */ +if (typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG)) { + debug = function () { + var args = Array.prototype.slice.call(arguments, 0) + args.unshift('SEMVER') + console.log.apply(console, args) + } +} else { + debug = function () {} +} + +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +exports.SEMVER_SPEC_VERSION = '2.0.0' + +var MAX_LENGTH = 256 +var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || + /* istanbul ignore next */ 9007199254740991 + +// Max safe segment length for coercion. +var MAX_SAFE_COMPONENT_LENGTH = 16 + +// The actual regexps go on exports.re +var re = exports.re = [] +var src = exports.src = [] +var R = 0 + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +var NUMERICIDENTIFIER = R++ +src[NUMERICIDENTIFIER] = '0|[1-9]\\d*' +var NUMERICIDENTIFIERLOOSE = R++ +src[NUMERICIDENTIFIERLOOSE] = '[0-9]+' + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +var NONNUMERICIDENTIFIER = R++ +src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*' + +// ## Main Version +// Three dot-separated numeric identifiers. + +var MAINVERSION = R++ +src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')' + +var MAINVERSIONLOOSE = R++ +src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')' + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. + +var PRERELEASEIDENTIFIER = R++ +src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +var PRERELEASEIDENTIFIERLOOSE = R++ +src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + + '|' + src[NONNUMERICIDENTIFIER] + ')' + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +var PRERELEASE = R++ +src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + + '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))' + +var PRERELEASELOOSE = R++ +src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + + '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))' + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +var BUILDIDENTIFIER = R++ +src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+' + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +var BUILD = R++ +src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + + '(?:\\.' + src[BUILDIDENTIFIER] + ')*))' + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +var FULL = R++ +var FULLPLAIN = 'v?' + src[MAINVERSION] + + src[PRERELEASE] + '?' + + src[BUILD] + '?' + +src[FULL] = '^' + FULLPLAIN + '$' + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + + src[PRERELEASELOOSE] + '?' + + src[BUILD] + '?' + +var LOOSE = R++ +src[LOOSE] = '^' + LOOSEPLAIN + '$' + +var GTLT = R++ +src[GTLT] = '((?:<|>)?=?)' + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +var XRANGEIDENTIFIERLOOSE = R++ +src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*' +var XRANGEIDENTIFIER = R++ +src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*' + +var XRANGEPLAIN = R++ +src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:' + src[PRERELEASE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGEPLAINLOOSE = R++ +src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:' + src[PRERELEASELOOSE] + ')?' + + src[BUILD] + '?' + + ')?)?' + +var XRANGE = R++ +src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$' +var XRANGELOOSE = R++ +src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$' + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +var COERCE = R++ +src[COERCE] = '(?:^|[^\\d])' + + '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:$|[^\\d])' + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +var LONETILDE = R++ +src[LONETILDE] = '(?:~>?)' + +var TILDETRIM = R++ +src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+' +re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g') +var tildeTrimReplace = '$1~' + +var TILDE = R++ +src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$' +var TILDELOOSE = R++ +src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$' + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +var LONECARET = R++ +src[LONECARET] = '(?:\\^)' + +var CARETTRIM = R++ +src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+' +re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g') +var caretTrimReplace = '$1^' + +var CARET = R++ +src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$' +var CARETLOOSE = R++ +src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$' + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +var COMPARATORLOOSE = R++ +src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$' +var COMPARATOR = R++ +src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$' + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +var COMPARATORTRIM = R++ +src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + + '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')' + +// this one has to use the /g flag +re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g') +var comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +var HYPHENRANGE = R++ +src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAIN] + ')' + + '\\s*$' + +var HYPHENRANGELOOSE = R++ +src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s*$' + +// Star ranges basically just allow anything at all. +var STAR = R++ +src[STAR] = '(<|>)?=?\\s*\\*' + +// Compile to actual regexp objects. +// All are flag-free, unless they were created above with a flag. +for (var i = 0; i < R; i++) { + debug(i, src[i]) + if (!re[i]) { + re[i] = new RegExp(src[i]) + } +} + +exports.parse = parse +function parse (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + if (version.length > MAX_LENGTH) { + return null + } + + var r = options.loose ? re[LOOSE] : re[FULL] + if (!r.test(version)) { + return null + } + + try { + return new SemVer(version, options) + } catch (er) { + return null + } +} + +exports.valid = valid +function valid (version, options) { + var v = parse(version, options) + return v ? v.version : null +} + +exports.clean = clean +function clean (version, options) { + var s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} + +exports.SemVer = SemVer + +function SemVer (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + if (version instanceof SemVer) { + if (version.loose === options.loose) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError('Invalid Version: ' + version) + } + + if (version.length > MAX_LENGTH) { + throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') + } + + if (!(this instanceof SemVer)) { + return new SemVer(version, options) + } + + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + + var m = version.trim().match(options.loose ? re[LOOSE] : re[FULL]) + + if (!m) { + throw new TypeError('Invalid Version: ' + version) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map(function (id) { + if (/^[0-9]+$/.test(id)) { + var num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() +} + +SemVer.prototype.format = function () { + this.version = this.major + '.' + this.minor + '.' + this.patch + if (this.prerelease.length) { + this.version += '-' + this.prerelease.join('.') + } + return this.version +} + +SemVer.prototype.toString = function () { + return this.version +} + +SemVer.prototype.compare = function (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return this.compareMain(other) || this.comparePre(other) +} + +SemVer.prototype.compareMain = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) +} + +SemVer.prototype.comparePre = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + var i = 0 + do { + var a = this.prerelease[i] + var b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) +} + +// preminor will bump the version up to the next minor release, and immediately +// down to pre-release. premajor and prepatch work the same way. +SemVer.prototype.inc = function (release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier) + this.inc('pre', identifier) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier) + } + this.inc('pre', identifier) + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if (this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) { + this.prerelease = [0] + } else { + var i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + this.prerelease.push(0) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) { + this.prerelease = [identifier, 0] + } + } else { + this.prerelease = [identifier, 0] + } + } + break + + default: + throw new Error('invalid increment argument: ' + release) + } + this.format() + this.raw = this.version + return this +} + +exports.inc = inc +function inc (version, release, loose, identifier) { + if (typeof (loose) === 'string') { + identifier = loose + loose = undefined + } + + try { + return new SemVer(version, loose).inc(release, identifier).version + } catch (er) { + return null + } +} + +exports.diff = diff +function diff (version1, version2) { + if (eq(version1, version2)) { + return null + } else { + var v1 = parse(version1) + var v2 = parse(version2) + var prefix = '' + if (v1.prerelease.length || v2.prerelease.length) { + prefix = 'pre' + var defaultResult = 'prerelease' + } + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return prefix + key + } + } + } + return defaultResult // may be undefined + } +} + +exports.compareIdentifiers = compareIdentifiers + +var numeric = /^[0-9]+$/ +function compareIdentifiers (a, b) { + var anum = numeric.test(a) + var bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +exports.rcompareIdentifiers = rcompareIdentifiers +function rcompareIdentifiers (a, b) { + return compareIdentifiers(b, a) +} + +exports.major = major +function major (a, loose) { + return new SemVer(a, loose).major +} + +exports.minor = minor +function minor (a, loose) { + return new SemVer(a, loose).minor +} + +exports.patch = patch +function patch (a, loose) { + return new SemVer(a, loose).patch +} + +exports.compare = compare +function compare (a, b, loose) { + return new SemVer(a, loose).compare(new SemVer(b, loose)) +} + +exports.compareLoose = compareLoose +function compareLoose (a, b) { + return compare(a, b, true) +} + +exports.rcompare = rcompare +function rcompare (a, b, loose) { + return compare(b, a, loose) +} + +exports.sort = sort +function sort (list, loose) { + return list.sort(function (a, b) { + return exports.compare(a, b, loose) + }) +} + +exports.rsort = rsort +function rsort (list, loose) { + return list.sort(function (a, b) { + return exports.rcompare(a, b, loose) + }) +} + +exports.gt = gt +function gt (a, b, loose) { + return compare(a, b, loose) > 0 +} + +exports.lt = lt +function lt (a, b, loose) { + return compare(a, b, loose) < 0 +} + +exports.eq = eq +function eq (a, b, loose) { + return compare(a, b, loose) === 0 +} + +exports.neq = neq +function neq (a, b, loose) { + return compare(a, b, loose) !== 0 +} + +exports.gte = gte +function gte (a, b, loose) { + return compare(a, b, loose) >= 0 +} + +exports.lte = lte +function lte (a, b, loose) { + return compare(a, b, loose) <= 0 +} + +exports.cmp = cmp +function cmp (a, op, b, loose) { + switch (op) { + case '===': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a === b + + case '!==': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError('Invalid operator: ' + op) + } +} + +exports.Comparator = Comparator +function Comparator (comp, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value + } + } + + if (!(this instanceof Comparator)) { + return new Comparator(comp, options) + } + + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) +} + +var ANY = {} +Comparator.prototype.parse = function (comp) { + var r = this.options.loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var m = comp.match(r) + + if (!m) { + throw new TypeError('Invalid comparator: ' + comp) + } + + this.operator = m[1] + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } +} + +Comparator.prototype.toString = function () { + return this.value +} + +Comparator.prototype.test = function (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY) { + return true + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + return cmp(version, this.operator, this.semver, this.options) +} + +Comparator.prototype.intersects = function (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + var rangeTmp + + if (this.operator === '') { + rangeTmp = new Range(comp.value, options) + return satisfies(this.value, rangeTmp, options) + } else if (comp.operator === '') { + rangeTmp = new Range(this.value, options) + return satisfies(comp.semver, rangeTmp, options) + } + + var sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>') + var sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<') + var sameSemVer = this.semver.version === comp.semver.version + var differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<=') + var oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, options) && + ((this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<')) + var oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, options) && + ((this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>')) + + return sameDirectionIncreasing || sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || oppositeDirectionsGreaterThan +} + +exports.Range = Range +function Range (range, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false + } + } + + if (range instanceof Range) { + if (range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease) { + return range + } else { + return new Range(range.raw, options) + } + } + + if (range instanceof Comparator) { + return new Range(range.value, options) + } + + if (!(this instanceof Range)) { + return new Range(range, options) + } + + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease + + // First, split based on boolean or || + this.raw = range + this.set = range.split(/\s*\|\|\s*/).map(function (range) { + return this.parseRange(range.trim()) + }, this).filter(function (c) { + // throw out any that are not relevant for whatever reason + return c.length + }) + + if (!this.set.length) { + throw new TypeError('Invalid SemVer Range: ' + range) + } + + this.format() +} + +Range.prototype.format = function () { + this.range = this.set.map(function (comps) { + return comps.join(' ').trim() + }).join('||').trim() + return this.range +} + +Range.prototype.toString = function () { + return this.range +} + +Range.prototype.parseRange = function (range) { + var loose = this.options.loose + range = range.trim() + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE] + range = range.replace(hr, hyphenReplace) + debug('hyphen replace', range) + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, re[COMPARATORTRIM]) + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[TILDETRIM], tildeTrimReplace) + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[CARETTRIM], caretTrimReplace) + + // normalize spaces + range = range.split(/\s+/).join(' ') + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR] + var set = range.split(' ').map(function (comp) { + return parseComparator(comp, this.options) + }, this).join(' ').split(/\s+/) + if (this.options.loose) { + // in loose mode, throw out any that are not valid comparators + set = set.filter(function (comp) { + return !!comp.match(compRe) + }) + } + set = set.map(function (comp) { + return new Comparator(comp, this.options) + }, this) + + return set +} + +Range.prototype.intersects = function (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } + + return this.set.some(function (thisComparators) { + return thisComparators.every(function (thisComparator) { + return range.set.some(function (rangeComparators) { + return rangeComparators.every(function (rangeComparator) { + return thisComparator.intersects(rangeComparator, options) + }) + }) + }) + }) +} + +// Mostly just for testing and legacy API reasons +exports.toComparators = toComparators +function toComparators (range, options) { + return new Range(range, options).set.map(function (comp) { + return comp.map(function (c) { + return c.value + }).join(' ').trim().split(' ') + }) +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +function parseComparator (comp, options) { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} + +function isX (id) { + return !id || id.toLowerCase() === 'x' || id === '*' +} + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 +function replaceTildes (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceTilde(comp, options) + }).join(' ') +} + +function replaceTilde (comp, options) { + var r = options.loose ? re[TILDELOOSE] : re[TILDE] + return comp.replace(r, function (_, M, m, p, pr) { + debug('tilde', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0 + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else if (pr) { + debug('replaceTilde pr', pr) + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } else { + // ~1.2.3 == >=1.2.3 <1.3.0 + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + + debug('tilde return', ret) + return ret + }) +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 +// ^1.2.3 --> >=1.2.3 <2.0.0 +// ^1.2.0 --> >=1.2.0 <2.0.0 +function replaceCarets (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceCaret(comp, options) + }).join(' ') +} + +function replaceCaret (comp, options) { + debug('caret', comp, options) + var r = options.loose ? re[CARETLOOSE] : re[CARET] + return comp.replace(r, function (_, M, m, p, pr) { + debug('caret', comp, _, M, m, p, pr) + var ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + if (M === '0') { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else { + ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0' + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + (+M + 1) + '.0.0' + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + (+M + 1) + '.0.0' + } + } + + debug('caret return', ret) + return ret + }) +} + +function replaceXRanges (comp, options) { + debug('replaceXRanges', comp, options) + return comp.split(/\s+/).map(function (comp) { + return replaceXRange(comp, options) + }).join(' ') +} + +function replaceXRange (comp, options) { + comp = comp.trim() + var r = options.loose ? re[XRANGELOOSE] : re[XRANGE] + return comp.replace(r, function (ret, gtlt, M, m, p, pr) { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + var xM = isX(M) + var xm = xM || isX(m) + var xp = xm || isX(p) + var anyX = xp + + if (gtlt === '=' && anyX) { + gtlt = '' + } + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + // >1.2.3 => >= 1.2.4 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } + + ret = gtlt + M + '.' + m + '.' + p + } else if (xm) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (xp) { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } + + debug('xRange return', ret) + + return ret + }) +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +function replaceStars (comp, options) { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(re[STAR], '') +} + +// This function is passed to string.replace(re[HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0 +function hyphenReplace ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = '>=' + fM + '.0.0' + } else if (isX(fp)) { + from = '>=' + fM + '.' + fm + '.0' + } else { + from = '>=' + from + } + + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = '<' + (+tM + 1) + '.0.0' + } else if (isX(tp)) { + to = '<' + tM + '.' + (+tm + 1) + '.0' + } else if (tpr) { + to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr + } else { + to = '<=' + to + } + + return (from + ' ' + to).trim() +} + +// if ANY of the sets match ALL of its comparators, then pass +Range.prototype.test = function (version) { + if (!version) { + return false + } + + if (typeof version === 'string') { + version = new SemVer(version, this.options) + } + + for (var i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } + } + return false +} + +function testSet (set, version, options) { + for (var i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } + } + + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === ANY) { + continue + } + + if (set[i].semver.prerelease.length > 0) { + var allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false + } + + return true +} + +exports.satisfies = satisfies +function satisfies (version, range, options) { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) +} + +exports.maxSatisfying = maxSatisfying +function maxSatisfying (versions, range, options) { + var max = null + var maxSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max +} + +exports.minSatisfying = minSatisfying +function minSatisfying (versions, range, options) { + var min = null + var minSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min +} + +exports.minVersion = minVersion +function minVersion (range, loose) { + range = new Range(range, loose) + + var minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } + + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + + minver = null + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + comparators.forEach(function (comparator) { + // Clone to avoid manipulating the comparator's semver object. + var compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!minver || gt(minver, compver)) { + minver = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error('Unexpected operation: ' + comparator.operator) + } + }) + } + + if (minver && range.test(minver)) { + return minver + } + + return null +} + +exports.validRange = validRange +function validRange (range, options) { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } +} + +// Determine if version is less than all the versions possible in the range +exports.ltr = ltr +function ltr (version, range, options) { + return outside(version, range, '<', options) +} + +// Determine if version is greater than all the versions possible in the range. +exports.gtr = gtr +function gtr (version, range, options) { + return outside(version, range, '>', options) +} + +exports.outside = outside +function outside (version, range, hilo, options) { + version = new SemVer(version, options) + range = new Range(range, options) + + var gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } + + // If it satisifes the range it is not outside + if (satisfies(version, range, options)) { + return false + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + var high = null + var low = null + + comparators.forEach(function (comparator) { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } + } + return true +} + +exports.prerelease = prerelease +function prerelease (version, options) { + var parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} + +exports.intersects = intersects +function intersects (r1, r2, options) { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2) +} + +exports.coerce = coerce +function coerce (version) { + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + var match = version.match(re[COERCE]) + + if (match == null) { + return null + } + + return parse(match[1] + + '.' + (match[2] || '0') + + '.' + (match[3] || '0')) +} diff --git a/node_modules/tslint/package.json b/node_modules/tslint/package.json index 02f832328..7bda24cc4 100644 --- a/node_modules/tslint/package.json +++ b/node_modules/tslint/package.json @@ -1,32 +1,38 @@ { - "name": "tslint", - "version": "6.1.0", - "description": "An extensible static analysis linter for the TypeScript language", + "_args": [ + [ + "tslint@6.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "tslint@6.1.0", + "_id": "tslint@6.1.0", + "_inBundle": false, + "_integrity": "sha512-fXjYd/61vU6da04E505OZQGb2VCN2Mq3doeWcOIryuG+eqdmFUXTYVwdhnbEu2k46LNLgUYt9bI5icQze/j0bQ==", + "_location": "/tslint", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tslint@6.1.0", + "name": "tslint", + "escapedName": "tslint", + "rawSpec": "6.1.0", + "saveSpec": null, + "fetchSpec": "6.1.0" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.0.tgz", + "_spec": "6.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "bin": { - "tslint": "./bin/tslint" + "tslint": "bin/tslint" }, - "main": "./lib/index.js", - "typings": "./lib/index.d.ts", - "scripts": { - "clean": "npm-run-all -p clean:core clean:test", - "clean:core": "rimraf lib", - "clean:test": "rimraf build && rimraf test/config/node_modules", - "docs": "node scripts/buildDocs.js", - "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", - "compile:core": "tsc -p src", - "compile:scripts": "tsc -p scripts", - "compile:test": "tsc -p test", - "lint": "npm-run-all -p lint:from-installed lint:from-bin", - "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", - "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", - "lint-fix": "yarn lint:from-installed --fix", - "publish:local": "./scripts/npmPublish.sh", - "test": "npm-run-all test:pre -p test:mocha test:rules", - "test:pre": "cd ./test/config && npm install --no-save", - "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", - "test:rules": "node ./build/test/ruleTestRunner.js", - "verify": "npm-run-all clean compile lint test docs", - "coverage": "rimraf coverage .nyc_output && nyc npm test" + "bugs": { + "url": "https://github.com/palantir/tslint/issues" }, "dependencies": { "@babel/code-frame": "^7.0.0", @@ -43,9 +49,7 @@ "tslib": "^1.10.0", "tsutils": "^2.29.0" }, - "peerDependencies": { - "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" - }, + "description": "An extensible static analysis linter for the TypeScript language", "devDependencies": { "@octokit/rest": "^16.24.3", "@types/babel__code-frame": "^7.0.1", @@ -80,14 +84,42 @@ "node": ">=4.8.0" }, "homepage": "https://palantir.github.io/tslint", - "repository": { - "type": "git", - "url": "https://github.com/palantir/tslint.git" - }, "keywords": [ "cli", "typescript", "linter" ], - "license": "Apache-2.0" -} \ No newline at end of file + "license": "Apache-2.0", + "main": "./lib/index.js", + "name": "tslint", + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/palantir/tslint.git" + }, + "scripts": { + "clean": "npm-run-all -p clean:core clean:test", + "clean:core": "rimraf lib", + "clean:test": "rimraf build && rimraf test/config/node_modules", + "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", + "compile:core": "tsc -p src", + "compile:scripts": "tsc -p scripts", + "compile:test": "tsc -p test", + "coverage": "rimraf coverage .nyc_output && nyc npm test", + "docs": "node scripts/buildDocs.js", + "lint": "npm-run-all -p lint:from-installed lint:from-bin", + "lint-fix": "yarn lint:from-installed --fix", + "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", + "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", + "publish:local": "./scripts/npmPublish.sh", + "test": "npm-run-all test:pre -p test:mocha test:rules", + "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", + "test:pre": "cd ./test/config && npm install --no-save", + "test:rules": "node ./build/test/ruleTestRunner.js", + "verify": "npm-run-all clean compile lint test docs" + }, + "typings": "./lib/index.d.ts", + "version": "6.1.0" +} diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json index 7c72f9465..92eb8114a 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -1,35 +1,43 @@ { - "name": "tsutils", - "version": "2.29.0", - "description": "utilities for working with typescript's AST", - "scripts": { - "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .", - "lint:tslint": "wotan -m @fimbul/valtyr", - "lint:wotan": "wotan", - "lint": "run-p lint:*", - "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'", - "verify": "run-s compile lint coverage", - "prepublishOnly": "npm run verify", - "coverage": "nyc npm test", - "report-coverage": "cat ./coverage/lcov.info | coveralls", - "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog", - "postpublish": "git push origin master --tags; npm run github-release" - }, - "repository": { - "type": "git", - "url": "https://github.com/ajafff/tsutils" + "_args": [ + [ + "tsutils@2.29.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "tsutils@2.29.0", + "_id": "tsutils@2.29.0", + "_inBundle": false, + "_integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "_location": "/tsutils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tsutils@2.29.0", + "name": "tsutils", + "escapedName": "tsutils", + "rawSpec": "2.29.0", + "saveSpec": null, + "fetchSpec": "2.29.0" }, - "keywords": [ - "typescript", - "ts", - "ast", - "typeguard", - "utils", - "helper", - "node" + "_requiredBy": [ + "/tslint" ], - "author": "Klaus Meinhardt", - "license": "MIT", + "_resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "_spec": "2.29.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Klaus Meinhardt" + }, + "bugs": { + "url": "https://github.com/ajafff/tsutils/issues" + }, + "dependencies": { + "tslib": "^1.8.1" + }, + "description": "utilities for working with typescript's AST", "devDependencies": { "@fimbul/valtyr": "^0.12.0", "@fimbul/wotan": "^0.12.0", @@ -46,10 +54,37 @@ "tslint-consistent-codestyle": "^1.11.0", "typescript": "^3.0.0-rc" }, + "homepage": "https://github.com/ajafff/tsutils#readme", + "keywords": [ + "typescript", + "ts", + "ast", + "typeguard", + "utils", + "helper", + "node" + ], + "license": "MIT", + "name": "tsutils", "peerDependencies": { "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" }, - "dependencies": { - "tslib": "^1.8.1" - } -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git+https://github.com/ajafff/tsutils.git" + }, + "scripts": { + "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .", + "coverage": "nyc npm test", + "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog", + "lint": "run-p lint:*", + "lint:tslint": "wotan -m @fimbul/valtyr", + "lint:wotan": "wotan", + "postpublish": "git push origin master --tags; npm run github-release", + "prepublishOnly": "npm run verify", + "report-coverage": "cat ./coverage/lcov.info | coveralls", + "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'", + "verify": "run-s compile lint coverage" + }, + "version": "2.29.0" +} diff --git a/node_modules/tunnel/CHANGELOG.md b/node_modules/tunnel/CHANGELOG.md deleted file mode 100644 index 70bdbd7e6..000000000 --- a/node_modules/tunnel/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -# Changelog - - - 0.0.4 (2016/01/23) - - supported Node v0.12 or later. - - - 0.0.3 (2014/01/20) - - fixed package.json - - - 0.0.1 (2012/02/18) - - supported Node v0.6.x (0.6.11 or later). - - - 0.0.0 (2012/02/11) - - first release. diff --git a/node_modules/tunnel/README.md b/node_modules/tunnel/README.md deleted file mode 100644 index b19616238..000000000 --- a/node_modules/tunnel/README.md +++ /dev/null @@ -1,179 +0,0 @@ -# node-tunnel - HTTP/HTTPS Agents for tunneling proxies - -## Example - -```javascript -var tunnel = require('tunnel'); - -var tunnelingAgent = tunnel.httpsOverHttp({ - proxy: { - host: 'localhost', - port: 3128 - } -}); - -var req = https.request({ - host: 'example.com', - port: 443, - agent: tunnelingAgent -}); -``` - -## Installation - - $ npm install tunnel - -## Usages - -### HTTP over HTTP tunneling - -```javascript -var tunnelingAgent = tunnel.httpOverHttp({ - maxSockets: poolSize, // Defaults to 5 - - proxy: { // Proxy settings - host: proxyHost, // Defaults to 'localhost' - port: proxyPort, // Defaults to 80 - localAddress: localAddress, // Local interface if necessary - - // Basic authorization for proxy server if necessary - proxyAuth: 'user:password', - - // Header fields for proxy server if necessary - headers: { - 'User-Agent': 'Node' - } - } -}); - -var req = http.request({ - host: 'example.com', - port: 80, - agent: tunnelingAgent -}); -``` - -### HTTPS over HTTP tunneling - -```javascript -var tunnelingAgent = tunnel.httpsOverHttp({ - maxSockets: poolSize, // Defaults to 5 - - // CA for origin server if necessary - ca: [ fs.readFileSync('origin-server-ca.pem')], - - // Client certification for origin server if necessary - key: fs.readFileSync('origin-server-key.pem'), - cert: fs.readFileSync('origin-server-cert.pem'), - - proxy: { // Proxy settings - host: proxyHost, // Defaults to 'localhost' - port: proxyPort, // Defaults to 80 - localAddress: localAddress, // Local interface if necessary - - // Basic authorization for proxy server if necessary - proxyAuth: 'user:password', - - // Header fields for proxy server if necessary - headers: { - 'User-Agent': 'Node' - }, - } -}); - -var req = https.request({ - host: 'example.com', - port: 443, - agent: tunnelingAgent -}); -``` - -### HTTP over HTTPS tunneling - -```javascript -var tunnelingAgent = tunnel.httpOverHttps({ - maxSockets: poolSize, // Defaults to 5 - - proxy: { // Proxy settings - host: proxyHost, // Defaults to 'localhost' - port: proxyPort, // Defaults to 443 - localAddress: localAddress, // Local interface if necessary - - // Basic authorization for proxy server if necessary - proxyAuth: 'user:password', - - // Header fields for proxy server if necessary - headers: { - 'User-Agent': 'Node' - }, - - // CA for proxy server if necessary - ca: [ fs.readFileSync('origin-server-ca.pem')], - - // Server name for verification if necessary - servername: 'example.com', - - // Client certification for proxy server if necessary - key: fs.readFileSync('origin-server-key.pem'), - cert: fs.readFileSync('origin-server-cert.pem'), - } -}); - -var req = http.request({ - host: 'example.com', - port: 80, - agent: tunnelingAgent -}); -``` - -### HTTPS over HTTPS tunneling - -```javascript -var tunnelingAgent = tunnel.httpsOverHttps({ - maxSockets: poolSize, // Defaults to 5 - - // CA for origin server if necessary - ca: [ fs.readFileSync('origin-server-ca.pem')], - - // Client certification for origin server if necessary - key: fs.readFileSync('origin-server-key.pem'), - cert: fs.readFileSync('origin-server-cert.pem'), - - proxy: { // Proxy settings - host: proxyHost, // Defaults to 'localhost' - port: proxyPort, // Defaults to 443 - localAddress: localAddress, // Local interface if necessary - - // Basic authorization for proxy server if necessary - proxyAuth: 'user:password', - - // Header fields for proxy server if necessary - headers: { - 'User-Agent': 'Node' - } - - // CA for proxy server if necessary - ca: [ fs.readFileSync('origin-server-ca.pem')], - - // Server name for verification if necessary - servername: 'example.com', - - // Client certification for proxy server if necessary - key: fs.readFileSync('origin-server-key.pem'), - cert: fs.readFileSync('origin-server-cert.pem'), - } -}); - -var req = https.request({ - host: 'example.com', - port: 443, - agent: tunnelingAgent -}); -``` - -## CONTRIBUTORS -* [Aleksis Brezas (abresas)](https://github.com/abresas) - -## License - -Licensed under the [MIT](https://github.com/koichik/node-tunnel/blob/master/LICENSE) license. diff --git a/node_modules/tunnel/index.js b/node_modules/tunnel/index.js deleted file mode 100644 index 294775747..000000000 --- a/node_modules/tunnel/index.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./lib/tunnel'); diff --git a/node_modules/tunnel/lib/tunnel.js b/node_modules/tunnel/lib/tunnel.js deleted file mode 100644 index c42b03983..000000000 --- a/node_modules/tunnel/lib/tunnel.js +++ /dev/null @@ -1,247 +0,0 @@ -'use strict'; - -var net = require('net'); -var tls = require('tls'); -var http = require('http'); -var https = require('https'); -var events = require('events'); -var assert = require('assert'); -var util = require('util'); - - -exports.httpOverHttp = httpOverHttp; -exports.httpsOverHttp = httpsOverHttp; -exports.httpOverHttps = httpOverHttps; -exports.httpsOverHttps = httpsOverHttps; - - -function httpOverHttp(options) { - var agent = new TunnelingAgent(options); - agent.request = http.request; - return agent; -} - -function httpsOverHttp(options) { - var agent = new TunnelingAgent(options); - agent.request = http.request; - agent.createSocket = createSecureSocket; - return agent; -} - -function httpOverHttps(options) { - var agent = new TunnelingAgent(options); - agent.request = https.request; - return agent; -} - -function httpsOverHttps(options) { - var agent = new TunnelingAgent(options); - agent.request = https.request; - agent.createSocket = createSecureSocket; - return agent; -} - - -function TunnelingAgent(options) { - var self = this; - self.options = options || {}; - self.proxyOptions = self.options.proxy || {}; - self.maxSockets = self.options.maxSockets || http.Agent.defaultMaxSockets; - self.requests = []; - self.sockets = []; - - self.on('free', function onFree(socket, host, port, localAddress) { - var options = toOptions(host, port, localAddress); - for (var i = 0, len = self.requests.length; i < len; ++i) { - var pending = self.requests[i]; - if (pending.host === options.host && pending.port === options.port) { - // Detect the request to connect same origin server, - // reuse the connection. - self.requests.splice(i, 1); - pending.request.onSocket(socket); - return; - } - } - socket.destroy(); - self.removeSocket(socket); - }); -} -util.inherits(TunnelingAgent, events.EventEmitter); - -TunnelingAgent.prototype.addRequest = function addRequest(req, host, port, localAddress) { - var self = this; - var options = mergeOptions({request: req}, self.options, toOptions(host, port, localAddress)); - - if (self.sockets.length >= this.maxSockets) { - // We are over limit so we'll add it to the queue. - self.requests.push(options); - return; - } - - // If we are under maxSockets create a new one. - self.createSocket(options, function(socket) { - socket.on('free', onFree); - socket.on('close', onCloseOrRemove); - socket.on('agentRemove', onCloseOrRemove); - req.onSocket(socket); - - function onFree() { - self.emit('free', socket, options); - } - - function onCloseOrRemove(err) { - self.removeSocket(socket); - socket.removeListener('free', onFree); - socket.removeListener('close', onCloseOrRemove); - socket.removeListener('agentRemove', onCloseOrRemove); - } - }); -}; - -TunnelingAgent.prototype.createSocket = function createSocket(options, cb) { - var self = this; - var placeholder = {}; - self.sockets.push(placeholder); - - var connectOptions = mergeOptions({}, self.proxyOptions, { - method: 'CONNECT', - path: options.host + ':' + options.port, - agent: false - }); - if (connectOptions.proxyAuth) { - connectOptions.headers = connectOptions.headers || {}; - connectOptions.headers['Proxy-Authorization'] = 'Basic ' + - new Buffer(connectOptions.proxyAuth).toString('base64'); - } - - debug('making CONNECT request'); - var connectReq = self.request(connectOptions); - connectReq.useChunkedEncodingByDefault = false; // for v0.6 - connectReq.once('response', onResponse); // for v0.6 - connectReq.once('upgrade', onUpgrade); // for v0.6 - connectReq.once('connect', onConnect); // for v0.7 or later - connectReq.once('error', onError); - connectReq.end(); - - function onResponse(res) { - // Very hacky. This is necessary to avoid http-parser leaks. - res.upgrade = true; - } - - function onUpgrade(res, socket, head) { - // Hacky. - process.nextTick(function() { - onConnect(res, socket, head); - }); - } - - function onConnect(res, socket, head) { - connectReq.removeAllListeners(); - socket.removeAllListeners(); - - if (res.statusCode === 200) { - assert.equal(head.length, 0); - debug('tunneling connection has established'); - self.sockets[self.sockets.indexOf(placeholder)] = socket; - cb(socket); - } else { - debug('tunneling socket could not be established, statusCode=%d', - res.statusCode); - var error = new Error('tunneling socket could not be established, ' + - 'statusCode=' + res.statusCode); - error.code = 'ECONNRESET'; - options.request.emit('error', error); - self.removeSocket(placeholder); - } - } - - function onError(cause) { - connectReq.removeAllListeners(); - - debug('tunneling socket could not be established, cause=%s\n', - cause.message, cause.stack); - var error = new Error('tunneling socket could not be established, ' + - 'cause=' + cause.message); - error.code = 'ECONNRESET'; - options.request.emit('error', error); - self.removeSocket(placeholder); - } -}; - -TunnelingAgent.prototype.removeSocket = function removeSocket(socket) { - var pos = this.sockets.indexOf(socket) - if (pos === -1) { - return; - } - this.sockets.splice(pos, 1); - - var pending = this.requests.shift(); - if (pending) { - // If we have pending requests and a socket gets closed a new one - // needs to be created to take over in the pool for the one that closed. - this.createSocket(pending, function(socket) { - pending.request.onSocket(socket); - }); - } -}; - -function createSecureSocket(options, cb) { - var self = this; - TunnelingAgent.prototype.createSocket.call(self, options, function(socket) { - var hostHeader = options.request.getHeader('host'); - var tlsOptions = mergeOptions({}, self.options, { - socket: socket, - servername: hostHeader ? hostHeader.replace(/:.*$/, '') : options.host - }); - - // 0 is dummy port for v0.6 - var secureSocket = tls.connect(0, tlsOptions); - self.sockets[self.sockets.indexOf(socket)] = secureSocket; - cb(secureSocket); - }); -} - - -function toOptions(host, port, localAddress) { - if (typeof host === 'string') { // since v0.10 - return { - host: host, - port: port, - localAddress: localAddress - }; - } - return host; // for v0.11 or later -} - -function mergeOptions(target) { - for (var i = 1, len = arguments.length; i < len; ++i) { - var overrides = arguments[i]; - if (typeof overrides === 'object') { - var keys = Object.keys(overrides); - for (var j = 0, keyLen = keys.length; j < keyLen; ++j) { - var k = keys[j]; - if (overrides[k] !== undefined) { - target[k] = overrides[k]; - } - } - } - } - return target; -} - - -var debug; -if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) { - debug = function() { - var args = Array.prototype.slice.call(arguments); - if (typeof args[0] === 'string') { - args[0] = 'TUNNEL: ' + args[0]; - } else { - args.unshift('TUNNEL:'); - } - console.error.apply(console, args); - } -} else { - debug = function() {}; -} -exports.debug = debug; // for test diff --git a/node_modules/tunnel/package.json b/node_modules/tunnel/package.json deleted file mode 100644 index a76b695ea..000000000 --- a/node_modules/tunnel/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "tunnel", - "version": "0.0.4", - "description": "Node HTTP/HTTPS Agents for tunneling proxies", - "keywords": [ - "http", - "https", - "agent", - "proxy", - "tunnel" - ], - "homepage": "https://github.com/koichik/node-tunnel/", - "bugs": "https://github.com/koichik/node-tunnel/issues", - "license": "MIT", - "author": "Koichi Kobayashi ", - "main": "./index.js", - "directories": { - "lib": "./lib" - }, - "repository": { - "type": "git", - "url": "https://github.com/koichik/node-tunnel.git" - }, - "scripts": { - "test": "./node_modules/mocha/bin/mocha" - }, - "devDependencies": { - "mocha": "*", - "should": "*" - }, - "engines": { - "node": ">=0.6.11 <=0.7.0 || >=0.7.3" - } -} \ No newline at end of file diff --git a/node_modules/tunnel/test/http-over-http.js b/node_modules/tunnel/test/http-over-http.js deleted file mode 100644 index 73d17a2d9..000000000 --- a/node_modules/tunnel/test/http-over-http.js +++ /dev/null @@ -1,108 +0,0 @@ -var http = require('http'); -var net = require('net'); -var should = require('should'); -var tunnel = require('../index'); - -describe('HTTP over HTTP', function() { - it('should finish without error', function(done) { - var serverPort = 3000; - var proxyPort = 3001; - var poolSize = 3; - var N = 10; - var serverConnect = 0; - var proxyConnect = 0; - var clientConnect = 0; - var server; - var proxy; - var agent; - - server = http.createServer(function(req, res) { - tunnel.debug('SERVER: got request'); - ++serverConnect; - res.writeHead(200); - res.end('Hello' + req.url); - tunnel.debug('SERVER: sending response'); - }); - server.listen(serverPort, setupProxy); - - function setupProxy() { - proxy = http.createServer(function(req, res) { - should.fail(); - }); - proxy.on('upgrade', onConnect); // for v0.6 - proxy.on('connect', onConnect); // for v0.7 or later - - function onConnect(req, clientSocket, head) { - tunnel.debug('PROXY: got CONNECT request'); - - req.method.should.equal('CONNECT'); - req.url.should.equal('localhost:' + serverPort); - req.headers.should.not.have.property('transfer-encoding'); - req.headers.should.have.property('proxy-authorization', - 'Basic ' + new Buffer('user:password').toString('base64')); - ++proxyConnect; - - tunnel.debug('PROXY: creating a tunnel'); - var serverSocket = net.connect(serverPort, function() { - tunnel.debug('PROXY: replying to client CONNECT request'); - clientSocket.write('HTTP/1.1 200 Connection established\r\n\r\n'); - clientSocket.pipe(serverSocket); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - // workaround, see joyent/node#2524 - serverSocket.on('end', function() { - clientSocket.end(); - }); - }); - } - proxy.listen(proxyPort, setupClient); - } - - function setupClient() { - agent = tunnel.httpOverHttp({ - maxSockets: poolSize, - proxy: { - port: proxyPort, - proxyAuth: 'user:password' - } - }); - - for (var i = 0; i < N; ++i) { - doClientRequest(i); - } - - function doClientRequest(i) { - tunnel.debug('CLIENT: Making HTTP request (%d)', i); - var req = http.get({ - port: serverPort, - path: '/' + i, - agent: agent - }, function(res) { - tunnel.debug('CLIENT: got HTTP response (%d)', i); - res.setEncoding('utf8'); - res.on('data', function(data) { - data.should.equal('Hello/' + i); - }); - res.on('end', function() { - ++clientConnect; - if (clientConnect === N) { - proxy.close(); - server.close(); - } - }); - }); - } - } - - server.on('close', function() { - serverConnect.should.equal(N); - proxyConnect.should.equal(poolSize); - clientConnect.should.equal(N); - - agent.sockets.should.be.empty; - agent.requests.should.be.empty; - - done(); - }); - }); -}); diff --git a/node_modules/tunnel/test/http-over-https.js b/node_modules/tunnel/test/http-over-https.js deleted file mode 100644 index c3a92fd8f..000000000 --- a/node_modules/tunnel/test/http-over-https.js +++ /dev/null @@ -1,130 +0,0 @@ -var http = require('http'); -var https = require('https'); -var net = require('net'); -var fs = require('fs'); -var path = require('path'); -var should = require('should'); -var tunnel = require('../index'); - -function readPem(file) { - return fs.readFileSync(path.join('test/keys', file + '.pem')); -} - -var proxyKey = readPem('proxy1-key'); -var proxyCert = readPem('proxy1-cert'); -var proxyCA = readPem('ca2-cert'); -var clientKey = readPem('client1-key'); -var clientCert = readPem('client1-cert'); -var clientCA = readPem('ca3-cert'); - -describe('HTTP over HTTPS', function() { - it('should finish without error', function(done) { - var serverPort = 3004; - var proxyPort = 3005; - var poolSize = 3; - var N = 10; - var serverConnect = 0; - var proxyConnect = 0; - var clientConnect = 0; - var server; - var proxy; - var agent; - - server = http.createServer(function(req, res) { - tunnel.debug('SERVER: got request'); - ++serverConnect; - res.writeHead(200); - res.end('Hello' + req.url); - tunnel.debug('SERVER: sending response'); - }); - server.listen(serverPort, setupProxy); - - function setupProxy() { - proxy = https.createServer({ - key: proxyKey, - cert: proxyCert, - ca: [clientCA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - should.fail(); - }); - proxy.on('upgrade', onConnect); // for v0.6 - proxy.on('connect', onConnect); // for v0.7 or later - - function onConnect(req, clientSocket, head) { - tunnel.debug('PROXY: got CONNECT request'); - - req.method.should.equal('CONNECT'); - req.url.should.equal('localhost:' + serverPort); - req.headers.should.not.have.property('transfer-encoding'); - ++proxyConnect; - - tunnel.debug('PROXY: creating a tunnel'); - var serverSocket = net.connect(serverPort, function() { - tunnel.debug('PROXY: replying to client CONNECT request'); - clientSocket.write('HTTP/1.1 200 Connection established\r\n\r\n'); - clientSocket.pipe(serverSocket); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - // workaround, see joyent/node#2524 - serverSocket.on('end', function() { - clientSocket.end(); - }); - }); - } - proxy.listen(proxyPort, setupClient); - } - - function setupClient() { - agent = tunnel.httpOverHttps({ - maxSockets: poolSize, - proxy: { - port: proxyPort, - key: clientKey, - cert: clientCert, - ca: [proxyCA], - rejectUnauthorized: true - } - }); - - for (var i = 0; i < N; ++i) { - doClientRequest(i); - } - - function doClientRequest(i) { - tunnel.debug('CLIENT: Making HTTP request (%d)', i); - var req = http.get({ - port: serverPort, - path: '/' + i, - agent: agent - }, function(res) { - tunnel.debug('CLIENT: got HTTP response (%d)', i); - res.setEncoding('utf8'); - res.on('data', function(data) { - data.should.equal('Hello/' + i); - }); - res.on('end', function() { - ++clientConnect; - if (clientConnect === N) { - proxy.close(); - server.close(); - } - }); - }); - } - } - - server.on('close', function() { - serverConnect.should.equal(N); - proxyConnect.should.equal(poolSize); - clientConnect.should.equal(N); - - var name = 'localhost:' + serverPort; - agent.sockets.should.be.empty; - agent.requests.should.be.empty; - - done(); - }); - }); -}); diff --git a/node_modules/tunnel/test/https-over-http.js b/node_modules/tunnel/test/https-over-http.js deleted file mode 100644 index 82c477209..000000000 --- a/node_modules/tunnel/test/https-over-http.js +++ /dev/null @@ -1,130 +0,0 @@ -var http = require('http'); -var https = require('https'); -var net = require('net'); -var fs = require('fs'); -var path = require('path'); -var should = require('should'); -var tunnel = require('../index'); - -function readPem(file) { - return fs.readFileSync(path.join('test/keys', file + '.pem')); -} - -var serverKey = readPem('server1-key'); -var serverCert = readPem('server1-cert'); -var serverCA = readPem('ca1-cert'); -var clientKey = readPem('client1-key'); -var clientCert = readPem('client1-cert'); -var clientCA = readPem('ca3-cert'); - - -describe('HTTPS over HTTP', function() { - it('should finish without error', function(done) { - var serverPort = 3002; - var proxyPort = 3003; - var poolSize = 3; - var N = 10; - var serverConnect = 0; - var proxyConnect = 0; - var clientConnect = 0; - var server; - var proxy; - var agent; - - server = https.createServer({ - key: serverKey, - cert: serverCert, - ca: [clientCA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - tunnel.debug('SERVER: got request'); - ++serverConnect; - res.writeHead(200); - res.end('Hello' + req.url); - tunnel.debug('SERVER: sending response'); - }); - server.listen(serverPort, setupProxy); - - function setupProxy() { - proxy = http.createServer(function(req, res) { - should.fail(); - }); - proxy.on('upgrade', onConnect); // for v0.6 - proxy.on('connect', onConnect); // for v0.7 or later - - function onConnect(req, clientSocket, head) { - tunnel.debug('PROXY: got CONNECT request'); - - req.method.should.equal('CONNECT'); - req.url.should.equal('localhost:' + serverPort); - req.headers.should.not.have.property('transfer-encoding'); - ++proxyConnect; - - var serverSocket = net.connect(serverPort, function() { - tunnel.debug('PROXY: replying to client CONNECT request'); - clientSocket.write('HTTP/1.1 200 Connection established\r\n\r\n'); - clientSocket.pipe(serverSocket); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - // workaround, see joyent/node#2524 - serverSocket.on('end', function() { - clientSocket.end(); - }); - }); - } - proxy.listen(proxyPort, setupClient); - } - - function setupClient() { - agent = tunnel.httpsOverHttp({ - maxSockets: poolSize, - key: clientKey, - cert: clientCert, - ca: [serverCA], - rejectUnauthorized: true, - proxy: { - port: proxyPort - } - }); - - for (var i = 0; i < N; ++i) { - doClientRequest(i); - } - - function doClientRequest(i) { - tunnel.debug('CLIENT: Making HTTPS request (%d)', i); - var req = https.get({ - port: serverPort, - path: '/' + i, - agent: agent - }, function(res) { - tunnel.debug('CLIENT: got HTTPS response (%d)', i); - res.setEncoding('utf8'); - res.on('data', function(data) { - data.should.equal('Hello/' + i); - }); - res.on('end', function() { - ++clientConnect; - if (clientConnect === N) { - proxy.close(); - server.close(); - } - }); - }); - } - } - - server.on('close', function() { - serverConnect.should.equal(N); - proxyConnect.should.equal(poolSize); - clientConnect.should.equal(N); - - var name = 'localhost:' + serverPort; - agent.sockets.should.be.empty; - agent.requests.should.be.empty; - - done(); - }); - }); -}); diff --git a/node_modules/tunnel/test/https-over-https-error.js b/node_modules/tunnel/test/https-over-https-error.js deleted file mode 100644 index c74094df0..000000000 --- a/node_modules/tunnel/test/https-over-https-error.js +++ /dev/null @@ -1,261 +0,0 @@ -var http = require('http'); -var https = require('https'); -var net = require('net'); -var fs = require('fs'); -var path = require('path'); -var should = require('should'); -var tunnel = require('../index'); - -function readPem(file) { - return fs.readFileSync(path.join('test/keys', file + '.pem')); -} - -var serverKey = readPem('server2-key'); -var serverCert = readPem('server2-cert'); -var serverCA = readPem('ca1-cert'); -var proxyKey = readPem('proxy2-key'); -var proxyCert = readPem('proxy2-cert'); -var proxyCA = readPem('ca2-cert'); -var client1Key = readPem('client1-key'); -var client1Cert = readPem('client1-cert'); -var client1CA = readPem('ca3-cert'); -var client2Key = readPem('client2-key'); -var client2Cert = readPem('client2-cert'); -var client2CA = readPem('ca4-cert'); - -describe('HTTPS over HTTPS authentication failed', function() { - it('should finish without error', function(done) { - var serverPort = 3008; - var proxyPort = 3009; - var serverConnect = 0; - var proxyConnect = 0; - var clientRequest = 0; - var clientConnect = 0; - var clientError = 0; - var server; - var proxy; - - server = https.createServer({ - key: serverKey, - cert: serverCert, - ca: [client1CA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - tunnel.debug('SERVER: got request', req.url); - ++serverConnect; - req.on('data', function(data) { - }); - req.on('end', function() { - res.writeHead(200); - res.end('Hello, ' + serverConnect); - tunnel.debug('SERVER: sending response'); - }); - req.resume(); - }); - //server.addContext('server2', { - // key: serverKey, - // cert: serverCert, - // ca: [client1CA], - //}); - server.listen(serverPort, setupProxy); - - function setupProxy() { - proxy = https.createServer({ - key: proxyKey, - cert: proxyCert, - ca: [client2CA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - should.fail(); - }); - //proxy.addContext('proxy2', { - // key: proxyKey, - // cert: proxyCert, - // ca: [client2CA], - //}); - proxy.on('upgrade', onConnect); // for v0.6 - proxy.on('connect', onConnect); // for v0.7 or later - - function onConnect(req, clientSocket, head) { - req.method.should.equal('CONNECT'); - req.url.should.equal('localhost:' + serverPort); - req.headers.should.not.have.property('transfer-encoding'); - ++proxyConnect; - - var serverSocket = net.connect(serverPort, function() { - tunnel.debug('PROXY: replying to client CONNECT request'); - clientSocket.write('HTTP/1.1 200 Connection established\r\n\r\n'); - clientSocket.pipe(serverSocket); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - // workaround, see #2524 - serverSocket.on('end', function() { - clientSocket.end(); - }); - }); - } - proxy.listen(proxyPort, setupClient); - } - - function setupClient() { - function doRequest(name, options, host) { - tunnel.debug('CLIENT: Making HTTPS request (%s)', name); - ++clientRequest; - var agent = tunnel.httpsOverHttps(options); - var req = https.get({ - host: 'localhost', - port: serverPort, - path: '/' + encodeURIComponent(name), - headers: { - host: host ? host : 'localhost', - }, - rejectUnauthorized: true, - agent: agent - }, function(res) { - tunnel.debug('CLIENT: got HTTPS response (%s)', name); - ++clientConnect; - res.on('data', function(data) { - }); - res.on('end', function() { - req.emit('finish'); - }); - res.resume(); - }); - req.on('error', function(err) { - tunnel.debug('CLIENT: failed HTTP response (%s)', name, err); - ++clientError; - req.emit('finish'); - }); - req.on('finish', function() { - if (clientConnect + clientError === clientRequest) { - proxy.close(); - server.close(); - } - }); - } - - doRequest('no cert origin nor proxy', { // invalid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // no certificate for origin server - proxy: { - port: proxyPort, - ca: [proxyCA], - rejectUnauthorized: true, - headers: { - host: 'proxy2' - } - // no certificate for proxy - } - }, 'server2'); - - doRequest('no cert proxy', { // invalid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // client certification for origin server - key: client1Key, - cert: client1Cert, - proxy: { - port: proxyPort, - ca: [proxyCA], - rejectUnauthorized: true, - headers: { - host: 'proxy2' - } - // no certificate for proxy - } - }, 'server2'); - - doRequest('no cert origin', { // invalid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // no certificate for origin server - proxy: { - port: proxyPort, - servername: 'proxy2', - ca: [proxyCA], - rejectUnauthorized: true, - headers: { - host: 'proxy2' - }, - // client certification for proxy - key: client2Key, - cert: client2Cert - } - }, 'server2'); - - doRequest('invalid proxy server name', { // invalid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // client certification for origin server - key: client1Key, - cert: client1Cert, - proxy: { - port: proxyPort, - ca: [proxyCA], - rejectUnauthorized: true, - // client certification for proxy - key: client2Key, - cert: client2Cert, - } - }, 'server2'); - - doRequest('invalid origin server name', { // invalid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // client certification for origin server - key: client1Key, - cert: client1Cert, - proxy: { - port: proxyPort, - servername: 'proxy2', - ca: [proxyCA], - rejectUnauthorized: true, - headers: { - host: 'proxy2' - }, - // client certification for proxy - key: client2Key, - cert: client2Cert - } - }); - - doRequest('valid', { // valid - maxSockets: 1, - ca: [serverCA], - rejectUnauthorized: true, - // client certification for origin server - key: client1Key, - cert: client1Cert, - proxy: { - port: proxyPort, - servername: 'proxy2', - ca: [proxyCA], - rejectUnauthorized: true, - headers: { - host: 'proxy2' - }, - // client certification for proxy - key: client2Key, - cert: client2Cert - } - }, 'server2'); - } - - server.on('close', function() { - serverConnect.should.equal(1); - proxyConnect.should.equal(3); - clientConnect.should.equal(1); - clientError.should.equal(5); - - done(); - }); - }); -}); diff --git a/node_modules/tunnel/test/https-over-https.js b/node_modules/tunnel/test/https-over-https.js deleted file mode 100644 index a9f81c80b..000000000 --- a/node_modules/tunnel/test/https-over-https.js +++ /dev/null @@ -1,146 +0,0 @@ -var http = require('http'); -var https = require('https'); -var net = require('net'); -var fs = require('fs'); -var path = require('path'); -var should = require('should'); -var tunnel = require('../index.js'); - -function readPem(file) { - return fs.readFileSync(path.join('test/keys', file + '.pem')); -} - -var serverKey = readPem('server1-key'); -var serverCert = readPem('server1-cert'); -var serverCA = readPem('ca1-cert'); -var proxyKey = readPem('proxy1-key'); -var proxyCert = readPem('proxy1-cert'); -var proxyCA = readPem('ca2-cert'); -var client1Key = readPem('client1-key'); -var client1Cert = readPem('client1-cert'); -var client1CA = readPem('ca3-cert'); -var client2Key = readPem('client2-key'); -var client2Cert = readPem('client2-cert'); -var client2CA = readPem('ca4-cert'); - -describe('HTTPS over HTTPS', function() { - it('should finish without error', function(done) { - var serverPort = 3006; - var proxyPort = 3007; - var poolSize = 3; - var N = 5; - var serverConnect = 0; - var proxyConnect = 0; - var clientConnect = 0; - var server; - var proxy; - var agent; - - server = https.createServer({ - key: serverKey, - cert: serverCert, - ca: [client1CA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - tunnel.debug('SERVER: got request'); - ++serverConnect; - res.writeHead(200); - res.end('Hello' + req.url); - tunnel.debug('SERVER: sending response'); - }); - server.listen(serverPort, setupProxy); - - function setupProxy() { - proxy = https.createServer({ - key: proxyKey, - cert: proxyCert, - ca: [client2CA], - requestCert: true, - rejectUnauthorized: true - }, function(req, res) { - should.fail(); - }); - proxy.on('upgrade', onConnect); // for v0.6 - proxy.on('connect', onConnect); // for v0.7 or later - - function onConnect(req, clientSocket, head) { - tunnel.debug('PROXY: got CONNECT request'); - req.method.should.equal('CONNECT'); - req.url.should.equal('localhost:' + serverPort); - req.headers.should.not.have.property('transfer-encoding'); - ++proxyConnect; - - var serverSocket = net.connect(serverPort, function() { - tunnel.debug('PROXY: replying to client CONNECT request'); - clientSocket.write('HTTP/1.1 200 Connection established\r\n\r\n'); - clientSocket.pipe(serverSocket); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - // workaround, see joyent/node#2524 - serverSocket.on('end', function() { - clientSocket.end(); - }); - }); - } - proxy.listen(proxyPort, setupClient); - } - - function setupClient() { - agent = tunnel.httpsOverHttps({ - maxSockets: poolSize, - // client certification for origin server - key: client1Key, - cert: client1Cert, - ca: [serverCA], - rejectUnauthroized: true, - proxy: { - port: proxyPort, - // client certification for proxy - key: client2Key, - cert: client2Cert, - ca: [proxyCA], - rejectUnauthroized: true - } - }); - - for (var i = 0; i < N; ++i) { - doClientRequest(i); - } - - function doClientRequest(i) { - tunnel.debug('CLIENT: Making HTTPS request (%d)', i); - var req = https.get({ - port: serverPort, - path: '/' + i, - agent: agent - }, function(res) { - tunnel.debug('CLIENT: got HTTPS response (%d)', i); - res.setEncoding('utf8'); - res.on('data', function(data) { - data.should.equal('Hello/' + i); - }); - res.on('end', function() { - ++clientConnect; - if (clientConnect === N) { - proxy.close(); - server.close(); - } - }); - }); - } - } - - server.on('close', function() { - serverConnect.should.equal(N); - proxyConnect.should.equal(poolSize); - clientConnect.should.equal(N); - - var name = 'localhost:' + serverPort; - agent.sockets.should.be.empty; - agent.requests.should.be.empty; - - done(); - }); - }); -}); diff --git a/node_modules/tunnel/test/keys/Makefile b/node_modules/tunnel/test/keys/Makefile deleted file mode 100644 index 6b4745b52..000000000 --- a/node_modules/tunnel/test/keys/Makefile +++ /dev/null @@ -1,157 +0,0 @@ -all: server1-cert.pem server2-cert.pem proxy1-cert.pem proxy2-cert.pem client1-cert.pem client2-cert.pem - - -# -# Create Certificate Authority: ca1 -# ('password' is used for the CA password.) -# -ca1-cert.pem: ca1.cnf - openssl req -new -x509 -days 9999 -config ca1.cnf -keyout ca1-key.pem -out ca1-cert.pem - -# -# Create Certificate Authority: ca2 -# ('password' is used for the CA password.) -# -ca2-cert.pem: ca2.cnf - openssl req -new -x509 -days 9999 -config ca2.cnf -keyout ca2-key.pem -out ca2-cert.pem - -# -# Create Certificate Authority: ca3 -# ('password' is used for the CA password.) -# -ca3-cert.pem: ca3.cnf - openssl req -new -x509 -days 9999 -config ca3.cnf -keyout ca3-key.pem -out ca3-cert.pem - -# -# Create Certificate Authority: ca4 -# ('password' is used for the CA password.) -# -ca4-cert.pem: ca4.cnf - openssl req -new -x509 -days 9999 -config ca4.cnf -keyout ca4-key.pem -out ca4-cert.pem - - -# -# server1 is signed by ca1. -# -server1-key.pem: - openssl genrsa -out server1-key.pem 1024 - -server1-csr.pem: server1.cnf server1-key.pem - openssl req -new -config server1.cnf -key server1-key.pem -out server1-csr.pem - -server1-cert.pem: server1-csr.pem ca1-cert.pem ca1-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in server1-csr.pem \ - -CA ca1-cert.pem \ - -CAkey ca1-key.pem \ - -CAcreateserial \ - -out server1-cert.pem - -# -# server2 is signed by ca1. -# -server2-key.pem: - openssl genrsa -out server2-key.pem 1024 - -server2-csr.pem: server2.cnf server2-key.pem - openssl req -new -config server2.cnf -key server2-key.pem -out server2-csr.pem - -server2-cert.pem: server2-csr.pem ca1-cert.pem ca1-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in server2-csr.pem \ - -CA ca1-cert.pem \ - -CAkey ca1-key.pem \ - -CAcreateserial \ - -out server2-cert.pem - -server2-verify: server2-cert.pem ca1-cert.pem - openssl verify -CAfile ca1-cert.pem server2-cert.pem - -# -# proxy1 is signed by ca2. -# -proxy1-key.pem: - openssl genrsa -out proxy1-key.pem 1024 - -proxy1-csr.pem: proxy1.cnf proxy1-key.pem - openssl req -new -config proxy1.cnf -key proxy1-key.pem -out proxy1-csr.pem - -proxy1-cert.pem: proxy1-csr.pem ca2-cert.pem ca2-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in proxy1-csr.pem \ - -CA ca2-cert.pem \ - -CAkey ca2-key.pem \ - -CAcreateserial \ - -out proxy1-cert.pem - -# -# proxy2 is signed by ca2. -# -proxy2-key.pem: - openssl genrsa -out proxy2-key.pem 1024 - -proxy2-csr.pem: proxy2.cnf proxy2-key.pem - openssl req -new -config proxy2.cnf -key proxy2-key.pem -out proxy2-csr.pem - -proxy2-cert.pem: proxy2-csr.pem ca2-cert.pem ca2-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in proxy2-csr.pem \ - -CA ca2-cert.pem \ - -CAkey ca2-key.pem \ - -CAcreateserial \ - -out proxy2-cert.pem - -proxy2-verify: proxy2-cert.pem ca2-cert.pem - openssl verify -CAfile ca2-cert.pem proxy2-cert.pem - -# -# client1 is signed by ca3. -# -client1-key.pem: - openssl genrsa -out client1-key.pem 1024 - -client1-csr.pem: client1.cnf client1-key.pem - openssl req -new -config client1.cnf -key client1-key.pem -out client1-csr.pem - -client1-cert.pem: client1-csr.pem ca3-cert.pem ca3-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in client1-csr.pem \ - -CA ca3-cert.pem \ - -CAkey ca3-key.pem \ - -CAcreateserial \ - -out client1-cert.pem - -# -# client2 is signed by ca4. -# -client2-key.pem: - openssl genrsa -out client2-key.pem 1024 - -client2-csr.pem: client2.cnf client2-key.pem - openssl req -new -config client2.cnf -key client2-key.pem -out client2-csr.pem - -client2-cert.pem: client2-csr.pem ca4-cert.pem ca4-key.pem - openssl x509 -req \ - -days 9999 \ - -passin "pass:password" \ - -in client2-csr.pem \ - -CA ca4-cert.pem \ - -CAkey ca4-key.pem \ - -CAcreateserial \ - -out client2-cert.pem - - -clean: - rm -f *.pem *.srl - -test: client-verify server2-verify proxy1-verify proxy2-verify client-verify diff --git a/node_modules/tunnel/test/keys/agent1-cert.pem b/node_modules/tunnel/test/keys/agent1-cert.pem deleted file mode 100644 index 816f6fbf1..000000000 --- a/node_modules/tunnel/test/keys/agent1-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKjCCAZMCCQDQ8o4kHKdCPDANBgkqhkiG9w0BAQUFADB6MQswCQYDVQQGEwJV -UzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAO -BgNVBAsTB05vZGUuanMxDDAKBgNVBAMTA2NhMTEgMB4GCSqGSIb3DQEJARYRcnlA -dGlueWNsb3Vkcy5vcmcwHhcNMTEwMzE0MTgyOTEyWhcNMzgwNzI5MTgyOTEyWjB9 -MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQK -EwZKb3llbnQxEDAOBgNVBAsTB05vZGUuanMxDzANBgNVBAMTBmFnZW50MTEgMB4G -CSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5vcmcwXDANBgkqhkiG9w0BAQEFAANL -ADBIAkEAnzpAqcoXZxWJz/WFK7BXwD23jlREyG11x7gkydteHvn6PrVBbB5yfu6c -bk8w3/Ar608AcyMQ9vHjkLQKH7cjEQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAKha -HqjCfTIut+m/idKy3AoFh48tBHo3p9Nl5uBjQJmahKdZAaiksL24Pl+NzPQ8LIU+ -FyDHFp6OeJKN6HzZ72Bh9wpBVu6Uj1hwhZhincyTXT80wtSI/BoUAW8Ls2kwPdus -64LsJhhxqj2m4vPKNRbHB2QxnNrGi30CUf3kt3Ia ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/agent1-csr.pem b/node_modules/tunnel/test/keys/agent1-csr.pem deleted file mode 100644 index 748fd0003..000000000 --- a/node_modules/tunnel/test/keys/agent1-csr.pem +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH -EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD -EwZhZ2VudDExIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ -KoZIhvcNAQEBBQADSwAwSAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnb -Xh75+j61QWwecn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAaAlMCMGCSqG -SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB -AF+AfG64hNyYHum46m6i7RgnUBrJSOynGjs23TekV4he3QdMSAAPPqbll8W14+y3 -vOo7/yQ2v2uTqxCjakUNPPs= ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/agent1-key.pem b/node_modules/tunnel/test/keys/agent1-key.pem deleted file mode 100644 index 5dae7eb99..000000000 --- a/node_modules/tunnel/test/keys/agent1-key.pem +++ /dev/null @@ -1,9 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIBOwIBAAJBAJ86QKnKF2cVic/1hSuwV8A9t45URMhtdce4JMnbXh75+j61QWwe -cn7unG5PMN/wK+tPAHMjEPbx45C0Ch+3IxECAwEAAQJBAI2cU1IuR+4IO87WPyAB -76kruoo87AeNQkjjvuQ/00+b/6IS45mcEP5Kw0NukbqBhIw2di9uQ9J51DJ/ZfQr -+YECIQDUHaN3ZjIdJ7/w8Yq9Zzz+3kY2F/xEz6e4ftOFW8bY2QIhAMAref+WYckC -oECgOLAvAxB1lI4j7oCbAaawfxKdnPj5AiEAi95rXx09aGpAsBGmSdScrPdG1v6j -83/2ebrvoZ1uFqkCIB0AssnrRVjUB6GZTNTyU3ERfdkx/RX1zvr8WkFR/lXpAiB7 -cUZ1i8ZkZrPrdVgw2cb28UJM7qZHQnXcMHTXFFvxeQ== ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/agent1.cnf b/node_modules/tunnel/test/keys/agent1.cnf deleted file mode 100644 index 81d2f09fe..000000000 --- a/node_modules/tunnel/test/keys/agent1.cnf +++ /dev/null @@ -1,19 +0,0 @@ -[ req ] -default_bits = 1024 -days = 999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = US -ST = CA -L = SF -O = Joyent -OU = Node.js -CN = agent1 -emailAddress = ry@tinyclouds.org - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/agent2-cert.pem b/node_modules/tunnel/test/keys/agent2-cert.pem deleted file mode 100644 index 8e4354db4..000000000 --- a/node_modules/tunnel/test/keys/agent2-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIB7DCCAZYCCQC7gs0MDNn6MTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJV -UzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAO -BgNVBAsTB05vZGUuanMxDzANBgNVBAMTBmFnZW50MjEgMB4GCSqGSIb3DQEJARYR -cnlAdGlueWNsb3Vkcy5vcmcwHhcNMTEwMzE0MTgyOTEyWhcNMzgwNzI5MTgyOTEy -WjB9MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYD -VQQKEwZKb3llbnQxEDAOBgNVBAsTB05vZGUuanMxDzANBgNVBAMTBmFnZW50MjEg -MB4GCSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5vcmcwXDANBgkqhkiG9w0BAQEF -AANLADBIAkEAyXb8FrRdKbhrKLgLSsn61i1C7w7fVVVd7OQsmV/7p9WB2lWFiDlC -WKGU9SiIz/A6wNZDUAuc2E+VwtpCT561AQIDAQABMA0GCSqGSIb3DQEBBQUAA0EA -C8HzpuNhFLCI3A5KkBS5zHAQax6TFUOhbpBCR0aTDbJ6F1liDTK1lmU/BjvPoj+9 -1LHwrmh29rK8kBPEjmymCQ== ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/agent2-csr.pem b/node_modules/tunnel/test/keys/agent2-csr.pem deleted file mode 100644 index a670c4c63..000000000 --- a/node_modules/tunnel/test/keys/agent2-csr.pem +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH -EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD -EwZhZ2VudDIxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ -KoZIhvcNAQEBBQADSwAwSAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf -+6fVgdpVhYg5QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAaAlMCMGCSqG -SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB -AJnll2pt5l0pzskQSpjjLVTlFDFmJr/AZ3UK8v0WxBjYjCe5Jx4YehkChpxIyDUm -U3J9q9MDUf0+Y2+EGkssFfk= ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/agent2-key.pem b/node_modules/tunnel/test/keys/agent2-key.pem deleted file mode 100644 index 522903c63..000000000 --- a/node_modules/tunnel/test/keys/agent2-key.pem +++ /dev/null @@ -1,9 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIBOgIBAAJBAMl2/Ba0XSm4ayi4C0rJ+tYtQu8O31VVXezkLJlf+6fVgdpVhYg5 -QlihlPUoiM/wOsDWQ1ALnNhPlcLaQk+etQECAwEAAQJBAMT6Bf34+UHKY1ObpsbH -9u2jsVblFq1rWvs8GPMY6oertzvwm3DpuSUp7PTgOB1nLTLYtCERbQ4ovtN8tn3p -OHUCIQDzIEGsoCr5vlxXvy2zJwu+fxYuhTZWMVuo1397L0VyhwIhANQh+yzqUgaf -WRtSB4T2W7ADtJI35ET61jKBty3CqJY3AiAIwju7dVW3A5WeD6Qc1SZGKZvp9yCb -AFI2BfVwwaY11wIgXF3PeGcvACMyMWsuSv7aPXHfliswAbkWuzcwA4TW01ECIGWa -cgsDvVFxmfM5NPSuT/UDTa6R5BFISB5ea0N0AR3I ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/agent2.cnf b/node_modules/tunnel/test/keys/agent2.cnf deleted file mode 100644 index 0a9f2c737..000000000 --- a/node_modules/tunnel/test/keys/agent2.cnf +++ /dev/null @@ -1,19 +0,0 @@ -[ req ] -default_bits = 1024 -days = 999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = US -ST = CA -L = SF -O = Joyent -OU = Node.js -CN = agent2 -emailAddress = ry@tinyclouds.org - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/agent3-cert.pem b/node_modules/tunnel/test/keys/agent3-cert.pem deleted file mode 100644 index e4a235079..000000000 --- a/node_modules/tunnel/test/keys/agent3-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKjCCAZMCCQCDBr594bsJmTANBgkqhkiG9w0BAQUFADB6MQswCQYDVQQGEwJV -UzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAO -BgNVBAsTB05vZGUuanMxDDAKBgNVBAMTA2NhMjEgMB4GCSqGSIb3DQEJARYRcnlA -dGlueWNsb3Vkcy5vcmcwHhcNMTEwMzE0MTgyOTEyWhcNMzgwNzI5MTgyOTEyWjB9 -MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQK -EwZKb3llbnQxEDAOBgNVBAsTB05vZGUuanMxDzANBgNVBAMTBmFnZW50MzEgMB4G -CSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5vcmcwXDANBgkqhkiG9w0BAQEFAANL -ADBIAkEAtlNDZ+bHeBI0B2gD/IWqA7Aq1hwsnS4+XpnLesjTQcL2JwFFpkR0oWrw -yjrYhCogi7c5gjKrLZF1d2JD5JgHgQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAJoK -bXwsImk7vJz9649yrmsXwnuGbEKVYMvqcGyjaZNP9lYEG41y5CeRzxhWy2rlYdhE -f2nqE2lg75oJP7LQqfQY7aCqwahM3q/GQbsfKVCGjF7TVyq9TQzd8iW+FEJIQzSE -3aN85hR67+3VAXeSzmkGSVBO2m1SJIug4qftIkc2 ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/agent3-csr.pem b/node_modules/tunnel/test/keys/agent3-csr.pem deleted file mode 100644 index e6c0c74b3..000000000 --- a/node_modules/tunnel/test/keys/agent3-csr.pem +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH -EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD -EwZhZ2VudDMxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ -KoZIhvcNAQEBBQADSwAwSAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI -00HC9icBRaZEdKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAaAlMCMGCSqG -SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB -AEGo76iH+a8pnE+RWQT+wg9/BL+iIuqrcFXLs0rbGonqderrwXAe15ODwql/Bfu3 -zgMt8ooTsgMPcMX9EgmubEM= ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/agent3-key.pem b/node_modules/tunnel/test/keys/agent3-key.pem deleted file mode 100644 index d72f071e4..000000000 --- a/node_modules/tunnel/test/keys/agent3-key.pem +++ /dev/null @@ -1,9 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIBOwIBAAJBALZTQ2fmx3gSNAdoA/yFqgOwKtYcLJ0uPl6Zy3rI00HC9icBRaZE -dKFq8Mo62IQqIIu3OYIyqy2RdXdiQ+SYB4ECAwEAAQJAIk+G9s2SKgFa8y3a2jGZ -LfqABSzmJGooaIsOpLuYLd6eCC31XUDlT4rPVGRhysKQCQ4+NMjgdnj9ZqNnvXY/ -RQIhAOgbdltr3Ey2hy7RuDW5rmOeJTuVqCrZ7QI8ifyCEbYTAiEAyRfvWSvvASeP -kZTMUhATRUpuyDQW+058NE0oJSinTpsCIQCR/FPhBGI3TcaQyA9Ym0T4GwvIAkUX -TqInefRAAX8qSQIgZVJPAdIWGbHSL9sWW97HpukLCorcbYEtKbkamiZyrjMCIQCX -lX76ttkeId5OsJGQcF67eFMMr2UGZ1WMf6M39lCYHQ== ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/agent3.cnf b/node_modules/tunnel/test/keys/agent3.cnf deleted file mode 100644 index 26db5ba75..000000000 --- a/node_modules/tunnel/test/keys/agent3.cnf +++ /dev/null @@ -1,19 +0,0 @@ -[ req ] -default_bits = 1024 -days = 999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = US -ST = CA -L = SF -O = Joyent -OU = Node.js -CN = agent3 -emailAddress = ry@tinyclouds.org - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/agent4-cert.pem b/node_modules/tunnel/test/keys/agent4-cert.pem deleted file mode 100644 index 07157b919..000000000 --- a/node_modules/tunnel/test/keys/agent4-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSDCCAbGgAwIBAgIJAIMGvn3huwmaMA0GCSqGSIb3DQEBBQUAMHoxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJDQTELMAkGA1UEBxMCU0YxDzANBgNVBAoTBkpveWVu -dDEQMA4GA1UECxMHTm9kZS5qczEMMAoGA1UEAxMDY2EyMSAwHgYJKoZIhvcNAQkB -FhFyeUB0aW55Y2xvdWRzLm9yZzAeFw0xMTAzMTQxODI5MTJaFw0zODA3MjkxODI5 -MTJaMH0xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTELMAkGA1UEBxMCU0YxDzAN -BgNVBAoTBkpveWVudDEQMA4GA1UECxMHTm9kZS5qczEPMA0GA1UEAxMGYWdlbnQ0 -MSAwHgYJKoZIhvcNAQkBFhFyeUB0aW55Y2xvdWRzLm9yZzBcMA0GCSqGSIb3DQEB -AQUAA0sAMEgCQQDN/yMfmQ8zdvmjlGk7b3Mn6wY2FjaMb4c5ENJX15vyYhKS1zhx -6n0kQIn2vf6yqG7tO5Okz2IJiD9Sa06mK6GrAgMBAAGjFzAVMBMGA1UdJQQMMAoG -CCsGAQUFBwMCMA0GCSqGSIb3DQEBBQUAA4GBAA8FXpRmdrHBdlofNvxa14zLvv0N -WnUGUmxVklFLKXvpVWTanOhVgI2TDCMrT5WvCRTD25iT1EUKWxjDhFJrklQJ+IfC -KC6fsgO7AynuxWSfSkc8/acGiAH+20vW9QxR53HYiIDMXEV/wnE0KVcr3t/d70lr -ImanTrunagV+3O4O ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/agent4-csr.pem b/node_modules/tunnel/test/keys/agent4-csr.pem deleted file mode 100644 index 97e115d03..000000000 --- a/node_modules/tunnel/test/keys/agent4-csr.pem +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBXTCCAQcCAQAwfTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMQswCQYDVQQH -EwJTRjEPMA0GA1UEChMGSm95ZW50MRAwDgYDVQQLEwdOb2RlLmpzMQ8wDQYDVQQD -EwZhZ2VudDQxIDAeBgkqhkiG9w0BCQEWEXJ5QHRpbnljbG91ZHMub3JnMFwwDQYJ -KoZIhvcNAQEBBQADSwAwSAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfX -m/JiEpLXOHHqfSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAaAlMCMGCSqG -SIb3DQEJBzEWExRBIGNoYWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAANB -AMzo7GUOBtGm5MSck1rrEE2C1bU3qoVvXVuiN3A/57zXeNeq24FZMLnkDeL9U+/b -Kj646XFou04gla982Xp74p0= ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/agent4-key.pem b/node_modules/tunnel/test/keys/agent4-key.pem deleted file mode 100644 index b770b015d..000000000 --- a/node_modules/tunnel/test/keys/agent4-key.pem +++ /dev/null @@ -1,9 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIBOQIBAAJBAM3/Ix+ZDzN2+aOUaTtvcyfrBjYWNoxvhzkQ0lfXm/JiEpLXOHHq -fSRAifa9/rKobu07k6TPYgmIP1JrTqYroasCAwEAAQJAN8RQb+dx1A7rejtdWbfM -Rww7PD07Oz2eL/a72wgFsdIabRuVypIoHunqV0sAegYtNJt9yu+VhREw0R5tx/qz -EQIhAPY+nmzp0b4iFRk7mtGUmCTr9iwwzoqzITwphE7FpQnFAiEA1ihUHFT9YPHO -f85skM6qZv77NEgXHO8NJmQZ5GX1ZK8CICzle+Mluo0tD6W7HV4q9pZ8wzSJbY8S -W/PpKetm09F1AiAWTw8sAGKAtc/IGo3Oq+iuYAN1F8lolzJsfGMCGujsOwIgAJKP -t3eXilwX3ZlsDWSklWNZ7iYcfYrvAc3JqU6gFCE= ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/agent4.cnf b/node_modules/tunnel/test/keys/agent4.cnf deleted file mode 100644 index 5e583eb59..000000000 --- a/node_modules/tunnel/test/keys/agent4.cnf +++ /dev/null @@ -1,21 +0,0 @@ -[ req ] -default_bits = 1024 -days = 999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = US -ST = CA -L = SF -O = Joyent -OU = Node.js -CN = agent4 -emailAddress = ry@tinyclouds.org - -[ req_attributes ] -challengePassword = A challenge password - -[ ext_key_usage ] -extendedKeyUsage = clientAuth diff --git a/node_modules/tunnel/test/keys/ca1-cert.pem b/node_modules/tunnel/test/keys/ca1-cert.pem deleted file mode 100644 index 640c084c3..000000000 --- a/node_modules/tunnel/test/keys/ca1-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICIzCCAYwCCQC4ONZJx5BOwjANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTExJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBWMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMQww -CgYDVQQDEwNjYTExJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQu -anAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOJMS1ug8jUu0wwEfD4h9/Mg -w0fvs7JbpMxtwpdcFpg/6ECd8YzGUvljLzeHPe2AhF26MiWIUN3YTxZRiQQ2tv93 -afRVWchdPypytmuxv2aYGjhZ66Tv4vNRizM71OE+66+KS30gEQW2k4MTr0ZVlRPR -OVey+zRSLdVaKciB/XaBAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEApfbly4b+Ry1q -bGIgGrlTvNFvF+j2RuHqSpuTB4nKyw1tbNreKmEEb6SBEfkjcTONx5rKECZ5RRPX -z4R/o1G6Dn21ouf1pWQO0BC/HnLN30KvvsoZRoxBn/fqBlJA+j/Kpj3RQgFj6l2I -AKI5fD+ucPqRGhjmmTsNyc+Ln4UfAq8= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/ca1-cert.srl b/node_modules/tunnel/test/keys/ca1-cert.srl deleted file mode 100644 index d7f4b7910..000000000 --- a/node_modules/tunnel/test/keys/ca1-cert.srl +++ /dev/null @@ -1 +0,0 @@ -B111C9CEF0257692 diff --git a/node_modules/tunnel/test/keys/ca1-key.pem b/node_modules/tunnel/test/keys/ca1-key.pem deleted file mode 100644 index aaa58ae9a..000000000 --- a/node_modules/tunnel/test/keys/ca1-key.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN ENCRYPTED PRIVATE KEY----- -MIICxjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQIbo5wvG42IY0CAggA -MBQGCCqGSIb3DQMHBAgf8SPuz4biYASCAoAR4r8MVikusOAEt4Xp6nB7whrMX4iG -G792Qpf21nHZPMV73w3cdkfimbAfUn8F50tSJwdrAa8U9BjjpL9Kt0loIyXt/r8c -6PWAQ4WZuLPgTFUTJUNAXrunBHI0iFWYEN4YzJYmT1qN3J4u0diy0MkKz6eJPfZ3 -3v97+nF7dR2H86ZgLKsuE4pO5IRb60XW85d7CYaY6rU6l6mXMF0g9sIccHTlFoet -Xm6cA7NAm1XSI1ciYcoc8oaVE9dXoOALaTnBEZ2MJGpsYQ0Hr7kB4VKAO9wsOta5 -L9nXPv79Nzo1MZMChkrORFnwOzH4ffsUwVQ70jUzkt5DEyzCM1oSxFNRQESxnFrr -7c1jLg2gxAVwnqYo8njsKJ23BZqZUxHsBgB2Mg1L/iPT6zhclD0u3RZx9MR4ezB2 -IqoCF19Z5bblkReAeVRAE9Ol4hKVaCEIIPUspcw7eGVGONalHDCSXpIFnJoZLeXJ -OZjLmYlA6KkJw52eNE5IwIb8l/tha2fwNpRvlMoXp65yH9wKyJk8zPSM6WAk4dKD -nLrTCK4KtM6aIbG14Mff6WEf3uaLPM0cLwxmuypfieCZfkIzgytNdFZoBgaYUpon -zazvUMoy3gqDBorcU08SaosdRoL+s+QVkRhA29shf42lqOM4zbh0dTul4QDlLG0U -VBNeMJ3HnrqATfBU28j3bUqtuF2RffgcN/3ivlBjcyzF/iPt0TWmm6Zz5v4K8+b6 -lOm6gofIz+ffg2cXfPzrqZ2/xhFkcerRuN0Xp5eAhlI2vGJVGuEc4X+tT7VtQgLV -iovqzlLhp+ph/gsfCcsYZ9iso3ozw+Cx1HfJ8XT7yWUgXxblkt4uszEo ------END ENCRYPTED PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/ca1.cnf b/node_modules/tunnel/test/keys/ca1.cnf deleted file mode 100644 index dcb06372d..000000000 --- a/node_modules/tunnel/test/keys/ca1.cnf +++ /dev/null @@ -1,17 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no -output_password = password - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = ca1 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/ca2-cert.pem b/node_modules/tunnel/test/keys/ca2-cert.pem deleted file mode 100644 index 4c29c8742..000000000 --- a/node_modules/tunnel/test/keys/ca2-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICIzCCAYwCCQCxIhZSDET+8DANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTIxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBWMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMQww -CgYDVQQDEwNjYTIxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQu -anAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMaaLMMe7K5eYABH3NnJoimG -LvY4S5tdGF6YRwfkn1bgGa+kEw1zNqa/Y0jSzs4h7bApt3+bKTalR4+Zk+0UmWgZ -Gvlq8+mdqDXtBKoWE3vYDPBmeNyKsgxf9UIhFOpsxVUeYP8t66qJyUk/FlFJcDqc -WPawikl1bUFSZXBKu4PxAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAwh3sXPIkA5kn -fpg7fV5haS4EpFr9ia61dzWbhXDZtasAx+nWdWqgG4T+HIYSLlMNZbGJ998uhFZf -DEHlbY/WuSBukZ0w+xqKBtPyjLIQKVvNiaTx5YMzQes62R1iklOXzBzyHbYIxFOG -dqLfIjEe/mVVoR23LN2tr8Wa6+rmd+w= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/ca2-cert.srl b/node_modules/tunnel/test/keys/ca2-cert.srl deleted file mode 100644 index 274995221..000000000 --- a/node_modules/tunnel/test/keys/ca2-cert.srl +++ /dev/null @@ -1 +0,0 @@ -9BF2D4B2E00EDF16 diff --git a/node_modules/tunnel/test/keys/ca2-crl.pem b/node_modules/tunnel/test/keys/ca2-crl.pem deleted file mode 100644 index 166df7458..000000000 --- a/node_modules/tunnel/test/keys/ca2-crl.pem +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN X509 CRL----- -MIIBXTCBxzANBgkqhkiG9w0BAQQFADB6MQswCQYDVQQGEwJVUzELMAkGA1UECBMC -Q0ExCzAJBgNVBAcTAlNGMQ8wDQYDVQQKEwZKb3llbnQxEDAOBgNVBAsTB05vZGUu -anMxDDAKBgNVBAMTA2NhMjEgMB4GCSqGSIb3DQEJARYRcnlAdGlueWNsb3Vkcy5v -cmcXDTExMDMxNDE4MjkxNloXDTEzMTIwNzE4MjkxNlowHDAaAgkAgwa+feG7CZoX -DTExMDMxNDE4MjkxNFowDQYJKoZIhvcNAQEEBQADgYEArRKuEkOla61fm4zlZtHe -LTXFV0Hgo21PScHAp6JqPol4rN5R9+EmUkv7gPCVVBJ9VjIgxSosHiLsDiz3zR+u -txHemhzbdIVANAIiChnFct8sEqH2eL4N6XNUIlMIR06NjNl7NbN8w8haqiearnuT -wmnaL4TThPmpbpKAF7N7JqQ= ------END X509 CRL----- diff --git a/node_modules/tunnel/test/keys/ca2-database.txt b/node_modules/tunnel/test/keys/ca2-database.txt deleted file mode 100644 index a0966d269..000000000 --- a/node_modules/tunnel/test/keys/ca2-database.txt +++ /dev/null @@ -1 +0,0 @@ -R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org diff --git a/node_modules/tunnel/test/keys/ca2-key.pem b/node_modules/tunnel/test/keys/ca2-key.pem deleted file mode 100644 index 9cea659e5..000000000 --- a/node_modules/tunnel/test/keys/ca2-key.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN ENCRYPTED PRIVATE KEY----- -MIICxjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQI3aq9fKZIOF0CAggA -MBQGCCqGSIb3DQMHBAjyunMfVve0OwSCAoAdMsrRFlQUSILw+bq3cSVIIbFjwcs0 -B1Uz2rc9SB+1qjsazjv4zvPQSXTrsx2EOSJf9PSPz7r+c0NzO9vfWLorpXof/lwL -C1tRN7/1OqEW/mTK+1wlv0M5C4cmf44BBXmI+y+RWrQ/qc+CWEMvfHwv9zWr2K+i -cLlZv55727GvZYCMMVLiqYd/Ejj98loBsE5dhN4JJ5MPaN3UHhFTCpD453GIIzCi -FRuYhOOtX4qYoEuP2db4S2qu26723ZJnYBEHkK2YZiRrgvoZHugyGIr4f/RRoSUI -fPgycgQfL3Ow+Y1G533PiZ+CYgh9cViUzhZImEPiZpSuUntAD1loOYkJuV9Ai9XZ -+t6+7tfkM3aAo1bkaU8KcfINxxNWfAhCbUQw+tGJl2A+73OM5AGjGSfzjQQL/FOa -5omfEvdfEX2XyRRlqnQ2VucvSTL9ZdzbIJGg/euJTpM44Fwc7yAZv2aprbPoPixu -yyf0LoTjlGGSBZvHkunpWx82lYEXvHhcnCxV5MDFw8wehvDrvcSuzb8//HzLOiOB -gzUr3DOQk4U1UD6xixZjAKC+NUwTVZoHg68KtmQfkq+eGUWf5oJP4xUigi3ui/Wy -OCBDdlRBkFtgLGL51KJqtq1ixx3Q9HMl0y6edr5Ls0unDIo0LtUWUUcAtr6wl+kK -zSztxFMi2zTtbhbkwoVpucNstFQNfV1k22vtnlcux2FV2DdZiJQwYpIbr8Gj6gpK -gtV5l9RFe21oZBcKPt/chrF8ayiClfGMpF3D2p2GqGCe0HuH5uM/JAFf60rbnriA -Nu1bWiXsXLRUXcLIQ/uEPR3Mvvo9k1h4Q6it1Rp67eQiXCX6h2uFq+sB ------END ENCRYPTED PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/ca2-serial b/node_modules/tunnel/test/keys/ca2-serial deleted file mode 100644 index 8a0f05e16..000000000 --- a/node_modules/tunnel/test/keys/ca2-serial +++ /dev/null @@ -1 +0,0 @@ -01 diff --git a/node_modules/tunnel/test/keys/ca2.cnf b/node_modules/tunnel/test/keys/ca2.cnf deleted file mode 100644 index 46e827485..000000000 --- a/node_modules/tunnel/test/keys/ca2.cnf +++ /dev/null @@ -1,17 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no -output_password = password - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = ca2 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/ca3-cert.pem b/node_modules/tunnel/test/keys/ca3-cert.pem deleted file mode 100644 index 02b3f7a92..000000000 --- a/node_modules/tunnel/test/keys/ca3-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICIzCCAYwCCQCudHFhEWiUHDANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTMxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBWMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMQww -CgYDVQQDEwNjYTMxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQu -anAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJPRJMhCNtxX6dQ3rLdrzVCl -XJMSRIICpbsc7arOzSJcrsIYeYC4d29dGwxYNLnAkKSmHujFT9SmFgh88CoYETLp -gE9zCk9hVCwUlWelM/UaIrzeLT4SC3VBptnLmMtk2mqFniLcaFdMycAcX8OIhAgG -fbqyT5Wxwz7UMegip2ZjAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEADpu8a/W+NPnS -mhyIOxXn8O//2oH9ELlBYFLIgTid0xmS05x/MgkXtWqiBEEZFoOfoJBJxM3vTFs0 -PiZvcVjv0IIjDF4s54yRVH+4WI2p7cil1fgzAVRTuOIuR+VyN7ct8s26a/7GFDq6 -NJMByyjsJHyxwwri5hVv+jbLCxmnDjI= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/ca3-cert.srl b/node_modules/tunnel/test/keys/ca3-cert.srl deleted file mode 100644 index cfd39e165..000000000 --- a/node_modules/tunnel/test/keys/ca3-cert.srl +++ /dev/null @@ -1 +0,0 @@ -EF7B2CF0FA61DF41 diff --git a/node_modules/tunnel/test/keys/ca3-key.pem b/node_modules/tunnel/test/keys/ca3-key.pem deleted file mode 100644 index 893113242..000000000 --- a/node_modules/tunnel/test/keys/ca3-key.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN ENCRYPTED PRIVATE KEY----- -MIICxjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQIwAta+L4c9soCAggA -MBQGCCqGSIb3DQMHBAgqRud2p3SvogSCAoDXoDJOJDkvgFpQ6rxeV5r0fLX4SrGJ -quv4yt02QxSDUPN2ZLtBt6bLzg4Zv2pIggufYJcZ2IOUnX82T7FlvBP8hbW1q3Bs -jAso7z8kJlFrZjNudjuP2l/X8tjrVyr3I0PoRoomtcHnCcSDdyne8Dqqj1enuikF -8b7FZUqocNLfu8LmNGxMmMwjw3UqhtpP5DjqV60B8ytQFPoz/gFh6aNGvsrD/avU -Dj8EJkQZP6Q32vmCzAvSiLjk7FA7RFmBtaurE9hJYNlc5v1eo69EUwPkeVlTpglJ -5sZAHxlhQCgc72ST6uFQKiMO3ng/JJA5N9EvacYSHQvI1TQIo43V2A//zUh/5hGL -sDv4pRuFq9miX8iiQpwo1LDfRzdwg7+tiLm8/mDyeLUSzDNc6GIX/tC9R4Ukq4ge -1Cfq0gtKSRxZhM8HqpGBC9rDs5mpdUqTRsoHLFn5T6/gMiAtrLCJxgD8JsZBa8rM -KZ09QEdZXTvpyvZ8bSakP5PF6Yz3QYO32CakL7LDPpCng0QDNHG10YaZbTOgJIzQ -NJ5o87DkgDx0Bb3L8FoREIBkjpYFbQi2fvPthoepZ3D5VamVsOwOiZ2sR1WF2J8l -X9c8GdG38byO+SQIPNZ8eT5JvUcNeSlIZiVSwvaEk496d2KzhmMMfoBLFVeHXG90 -CIZPleVfkTmgNQgXPWcFngqTZdDEGsHjEDDhbEAijB3EeOxyiiEDJPMy5zqkdy5D -cZ/Y77EDbln7omcyL+cGvCgBhhYpTbtbuBtzW4CiCvcfEB5N4EtJKOTRJXIpL/d3 -oVnZruqRRKidKwFMEZU2NZJX5FneAWFSeCv0IrY2vAUIc3El+n84CFFK ------END ENCRYPTED PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/ca3.cnf b/node_modules/tunnel/test/keys/ca3.cnf deleted file mode 100644 index 7b2378a92..000000000 --- a/node_modules/tunnel/test/keys/ca3.cnf +++ /dev/null @@ -1,17 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no -output_password = password - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = ca3 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/ca4-cert.pem b/node_modules/tunnel/test/keys/ca4-cert.pem deleted file mode 100644 index ed0686a7a..000000000 --- a/node_modules/tunnel/test/keys/ca4-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICIzCCAYwCCQDUGh2r7lOpITANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTQxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBWMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMQww -CgYDVQQDEwNjYTQxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQu -anAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOOC+SPC8XzkjIHfKPMzzNV6 -O/LpqQWdzJtEvFNW0oQ9g8gSV4iKqwUFrLNnSlwSGigvqKqGmYtG8S17ANWInoxI -c3sQlrS2cGbgLUBNKu4hZ7s+11EPOjbnn0QUE5w9GN8fy8CDx7ID/8URYKoxcoRv -0w7EJ2agfd68KS1ayxUXAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAumPFeR63Dyki -SWQtRAe2QWkIFlSRAR2PvSDdsDMLwMeXF5wD3Hv51yfTu9Gkg0QJB86deYfQ5vfV -4QsOQ35icesa12boyYpTE0/OoEX1f/s1sLlszpRvtAki3J4bkcGWAzM5yO1fKqpQ -MbtPzLn+DA7ymxuJa6EQAEb+kaJEBuU= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/ca4-cert.srl b/node_modules/tunnel/test/keys/ca4-cert.srl deleted file mode 100644 index 5c11314fd..000000000 --- a/node_modules/tunnel/test/keys/ca4-cert.srl +++ /dev/null @@ -1 +0,0 @@ -B01FE0416A2EDCF5 diff --git a/node_modules/tunnel/test/keys/ca4-key.pem b/node_modules/tunnel/test/keys/ca4-key.pem deleted file mode 100644 index fa7aca110..000000000 --- a/node_modules/tunnel/test/keys/ca4-key.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN ENCRYPTED PRIVATE KEY----- -MIICxjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQIWE/ri/feeikCAggA -MBQGCCqGSIb3DQMHBAiu6hUzoFnsVASCAoC53ZQ4gxLcFnb5yAcdCl4DdKOJ5m4G -CHosR87pJpZlO68DsCKwORUp9tTmb1/Q4Wm9n2kRf6VQNyVVm6REwzEPAgIJEgy2 -FqLmfqpTElbRsQako8UDXjDjaMO30e+Qhy8HOTrHMJZ6LgrU90xnOCPPeN9fYmIu -YBkX4qewUfu+wFzk/unUbFLChvJsEN4fdrlDwTJMHRzKwbdvg3mHlCnspWwjA2Mc -q27QPeb3mwRUajmqL0dT9y7wVYeAN2zV59VoWm6zV+dWFgyMlVrVCRYkqQC3xOsy -ZlKrGldrY8nNdv5s6+Sc7YavTJiJxHgIB7sm6QFIsdqjxTBEGD4/YhEI52SUw/xO -VJmOTWdWUz4FdWNi7286nfhZ0+mdv6fUoG54Qv6ahnUMJvEsp60LkR1gHXLzQu/m -+yDZFqY/IIg2QA7M3gL0Md5GrWydDlD2uBPoXcC4A5gfOHswzHWDKurDCpoMqdpn -CUQ/ZVl2rwF8Pnty61MjY1xCN1r8xQjFBCgcfBWw5v6sNRbr/vef3TfQIBzVm+hx -akDb1nckBsIjMT9EfeT6hXub2n0oehEHewF1COifbcOjnxToLSswPLrtb0behB+o -zTgftn+4XrkY0sFY69TzYtQVMLAsiWTpZFvAi+D++2pXlQ/bnxKJiBBc6kZuAGpN -z+cJ4kUuFE4S9v5C5vK89nIgcuJT06u8wYTy0N0j/DnIjSaVgGr0Y0841mXtU1VV -wUZjuyYrVwVT/g5r6uzEFldTcjmYkbMaxo+MYnEZZgqYJvu2QlK87YxJOwo+D1NX -4gl1s/bmlPlGw/t9TxutI3S9PEr3JM3013e9UPE+evlTG9IIrZaUPzyj ------END ENCRYPTED PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/ca4.cnf b/node_modules/tunnel/test/keys/ca4.cnf deleted file mode 100644 index ceac8f35b..000000000 --- a/node_modules/tunnel/test/keys/ca4.cnf +++ /dev/null @@ -1,17 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no -output_password = password - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = ca4 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/client.cnf b/node_modules/tunnel/test/keys/client.cnf deleted file mode 100644 index e3db7416e..000000000 --- a/node_modules/tunnel/test/keys/client.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = localhost -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/client1-cert.pem b/node_modules/tunnel/test/keys/client1-cert.pem deleted file mode 100644 index 24ea1db7c..000000000 --- a/node_modules/tunnel/test/keys/client1-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKTCCAZICCQDveyzw+mHfQTANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTMxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBcMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMRIw -EAYDVQQDEwlsb2NhbGhvc3QxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92 -ZW1lbnQuanAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMYUuKyuxT93zvrS -mL8IMI8xu8dP3iRZDUYu6dmq6Dntgb7intfzxtEFVmfNCDGwJwg7UKx/FzftGxFb -9LksuvAQuW2FLhCrOmXUVU938OZkQRSflISD80kd4i9JEoKKYPX1imjaMugIQ0ta -Bq2orY6sna8JAUVDW6WO3wVEJ4mBAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAAbaH -bc/6dIFC9TPIDrgsLtsOtycdBJqKbFT1wThhyKncXF/iyaI+8N4UA+hXMjk8ODUl -BVmmgaN6ufMLwnx/Gdl9FLmmDq4FQ4zspClTJo42QPzg5zKoPSw5liy73LM7z+nG -g6IeM8RFlEbs109YxqvQnbHfTgeLdIsdvtNXU80= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/client1-csr.pem b/node_modules/tunnel/test/keys/client1-csr.pem deleted file mode 100644 index c33a1354e..000000000 --- a/node_modules/tunnel/test/keys/client1-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBwTCCASoCAQAwXDELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDES -MBAGA1UEAxMJbG9jYWxob3N0MSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJv -dmVtZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGFLisrsU/d876 -0pi/CDCPMbvHT94kWQ1GLunZqug57YG+4p7X88bRBVZnzQgxsCcIO1Csfxc37RsR -W/S5LLrwELlthS4Qqzpl1FVPd/DmZEEUn5SEg/NJHeIvSRKCimD19Ypo2jLoCENL -WgatqK2OrJ2vCQFFQ1uljt8FRCeJgQIDAQABoCUwIwYJKoZIhvcNAQkHMRYTFEEg -Y2hhbGxlbmdlIHBhc3N3b3JkMA0GCSqGSIb3DQEBBQUAA4GBAB5NvNSHX+WDlF5R -LNr7SI2NzIy5OWEAgTxLkvS0NS75zlDLScaqwgs1uNfB2AnH0Fpw9+pePEijlb+L -3VRLNpV8hRn5TKztlS3O0Z4PPb7hlDHitXukTOQYrq0juQacodVSgWqNbac+O2yK -qf4Y3A7kQO1qmDOfN6QJFYVIpPiP ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/client1-key.pem b/node_modules/tunnel/test/keys/client1-key.pem deleted file mode 100644 index 52aff97b9..000000000 --- a/node_modules/tunnel/test/keys/client1-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXAIBAAKBgQDGFLisrsU/d8760pi/CDCPMbvHT94kWQ1GLunZqug57YG+4p7X -88bRBVZnzQgxsCcIO1Csfxc37RsRW/S5LLrwELlthS4Qqzpl1FVPd/DmZEEUn5SE -g/NJHeIvSRKCimD19Ypo2jLoCENLWgatqK2OrJ2vCQFFQ1uljt8FRCeJgQIDAQAB -AoGAbfcM+xjfejeqGYcWs175jlVe2OyW93jUrLTYsDV4TMh08iLfaiX0pw+eg2vI -88TGNoSvacP4gNzJ3R4+wxp5AFlRKZ876yL7D0VKavMFwbyRk21+D/tLGvW6gqOC -4qi4IWSkfgBh5RK+o4jZcl5tzRPQyuxR3pJGBS33q5K2dEECQQDhV4NuKZcGDnKt -1AhmtzqsJ4wrp2a3ysZYDTWyA692NGXi2Vnpnc6Aw9JchJhT3cueFLcOTFrb/ttu -ZC/iA67pAkEA4Qe7LvcPvHlwNAmzqzOg2lYAqq+aJY2ghfJMqr3dPCJqbHJnLN6p -GXsqGngwVlnvso0O/n5g30UmzvkRMFZW2QJAbOMQy0alh3OrzntKo/eeDln9zYpS -hDUjqqCXdbF6M7AWG4vTeqOaiXYWTEZ2JPBj17tCyVH0BaIc/jbDPH9zIQJBALei -YH0l/oB2tTqyBB2cpxIlhqvDW05z8d/859WZ1PVivGg9P7cdCO+TU7uAAyokgHe7 -ptXFefYZb18NX5qLipkCQHjIo4BknrO1oisfsusWcCC700aRIYIDk0QyEEIAY3+9 -7ar/Oo1EbqWA/qN7zByPuTKrjrb91/D+IMFUFgb4RWc= ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/client1.cnf b/node_modules/tunnel/test/keys/client1.cnf deleted file mode 100644 index e3db7416e..000000000 --- a/node_modules/tunnel/test/keys/client1.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = localhost -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/client2-cert.pem b/node_modules/tunnel/test/keys/client2-cert.pem deleted file mode 100644 index f0de53c75..000000000 --- a/node_modules/tunnel/test/keys/client2-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKTCCAZICCQCwH+BBai7c9TANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTQxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBcMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMRIw -EAYDVQQDEwlsb2NhbGhvc3QxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92 -ZW1lbnQuanAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMJQGt34PZX5pQmi -3bNp3dryr7qPO3oGhTeShLCeZ6PPCdnmVl0PnT0n8/DFBlaijbvXGU9AjcFZ7gg7 -hcSAFLGmPEb2pug021yzl7u0qUD2fnVaEzfJ04ZU4lUCFqGKsfFVQuIkDHFwadbE -AO+8EqOmDynUMkKfHPWQK6O9jt5ZAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEA143M -QIygJGDv2GFKlVgV05/CYZo6ouX9I6vPRekJnGeL98lmVH83Ogb7Xmc2SbJ18qFq -naBYnUEmHPUAZ2Ms2KuV3OOvscUSCsEJ4utJYznOT8PsemxVWrgG1Ba+zpnPkdII -p+PanKCsclNUKwBlSkJ8XfGi9CAZJBykwws3O1c= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/client2-csr.pem b/node_modules/tunnel/test/keys/client2-csr.pem deleted file mode 100644 index b7507f4fc..000000000 --- a/node_modules/tunnel/test/keys/client2-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBwTCCASoCAQAwXDELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDES -MBAGA1UEAxMJbG9jYWxob3N0MSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJv -dmVtZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDCUBrd+D2V+aUJ -ot2zad3a8q+6jzt6BoU3koSwnmejzwnZ5lZdD509J/PwxQZWoo271xlPQI3BWe4I -O4XEgBSxpjxG9qboNNtcs5e7tKlA9n51WhM3ydOGVOJVAhahirHxVULiJAxxcGnW -xADvvBKjpg8p1DJCnxz1kCujvY7eWQIDAQABoCUwIwYJKoZIhvcNAQkHMRYTFEEg -Y2hhbGxlbmdlIHBhc3N3b3JkMA0GCSqGSIb3DQEBBQUAA4GBAA//UPKPpVEpflDj -DBboWewa6yw8FEOnMvh6eeg/a8KbXfIYnkZRtxbmH06ygywBy/RUBCbM5EzyElkJ -bTVKorzCHnxuTfSnKQ68ZD+vI2SNjiWqQFXW6oOCPzLbtaTJVKw5D6ylBp8Zsu6n -BzQ/4Y42aX/HW4nfJeDydxNFYVJJ ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/client2-key.pem b/node_modules/tunnel/test/keys/client2-key.pem deleted file mode 100644 index ecb616e13..000000000 --- a/node_modules/tunnel/test/keys/client2-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICWwIBAAKBgQDCUBrd+D2V+aUJot2zad3a8q+6jzt6BoU3koSwnmejzwnZ5lZd -D509J/PwxQZWoo271xlPQI3BWe4IO4XEgBSxpjxG9qboNNtcs5e7tKlA9n51WhM3 -ydOGVOJVAhahirHxVULiJAxxcGnWxADvvBKjpg8p1DJCnxz1kCujvY7eWQIDAQAB -AoGAbiT0JdCaMFIzb/PnEdU30e1xGSIpx7C8gNTH7EnOW7d3URHU8KlyKwFjsJ4u -SpuYFdsG2Lqx3+D3IamD2O/1SgODmtdFas1C/hQ2zx42SgyBQolVJU1MHJxHqmCb -nm2Wo8aHmvFXpQ8OF4YJLPxLOSdvmq0PC17evDyjz5PciWUCQQD5yzaBpJ7yzGwd -b6nreWj6pt+jfi11YsA3gAdvTJcFzMGyNNC+U9OExjQqHsyaHyxGhHKQ6y+ybZkR -BggkudPfAkEAxyQC/hmcvWegdGI4xOJNbm0kv8UyxyeqhtgzEW2hWgEQs4k3fflZ -iNpvxyIBIp/7zZo02YqeQfZlDYuxKypUxwJAa6jQBzRCZXcBqfY0kA611kIR5U8+ -nHdBTSpbCfdCp/dGDF6DEWTjpzgdx4GawVpqJMJ09kzHM+nUrOeinuGQlQJAMAsV -Gb6OHPfaMxnbPkymh6SXQBjQNlHwhxWzxFmhmrg1EkthcufsXOLuIqmmgnb8Zc71 -PyJ9KcbK/GieNp7A0wJAIz3Mm3Up9Rlk25TH9k5e3ELjC6fkd93u94Uo145oTgDm -HSbCbjifP5eVl66PztxZppG2GBXiXT0hA/RMruTQMg== ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/client2.cnf b/node_modules/tunnel/test/keys/client2.cnf deleted file mode 100644 index e3db7416e..000000000 --- a/node_modules/tunnel/test/keys/client2.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = localhost -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/proxy1-cert.pem b/node_modules/tunnel/test/keys/proxy1-cert.pem deleted file mode 100644 index 30851fec2..000000000 --- a/node_modules/tunnel/test/keys/proxy1-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKTCCAZICCQCb8tSy4A7fFTANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTIxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBcMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMRIw -EAYDVQQDEwlsb2NhbGhvc3QxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92 -ZW1lbnQuanAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALiUyeosVxtJK8G4 -sAqU2DBLx5sMuZpV/YcW/YxUuJv3t/9TpVxcWAs6VRPzi5fqKe8TER8qxi1/I8zV -Qks1gWyZ01reU6Wpdt1MZguF036W2qKOxlJXvnqnRDWu9IFf6KMjSJjFZb6nqhQv -aiL/80hqc2qXVfuJbSYlGrKWFFINAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEABPIn -+vQoDpJx7lVNJNOe7DE+ShCXCK6jkQY8+GQXB1sz5K0OWdZxUWOOp/fcjNJua0NM -hgnylWu/pmjPh7c9xHdZhuh6LPD3F0k4QqK+I2rg45gdBPZT2IxEvxNYpGIfayvY -ofOgbienn69tMzGCMF/lUmEJu7Bn08EbL+OyNBg= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/proxy1-csr.pem b/node_modules/tunnel/test/keys/proxy1-csr.pem deleted file mode 100644 index 78ad22085..000000000 --- a/node_modules/tunnel/test/keys/proxy1-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBwTCCASoCAQAwXDELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDES -MBAGA1UEAxMJbG9jYWxob3N0MSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJv -dmVtZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC4lMnqLFcbSSvB -uLAKlNgwS8ebDLmaVf2HFv2MVLib97f/U6VcXFgLOlUT84uX6invExEfKsYtfyPM -1UJLNYFsmdNa3lOlqXbdTGYLhdN+ltqijsZSV756p0Q1rvSBX+ijI0iYxWW+p6oU -L2oi//NIanNql1X7iW0mJRqylhRSDQIDAQABoCUwIwYJKoZIhvcNAQkHMRYTFEEg -Y2hhbGxlbmdlIHBhc3N3b3JkMA0GCSqGSIb3DQEBBQUAA4GBAFhZc2cvYGf8mCg/ -5nPWmnjNIqgy7uJnOGfE3AP4rW48yiVHCJK9ZmPogbH7gBMOBrrX8fLX3ThK9Sbj -uJlBlZD/19zjM+kvJ14DcievJ15S3KehVQ6Ipmgbz/vnAaL1D+ZiOnjQad2/Fzg4 -0MFXQaZFEUcI8fKnv/zmYi1aivej ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/proxy1-key.pem b/node_modules/tunnel/test/keys/proxy1-key.pem deleted file mode 100644 index d06fddd5b..000000000 --- a/node_modules/tunnel/test/keys/proxy1-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXQIBAAKBgQC4lMnqLFcbSSvBuLAKlNgwS8ebDLmaVf2HFv2MVLib97f/U6Vc -XFgLOlUT84uX6invExEfKsYtfyPM1UJLNYFsmdNa3lOlqXbdTGYLhdN+ltqijsZS -V756p0Q1rvSBX+ijI0iYxWW+p6oUL2oi//NIanNql1X7iW0mJRqylhRSDQIDAQAB -AoGADPSkl4M1Of0QzTAhaxy3b+xhvkhOXr7aZLkAYvEvZAMnLwy39puksmUNw7C8 -g5U0DEvST9W4w0jBQodVd+Hxi4dUS4BLDVVStaLMa1Fjai/4uBPxbsrvdHzDu7if -BI6t12vWNNRtTxbfCJ1Fs3nHvDG0ueBZX3fYWBIPPM4bRQECQQDjmCrxbkfFrN5z -JXHfmzoNovV7KzgwRLKOLF17dYnhaG3G77JYjhEjIg5VXmQ8XJrwS45C/io5feFA -qrsy/0v1AkEAz55QK8CLue+sn0J8Yw//yLjJT6BK4pCFFKDxyAvP/3r4t7+1TgDj -KAfUMWb5Hcn9iT3sEykUeOe0ghU0h5X2uQJBAKES2qGPuP/vvmejwpnMVCO+hxmq -ltOiavQv9eEgaHq826SFk6UUtpA01AwbB7momIckEgTbuKqDql2H94C6KdkCQQC7 -PfrtyoP5V8dmBk8qBEbZ3pVn45dFx7LNzOzhTo3yyhO/m/zGcZRsCMt9FnI7RG0M -tjTPfvAArm8kFj2+vie5AkASvVx478N8so+02QWKme4T3ZDX+HDBXgFH1+SMD91m -9tS6x2dtTNvvwBA2KFI1fUg3B/wDoKJQRrqwdl8jpoGP ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/proxy1.cnf b/node_modules/tunnel/test/keys/proxy1.cnf deleted file mode 100644 index e3db7416e..000000000 --- a/node_modules/tunnel/test/keys/proxy1.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = localhost -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/proxy2-cert.pem b/node_modules/tunnel/test/keys/proxy2-cert.pem deleted file mode 100644 index dfe9d8e8e..000000000 --- a/node_modules/tunnel/test/keys/proxy2-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICJjCCAY8CCQCb8tSy4A7fFjANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTIxJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBZMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMQ8w -DQYDVQQDEwZwcm94eTIxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92ZW1l -bnQuanAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALZ3oNCmB2P4Q9DoUVFq -Z1ByASLm63jTPEumv2kX81GF5QMLRl59HBM6Te1rRR7wFHL0iBQUYuEzNPmedXpU -cds0uWl5teoO63ZSKFL1QLU3PMFo56AeWeznxOhy6vwWv3M8C391X6lYsiBow3K9 -d37p//GLIR+jl6Q4xYD41zaxAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEADUQgtmot -8zqsRQInjWAypcntkxX8hdUOEudN2/zjX/YtMZbr8rRvsZzBsUDdgK+E2EmEb/N3 -9ARZ0T2zWFFphJapkZOM1o1+LawN5ON5HfTPqr6d9qlHuRdGCBpXMUERO2V43Z+S -Zwm+iw1yZEs4buTmiw6zu6Nq0fhBlTiAweE= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/proxy2-csr.pem b/node_modules/tunnel/test/keys/proxy2-csr.pem deleted file mode 100644 index 5510e7fc3..000000000 --- a/node_modules/tunnel/test/keys/proxy2-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBvjCCAScCAQAwWTELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDEP -MA0GA1UEAxMGcHJveHkyMSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJvdmVt -ZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2d6DQpgdj+EPQ6FFR -amdQcgEi5ut40zxLpr9pF/NRheUDC0ZefRwTOk3ta0Ue8BRy9IgUFGLhMzT5nnV6 -VHHbNLlpebXqDut2UihS9UC1NzzBaOegHlns58Tocur8Fr9zPAt/dV+pWLIgaMNy -vXd+6f/xiyEfo5ekOMWA+Nc2sQIDAQABoCUwIwYJKoZIhvcNAQkHMRYTFEEgY2hh -bGxlbmdlIHBhc3N3b3JkMA0GCSqGSIb3DQEBBQUAA4GBADC4dh/+gQnJcPMQ0riJ -CBVLygcCWxkNvwM3ARboyihuNbzFX1f2g23Zr5iLphiuEFCPDOyd26hHieQ8Xo1y -FPuDXpWMx9X9MLjCWg8kdtada7HsYffbUvpjjL9TxFh+rX0cmr6Ixc5kV7AV4I6V -3h8BYJebX+XfuYrI1UwEqjqI ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/proxy2-key.pem b/node_modules/tunnel/test/keys/proxy2-key.pem deleted file mode 100644 index 29eed2c52..000000000 --- a/node_modules/tunnel/test/keys/proxy2-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXQIBAAKBgQC2d6DQpgdj+EPQ6FFRamdQcgEi5ut40zxLpr9pF/NRheUDC0Ze -fRwTOk3ta0Ue8BRy9IgUFGLhMzT5nnV6VHHbNLlpebXqDut2UihS9UC1NzzBaOeg -Hlns58Tocur8Fr9zPAt/dV+pWLIgaMNyvXd+6f/xiyEfo5ekOMWA+Nc2sQIDAQAB -AoGBALPH0o9Bxu5c4pSnEdgh+oFskmoNE90MY9A2D0pA6uBcCHSjW0YmBs97FuTi -WExPSBarkJgYLgStK3j3A9Dv+uzRRT0gSr34vKFh5ozI+nJZOMNJyHDOCFiT9sm7 -urDW0gSq9OW/H8NbAkxkBZw0PaB9oW5nljuieVIFDYXNAeMBAkEA6NfBHjzp3GS0 -RbtaBkxn3CRlEoUUPVd3sJ6lW2XBu5AWrgNHRSlh0oBupXgd3cxWIB69xPOg6QjU -XmvcLjBlCQJBAMidTIw4s89m4+14eY/KuXaEgxW/awLEbQP2JDCjY1wT3Ya3Ggac -HIFuGdTbd2faJPxNJjoljZnatSdwY5aXFmkCQBQZM5FBnsooYys1vdKXW8uz1Imh -tRqKZ0l2mD1obi2bhWml3MwKg2ghL+vWj3VqwvBo1uaeRQB4g6RW2R2fjckCQQCf -FnZ0oCafa2WGlMo5qDbI8K6PGXv/9srIoHH0jC0oAKzkvuEJqtTEIw6jCOM43PoF -hhyxccRH5PNRckPXULs5AkACxKEL1dN+Bx72zE8jSU4DB5arpQdGOvuVsqXgVM/5 -QLneJEHGPCqNFS1OkWUYLtX0S28X5GmHMEpLRLpgE9JY ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/proxy2.cnf b/node_modules/tunnel/test/keys/proxy2.cnf deleted file mode 100644 index e62c90ae5..000000000 --- a/node_modules/tunnel/test/keys/proxy2.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = proxy2 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/server1-cert.pem b/node_modules/tunnel/test/keys/server1-cert.pem deleted file mode 100644 index d0b6430d9..000000000 --- a/node_modules/tunnel/test/keys/server1-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICKTCCAZICCQCxEcnO8CV2kTANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTExJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBcMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMRIw -EAYDVQQDEwlsb2NhbGhvc3QxJTAjBgkqhkiG9w0BCQEWFmtvaWNoaWtAaW1wcm92 -ZW1lbnQuanAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALYb3z6TVgD8VmV2 -i0IHoes/HNVz+/UgXxRoA7gTUXp4Q69HBymWwm4fG61YMn7XAjy0gyC2CX/C0S74 -ZzHkhq1DCXCtlXCDx5oZhSRPpa902MVdDSRR+naLA4PPFkV2pI53hsFW37M5Dhge -+taFbih/dbjpOnhLD+SbkSKNTw/dAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAjDNi -mdmMM8Of/8iCYISqkqCG+7fz747Ntkg5fVMPufkwrBfkD9UjYVbfIpEOkZ3L0If9 -0/wNi0uZobIJnd/9B/e0cHKYnx0gkhUpMylaRvIV4odKe2vq3+mjwMb9syYXYDx3 -hw2qDMIIPr0S5ICeoIKXhbsYtODVxKSdJq+FjAI= ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/server1-csr.pem b/node_modules/tunnel/test/keys/server1-csr.pem deleted file mode 100644 index 9d9ff1b94..000000000 --- a/node_modules/tunnel/test/keys/server1-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBwTCCASoCAQAwXDELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDES -MBAGA1UEAxMJbG9jYWxob3N0MSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJv -dmVtZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2G98+k1YA/FZl -dotCB6HrPxzVc/v1IF8UaAO4E1F6eEOvRwcplsJuHxutWDJ+1wI8tIMgtgl/wtEu -+Gcx5IatQwlwrZVwg8eaGYUkT6WvdNjFXQ0kUfp2iwODzxZFdqSOd4bBVt+zOQ4Y -HvrWhW4of3W46Tp4Sw/km5EijU8P3QIDAQABoCUwIwYJKoZIhvcNAQkHMRYTFEEg -Y2hhbGxlbmdlIHBhc3N3b3JkMA0GCSqGSIb3DQEBBQUAA4GBAJLLYClTc1BZbQi4 -2GrGEimzJoheXXD1vepECS6TaeYJFSQldMGdkn5D8TMXWW115V4hw7a1pCwvRBPH -dVEeh3u3ktI1e4pS5ozvpbpYanILrHCNOQ4PvKi9rzG9Km8CprPcrJCZlWf2QUBK -gVNgqZJeqyEcBu80/ajjc6xrZsSP ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/server1-key.pem b/node_modules/tunnel/test/keys/server1-key.pem deleted file mode 100644 index d24acc80b..000000000 --- a/node_modules/tunnel/test/keys/server1-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXQIBAAKBgQC2G98+k1YA/FZldotCB6HrPxzVc/v1IF8UaAO4E1F6eEOvRwcp -lsJuHxutWDJ+1wI8tIMgtgl/wtEu+Gcx5IatQwlwrZVwg8eaGYUkT6WvdNjFXQ0k -Ufp2iwODzxZFdqSOd4bBVt+zOQ4YHvrWhW4of3W46Tp4Sw/km5EijU8P3QIDAQAB -AoGAcDioz+T3gM//ZbMxidUuQMu5twgsYhg6v1aBxDOTaEcoXqEElupikn31DlNl -eqiApmwOyl+jZunlAm7tGN/c5WjmZtW6watv1D7HjDIFJQBdiOv2jLeV5gsoArMP -f8Y13MS68nJ7/ZkqisovjBlD7ZInbyUiJj0FH/cazauflIECQQDwHgQ0J46eL5EG -3smQQG9/8b/Wsnf8s9Vz6X/KptsbL3c7mCBY9/+cGw0xVxoUOyO7KGPzpRhtz4Y0 -oP+JwISxAkEAwieUtl+SuUAn6er1tZzPPiAM2w6XGOAod+HuPjTAKVhLKHYIEJbU -jhPdjOGtZr10ED9g0m7M4n3JKMMM00W47QJBAOVkp7tztwpkgva/TG0lQeBHgnCI -G50t6NRN1Koz8crs88nZMb4NXwMxzM7AWcfOH/qjQan4pXfy9FG/JaHibGECQH8i -L+zj1E3dxsUTh+VuUv5ZOlHO0f4F+jnWBY1SOWpZWI2cDFfgjDqko3R26nbWI8Pn -3FyvFRZSS4CXiDRn+VkCQQCKPBl60QAifkZITqL0dCs+wB2hhmlWwqlpq1ZgeCby -zwmZY1auUK1BYBX1aPB85+Bm2Zhp5jnkwRcO7iSYy8+C ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/server1.cnf b/node_modules/tunnel/test/keys/server1.cnf deleted file mode 100644 index e3db7416e..000000000 --- a/node_modules/tunnel/test/keys/server1.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = localhost -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/server2-cert.pem b/node_modules/tunnel/test/keys/server2-cert.pem deleted file mode 100644 index ba92620f0..000000000 --- a/node_modules/tunnel/test/keys/server2-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICJzCCAZACCQCxEcnO8CV2kjANBgkqhkiG9w0BAQUFADBWMQswCQYDVQQGEwJK -UDESMBAGA1UECxQJbm9kZWpzX2pwMQwwCgYDVQQDEwNjYTExJTAjBgkqhkiG9w0B -CQEWFmtvaWNoaWtAaW1wcm92ZW1lbnQuanAwHhcNMTMxMjI0MTEyMzIxWhcNNDEw -NTEwMTEyMzIxWjBaMQswCQYDVQQGEwJKUDESMBAGA1UECxQJbm9kZWpzX2pwMRAw -DgYDVQQDEwdzZXJ2ZXIyMSUwIwYJKoZIhvcNAQkBFhZrb2ljaGlrQGltcHJvdmVt -ZW50LmpwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEkKr9SHG6jtf5UNfL -u66wNi8jrbAW5keYy7ECWRGRFDE7ay4N8LDMmOO3/1eH2WpY0QM5JFxq78hoVQED -ogvoeVTw+Ni33yqY6VL2WRv84FN2BmCrDGJQ83EYdsJqPUnxuXvbmq7Viw3l/BEu -hvsp722KcToIrqt8mHKMc/nPRwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBALbdQz32 -CN0hJfJ6BtGyqee3zRSpufPY1KFV8OHSDG4qL55OfpjB5e5wsldp3VChTWzm2KM+ -xg9WSWurMINM5KLgUqCZ69ttg1gJ/SnZNolXhH0I3SG/DY4DGTHo9oJPoSrgrWbX -3ZmCoO6rrDoSuVRJ8dKMWJmt8O1pZ6ZRW2iM ------END CERTIFICATE----- diff --git a/node_modules/tunnel/test/keys/server2-csr.pem b/node_modules/tunnel/test/keys/server2-csr.pem deleted file mode 100644 index f89c51038..000000000 --- a/node_modules/tunnel/test/keys/server2-csr.pem +++ /dev/null @@ -1,12 +0,0 @@ ------BEGIN CERTIFICATE REQUEST----- -MIIBvzCCASgCAQAwWjELMAkGA1UEBhMCSlAxEjAQBgNVBAsUCW5vZGVqc19qcDEQ -MA4GA1UEAxMHc2VydmVyMjElMCMGCSqGSIb3DQEJARYWa29pY2hpa0BpbXByb3Zl -bWVudC5qcDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAxJCq/Uhxuo7X+VDX -y7uusDYvI62wFuZHmMuxAlkRkRQxO2suDfCwzJjjt/9Xh9lqWNEDOSRcau/IaFUB -A6IL6HlU8PjYt98qmOlS9lkb/OBTdgZgqwxiUPNxGHbCaj1J8bl725qu1YsN5fwR -Lob7Ke9tinE6CK6rfJhyjHP5z0cCAwEAAaAlMCMGCSqGSIb3DQEJBzEWExRBIGNo -YWxsZW5nZSBwYXNzd29yZDANBgkqhkiG9w0BAQUFAAOBgQB3rCGCErgshGKEI5j9 -togUBwD3ul91yRFSBoV2hVGXsTOalWa0XCI+9+5QQEOBlj1pUT8eDU8ve55mX1UX -AZEx+cbUQa9DNeiDAMX83GqHMD8fF2zqsY1mkg5zFKG3nhoIYSG15qXcpqAhxRpX -NUQnZ4yzt2pE0aiFfkXa3PM42Q== ------END CERTIFICATE REQUEST----- diff --git a/node_modules/tunnel/test/keys/server2-key.pem b/node_modules/tunnel/test/keys/server2-key.pem deleted file mode 100644 index 9f72b5c2c..000000000 --- a/node_modules/tunnel/test/keys/server2-key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXQIBAAKBgQDEkKr9SHG6jtf5UNfLu66wNi8jrbAW5keYy7ECWRGRFDE7ay4N -8LDMmOO3/1eH2WpY0QM5JFxq78hoVQEDogvoeVTw+Ni33yqY6VL2WRv84FN2BmCr -DGJQ83EYdsJqPUnxuXvbmq7Viw3l/BEuhvsp722KcToIrqt8mHKMc/nPRwIDAQAB -AoGAQ/bRaGoYCK1DN80gEC2ApSTW/7saW5CbyNUFCw7I6CTXMPhKID/MobFraz86 -gJpIDxWVy7gqzD7ESG67vwnUm52ITojQiY3JH7NCNhq/39/aYZOz2d7rBv2mvhk3 -w7gxUsmtPVUz3s2/h1KYaGpM3b68TwMS9nIiwwHDJS1aR8ECQQDu/kOy+Z/0EVKC -APgiEzbxewAiy7BVzNppd8CR/5m1KxlsIoMr8OdLqVwiJ/13m3eZGkPNx5pLJ9Xv -sXER0ZcPAkEA0o19xA1AJ/v5qsRaWJaA+ftgQ8ZanqsWXhM9abAvkPdFLPKYWTfO -r9f8eUDH0+O9mA2eZ2mlsEcsmIHDTY6ESQJAO2lyIvfzT5VO0Yq0JKRqMDXHnt7M -A0hds4JVmPXVnDgOpdcejLniheigQs12MVmwrZrd6DYKoUxR3rhZx3g2+QJBAK/2 -5fuaI1sHP+HSlbrhlUrWJd6egA+I5nma1MFmKGqb7Kki2eX+OPNGq87eL+LKuyG/ -h/nfFkTbRs7x67n+eFkCQQCPgy381Vpa7lmoNUfEVeMSNe74FNL05IlPDs/BHcci -1GX9XzsFEqHLtJ5t1aWbGv39gb2WmPP3LJBsRPzLa2iQ ------END RSA PRIVATE KEY----- diff --git a/node_modules/tunnel/test/keys/server2.cnf b/node_modules/tunnel/test/keys/server2.cnf deleted file mode 100644 index bfaa48b82..000000000 --- a/node_modules/tunnel/test/keys/server2.cnf +++ /dev/null @@ -1,16 +0,0 @@ -[ req ] -default_bits = 1024 -days = 9999 -distinguished_name = req_distinguished_name -attributes = req_attributes -prompt = no - -[ req_distinguished_name ] -C = JP -OU = nodejs_jp -CN = server2 -emailAddress = koichik@improvement.jp - -[ req_attributes ] -challengePassword = A challenge password - diff --git a/node_modules/tunnel/test/keys/test.js b/node_modules/tunnel/test/keys/test.js deleted file mode 100644 index d82842218..000000000 --- a/node_modules/tunnel/test/keys/test.js +++ /dev/null @@ -1,43 +0,0 @@ -var fs = require('fs'); -var tls = require('tls'); - -var server1Key = fs.readFileSync(__dirname + '/server1-key.pem'); -var server1Cert = fs.readFileSync(__dirname + '/server1-cert.pem'); -var clientKey = fs.readFileSync(__dirname + '/client-key.pem'); -var clientCert = fs.readFileSync(__dirname + '/client-cert.pem'); -var ca1Cert = fs.readFileSync(__dirname + '/ca1-cert.pem'); -var ca3Cert = fs.readFileSync(__dirname + '/ca3-cert.pem'); - -var server = tls.createServer({ - key: server1Key, - cert: server1Cert, - ca: [ca3Cert], - requestCert: true, - rejectUnauthorized: true, -}, function(s) { - console.log('connected on server'); - s.on('data', function(chunk) { - console.log('S:' + chunk); - s.write(chunk); - }); - s.setEncoding('utf8'); -}).listen(3000, function() { - var c = tls.connect({ - host: 'localhost', - port: 3000, - key: clientKey, - cert: clientCert, - ca: [ca1Cert], - rejectUnauthorized: true - }, function() { - console.log('connected on client'); - c.on('data', function(chunk) { - console.log('C:' + chunk); - }); - c.setEncoding('utf8'); - c.write('Hello'); - }); - c.on('error', function(err) { - console.log(err); - }); -}); diff --git a/node_modules/typed-rest-client/Handlers.d.ts b/node_modules/typed-rest-client/Handlers.d.ts deleted file mode 100644 index 780935d1e..000000000 --- a/node_modules/typed-rest-client/Handlers.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -export { BasicCredentialHandler } from "./handlers/basiccreds"; -export { BearerCredentialHandler } from "./handlers/bearertoken"; -export { NtlmCredentialHandler } from "./handlers/ntlm"; -export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; diff --git a/node_modules/typed-rest-client/Handlers.js b/node_modules/typed-rest-client/Handlers.js deleted file mode 100644 index 0b9e040d7..000000000 --- a/node_modules/typed-rest-client/Handlers.js +++ /dev/null @@ -1,10 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -var basiccreds_1 = require("./handlers/basiccreds"); -exports.BasicCredentialHandler = basiccreds_1.BasicCredentialHandler; -var bearertoken_1 = require("./handlers/bearertoken"); -exports.BearerCredentialHandler = bearertoken_1.BearerCredentialHandler; -var ntlm_1 = require("./handlers/ntlm"); -exports.NtlmCredentialHandler = ntlm_1.NtlmCredentialHandler; -var personalaccesstoken_1 = require("./handlers/personalaccesstoken"); -exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler; diff --git a/node_modules/typed-rest-client/HttpClient.d.ts b/node_modules/typed-rest-client/HttpClient.d.ts deleted file mode 100644 index f5cd014da..000000000 --- a/node_modules/typed-rest-client/HttpClient.d.ts +++ /dev/null @@ -1,103 +0,0 @@ -/// -import url = require("url"); -import http = require("http"); -import ifm = require('./Interfaces'); -export declare enum HttpCodes { - OK = 200, - MultipleChoices = 300, - MovedPermanently = 301, - ResourceMoved = 302, - SeeOther = 303, - NotModified = 304, - UseProxy = 305, - SwitchProxy = 306, - TemporaryRedirect = 307, - PermanentRedirect = 308, - BadRequest = 400, - Unauthorized = 401, - PaymentRequired = 402, - Forbidden = 403, - NotFound = 404, - MethodNotAllowed = 405, - NotAcceptable = 406, - ProxyAuthenticationRequired = 407, - RequestTimeout = 408, - Conflict = 409, - Gone = 410, - InternalServerError = 500, - NotImplemented = 501, - BadGateway = 502, - ServiceUnavailable = 503, - GatewayTimeout = 504, -} -export declare class HttpClientResponse implements ifm.IHttpClientResponse { - constructor(message: http.IncomingMessage); - message: http.IncomingMessage; - readBody(): Promise; -} -export interface RequestInfo { - options: http.RequestOptions; - parsedUrl: url.Url; - httpModule: any; -} -export declare function isHttps(requestUrl: string): boolean; -export declare class HttpClient implements ifm.IHttpClient { - userAgent: string; - handlers: ifm.IRequestHandler[]; - requestOptions: ifm.IRequestOptions; - private _ignoreSslError; - private _socketTimeout; - private _httpProxy; - private _httpProxyBypassHosts; - private _allowRedirects; - private _maxRedirects; - private _allowRetries; - private _maxRetries; - private _agent; - private _proxyAgent; - private _keepAlive; - private _disposed; - private _certConfig; - private _ca; - private _cert; - private _key; - constructor(userAgent: string, handlers?: ifm.IRequestHandler[], requestOptions?: ifm.IRequestOptions); - options(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise; - get(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise; - del(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise; - post(requestUrl: string, data: string, additionalHeaders?: ifm.IHeaders): Promise; - patch(requestUrl: string, data: string, additionalHeaders?: ifm.IHeaders): Promise; - put(requestUrl: string, data: string, additionalHeaders?: ifm.IHeaders): Promise; - head(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise; - sendStream(verb: string, requestUrl: string, stream: NodeJS.ReadableStream, additionalHeaders?: ifm.IHeaders): Promise; - /** - * Makes a raw http request. - * All other methods such as get, post, patch, and request ultimately call this. - * Prefer get, del, post and patch - */ - request(verb: string, requestUrl: string, data: string | NodeJS.ReadableStream, headers: ifm.IHeaders): Promise; - /** - * Needs to be called if keepAlive is set to true in request options. - */ - dispose(): void; - /** - * Raw request. - * @param info - * @param data - */ - requestRaw(info: ifm.IRequestInfo, data: string | NodeJS.ReadableStream): Promise; - /** - * Raw request with callback. - * @param info - * @param data - * @param onResult - */ - requestRawWithCallback(info: ifm.IRequestInfo, data: string | NodeJS.ReadableStream, onResult: (err: any, res: ifm.IHttpClientResponse) => void): void; - private _prepareRequest(method, requestUrl, headers); - private _isPresigned(requestUrl); - private _mergeHeaders(headers); - private _getAgent(requestUrl); - private _getProxy(requestUrl); - private _isBypassProxy(requestUrl); - private _performExponentialBackoff(retryNumber); -} diff --git a/node_modules/typed-rest-client/HttpClient.js b/node_modules/typed-rest-client/HttpClient.js deleted file mode 100644 index 169b8f7f1..000000000 --- a/node_modules/typed-rest-client/HttpClient.js +++ /dev/null @@ -1,455 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const url = require("url"); -const http = require("http"); -const https = require("https"); -let fs; -let tunnel; -var HttpCodes; -(function (HttpCodes) { - HttpCodes[HttpCodes["OK"] = 200] = "OK"; - HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; - HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; - HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; - HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; - HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; - HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; - HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; - HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; - HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; - HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; - HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; - HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; - HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; - HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; - HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; - HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; - HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; - HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; - HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; - HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; - HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; - HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; - HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; - HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; -})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {})); -const HttpRedirectCodes = [HttpCodes.MovedPermanently, HttpCodes.ResourceMoved, HttpCodes.SeeOther, HttpCodes.TemporaryRedirect, HttpCodes.PermanentRedirect]; -const HttpResponseRetryCodes = [HttpCodes.BadGateway, HttpCodes.ServiceUnavailable, HttpCodes.GatewayTimeout]; -const RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD']; -const ExponentialBackoffCeiling = 10; -const ExponentialBackoffTimeSlice = 5; -class HttpClientResponse { - constructor(message) { - this.message = message; - } - readBody() { - return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { - let output = ''; - this.message.on('data', (chunk) => { - output += chunk; - }); - this.message.on('end', () => { - resolve(output); - }); - })); - } -} -exports.HttpClientResponse = HttpClientResponse; -function isHttps(requestUrl) { - let parsedUrl = url.parse(requestUrl); - return parsedUrl.protocol === 'https:'; -} -exports.isHttps = isHttps; -var EnvironmentVariables; -(function (EnvironmentVariables) { - EnvironmentVariables["HTTP_PROXY"] = "HTTP_PROXY"; - EnvironmentVariables["HTTPS_PROXY"] = "HTTPS_PROXY"; -})(EnvironmentVariables || (EnvironmentVariables = {})); -class HttpClient { - constructor(userAgent, handlers, requestOptions) { - this._ignoreSslError = false; - this._allowRedirects = true; - this._maxRedirects = 50; - this._allowRetries = false; - this._maxRetries = 1; - this._keepAlive = false; - this._disposed = false; - this.userAgent = userAgent; - this.handlers = handlers || []; - this.requestOptions = requestOptions; - if (requestOptions) { - if (requestOptions.ignoreSslError != null) { - this._ignoreSslError = requestOptions.ignoreSslError; - } - this._socketTimeout = requestOptions.socketTimeout; - this._httpProxy = requestOptions.proxy; - if (requestOptions.proxy && requestOptions.proxy.proxyBypassHosts) { - this._httpProxyBypassHosts = []; - requestOptions.proxy.proxyBypassHosts.forEach(bypass => { - this._httpProxyBypassHosts.push(new RegExp(bypass, 'i')); - }); - } - this._certConfig = requestOptions.cert; - if (this._certConfig) { - // If using cert, need fs - fs = require('fs'); - // cache the cert content into memory, so we don't have to read it from disk every time - if (this._certConfig.caFile && fs.existsSync(this._certConfig.caFile)) { - this._ca = fs.readFileSync(this._certConfig.caFile, 'utf8'); - } - if (this._certConfig.certFile && fs.existsSync(this._certConfig.certFile)) { - this._cert = fs.readFileSync(this._certConfig.certFile, 'utf8'); - } - if (this._certConfig.keyFile && fs.existsSync(this._certConfig.keyFile)) { - this._key = fs.readFileSync(this._certConfig.keyFile, 'utf8'); - } - } - if (requestOptions.allowRedirects != null) { - this._allowRedirects = requestOptions.allowRedirects; - } - if (requestOptions.maxRedirects != null) { - this._maxRedirects = Math.max(requestOptions.maxRedirects, 0); - } - if (requestOptions.keepAlive != null) { - this._keepAlive = requestOptions.keepAlive; - } - if (requestOptions.allowRetries != null) { - this._allowRetries = requestOptions.allowRetries; - } - if (requestOptions.maxRetries != null) { - this._maxRetries = requestOptions.maxRetries; - } - } - } - options(requestUrl, additionalHeaders) { - return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); - } - get(requestUrl, additionalHeaders) { - return this.request('GET', requestUrl, null, additionalHeaders || {}); - } - del(requestUrl, additionalHeaders) { - return this.request('DELETE', requestUrl, null, additionalHeaders || {}); - } - post(requestUrl, data, additionalHeaders) { - return this.request('POST', requestUrl, data, additionalHeaders || {}); - } - patch(requestUrl, data, additionalHeaders) { - return this.request('PATCH', requestUrl, data, additionalHeaders || {}); - } - put(requestUrl, data, additionalHeaders) { - return this.request('PUT', requestUrl, data, additionalHeaders || {}); - } - head(requestUrl, additionalHeaders) { - return this.request('HEAD', requestUrl, null, additionalHeaders || {}); - } - sendStream(verb, requestUrl, stream, additionalHeaders) { - return this.request(verb, requestUrl, stream, additionalHeaders); - } - /** - * Makes a raw http request. - * All other methods such as get, post, patch, and request ultimately call this. - * Prefer get, del, post and patch - */ - request(verb, requestUrl, data, headers) { - return __awaiter(this, void 0, void 0, function* () { - if (this._disposed) { - throw new Error("Client has already been disposed."); - } - let info = this._prepareRequest(verb, requestUrl, headers); - // Only perform retries on reads since writes may not be idempotent. - let maxTries = (this._allowRetries && RetryableHttpVerbs.indexOf(verb) != -1) ? this._maxRetries + 1 : 1; - let numTries = 0; - let response; - while (numTries < maxTries) { - response = yield this.requestRaw(info, data); - // Check if it's an authentication challenge - if (response && response.message && response.message.statusCode === HttpCodes.Unauthorized) { - let authenticationHandler; - for (let i = 0; i < this.handlers.length; i++) { - if (this.handlers[i].canHandleAuthentication(response)) { - authenticationHandler = this.handlers[i]; - break; - } - } - if (authenticationHandler) { - return authenticationHandler.handleAuthentication(this, info, data); - } - else { - // We have received an unauthorized response but have no handlers to handle it. - // Let the response return to the caller. - return response; - } - } - let redirectsRemaining = this._maxRedirects; - while (HttpRedirectCodes.indexOf(response.message.statusCode) != -1 - && this._allowRedirects - && redirectsRemaining > 0) { - const redirectUrl = response.message.headers["location"]; - if (!redirectUrl) { - // if there's no location to redirect to, we won't - break; - } - // we need to finish reading the response before reassigning response - // which will leak the open socket. - yield response.readBody(); - // let's make the request with the new redirectUrl - info = this._prepareRequest(verb, redirectUrl, headers); - response = yield this.requestRaw(info, data); - redirectsRemaining--; - } - if (HttpResponseRetryCodes.indexOf(response.message.statusCode) == -1) { - // If not a retry code, return immediately instead of retrying - return response; - } - numTries += 1; - if (numTries < maxTries) { - yield response.readBody(); - yield this._performExponentialBackoff(numTries); - } - } - return response; - }); - } - /** - * Needs to be called if keepAlive is set to true in request options. - */ - dispose() { - if (this._agent) { - this._agent.destroy(); - } - this._disposed = true; - } - /** - * Raw request. - * @param info - * @param data - */ - requestRaw(info, data) { - return new Promise((resolve, reject) => { - let callbackForResult = function (err, res) { - if (err) { - reject(err); - } - resolve(res); - }; - this.requestRawWithCallback(info, data, callbackForResult); - }); - } - /** - * Raw request with callback. - * @param info - * @param data - * @param onResult - */ - requestRawWithCallback(info, data, onResult) { - let socket; - let isDataString = typeof (data) === 'string'; - if (typeof (data) === 'string') { - info.options.headers["Content-Length"] = Buffer.byteLength(data, 'utf8'); - } - let callbackCalled = false; - let handleResult = (err, res) => { - if (!callbackCalled) { - callbackCalled = true; - onResult(err, res); - } - }; - let req = info.httpModule.request(info.options, (msg) => { - let res = new HttpClientResponse(msg); - handleResult(null, res); - }); - req.on('socket', (sock) => { - socket = sock; - }); - // If we ever get disconnected, we want the socket to timeout eventually - req.setTimeout(this._socketTimeout || 3 * 60000, () => { - if (socket) { - socket.end(); - } - handleResult(new Error('Request timeout: ' + info.options.path), null); - }); - req.on('error', function (err) { - // err has statusCode property - // res should have headers - handleResult(err, null); - }); - if (data && typeof (data) === 'string') { - req.write(data, 'utf8'); - } - if (data && typeof (data) !== 'string') { - data.on('close', function () { - req.end(); - }); - data.pipe(req); - } - else { - req.end(); - } - } - _prepareRequest(method, requestUrl, headers) { - const info = {}; - info.parsedUrl = url.parse(requestUrl); - const usingSsl = info.parsedUrl.protocol === 'https:'; - info.httpModule = usingSsl ? https : http; - const defaultPort = usingSsl ? 443 : 80; - info.options = {}; - info.options.host = info.parsedUrl.hostname; - info.options.port = info.parsedUrl.port ? parseInt(info.parsedUrl.port) : defaultPort; - info.options.path = (info.parsedUrl.pathname || '') + (info.parsedUrl.search || ''); - info.options.method = method; - info.options.headers = this._mergeHeaders(headers); - info.options.headers["user-agent"] = this.userAgent; - info.options.agent = this._getAgent(requestUrl); - // gives handlers an opportunity to participate - if (this.handlers && !this._isPresigned(requestUrl)) { - this.handlers.forEach((handler) => { - handler.prepareRequest(info.options); - }); - } - return info; - } - _isPresigned(requestUrl) { - if (this.requestOptions && this.requestOptions.presignedUrlPatterns) { - const patterns = this.requestOptions.presignedUrlPatterns; - for (let i = 0; i < patterns.length; i++) { - if (requestUrl.match(patterns[i])) { - return true; - } - } - } - return false; - } - _mergeHeaders(headers) { - const lowercaseKeys = obj => Object.keys(obj).reduce((c, k) => (c[k.toLowerCase()] = obj[k], c), {}); - if (this.requestOptions && this.requestOptions.headers) { - return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers)); - } - return lowercaseKeys(headers || {}); - } - _getAgent(requestUrl) { - let agent; - let proxy = this._getProxy(requestUrl); - let useProxy = proxy.proxyUrl && proxy.proxyUrl.hostname && !this._isBypassProxy(requestUrl); - if (this._keepAlive && useProxy) { - agent = this._proxyAgent; - } - if (this._keepAlive && !useProxy) { - agent = this._agent; - } - // if agent is already assigned use that agent. - if (!!agent) { - return agent; - } - let parsedUrl = url.parse(requestUrl); - const usingSsl = parsedUrl.protocol === 'https:'; - let maxSockets = 100; - if (!!this.requestOptions) { - maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets; - } - if (useProxy) { - // If using proxy, need tunnel - if (!tunnel) { - tunnel = require('tunnel'); - } - const agentOptions = { - maxSockets: maxSockets, - keepAlive: this._keepAlive, - proxy: { - proxyAuth: proxy.proxyAuth, - host: proxy.proxyUrl.hostname, - port: proxy.proxyUrl.port - }, - }; - let tunnelAgent; - const overHttps = proxy.proxyUrl.protocol === 'https:'; - if (usingSsl) { - tunnelAgent = overHttps ? tunnel.httpsOverHttps : tunnel.httpsOverHttp; - } - else { - tunnelAgent = overHttps ? tunnel.httpOverHttps : tunnel.httpOverHttp; - } - agent = tunnelAgent(agentOptions); - this._proxyAgent = agent; - } - // if reusing agent across request and tunneling agent isn't assigned create a new agent - if (this._keepAlive && !agent) { - const options = { keepAlive: this._keepAlive, maxSockets: maxSockets }; - agent = usingSsl ? new https.Agent(options) : new http.Agent(options); - this._agent = agent; - } - // if not using private agent and tunnel agent isn't setup then use global agent - if (!agent) { - agent = usingSsl ? https.globalAgent : http.globalAgent; - } - if (usingSsl && this._ignoreSslError) { - // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process - // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options - // we have to cast it to any and change it directly - agent.options = Object.assign(agent.options || {}, { rejectUnauthorized: false }); - } - if (usingSsl && this._certConfig) { - agent.options = Object.assign(agent.options || {}, { ca: this._ca, cert: this._cert, key: this._key, passphrase: this._certConfig.passphrase }); - } - return agent; - } - _getProxy(requestUrl) { - const parsedUrl = url.parse(requestUrl); - let usingSsl = parsedUrl.protocol === 'https:'; - let proxyConfig = this._httpProxy; - // fallback to http_proxy and https_proxy env - let https_proxy = process.env[EnvironmentVariables.HTTPS_PROXY]; - let http_proxy = process.env[EnvironmentVariables.HTTP_PROXY]; - if (!proxyConfig) { - if (https_proxy && usingSsl) { - proxyConfig = { - proxyUrl: https_proxy - }; - } - else if (http_proxy) { - proxyConfig = { - proxyUrl: http_proxy - }; - } - } - let proxyUrl; - let proxyAuth; - if (proxyConfig) { - if (proxyConfig.proxyUrl.length > 0) { - proxyUrl = url.parse(proxyConfig.proxyUrl); - } - if (proxyConfig.proxyUsername || proxyConfig.proxyPassword) { - proxyAuth = proxyConfig.proxyUsername + ":" + proxyConfig.proxyPassword; - } - } - return { proxyUrl: proxyUrl, proxyAuth: proxyAuth }; - } - _isBypassProxy(requestUrl) { - if (!this._httpProxyBypassHosts) { - return false; - } - let bypass = false; - this._httpProxyBypassHosts.forEach(bypassHost => { - if (bypassHost.test(requestUrl)) { - bypass = true; - } - }); - return bypass; - } - _performExponentialBackoff(retryNumber) { - retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); - const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); - return new Promise(resolve => setTimeout(() => resolve(), ms)); - } -} -exports.HttpClient = HttpClient; diff --git a/node_modules/typed-rest-client/Index.d.ts b/node_modules/typed-rest-client/Index.d.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/node_modules/typed-rest-client/Index.js b/node_modules/typed-rest-client/Index.js deleted file mode 100644 index c8ad2e549..000000000 --- a/node_modules/typed-rest-client/Index.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/node_modules/typed-rest-client/Interfaces.d.ts b/node_modules/typed-rest-client/Interfaces.d.ts deleted file mode 100644 index 5900e26eb..000000000 --- a/node_modules/typed-rest-client/Interfaces.d.ts +++ /dev/null @@ -1,62 +0,0 @@ -/// -import http = require("http"); -import url = require("url"); -export interface IHeaders { - [key: string]: any; -} -export interface IBasicCredentials { - username: string; - password: string; -} -export interface IHttpClient { - options(requestUrl: string, additionalHeaders?: IHeaders): Promise; - get(requestUrl: string, additionalHeaders?: IHeaders): Promise; - del(requestUrl: string, additionalHeaders?: IHeaders): Promise; - post(requestUrl: string, data: string, additionalHeaders?: IHeaders): Promise; - patch(requestUrl: string, data: string, additionalHeaders?: IHeaders): Promise; - put(requestUrl: string, data: string, additionalHeaders?: IHeaders): Promise; - sendStream(verb: string, requestUrl: string, stream: NodeJS.ReadableStream, additionalHeaders?: IHeaders): Promise; - request(verb: string, requestUrl: string, data: string | NodeJS.ReadableStream, headers: IHeaders): Promise; - requestRaw(info: IRequestInfo, data: string | NodeJS.ReadableStream): Promise; - requestRawWithCallback(info: IRequestInfo, data: string | NodeJS.ReadableStream, onResult: (err: any, res: IHttpClientResponse) => void): void; -} -export interface IRequestHandler { - prepareRequest(options: http.RequestOptions): void; - canHandleAuthentication(response: IHttpClientResponse): boolean; - handleAuthentication(httpClient: IHttpClient, requestInfo: IRequestInfo, objs: any): Promise; -} -export interface IHttpClientResponse { - message: http.IncomingMessage; - readBody(): Promise; -} -export interface IRequestInfo { - options: http.RequestOptions; - parsedUrl: url.Url; - httpModule: any; -} -export interface IRequestOptions { - headers?: IHeaders; - socketTimeout?: number; - ignoreSslError?: boolean; - proxy?: IProxyConfiguration; - cert?: ICertConfiguration; - allowRedirects?: boolean; - maxRedirects?: number; - maxSockets?: number; - keepAlive?: boolean; - presignedUrlPatterns?: RegExp[]; - allowRetries?: boolean; - maxRetries?: number; -} -export interface IProxyConfiguration { - proxyUrl: string; - proxyUsername?: string; - proxyPassword?: string; - proxyBypassHosts?: string[]; -} -export interface ICertConfiguration { - caFile?: string; - certFile?: string; - keyFile?: string; - passphrase?: string; -} diff --git a/node_modules/typed-rest-client/Interfaces.js b/node_modules/typed-rest-client/Interfaces.js deleted file mode 100644 index 2bc6be205..000000000 --- a/node_modules/typed-rest-client/Interfaces.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -; diff --git a/node_modules/typed-rest-client/LICENSE b/node_modules/typed-rest-client/LICENSE deleted file mode 100644 index 8cddf7ed9..000000000 --- a/node_modules/typed-rest-client/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -Typed Rest Client for Node.js - -Copyright (c) Microsoft Corporation - -All rights reserved. - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/typed-rest-client/README.md b/node_modules/typed-rest-client/README.md deleted file mode 100644 index 0c2b76812..000000000 --- a/node_modules/typed-rest-client/README.md +++ /dev/null @@ -1,100 +0,0 @@ -[![Build Status](https://dev.azure.com/ms/typed-rest-client/_apis/build/status/Microsoft.typed-rest-client?branchName=master)](https://dev.azure.com/ms/typed-rest-client/_build/latest?definitionId=42&branchName=master) - -# Typed REST and HTTP Client with TypeScript Typings - -A lightweight REST and HTTP client optimized for use with TypeScript with generics and async await. - -## Features - - - REST and HTTP client with TypeScript generics and async/await/Promises - - Typings included so no need to acquire separately (great for intellisense and no versioning drift) - - Basic, Bearer and NTLM Support out of the box. Extensible handlers for others. - - Proxy support - - Certificate support (Self-signed server and client cert) - - Redirects supported - -Intellisense and compile support: - -![intellisense](./docs/intellisense.png) - -## Install - -``` -npm install typed-rest-client --save -``` - -Or to install the latest preview: -``` -npm install typed-rest-client@preview --save -``` - -## Samples - -See the [samples](./samples) for complete coding examples. Also see the [REST](./test/tests/resttests.ts) and [HTTP](./test/tests/httptests.ts) tests for detailed examples. - -## Errors - -### HTTP - -The HTTP client does not throw unless truly exceptional. - -* A request that successfully executes resulting in a 404, 500 etc... will return a response object with a status code and a body. -* Redirects (3xx) will be followed by default. - - -See [HTTP tests](./test/tests/httptests.ts) for detailed examples. - -### REST - -The REST client is a high-level client which uses the HTTP client. Its responsibility is to turn a body into a typed resource object. - -* A 200 will be success. -* Redirects (3xx) will be followed. -* A 404 will not throw but the result object will be null and the result statusCode will be set. -* Other 4xx and 5xx errors will throw. The status code will be attached to the error object. If a RESTful error object is returned (`{ message: xxx}`), then the error message will be that. Otherwise, it will be a generic, `Failed Request: (xxx)`. - -See [REST tests](./test/tests/resttests.ts) for detailed examples. - -## Debugging - -To enable detailed console logging of all HTTP requests and responses, set the NODE_DEBUG environment varible: - -``` -export NODE_DEBUG=http -``` - -or - -``` -set NODE_DEBUG=http -``` - - - -## Node support - -The typed-rest-client is built using the latest LTS version of Node 8. We also support the latest LTS for Node 4 and Node 6. - -## Contributing - -To contribute to this repository, see the [contribution guide](./CONTRIBUTING.md) - -To build: - -```bash -$ npm run build -``` - -To run all tests: -```bash -$ npm test -``` - -To just run unit tests: -```bash -$ npm run units -``` - -## Code of Conduct - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. diff --git a/node_modules/typed-rest-client/RestClient.d.ts b/node_modules/typed-rest-client/RestClient.d.ts deleted file mode 100644 index 74b33cba2..000000000 --- a/node_modules/typed-rest-client/RestClient.d.ts +++ /dev/null @@ -1,77 +0,0 @@ -/// -import httpm = require('./HttpClient'); -import ifm = require("./Interfaces"); -export interface IRestResponse { - statusCode: number; - result: T | null; - headers: Object; -} -export interface IRequestOptions { - acceptHeader?: string; - additionalHeaders?: ifm.IHeaders; - responseProcessor?: Function; - deserializeDates?: boolean; -} -export declare class RestClient { - client: httpm.HttpClient; - versionParam: string; - /** - * Creates an instance of the RestClient - * @constructor - * @param {string} userAgent - userAgent for requests - * @param {string} baseUrl - (Optional) If not specified, use full urls per request. If supplied and a function passes a relative url, it will be appended to this - * @param {ifm.IRequestHandler[]} handlers - handlers are typically auth handlers (basic, bearer, ntlm supplied) - * @param {ifm.IRequestOptions} requestOptions - options for each http requests (http proxy setting, socket timeout) - */ - constructor(userAgent: string, baseUrl?: string, handlers?: ifm.IRequestHandler[], requestOptions?: ifm.IRequestOptions); - private _baseUrl; - /** - * Gets a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} requestUrl - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - options(requestUrl: string, options?: IRequestOptions): Promise>; - /** - * Gets a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified url or relative path - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - get(resource: string, options?: IRequestOptions): Promise>; - /** - * Deletes a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - del(resource: string, options?: IRequestOptions): Promise>; - /** - * Creates resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - create(resource: string, resources: any, options?: IRequestOptions): Promise>; - /** - * Updates resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - update(resource: string, resources: any, options?: IRequestOptions): Promise>; - /** - * Replaces resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - replace(resource: string, resources: any, options?: IRequestOptions): Promise>; - uploadStream(verb: string, requestUrl: string, stream: NodeJS.ReadableStream, options?: IRequestOptions): Promise>; - private _headersFromOptions(options, contentType?); - private static dateTimeDeserializer(key, value); - private _processResponse(res, options); -} diff --git a/node_modules/typed-rest-client/RestClient.js b/node_modules/typed-rest-client/RestClient.js deleted file mode 100644 index 1548b8f68..000000000 --- a/node_modules/typed-rest-client/RestClient.js +++ /dev/null @@ -1,217 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const httpm = require("./HttpClient"); -const util = require("./Util"); -class RestClient { - /** - * Creates an instance of the RestClient - * @constructor - * @param {string} userAgent - userAgent for requests - * @param {string} baseUrl - (Optional) If not specified, use full urls per request. If supplied and a function passes a relative url, it will be appended to this - * @param {ifm.IRequestHandler[]} handlers - handlers are typically auth handlers (basic, bearer, ntlm supplied) - * @param {ifm.IRequestOptions} requestOptions - options for each http requests (http proxy setting, socket timeout) - */ - constructor(userAgent, baseUrl, handlers, requestOptions) { - this.client = new httpm.HttpClient(userAgent, handlers, requestOptions); - if (baseUrl) { - this._baseUrl = baseUrl; - } - } - /** - * Gets a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} requestUrl - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - options(requestUrl, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(requestUrl, this._baseUrl); - let res = yield this.client.options(url, this._headersFromOptions(options)); - return this._processResponse(res, options); - }); - } - /** - * Gets a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified url or relative path - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - get(resource, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(resource, this._baseUrl); - let res = yield this.client.get(url, this._headersFromOptions(options)); - return this._processResponse(res, options); - }); - } - /** - * Deletes a resource from an endpoint - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - del(resource, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(resource, this._baseUrl); - let res = yield this.client.del(url, this._headersFromOptions(options)); - return this._processResponse(res, options); - }); - } - /** - * Creates resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - create(resource, resources, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(resource, this._baseUrl); - let headers = this._headersFromOptions(options, true); - let data = JSON.stringify(resources, null, 2); - let res = yield this.client.post(url, data, headers); - return this._processResponse(res, options); - }); - } - /** - * Updates resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - update(resource, resources, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(resource, this._baseUrl); - let headers = this._headersFromOptions(options, true); - let data = JSON.stringify(resources, null, 2); - let res = yield this.client.patch(url, data, headers); - return this._processResponse(res, options); - }); - } - /** - * Replaces resource(s) from an endpoint - * T type of object returned. - * Be aware that not found returns a null. Other error conditions reject the promise - * @param {string} resource - fully qualified or relative url - * @param {IRequestOptions} requestOptions - (optional) requestOptions object - */ - replace(resource, resources, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(resource, this._baseUrl); - let headers = this._headersFromOptions(options, true); - let data = JSON.stringify(resources, null, 2); - let res = yield this.client.put(url, data, headers); - return this._processResponse(res, options); - }); - } - uploadStream(verb, requestUrl, stream, options) { - return __awaiter(this, void 0, void 0, function* () { - let url = util.getUrl(requestUrl, this._baseUrl); - let headers = this._headersFromOptions(options, true); - let res = yield this.client.sendStream(verb, url, stream, headers); - return this._processResponse(res, options); - }); - } - _headersFromOptions(options, contentType) { - options = options || {}; - let headers = options.additionalHeaders || {}; - headers["Accept"] = options.acceptHeader || "application/json"; - if (contentType) { - let found = false; - for (let header in headers) { - if (header.toLowerCase() == "content-type") { - found = true; - } - } - if (!found) { - headers["Content-Type"] = 'application/json; charset=utf-8'; - } - } - return headers; - } - static dateTimeDeserializer(key, value) { - if (typeof value === 'string') { - let a = new Date(value); - if (!isNaN(a.valueOf())) { - return a; - } - } - return value; - } - _processResponse(res, options) { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { - const statusCode = res.message.statusCode; - const response = { - statusCode: statusCode, - result: null, - headers: {} - }; - // not found leads to null obj returned - if (statusCode == httpm.HttpCodes.NotFound) { - resolve(response); - } - let obj; - let contents; - // get the result from the body - try { - contents = yield res.readBody(); - if (contents && contents.length > 0) { - if (options && options.deserializeDates) { - obj = JSON.parse(contents, RestClient.dateTimeDeserializer); - } - else { - obj = JSON.parse(contents); - } - if (options && options.responseProcessor) { - response.result = options.responseProcessor(obj); - } - else { - response.result = obj; - } - } - response.headers = res.message.headers; - } - catch (err) { - // Invalid resource (contents not json); leaving result obj null - } - // note that 3xx redirects are handled by the http layer. - if (statusCode > 299) { - let msg; - // if exception/error in body, attempt to get better error - if (obj && obj.message) { - msg = obj.message; - } - else if (contents && contents.length > 0) { - // it may be the case that the exception is in the body message as string - msg = contents; - } - else { - msg = "Failed request: (" + statusCode + ")"; - } - let err = new Error(msg); - // attach statusCode and body obj (if available) to the error object - err['statusCode'] = statusCode; - if (response.result) { - err['result'] = response.result; - } - reject(err); - } - else { - resolve(response); - } - })); - }); - } -} -exports.RestClient = RestClient; diff --git a/node_modules/typed-rest-client/ThirdPartyNotice.txt b/node_modules/typed-rest-client/ThirdPartyNotice.txt deleted file mode 100644 index 7bd67743d..000000000 --- a/node_modules/typed-rest-client/ThirdPartyNotice.txt +++ /dev/null @@ -1,1318 +0,0 @@ - -THIRD-PARTY SOFTWARE NOTICES AND INFORMATION -Do Not Translate or Localize - -This Visual Studio Team Services extension (vsts-task-lib) is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Visual Studio Team Services extension. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. - -1. @types/glob (https://www.github.com/DefinitelyTyped/DefinitelyTyped.git) -2. @types/minimatch (https://www.github.com/DefinitelyTyped/DefinitelyTyped.git) -3. @types/mocha (https://www.github.com/DefinitelyTyped/DefinitelyTyped.git) -4. @types/node (https://www.github.com/DefinitelyTyped/DefinitelyTyped.git) -5. @types/shelljs (https://www.github.com/DefinitelyTyped/DefinitelyTyped.git) -6. balanced-match (git://github.com/juliangruber/balanced-match.git) -7. brace-expansion (git://github.com/juliangruber/brace-expansion.git) -8. browser-stdout (git+ssh://git@github.com/kumavis/browser-stdout.git) -9. commander (git+https://github.com/tj/commander.js.git) -10. concat-map (git://github.com/substack/node-concat-map.git) -11. debug (git://github.com/visionmedia/debug.git) -12. diff (git://github.com/kpdecker/jsdiff.git) -13. escape-string-regexp (git+https://github.com/sindresorhus/escape-string-regexp.git) -14. fs.realpath (git+https://github.com/isaacs/fs.realpath.git) -15. glob (git://github.com/isaacs/node-glob.git) -16. graceful-readlink (git://github.com/zhiyelee/graceful-readlink.git) -17. growl (git://github.com/tj/node-growl.git) -18. has-flag (git+https://github.com/sindresorhus/has-flag.git) -19. he (git+https://github.com/mathiasbynens/he.git) -20. inflight (git+https://github.com/npm/inflight.git) -21. inherits (git://github.com/isaacs/inherits.git) -22. interpret (git://github.com/tkellen/node-interpret.git) -23. json3 (git://github.com/bestiejs/json3.git) -24. lodash.create (git+https://github.com/lodash/lodash.git) -25. lodash.isarguments (git+https://github.com/lodash/lodash.git) -26. lodash.isarray (git+https://github.com/lodash/lodash.git) -27. lodash.keys (git+https://github.com/lodash/lodash.git) -28. lodash._baseassign (git+https://github.com/lodash/lodash.git) -29. lodash._basecopy (git+https://github.com/lodash/lodash.git) -30. lodash._basecreate (git+https://github.com/lodash/lodash.git) -31. lodash._getnative (git+https://github.com/lodash/lodash.git) -32. lodash._isiterateecall (git+https://github.com/lodash/lodash.git) -33. minimatch (git://github.com/isaacs/minimatch.git) -34. minimist (git://github.com/substack/minimist.git) -35. mkdirp (git+https://github.com/substack/node-mkdirp.git) -36. mocha (git+https://github.com/mochajs/mocha.git) -37. ms (git+https://github.com/zeit/ms.git) -38. once (git://github.com/isaacs/once.git) -39. path-is-absolute (git+https://github.com/sindresorhus/path-is-absolute.git) -40. path-parse (git+https://github.com/jbgutierrez/path-parse.git) -41. rechoir (git://github.com/tkellen/node-rechoir.git) -42. resolve (git://github.com/substack/node-resolve.git) -43. semver (git://github.com/npm/node-semver.git) -44. shelljs (git://github.com/shelljs/shelljs.git) -45. supports-color (git+https://github.com/chalk/supports-color.git) -46. tunnel (git+https://github.com/koichik/node-tunnel.git) -47. typescript (git+https://github.com/Microsoft/TypeScript.git) -48. underscore (git://github.com/jashkenas/underscore.git) -49. wrappy (git+https://github.com/npm/wrappy.git) - - -%% @types/glob NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -========================================= -END OF @types/glob NOTICES, INFORMATION, AND LICENSE - -%% @types/minimatch NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -========================================= -END OF @types/minimatch NOTICES, INFORMATION, AND LICENSE - -%% @types/mocha NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -========================================= -END OF @types/mocha NOTICES, INFORMATION, AND LICENSE - -%% @types/node NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -========================================= -END OF @types/node NOTICES, INFORMATION, AND LICENSE - -%% @types/shelljs NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE -========================================= -END OF @types/shelljs NOTICES, INFORMATION, AND LICENSE - -%% balanced-match NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -(MIT) - -Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -========================================= -END OF balanced-match NOTICES, INFORMATION, AND LICENSE - -%% brace-expansion NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -No license text available. -========================================= -END OF brace-expansion NOTICES, INFORMATION, AND LICENSE - -%% browser-stdout NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -No license text available. -========================================= -END OF browser-stdout NOTICES, INFORMATION, AND LICENSE - -%% commander NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -(The MIT License) - -Copyright (c) 2011 TJ Holowaychuk - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF commander NOTICES, INFORMATION, AND LICENSE - -%% concat-map NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -This software is released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF concat-map NOTICES, INFORMATION, AND LICENSE - -%% debug NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -(The MIT License) - -Copyright (c) 2014 TJ Holowaychuk - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF debug NOTICES, INFORMATION, AND LICENSE - -%% diff NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Software License Agreement (BSD License) - -Copyright (c) 2009-2015, Kevin Decker - -All rights reserved. - -Redistribution and use of this software in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above - copyright notice, this list of conditions and the - following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the - following disclaimer in the documentation and/or other - materials provided with the distribution. - -* Neither the name of Kevin Decker nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER -IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -========================================= -END OF diff NOTICES, INFORMATION, AND LICENSE - -%% escape-string-regexp NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF escape-string-regexp NOTICES, INFORMATION, AND LICENSE - -%% fs.realpath NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ----- - -This library bundles a version of the `fs.realpath` and `fs.realpathSync` -methods from Node.js v0.10 under the terms of the Node.js MIT license. - -Node's license follows, also included at the header of `old.js` which contains -the licensed code: - - Copyright Joyent, Inc. and other Node contributors. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. -========================================= -END OF fs.realpath NOTICES, INFORMATION, AND LICENSE - -%% glob NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF glob NOTICES, INFORMATION, AND LICENSE - -%% graceful-readlink NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) 2015 Zhiye Li - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -========================================= -END OF graceful-readlink NOTICES, INFORMATION, AND LICENSE - -%% growl NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -No license text available. -========================================= -END OF growl NOTICES, INFORMATION, AND LICENSE - -%% has-flag NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF has-flag NOTICES, INFORMATION, AND LICENSE - -%% he NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright Mathias Bynens - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF he NOTICES, INFORMATION, AND LICENSE - -%% inflight NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF inflight NOTICES, INFORMATION, AND LICENSE - -%% inherits NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF inherits NOTICES, INFORMATION, AND LICENSE - -%% interpret NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) 2014 Tyler Kellen - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF interpret NOTICES, INFORMATION, AND LICENSE - -%% json3 NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) 2012-2014 Kit Cambridge. -http://kitcambridge.be/ - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -========================================= -END OF json3 NOTICES, INFORMATION, AND LICENSE - -%% lodash.create NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash.create NOTICES, INFORMATION, AND LICENSE - -%% lodash.isarguments NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright jQuery Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. -========================================= -END OF lodash.isarguments NOTICES, INFORMATION, AND LICENSE - -%% lodash.isarray NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash.isarray NOTICES, INFORMATION, AND LICENSE - -%% lodash.keys NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash.keys NOTICES, INFORMATION, AND LICENSE - -%% lodash._baseassign NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash._baseassign NOTICES, INFORMATION, AND LICENSE - -%% lodash._basecopy NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash._basecopy NOTICES, INFORMATION, AND LICENSE - -%% lodash._basecreate NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash._basecreate NOTICES, INFORMATION, AND LICENSE - -%% lodash._getnative NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash._getnative NOTICES, INFORMATION, AND LICENSE - -%% lodash._isiterateecall NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2012-2015 The Dojo Foundation -Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF lodash._isiterateecall NOTICES, INFORMATION, AND LICENSE - -%% minimatch NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF minimatch NOTICES, INFORMATION, AND LICENSE - -%% minimist NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -This software is released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF minimist NOTICES, INFORMATION, AND LICENSE - -%% mkdirp NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright 2010 James Halliday (mail@substack.net) - -This project is free software released under the MIT/X11 license: - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF mkdirp NOTICES, INFORMATION, AND LICENSE - -%% mocha NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -(The MIT License) - -Copyright (c) 2011-2017 JS Foundation and contributors, https://js.foundation - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF mocha NOTICES, INFORMATION, AND LICENSE - -%% ms NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) 2016 Zeit, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -========================================= -END OF ms NOTICES, INFORMATION, AND LICENSE - -%% once NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF once NOTICES, INFORMATION, AND LICENSE - -%% path-is-absolute NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF path-is-absolute NOTICES, INFORMATION, AND LICENSE - -%% path-parse NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -No license text available. -========================================= -END OF path-parse NOTICES, INFORMATION, AND LICENSE - -%% rechoir NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) 2015 Tyler Kellen - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF rechoir NOTICES, INFORMATION, AND LICENSE - -%% resolve NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -This software is released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF resolve NOTICES, INFORMATION, AND LICENSE - -%% semver NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) Isaac Z. Schlueter ("Author") -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN -IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -========================================= -END OF semver NOTICES, INFORMATION, AND LICENSE - -%% shelljs NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) 2012, Artur Adib -All rights reserved. - -You may use this project under the terms of the New BSD license as follows: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Artur Adib nor the - names of the contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL ARTUR ADIB BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -========================================= -END OF shelljs NOTICES, INFORMATION, AND LICENSE - -%% supports-color NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF supports-color NOTICES, INFORMATION, AND LICENSE - -%% tunnel NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The MIT License (MIT) - -Copyright (c) 2012 Koichi Kobayashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -========================================= -END OF tunnel NOTICES, INFORMATION, AND LICENSE - -%% typescript NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this License; and - -You must cause any modified files to carry prominent notices stating that You changed the files; and - -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS -========================================= -END OF typescript NOTICES, INFORMATION, AND LICENSE - -%% underscore NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative -Reporters & Editors - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF underscore NOTICES, INFORMATION, AND LICENSE - -%% wrappy NOTICES, INFORMATION, AND LICENSE BEGIN HERE -========================================= -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -========================================= -END OF wrappy NOTICES, INFORMATION, AND LICENSE - diff --git a/node_modules/typed-rest-client/Util.d.ts b/node_modules/typed-rest-client/Util.d.ts deleted file mode 100644 index 32757e82a..000000000 --- a/node_modules/typed-rest-client/Util.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * creates an url from a request url and optional base url (http://server:8080) - * @param {string} resource - a fully qualified url or relative path - * @param {string} baseUrl - an optional baseUrl (http://server:8080) - * @return {string} - resultant url - */ -export declare function getUrl(resource: string, baseUrl?: string): string; diff --git a/node_modules/typed-rest-client/Util.js b/node_modules/typed-rest-client/Util.js deleted file mode 100644 index 32981d133..000000000 --- a/node_modules/typed-rest-client/Util.js +++ /dev/null @@ -1,35 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -const url = require("url"); -const path = require("path"); -/** - * creates an url from a request url and optional base url (http://server:8080) - * @param {string} resource - a fully qualified url or relative path - * @param {string} baseUrl - an optional baseUrl (http://server:8080) - * @return {string} - resultant url - */ -function getUrl(resource, baseUrl) { - const pathApi = path.posix || path; - if (!baseUrl) { - return resource; - } - else if (!resource) { - return baseUrl; - } - else { - const base = url.parse(baseUrl); - const resultantUrl = url.parse(resource); - // resource (specific per request) elements take priority - resultantUrl.protocol = resultantUrl.protocol || base.protocol; - resultantUrl.auth = resultantUrl.auth || base.auth; - resultantUrl.host = resultantUrl.host || base.host; - resultantUrl.pathname = pathApi.resolve(base.pathname, resultantUrl.pathname); - if (!resultantUrl.pathname.endsWith('/') && resource.endsWith('/')) { - resultantUrl.pathname += '/'; - } - return url.format(resultantUrl); - } -} -exports.getUrl = getUrl; diff --git a/node_modules/typed-rest-client/handlers/basiccreds.d.ts b/node_modules/typed-rest-client/handlers/basiccreds.d.ts deleted file mode 100644 index 17ade55e4..000000000 --- a/node_modules/typed-rest-client/handlers/basiccreds.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -import ifm = require('../Interfaces'); -export declare class BasicCredentialHandler implements ifm.IRequestHandler { - username: string; - password: string; - constructor(username: string, password: string); - prepareRequest(options: any): void; - canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; - handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; -} diff --git a/node_modules/typed-rest-client/handlers/basiccreds.js b/node_modules/typed-rest-client/handlers/basiccreds.js deleted file mode 100644 index 384a39cb0..000000000 --- a/node_modules/typed-rest-client/handlers/basiccreds.js +++ /dev/null @@ -1,24 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -class BasicCredentialHandler { - constructor(username, password) { - this.username = username; - this.password = password; - } - // currently implements pre-authorization - // TODO: support preAuth = false where it hooks on 401 - prepareRequest(options) { - options.headers['Authorization'] = 'Basic ' + new Buffer(this.username + ':' + this.password).toString('base64'); - options.headers['X-TFS-FedAuthRedirect'] = 'Suppress'; - } - // This handler cannot handle 401 - canHandleAuthentication(response) { - return false; - } - handleAuthentication(httpClient, requestInfo, objs) { - return null; - } -} -exports.BasicCredentialHandler = BasicCredentialHandler; diff --git a/node_modules/typed-rest-client/handlers/bearertoken.d.ts b/node_modules/typed-rest-client/handlers/bearertoken.d.ts deleted file mode 100644 index c08496fdd..000000000 --- a/node_modules/typed-rest-client/handlers/bearertoken.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -import ifm = require('../Interfaces'); -export declare class BearerCredentialHandler implements ifm.IRequestHandler { - token: string; - constructor(token: string); - prepareRequest(options: any): void; - canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; - handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; -} diff --git a/node_modules/typed-rest-client/handlers/bearertoken.js b/node_modules/typed-rest-client/handlers/bearertoken.js deleted file mode 100644 index dad27a7c9..000000000 --- a/node_modules/typed-rest-client/handlers/bearertoken.js +++ /dev/null @@ -1,23 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -class BearerCredentialHandler { - constructor(token) { - this.token = token; - } - // currently implements pre-authorization - // TODO: support preAuth = false where it hooks on 401 - prepareRequest(options) { - options.headers['Authorization'] = 'Bearer ' + this.token; - options.headers['X-TFS-FedAuthRedirect'] = 'Suppress'; - } - // This handler cannot handle 401 - canHandleAuthentication(response) { - return false; - } - handleAuthentication(httpClient, requestInfo, objs) { - return null; - } -} -exports.BearerCredentialHandler = BearerCredentialHandler; diff --git a/node_modules/typed-rest-client/handlers/ntlm.d.ts b/node_modules/typed-rest-client/handlers/ntlm.d.ts deleted file mode 100644 index 2f509b0ed..000000000 --- a/node_modules/typed-rest-client/handlers/ntlm.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -/// -import ifm = require('../Interfaces'); -import http = require("http"); -export declare class NtlmCredentialHandler implements ifm.IRequestHandler { - private _ntlmOptions; - constructor(username: string, password: string, workstation?: string, domain?: string); - prepareRequest(options: http.RequestOptions): void; - canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; - handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; - private handleAuthenticationPrivate(httpClient, requestInfo, objs, finalCallback); - private sendType1Message(httpClient, requestInfo, objs, finalCallback); - private sendType3Message(httpClient, requestInfo, objs, res, callback); -} diff --git a/node_modules/typed-rest-client/handlers/ntlm.js b/node_modules/typed-rest-client/handlers/ntlm.js deleted file mode 100644 index 5fbca821b..000000000 --- a/node_modules/typed-rest-client/handlers/ntlm.js +++ /dev/null @@ -1,137 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -const http = require("http"); -const https = require("https"); -const _ = require("underscore"); -const ntlm = require("../opensource/node-http-ntlm/ntlm"); -class NtlmCredentialHandler { - constructor(username, password, workstation, domain) { - this._ntlmOptions = {}; - this._ntlmOptions.username = username; - this._ntlmOptions.password = password; - if (domain !== undefined) { - this._ntlmOptions.domain = domain; - } - else { - this._ntlmOptions.domain = ''; - } - if (workstation !== undefined) { - this._ntlmOptions.workstation = workstation; - } - else { - this._ntlmOptions.workstation = ''; - } - } - prepareRequest(options) { - // No headers or options need to be set. We keep the credentials on the handler itself. - // If a (proxy) agent is set, remove it as we don't support proxy for NTLM at this time - if (options.agent) { - delete options.agent; - } - } - canHandleAuthentication(response) { - if (response && response.message && response.message.statusCode === 401) { - // Ensure that we're talking NTLM here - // Once we have the www-authenticate header, split it so we can ensure we can talk NTLM - const wwwAuthenticate = response.message.headers['www-authenticate']; - if (wwwAuthenticate) { - const mechanisms = wwwAuthenticate.split(', '); - const index = mechanisms.indexOf("NTLM"); - if (index >= 0) { - return true; - } - } - } - return false; - } - handleAuthentication(httpClient, requestInfo, objs) { - return new Promise((resolve, reject) => { - const callbackForResult = function (err, res) { - if (err) { - reject(err); - } - // We have to readbody on the response before continuing otherwise there is a hang. - res.readBody().then(() => { - resolve(res); - }); - }; - this.handleAuthenticationPrivate(httpClient, requestInfo, objs, callbackForResult); - }); - } - handleAuthenticationPrivate(httpClient, requestInfo, objs, finalCallback) { - // Set up the headers for NTLM authentication - requestInfo.options = _.extend(requestInfo.options, { - username: this._ntlmOptions.username, - password: this._ntlmOptions.password, - domain: this._ntlmOptions.domain, - workstation: this._ntlmOptions.workstation - }); - if (httpClient.isSsl === true) { - requestInfo.options.agent = new https.Agent({ keepAlive: true }); - } - else { - requestInfo.options.agent = new http.Agent({ keepAlive: true }); - } - let self = this; - // The following pattern of sending the type1 message following immediately (in a setImmediate) is - // critical for the NTLM exchange to happen. If we removed setImmediate (or call in a different manner) - // the NTLM exchange will always fail with a 401. - this.sendType1Message(httpClient, requestInfo, objs, function (err, res) { - if (err) { - return finalCallback(err, null, null); - } - /// We have to readbody on the response before continuing otherwise there is a hang. - res.readBody().then(() => { - // It is critical that we have setImmediate here due to how connection requests are queued. - // If setImmediate is removed then the NTLM handshake will not work. - // setImmediate allows us to queue a second request on the same connection. If this second - // request is not queued on the connection when the first request finishes then node closes - // the connection. NTLM requires both requests to be on the same connection so we need this. - setImmediate(function () { - self.sendType3Message(httpClient, requestInfo, objs, res, finalCallback); - }); - }); - }); - } - // The following method is an adaptation of code found at https://github.com/SamDecrock/node-http-ntlm/blob/master/httpntlm.js - sendType1Message(httpClient, requestInfo, objs, finalCallback) { - const type1msg = ntlm.createType1Message(this._ntlmOptions); - const type1options = { - headers: { - 'Connection': 'keep-alive', - 'Authorization': type1msg - }, - timeout: requestInfo.options.timeout || 0, - agent: requestInfo.httpModule, - }; - const type1info = {}; - type1info.httpModule = requestInfo.httpModule; - type1info.parsedUrl = requestInfo.parsedUrl; - type1info.options = _.extend(type1options, _.omit(requestInfo.options, 'headers')); - return httpClient.requestRawWithCallback(type1info, objs, finalCallback); - } - // The following method is an adaptation of code found at https://github.com/SamDecrock/node-http-ntlm/blob/master/httpntlm.js - sendType3Message(httpClient, requestInfo, objs, res, callback) { - if (!res.message.headers && !res.message.headers['www-authenticate']) { - throw new Error('www-authenticate not found on response of second request'); - } - const type2msg = ntlm.parseType2Message(res.message.headers['www-authenticate']); - const type3msg = ntlm.createType3Message(type2msg, this._ntlmOptions); - const type3options = { - headers: { - 'Authorization': type3msg, - 'Connection': 'Close' - }, - agent: requestInfo.httpModule, - }; - const type3info = {}; - type3info.httpModule = requestInfo.httpModule; - type3info.parsedUrl = requestInfo.parsedUrl; - type3options.headers = _.extend(type3options.headers, requestInfo.options.headers); - type3info.options = _.extend(type3options, _.omit(requestInfo.options, 'headers')); - return httpClient.requestRawWithCallback(type3info, objs, callback); - } -} -exports.NtlmCredentialHandler = NtlmCredentialHandler; diff --git a/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts b/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts deleted file mode 100644 index 4bb77fdcb..000000000 --- a/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -import ifm = require('../Interfaces'); -export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler { - token: string; - constructor(token: string); - prepareRequest(options: any): void; - canHandleAuthentication(response: ifm.IHttpClientResponse): boolean; - handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise; -} diff --git a/node_modules/typed-rest-client/handlers/personalaccesstoken.js b/node_modules/typed-rest-client/handlers/personalaccesstoken.js deleted file mode 100644 index 4bb88f802..000000000 --- a/node_modules/typed-rest-client/handlers/personalaccesstoken.js +++ /dev/null @@ -1,23 +0,0 @@ -"use strict"; -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -Object.defineProperty(exports, "__esModule", { value: true }); -class PersonalAccessTokenCredentialHandler { - constructor(token) { - this.token = token; - } - // currently implements pre-authorization - // TODO: support preAuth = false where it hooks on 401 - prepareRequest(options) { - options.headers['Authorization'] = 'Basic ' + new Buffer('PAT:' + this.token).toString('base64'); - options.headers['X-TFS-FedAuthRedirect'] = 'Suppress'; - } - // This handler cannot handle 401 - canHandleAuthentication(response) { - return false; - } - handleAuthentication(httpClient, requestInfo, objs) { - return null; - } -} -exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler; diff --git a/node_modules/typed-rest-client/opensource/node-http-ntlm/ntlm.js b/node_modules/typed-rest-client/opensource/node-http-ntlm/ntlm.js deleted file mode 100644 index adf7602e7..000000000 --- a/node_modules/typed-rest-client/opensource/node-http-ntlm/ntlm.js +++ /dev/null @@ -1,389 +0,0 @@ -var crypto = require('crypto'); - -var flags = { - NTLM_NegotiateUnicode : 0x00000001, - NTLM_NegotiateOEM : 0x00000002, - NTLM_RequestTarget : 0x00000004, - NTLM_Unknown9 : 0x00000008, - NTLM_NegotiateSign : 0x00000010, - NTLM_NegotiateSeal : 0x00000020, - NTLM_NegotiateDatagram : 0x00000040, - NTLM_NegotiateLanManagerKey : 0x00000080, - NTLM_Unknown8 : 0x00000100, - NTLM_NegotiateNTLM : 0x00000200, - NTLM_NegotiateNTOnly : 0x00000400, - NTLM_Anonymous : 0x00000800, - NTLM_NegotiateOemDomainSupplied : 0x00001000, - NTLM_NegotiateOemWorkstationSupplied : 0x00002000, - NTLM_Unknown6 : 0x00004000, - NTLM_NegotiateAlwaysSign : 0x00008000, - NTLM_TargetTypeDomain : 0x00010000, - NTLM_TargetTypeServer : 0x00020000, - NTLM_TargetTypeShare : 0x00040000, - NTLM_NegotiateExtendedSecurity : 0x00080000, - NTLM_NegotiateIdentify : 0x00100000, - NTLM_Unknown5 : 0x00200000, - NTLM_RequestNonNTSessionKey : 0x00400000, - NTLM_NegotiateTargetInfo : 0x00800000, - NTLM_Unknown4 : 0x01000000, - NTLM_NegotiateVersion : 0x02000000, - NTLM_Unknown3 : 0x04000000, - NTLM_Unknown2 : 0x08000000, - NTLM_Unknown1 : 0x10000000, - NTLM_Negotiate128 : 0x20000000, - NTLM_NegotiateKeyExchange : 0x40000000, - NTLM_Negotiate56 : 0x80000000 -}; -var typeflags = { - NTLM_TYPE1_FLAGS : flags.NTLM_NegotiateUnicode - + flags.NTLM_NegotiateOEM - + flags.NTLM_RequestTarget - + flags.NTLM_NegotiateNTLM - + flags.NTLM_NegotiateOemDomainSupplied - + flags.NTLM_NegotiateOemWorkstationSupplied - + flags.NTLM_NegotiateAlwaysSign - + flags.NTLM_NegotiateExtendedSecurity - + flags.NTLM_NegotiateVersion - + flags.NTLM_Negotiate128 - + flags.NTLM_Negotiate56, - - NTLM_TYPE2_FLAGS : flags.NTLM_NegotiateUnicode - + flags.NTLM_RequestTarget - + flags.NTLM_NegotiateNTLM - + flags.NTLM_NegotiateAlwaysSign - + flags.NTLM_NegotiateExtendedSecurity - + flags.NTLM_NegotiateTargetInfo - + flags.NTLM_NegotiateVersion - + flags.NTLM_Negotiate128 - + flags.NTLM_Negotiate56 -}; - -function createType1Message(options){ - var domain = escape(options.domain.toUpperCase()); - var workstation = escape(options.workstation.toUpperCase()); - var protocol = 'NTLMSSP\0'; - - var BODY_LENGTH = 40; - - var type1flags = typeflags.NTLM_TYPE1_FLAGS; - if(!domain || domain === '') - type1flags = type1flags - flags.NTLM_NegotiateOemDomainSupplied; - - var pos = 0; - var buf = new Buffer(BODY_LENGTH + domain.length + workstation.length); - - - buf.write(protocol, pos, protocol.length); pos += protocol.length; // protocol - buf.writeUInt32LE(1, pos); pos += 4; // type 1 - buf.writeUInt32LE(type1flags, pos); pos += 4; // TYPE1 flag - - buf.writeUInt16LE(domain.length, pos); pos += 2; // domain length - buf.writeUInt16LE(domain.length, pos); pos += 2; // domain max length - buf.writeUInt32LE(BODY_LENGTH + workstation.length, pos); pos += 4; // domain buffer offset - - buf.writeUInt16LE(workstation.length, pos); pos += 2; // workstation length - buf.writeUInt16LE(workstation.length, pos); pos += 2; // workstation max length - buf.writeUInt32LE(BODY_LENGTH, pos); pos += 4; // workstation buffer offset - - buf.writeUInt8(5, pos); pos += 1; //ProductMajorVersion - buf.writeUInt8(1, pos); pos += 1; //ProductMinorVersion - buf.writeUInt16LE(2600, pos); pos += 2; //ProductBuild - - buf.writeUInt8(0 , pos); pos += 1; //VersionReserved1 - buf.writeUInt8(0 , pos); pos += 1; //VersionReserved2 - buf.writeUInt8(0 , pos); pos += 1; //VersionReserved3 - buf.writeUInt8(15, pos); pos += 1; //NTLMRevisionCurrent - - buf.write(workstation, pos, workstation.length, 'ascii'); pos += workstation.length; // workstation string - buf.write(domain , pos, domain.length , 'ascii'); pos += domain.length; - - return 'NTLM ' + buf.toString('base64'); -} - -function parseType2Message(rawmsg, callback){ - var match = rawmsg.match(/NTLM (.+)?/); - if(!match || !match[1]) - return callback(new Error("Couldn't find NTLM in the message type2 comming from the server")); - - var buf = new Buffer(match[1], 'base64'); - - var msg = {}; - - msg.signature = buf.slice(0, 8); - msg.type = buf.readInt16LE(8); - - if(msg.type != 2) - return callback(new Error("Server didn't return a type 2 message")); - - msg.targetNameLen = buf.readInt16LE(12); - msg.targetNameMaxLen = buf.readInt16LE(14); - msg.targetNameOffset = buf.readInt32LE(16); - msg.targetName = buf.slice(msg.targetNameOffset, msg.targetNameOffset + msg.targetNameMaxLen); - - msg.negotiateFlags = buf.readInt32LE(20); - msg.serverChallenge = buf.slice(24, 32); - msg.reserved = buf.slice(32, 40); - - if(msg.negotiateFlags & flags.NTLM_NegotiateTargetInfo){ - msg.targetInfoLen = buf.readInt16LE(40); - msg.targetInfoMaxLen = buf.readInt16LE(42); - msg.targetInfoOffset = buf.readInt32LE(44); - msg.targetInfo = buf.slice(msg.targetInfoOffset, msg.targetInfoOffset + msg.targetInfoLen); - } - return msg; -} - -function createType3Message(msg2, options){ - var nonce = msg2.serverChallenge; - var username = options.username; - var password = options.password; - var negotiateFlags = msg2.negotiateFlags; - - var isUnicode = negotiateFlags & flags.NTLM_NegotiateUnicode; - var isNegotiateExtendedSecurity = negotiateFlags & flags.NTLM_NegotiateExtendedSecurity; - - var BODY_LENGTH = 72; - - var domainName = escape(options.domain.toUpperCase()); - var workstation = escape(options.workstation.toUpperCase()); - - var workstationBytes, domainNameBytes, usernameBytes, encryptedRandomSessionKeyBytes; - - var encryptedRandomSessionKey = ""; - if(isUnicode){ - workstationBytes = new Buffer(workstation, 'utf16le'); - domainNameBytes = new Buffer(domainName, 'utf16le'); - usernameBytes = new Buffer(username, 'utf16le'); - encryptedRandomSessionKeyBytes = new Buffer(encryptedRandomSessionKey, 'utf16le'); - }else{ - workstationBytes = new Buffer(workstation, 'ascii'); - domainNameBytes = new Buffer(domainName, 'ascii'); - usernameBytes = new Buffer(username, 'ascii'); - encryptedRandomSessionKeyBytes = new Buffer(encryptedRandomSessionKey, 'ascii'); - } - - var lmChallengeResponse = calc_resp(create_LM_hashed_password_v1(password), nonce); - var ntChallengeResponse = calc_resp(create_NT_hashed_password_v1(password), nonce); - - if(isNegotiateExtendedSecurity){ - var pwhash = create_NT_hashed_password_v1(password); - var clientChallenge = ""; - for(var i=0; i < 8; i++){ - clientChallenge += String.fromCharCode( Math.floor(Math.random()*256) ); - } - var clientChallengeBytes = new Buffer(clientChallenge, 'ascii'); - var challenges = ntlm2sr_calc_resp(pwhash, nonce, clientChallengeBytes); - lmChallengeResponse = challenges.lmChallengeResponse; - ntChallengeResponse = challenges.ntChallengeResponse; - } - - var signature = 'NTLMSSP\0'; - - var pos = 0; - var buf = new Buffer(BODY_LENGTH + domainNameBytes.length + usernameBytes.length + workstationBytes.length + lmChallengeResponse.length + ntChallengeResponse.length + encryptedRandomSessionKeyBytes.length); - - buf.write(signature, pos, signature.length); pos += signature.length; - buf.writeUInt32LE(3, pos); pos += 4; // type 1 - - buf.writeUInt16LE(lmChallengeResponse.length, pos); pos += 2; // LmChallengeResponseLen - buf.writeUInt16LE(lmChallengeResponse.length, pos); pos += 2; // LmChallengeResponseMaxLen - buf.writeUInt32LE(BODY_LENGTH + domainNameBytes.length + usernameBytes.length + workstationBytes.length, pos); pos += 4; // LmChallengeResponseOffset - - buf.writeUInt16LE(ntChallengeResponse.length, pos); pos += 2; // NtChallengeResponseLen - buf.writeUInt16LE(ntChallengeResponse.length, pos); pos += 2; // NtChallengeResponseMaxLen - buf.writeUInt32LE(BODY_LENGTH + domainNameBytes.length + usernameBytes.length + workstationBytes.length + lmChallengeResponse.length, pos); pos += 4; // NtChallengeResponseOffset - - buf.writeUInt16LE(domainNameBytes.length, pos); pos += 2; // DomainNameLen - buf.writeUInt16LE(domainNameBytes.length, pos); pos += 2; // DomainNameMaxLen - buf.writeUInt32LE(BODY_LENGTH, pos); pos += 4; // DomainNameOffset - - buf.writeUInt16LE(usernameBytes.length, pos); pos += 2; // UserNameLen - buf.writeUInt16LE(usernameBytes.length, pos); pos += 2; // UserNameMaxLen - buf.writeUInt32LE(BODY_LENGTH + domainNameBytes.length, pos); pos += 4; // UserNameOffset - - buf.writeUInt16LE(workstationBytes.length, pos); pos += 2; // WorkstationLen - buf.writeUInt16LE(workstationBytes.length, pos); pos += 2; // WorkstationMaxLen - buf.writeUInt32LE(BODY_LENGTH + domainNameBytes.length + usernameBytes.length, pos); pos += 4; // WorkstationOffset - - buf.writeUInt16LE(encryptedRandomSessionKeyBytes.length, pos); pos += 2; // EncryptedRandomSessionKeyLen - buf.writeUInt16LE(encryptedRandomSessionKeyBytes.length, pos); pos += 2; // EncryptedRandomSessionKeyMaxLen - buf.writeUInt32LE(BODY_LENGTH + domainNameBytes.length + usernameBytes.length + workstationBytes.length + lmChallengeResponse.length + ntChallengeResponse.length, pos); pos += 4; // EncryptedRandomSessionKeyOffset - - buf.writeUInt32LE(typeflags.NTLM_TYPE2_FLAGS, pos); pos += 4; // NegotiateFlags - - buf.writeUInt8(5, pos); pos++; // ProductMajorVersion - buf.writeUInt8(1, pos); pos++; // ProductMinorVersion - buf.writeUInt16LE(2600, pos); pos += 2; // ProductBuild - buf.writeUInt8(0, pos); pos++; // VersionReserved1 - buf.writeUInt8(0, pos); pos++; // VersionReserved2 - buf.writeUInt8(0, pos); pos++; // VersionReserved3 - buf.writeUInt8(15, pos); pos++; // NTLMRevisionCurrent - - domainNameBytes.copy(buf, pos); pos += domainNameBytes.length; - usernameBytes.copy(buf, pos); pos += usernameBytes.length; - workstationBytes.copy(buf, pos); pos += workstationBytes.length; - lmChallengeResponse.copy(buf, pos); pos += lmChallengeResponse.length; - ntChallengeResponse.copy(buf, pos); pos += ntChallengeResponse.length; - encryptedRandomSessionKeyBytes.copy(buf, pos); pos += encryptedRandomSessionKeyBytes.length; - - return 'NTLM ' + buf.toString('base64'); -} - -function create_LM_hashed_password_v1(password){ - // fix the password length to 14 bytes - password = password.toUpperCase(); - var passwordBytes = new Buffer(password, 'ascii'); - - var passwordBytesPadded = new Buffer(14); - passwordBytesPadded.fill("\0"); - var sourceEnd = 14; - if(passwordBytes.length < 14) sourceEnd = passwordBytes.length; - passwordBytes.copy(passwordBytesPadded, 0, 0, sourceEnd); - - // split into 2 parts of 7 bytes: - var firstPart = passwordBytesPadded.slice(0,7); - var secondPart = passwordBytesPadded.slice(7); - - function encrypt(buf){ - var key = insertZerosEvery7Bits(buf); - var des = crypto.createCipheriv('DES-ECB', key, ''); - return des.update("KGS!@#$%"); // page 57 in [MS-NLMP]); - } - - var firstPartEncrypted = encrypt(firstPart); - var secondPartEncrypted = encrypt(secondPart); - - return Buffer.concat([firstPartEncrypted, secondPartEncrypted]); -} - -function insertZerosEvery7Bits(buf){ - var binaryArray = bytes2binaryArray(buf); - var newBinaryArray = []; - for(var i=0; i array.length) - break; - - var binString1 = '' + array[i] + '' + array[i+1] + '' + array[i+2] + '' + array[i+3]; - var binString2 = '' + array[i+4] + '' + array[i+5] + '' + array[i+6] + '' + array[i+7]; - var hexchar1 = binary2hex[binString1]; - var hexchar2 = binary2hex[binString2]; - - var buf = new Buffer(hexchar1 + '' + hexchar2, 'hex'); - bufArray.push(buf); - } - - return Buffer.concat(bufArray); -} - -function create_NT_hashed_password_v1(password){ - var buf = new Buffer(password, 'utf16le'); - var md4 = crypto.createHash('md4'); - md4.update(buf); - return new Buffer(md4.digest()); -} - -function calc_resp(password_hash, server_challenge){ - // padding with zeros to make the hash 21 bytes long - var passHashPadded = new Buffer(21); - passHashPadded.fill("\0"); - password_hash.copy(passHashPadded, 0, 0, password_hash.length); - - var resArray = []; - - var des = crypto.createCipheriv('DES-ECB', insertZerosEvery7Bits(passHashPadded.slice(0,7)), ''); - resArray.push( des.update(server_challenge.slice(0,8)) ); - - des = crypto.createCipheriv('DES-ECB', insertZerosEvery7Bits(passHashPadded.slice(7,14)), ''); - resArray.push( des.update(server_challenge.slice(0,8)) ); - - des = crypto.createCipheriv('DES-ECB', insertZerosEvery7Bits(passHashPadded.slice(14,21)), ''); - resArray.push( des.update(server_challenge.slice(0,8)) ); - - return Buffer.concat(resArray); -} - -function ntlm2sr_calc_resp(responseKeyNT, serverChallenge, clientChallenge){ - // padding with zeros to make the hash 16 bytes longer - var lmChallengeResponse = new Buffer(clientChallenge.length + 16); - lmChallengeResponse.fill("\0"); - clientChallenge.copy(lmChallengeResponse, 0, 0, clientChallenge.length); - - var buf = Buffer.concat([serverChallenge, clientChallenge]); - var md5 = crypto.createHash('md5'); - md5.update(buf); - var sess = md5.digest(); - var ntChallengeResponse = calc_resp(responseKeyNT, sess.slice(0,8)); - - return { - lmChallengeResponse: lmChallengeResponse, - ntChallengeResponse: ntChallengeResponse - }; -} - -exports.createType1Message = createType1Message; -exports.parseType2Message = parseType2Message; -exports.createType3Message = createType3Message; - - - diff --git a/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt b/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt deleted file mode 100644 index b341600f3..000000000 --- a/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt +++ /dev/null @@ -1,6 +0,0 @@ -// This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. -// -// As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. -// -// It is used as a part of the NTLM support provided by the vso-node-api library. -// diff --git a/node_modules/typed-rest-client/package.json b/node_modules/typed-rest-client/package.json deleted file mode 100644 index 24101c778..000000000 --- a/node_modules/typed-rest-client/package.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "name": "typed-rest-client", - "version": "1.5.0", - "description": "Node Rest and Http Clients for use with TypeScript", - "main": "./RestClient.js", - "scripts": { - "build": "node make.js build", - "test": "node make.js test", - "bt": "node make.js buildtest", - "samples": "node make.js samples", - "units": "node make.js units", - "validate": "node make.js validate" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Microsoft/typed-rest-client.git" - }, - "keywords": [ - "rest", - "http", - "client", - "typescript", - "node" - ], - "author": "Microsoft Corporation", - "license": "MIT", - "bugs": { - "url": "https://github.com/Microsoft/typed-rest-client/issues" - }, - "homepage": "https://github.com/Microsoft/typed-rest-client#readme", - "devDependencies": { - "@types/mocha": "^2.2.44", - "@types/node": "^6.0.92", - "@types/shelljs": "0.7.4", - "mocha": "^3.5.3", - "nock": "9.6.1", - "react-scripts": "1.1.5", - "shelljs": "0.7.6", - "semver": "4.3.3", - "typescript": "3.1.5" - }, - "dependencies": { - "tunnel": "0.0.4", - "underscore": "1.8.3" - } -} \ No newline at end of file diff --git a/node_modules/typedarray-to-buffer/package.json b/node_modules/typedarray-to-buffer/package.json index 208763783..e767f2d2c 100644 --- a/node_modules/typedarray-to-buffer/package.json +++ b/node_modules/typedarray-to-buffer/package.json @@ -1,7 +1,33 @@ { - "name": "typedarray-to-buffer", - "description": "Convert a typed array to a Buffer without a copy", - "version": "3.1.5", + "_args": [ + [ + "typedarray-to-buffer@3.1.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "typedarray-to-buffer@3.1.5", + "_id": "typedarray-to-buffer@3.1.5", + "_inBundle": false, + "_integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "_location": "/typedarray-to-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "typedarray-to-buffer@3.1.5", + "name": "typedarray-to-buffer", + "escapedName": "typedarray-to-buffer", + "rawSpec": "3.1.5", + "saveSpec": null, + "fetchSpec": "3.1.5" + }, + "_requiredBy": [ + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "_spec": "3.1.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -13,6 +39,7 @@ "dependencies": { "is-typedarray": "^1.0.0" }, + "description": "Convert a typed array to a Buffer without a copy", "devDependencies": { "airtap": "0.0.4", "standard": "*", @@ -37,6 +64,7 @@ ], "license": "MIT", "main": "index.js", + "name": "typedarray-to-buffer", "repository": { "type": "git", "url": "git://github.com/feross/typedarray-to-buffer.git" @@ -46,5 +74,6 @@ "test-browser": "airtap -- test/*.js", "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" - } -} \ No newline at end of file + }, + "version": "3.1.5" +} diff --git a/node_modules/typescript/package.json b/node_modules/typescript/package.json index c2efe1e26..4d58d0310 100644 --- a/node_modules/typescript/package.json +++ b/node_modules/typescript/package.json @@ -1,33 +1,55 @@ { - "name": "typescript", - "author": "Microsoft Corp.", - "homepage": "https://www.typescriptlang.org/", - "version": "3.7.5", - "license": "Apache-2.0", - "description": "TypeScript is a language for application scale JavaScript development", - "keywords": [ - "TypeScript", - "Microsoft", - "compiler", - "language", - "javascript" + "_args": [ + [ + "typescript@3.7.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" + "_development": true, + "_from": "typescript@3.7.5", + "_id": "typescript@3.7.5", + "_inBundle": false, + "_integrity": "sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==", + "_location": "/typescript", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "typescript@3.7.5", + "name": "typescript", + "escapedName": "typescript", + "rawSpec": "3.7.5", + "saveSpec": null, + "fetchSpec": "3.7.5" }, - "repository": { - "type": "git", - "url": "https://github.com/Microsoft/TypeScript.git" + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.5.tgz", + "_spec": "3.7.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Microsoft Corp." }, - "main": "./lib/typescript.js", - "typings": "./lib/typescript.d.ts", "bin": { - "tsc": "./bin/tsc", - "tsserver": "./bin/tsserver" + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, - "engines": { - "node": ">=4.2.0" + "browser": { + "fs": false, + "os": false, + "path": false, + "crypto": false, + "buffer": false, + "@microsoft/typescript-etw": false, + "source-map-support": false, + "inspector": false + }, + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" }, + "dependencies": {}, + "description": "TypeScript is a language for application scale JavaScript development", "devDependencies": { "@octokit/rest": "latest", "@types/browserify": "latest", @@ -101,15 +123,28 @@ "vinyl-sourcemaps-apply": "latest", "xml2js": "^0.4.19" }, + "engines": { + "node": ">=4.2.0" + }, + "homepage": "https://www.typescriptlang.org/", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript" + ], + "license": "Apache-2.0", + "main": "./lib/typescript.js", + "name": "typescript", + "repository": { + "type": "git", + "url": "git+https://github.com/Microsoft/TypeScript.git" + }, "scripts": { - "prepare": "gulp build-eslint-rules", - "pretest": "gulp tests", - "test": "gulp runtests-parallel --light=false", - "test:eslint-rules": "gulp run-eslint-rules-tests", "build": "npm run build:compiler && npm run build:tests", "build:compiler": "gulp local", "build:tests": "gulp tests", - "start": "node lib/tsc", "clean": "gulp clean", "gulp": "gulp", "jake": "gulp", @@ -117,18 +152,14 @@ "lint:ci": "gulp lint --ci", "lint:compiler": "gulp lint-compiler", "lint:scripts": "gulp lint-scripts", + "prepare": "gulp build-eslint-rules", + "pretest": "gulp tests", "setup-hooks": "node scripts/link-hooks.js", + "start": "node lib/tsc", + "test": "gulp runtests-parallel --light=false", + "test:eslint-rules": "gulp run-eslint-rules-tests", "update-costly-tests": "node scripts/costly-tests.js" }, - "browser": { - "fs": false, - "os": false, - "path": false, - "crypto": false, - "buffer": false, - "@microsoft/typescript-etw": false, - "source-map-support": false, - "inspector": false - }, - "dependencies": {} -} \ No newline at end of file + "typings": "./lib/typescript.d.ts", + "version": "3.7.5" +} diff --git a/node_modules/underscore/LICENSE b/node_modules/underscore/LICENSE deleted file mode 100644 index ad0e71bc4..000000000 --- a/node_modules/underscore/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative -Reporters & Editors - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/underscore/README.md b/node_modules/underscore/README.md deleted file mode 100644 index c2ba2590c..000000000 --- a/node_modules/underscore/README.md +++ /dev/null @@ -1,22 +0,0 @@ - __ - /\ \ __ - __ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____ - /\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\ - \ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\ - \ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/ - \/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/ - \ \____/ - \/___/ - -Underscore.js is a utility-belt library for JavaScript that provides -support for the usual functional suspects (each, map, reduce, filter...) -without extending any core JavaScript objects. - -For Docs, License, Tests, and pre-packed downloads, see: -http://underscorejs.org - -Underscore is an open-sourced component of DocumentCloud: -https://github.com/documentcloud - -Many thanks to our contributors: -https://github.com/jashkenas/underscore/contributors diff --git a/node_modules/underscore/package.json b/node_modules/underscore/package.json deleted file mode 100644 index d998237ab..000000000 --- a/node_modules/underscore/package.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "underscore", - "description": "JavaScript's functional programming helper library.", - "homepage": "http://underscorejs.org", - "keywords": [ - "util", - "functional", - "server", - "client", - "browser" - ], - "author": "Jeremy Ashkenas ", - "repository": { - "type": "git", - "url": "git://github.com/jashkenas/underscore.git" - }, - "main": "underscore.js", - "version": "1.8.3", - "devDependencies": { - "docco": "*", - "eslint": "0.6.x", - "karma": "~0.12.31", - "karma-qunit": "~0.1.4", - "qunit-cli": "~0.2.0", - "uglify-js": "2.4.x" - }, - "scripts": { - "test": "npm run test-node && npm run lint", - "lint": "eslint underscore.js test/*.js", - "test-node": "qunit-cli test/*.js", - "test-browser": "npm i karma-phantomjs-launcher && ./node_modules/karma/bin/karma start", - "build": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m --source-map underscore-min.map -o underscore-min.js", - "doc": "docco underscore.js" - }, - "license": "MIT", - "files": [ - "underscore.js", - "underscore-min.js", - "underscore-min.map", - "LICENSE" - ] -} \ No newline at end of file diff --git a/node_modules/underscore/underscore-min.js b/node_modules/underscore/underscore-min.js deleted file mode 100644 index f01025b7b..000000000 --- a/node_modules/underscore/underscore-min.js +++ /dev/null @@ -1,6 +0,0 @@ -// Underscore.js 1.8.3 -// http://underscorejs.org -// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -// Underscore may be freely distributed under the MIT license. -(function(){function n(n){function t(t,r,e,u,i,o){for(;i>=0&&o>i;i+=n){var a=u?u[i]:i;e=r(e,t[a],a,t)}return e}return function(r,e,u,i){e=b(e,i,4);var o=!k(r)&&m.keys(r),a=(o||r).length,c=n>0?0:a-1;return arguments.length<3&&(u=r[o?o[c]:c],c+=n),t(r,e,u,o,c,a)}}function t(n){return function(t,r,e){r=x(r,e);for(var u=O(t),i=n>0?0:u-1;i>=0&&u>i;i+=n)if(r(t[i],i,t))return i;return-1}}function r(n,t,r){return function(e,u,i){var o=0,a=O(e);if("number"==typeof i)n>0?o=i>=0?i:Math.max(i+a,o):a=i>=0?Math.min(i+1,a):i+a+1;else if(r&&i&&a)return i=r(e,u),e[i]===u?i:-1;if(u!==u)return i=t(l.call(e,o,a),m.isNaN),i>=0?i+o:-1;for(i=n>0?o:a-1;i>=0&&a>i;i+=n)if(e[i]===u)return i;return-1}}function e(n,t){var r=I.length,e=n.constructor,u=m.isFunction(e)&&e.prototype||a,i="constructor";for(m.has(n,i)&&!m.contains(t,i)&&t.push(i);r--;)i=I[r],i in n&&n[i]!==u[i]&&!m.contains(t,i)&&t.push(i)}var u=this,i=u._,o=Array.prototype,a=Object.prototype,c=Function.prototype,f=o.push,l=o.slice,s=a.toString,p=a.hasOwnProperty,h=Array.isArray,v=Object.keys,g=c.bind,y=Object.create,d=function(){},m=function(n){return n instanceof m?n:this instanceof m?void(this._wrapped=n):new m(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=m),exports._=m):u._=m,m.VERSION="1.8.3";var b=function(n,t,r){if(t===void 0)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 2:return function(r,e){return n.call(t,r,e)};case 3:return function(r,e,u){return n.call(t,r,e,u)};case 4:return function(r,e,u,i){return n.call(t,r,e,u,i)}}return function(){return n.apply(t,arguments)}},x=function(n,t,r){return null==n?m.identity:m.isFunction(n)?b(n,t,r):m.isObject(n)?m.matcher(n):m.property(n)};m.iteratee=function(n,t){return x(n,t,1/0)};var _=function(n,t){return function(r){var e=arguments.length;if(2>e||null==r)return r;for(var u=1;e>u;u++)for(var i=arguments[u],o=n(i),a=o.length,c=0;a>c;c++){var f=o[c];t&&r[f]!==void 0||(r[f]=i[f])}return r}},j=function(n){if(!m.isObject(n))return{};if(y)return y(n);d.prototype=n;var t=new d;return d.prototype=null,t},w=function(n){return function(t){return null==t?void 0:t[n]}},A=Math.pow(2,53)-1,O=w("length"),k=function(n){var t=O(n);return"number"==typeof t&&t>=0&&A>=t};m.each=m.forEach=function(n,t,r){t=b(t,r);var e,u;if(k(n))for(e=0,u=n.length;u>e;e++)t(n[e],e,n);else{var i=m.keys(n);for(e=0,u=i.length;u>e;e++)t(n[i[e]],i[e],n)}return n},m.map=m.collect=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=Array(u),o=0;u>o;o++){var a=e?e[o]:o;i[o]=t(n[a],a,n)}return i},m.reduce=m.foldl=m.inject=n(1),m.reduceRight=m.foldr=n(-1),m.find=m.detect=function(n,t,r){var e;return e=k(n)?m.findIndex(n,t,r):m.findKey(n,t,r),e!==void 0&&e!==-1?n[e]:void 0},m.filter=m.select=function(n,t,r){var e=[];return t=x(t,r),m.each(n,function(n,r,u){t(n,r,u)&&e.push(n)}),e},m.reject=function(n,t,r){return m.filter(n,m.negate(x(t)),r)},m.every=m.all=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(!t(n[o],o,n))return!1}return!0},m.some=m.any=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(t(n[o],o,n))return!0}return!1},m.contains=m.includes=m.include=function(n,t,r,e){return k(n)||(n=m.values(n)),("number"!=typeof r||e)&&(r=0),m.indexOf(n,t,r)>=0},m.invoke=function(n,t){var r=l.call(arguments,2),e=m.isFunction(t);return m.map(n,function(n){var u=e?t:n[t];return null==u?u:u.apply(n,r)})},m.pluck=function(n,t){return m.map(n,m.property(t))},m.where=function(n,t){return m.filter(n,m.matcher(t))},m.findWhere=function(n,t){return m.find(n,m.matcher(t))},m.max=function(n,t,r){var e,u,i=-1/0,o=-1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],e>i&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(u>o||u===-1/0&&i===-1/0)&&(i=n,o=u)});return i},m.min=function(n,t,r){var e,u,i=1/0,o=1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],i>e&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(o>u||1/0===u&&1/0===i)&&(i=n,o=u)});return i},m.shuffle=function(n){for(var t,r=k(n)?n:m.values(n),e=r.length,u=Array(e),i=0;e>i;i++)t=m.random(0,i),t!==i&&(u[i]=u[t]),u[t]=r[i];return u},m.sample=function(n,t,r){return null==t||r?(k(n)||(n=m.values(n)),n[m.random(n.length-1)]):m.shuffle(n).slice(0,Math.max(0,t))},m.sortBy=function(n,t,r){return t=x(t,r),m.pluck(m.map(n,function(n,r,e){return{value:n,index:r,criteria:t(n,r,e)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||r===void 0)return 1;if(e>r||e===void 0)return-1}return n.index-t.index}),"value")};var F=function(n){return function(t,r,e){var u={};return r=x(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=F(function(n,t,r){m.has(n,r)?n[r].push(t):n[r]=[t]}),m.indexBy=F(function(n,t,r){n[r]=t}),m.countBy=F(function(n,t,r){m.has(n,r)?n[r]++:n[r]=1}),m.toArray=function(n){return n?m.isArray(n)?l.call(n):k(n)?m.map(n,m.identity):m.values(n):[]},m.size=function(n){return null==n?0:k(n)?n.length:m.keys(n).length},m.partition=function(n,t,r){t=x(t,r);var e=[],u=[];return m.each(n,function(n,r,i){(t(n,r,i)?e:u).push(n)}),[e,u]},m.first=m.head=m.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:m.initial(n,n.length-t)},m.initial=function(n,t,r){return l.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))},m.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:m.rest(n,Math.max(0,n.length-t))},m.rest=m.tail=m.drop=function(n,t,r){return l.call(n,null==t||r?1:t)},m.compact=function(n){return m.filter(n,m.identity)};var S=function(n,t,r,e){for(var u=[],i=0,o=e||0,a=O(n);a>o;o++){var c=n[o];if(k(c)&&(m.isArray(c)||m.isArguments(c))){t||(c=S(c,t,r));var f=0,l=c.length;for(u.length+=l;l>f;)u[i++]=c[f++]}else r||(u[i++]=c)}return u};m.flatten=function(n,t){return S(n,t,!1)},m.without=function(n){return m.difference(n,l.call(arguments,1))},m.uniq=m.unique=function(n,t,r,e){m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=x(r,e));for(var u=[],i=[],o=0,a=O(n);a>o;o++){var c=n[o],f=r?r(c,o,n):c;t?(o&&i===f||u.push(c),i=f):r?m.contains(i,f)||(i.push(f),u.push(c)):m.contains(u,c)||u.push(c)}return u},m.union=function(){return m.uniq(S(arguments,!0,!0))},m.intersection=function(n){for(var t=[],r=arguments.length,e=0,u=O(n);u>e;e++){var i=n[e];if(!m.contains(t,i)){for(var o=1;r>o&&m.contains(arguments[o],i);o++);o===r&&t.push(i)}}return t},m.difference=function(n){var t=S(arguments,!0,!0,1);return m.filter(n,function(n){return!m.contains(t,n)})},m.zip=function(){return m.unzip(arguments)},m.unzip=function(n){for(var t=n&&m.max(n,O).length||0,r=Array(t),e=0;t>e;e++)r[e]=m.pluck(n,e);return r},m.object=function(n,t){for(var r={},e=0,u=O(n);u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},m.findIndex=t(1),m.findLastIndex=t(-1),m.sortedIndex=function(n,t,r,e){r=x(r,e,1);for(var u=r(t),i=0,o=O(n);o>i;){var a=Math.floor((i+o)/2);r(n[a])i;i++,n+=r)u[i]=n;return u};var E=function(n,t,r,e,u){if(!(e instanceof t))return n.apply(r,u);var i=j(n.prototype),o=n.apply(i,u);return m.isObject(o)?o:i};m.bind=function(n,t){if(g&&n.bind===g)return g.apply(n,l.call(arguments,1));if(!m.isFunction(n))throw new TypeError("Bind must be called on a function");var r=l.call(arguments,2),e=function(){return E(n,e,t,this,r.concat(l.call(arguments)))};return e},m.partial=function(n){var t=l.call(arguments,1),r=function(){for(var e=0,u=t.length,i=Array(u),o=0;u>o;o++)i[o]=t[o]===m?arguments[e++]:t[o];for(;e=e)throw new Error("bindAll must be passed function names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var r=function(e){var u=r.cache,i=""+(t?t.apply(this,arguments):e);return m.has(u,i)||(u[i]=n.apply(this,arguments)),u[i]};return r.cache={},r},m.delay=function(n,t){var r=l.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},m.defer=m.partial(m.delay,m,1),m.throttle=function(n,t,r){var e,u,i,o=null,a=0;r||(r={});var c=function(){a=r.leading===!1?0:m.now(),o=null,i=n.apply(e,u),o||(e=u=null)};return function(){var f=m.now();a||r.leading!==!1||(a=f);var l=t-(f-a);return e=this,u=arguments,0>=l||l>t?(o&&(clearTimeout(o),o=null),a=f,i=n.apply(e,u),o||(e=u=null)):o||r.trailing===!1||(o=setTimeout(c,l)),i}},m.debounce=function(n,t,r){var e,u,i,o,a,c=function(){var f=m.now()-o;t>f&&f>=0?e=setTimeout(c,t-f):(e=null,r||(a=n.apply(i,u),e||(i=u=null)))};return function(){i=this,u=arguments,o=m.now();var f=r&&!e;return e||(e=setTimeout(c,t)),f&&(a=n.apply(i,u),i=u=null),a}},m.wrap=function(n,t){return m.partial(t,n)},m.negate=function(n){return function(){return!n.apply(this,arguments)}},m.compose=function(){var n=arguments,t=n.length-1;return function(){for(var r=t,e=n[t].apply(this,arguments);r--;)e=n[r].call(this,e);return e}},m.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},m.before=function(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),1>=n&&(t=null),r}},m.once=m.partial(m.before,2);var M=!{toString:null}.propertyIsEnumerable("toString"),I=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];m.keys=function(n){if(!m.isObject(n))return[];if(v)return v(n);var t=[];for(var r in n)m.has(n,r)&&t.push(r);return M&&e(n,t),t},m.allKeys=function(n){if(!m.isObject(n))return[];var t=[];for(var r in n)t.push(r);return M&&e(n,t),t},m.values=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},m.mapObject=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=u.length,o={},a=0;i>a;a++)e=u[a],o[e]=t(n[e],e,n);return o},m.pairs=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},m.invert=function(n){for(var t={},r=m.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},m.functions=m.methods=function(n){var t=[];for(var r in n)m.isFunction(n[r])&&t.push(r);return t.sort()},m.extend=_(m.allKeys),m.extendOwn=m.assign=_(m.keys),m.findKey=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=0,o=u.length;o>i;i++)if(e=u[i],t(n[e],e,n))return e},m.pick=function(n,t,r){var e,u,i={},o=n;if(null==o)return i;m.isFunction(t)?(u=m.allKeys(o),e=b(t,r)):(u=S(arguments,!1,!1,1),e=function(n,t,r){return t in r},o=Object(o));for(var a=0,c=u.length;c>a;a++){var f=u[a],l=o[f];e(l,f,o)&&(i[f]=l)}return i},m.omit=function(n,t,r){if(m.isFunction(t))t=m.negate(t);else{var e=m.map(S(arguments,!1,!1,1),String);t=function(n,t){return!m.contains(e,t)}}return m.pick(n,t,r)},m.defaults=_(m.allKeys,!0),m.create=function(n,t){var r=j(n);return t&&m.extendOwn(r,t),r},m.clone=function(n){return m.isObject(n)?m.isArray(n)?n.slice():m.extend({},n):n},m.tap=function(n,t){return t(n),n},m.isMatch=function(n,t){var r=m.keys(t),e=r.length;if(null==n)return!e;for(var u=Object(n),i=0;e>i;i++){var o=r[i];if(t[o]!==u[o]||!(o in u))return!1}return!0};var N=function(n,t,r,e){if(n===t)return 0!==n||1/n===1/t;if(null==n||null==t)return n===t;n instanceof m&&(n=n._wrapped),t instanceof m&&(t=t._wrapped);var u=s.call(n);if(u!==s.call(t))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+n==""+t;case"[object Number]":return+n!==+n?+t!==+t:0===+n?1/+n===1/t:+n===+t;case"[object Date]":case"[object Boolean]":return+n===+t}var i="[object Array]"===u;if(!i){if("object"!=typeof n||"object"!=typeof t)return!1;var o=n.constructor,a=t.constructor;if(o!==a&&!(m.isFunction(o)&&o instanceof o&&m.isFunction(a)&&a instanceof a)&&"constructor"in n&&"constructor"in t)return!1}r=r||[],e=e||[];for(var c=r.length;c--;)if(r[c]===n)return e[c]===t;if(r.push(n),e.push(t),i){if(c=n.length,c!==t.length)return!1;for(;c--;)if(!N(n[c],t[c],r,e))return!1}else{var f,l=m.keys(n);if(c=l.length,m.keys(t).length!==c)return!1;for(;c--;)if(f=l[c],!m.has(t,f)||!N(n[f],t[f],r,e))return!1}return r.pop(),e.pop(),!0};m.isEqual=function(n,t){return N(n,t)},m.isEmpty=function(n){return null==n?!0:k(n)&&(m.isArray(n)||m.isString(n)||m.isArguments(n))?0===n.length:0===m.keys(n).length},m.isElement=function(n){return!(!n||1!==n.nodeType)},m.isArray=h||function(n){return"[object Array]"===s.call(n)},m.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},m.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(n){m["is"+n]=function(t){return s.call(t)==="[object "+n+"]"}}),m.isArguments(arguments)||(m.isArguments=function(n){return m.has(n,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(m.isFunction=function(n){return"function"==typeof n||!1}),m.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},m.isNaN=function(n){return m.isNumber(n)&&n!==+n},m.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"===s.call(n)},m.isNull=function(n){return null===n},m.isUndefined=function(n){return n===void 0},m.has=function(n,t){return null!=n&&p.call(n,t)},m.noConflict=function(){return u._=i,this},m.identity=function(n){return n},m.constant=function(n){return function(){return n}},m.noop=function(){},m.property=w,m.propertyOf=function(n){return null==n?function(){}:function(t){return n[t]}},m.matcher=m.matches=function(n){return n=m.extendOwn({},n),function(t){return m.isMatch(t,n)}},m.times=function(n,t,r){var e=Array(Math.max(0,n));t=b(t,r,1);for(var u=0;n>u;u++)e[u]=t(u);return e},m.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},m.now=Date.now||function(){return(new Date).getTime()};var B={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},T=m.invert(B),R=function(n){var t=function(t){return n[t]},r="(?:"+m.keys(n).join("|")+")",e=RegExp(r),u=RegExp(r,"g");return function(n){return n=null==n?"":""+n,e.test(n)?n.replace(u,t):n}};m.escape=R(B),m.unescape=R(T),m.result=function(n,t,r){var e=null==n?void 0:n[t];return e===void 0&&(e=r),m.isFunction(e)?e.call(n):e};var q=0;m.uniqueId=function(n){var t=++q+"";return n?n+t:t},m.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var K=/(.)^/,z={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},D=/\\|'|\r|\n|\u2028|\u2029/g,L=function(n){return"\\"+z[n]};m.template=function(n,t,r){!t&&r&&(t=r),t=m.defaults({},t,m.templateSettings);var e=RegExp([(t.escape||K).source,(t.interpolate||K).source,(t.evaluate||K).source].join("|")+"|$","g"),u=0,i="__p+='";n.replace(e,function(t,r,e,o,a){return i+=n.slice(u,a).replace(D,L),u=a+t.length,r?i+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":e?i+="'+\n((__t=("+e+"))==null?'':__t)+\n'":o&&(i+="';\n"+o+"\n__p+='"),t}),i+="';\n",t.variable||(i="with(obj||{}){\n"+i+"}\n"),i="var __t,__p='',__j=Array.prototype.join,"+"print=function(){__p+=__j.call(arguments,'');};\n"+i+"return __p;\n";try{var o=new Function(t.variable||"obj","_",i)}catch(a){throw a.source=i,a}var c=function(n){return o.call(this,n,m)},f=t.variable||"obj";return c.source="function("+f+"){\n"+i+"}",c},m.chain=function(n){var t=m(n);return t._chain=!0,t};var P=function(n,t){return n._chain?m(t).chain():t};m.mixin=function(n){m.each(m.functions(n),function(t){var r=m[t]=n[t];m.prototype[t]=function(){var n=[this._wrapped];return f.apply(n,arguments),P(this,r.apply(m,n))}})},m.mixin(m),m.each(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=o[n];m.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0],P(this,r)}}),m.each(["concat","join","slice"],function(n){var t=o[n];m.prototype[n]=function(){return P(this,t.apply(this._wrapped,arguments))}}),m.prototype.value=function(){return this._wrapped},m.prototype.valueOf=m.prototype.toJSON=m.prototype.value,m.prototype.toString=function(){return""+this._wrapped},"function"==typeof define&&define.amd&&define("underscore",[],function(){return m})}).call(this); -//# sourceMappingURL=underscore-min.map \ No newline at end of file diff --git a/node_modules/underscore/underscore-min.map b/node_modules/underscore/underscore-min.map deleted file mode 100644 index cf356bf9a..000000000 --- a/node_modules/underscore/underscore-min.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"underscore-min.js","sources":["underscore.js"],"names":["createReduce","dir","iterator","obj","iteratee","memo","keys","index","length","currentKey","context","optimizeCb","isArrayLike","_","arguments","createPredicateIndexFinder","array","predicate","cb","getLength","createIndexFinder","predicateFind","sortedIndex","item","idx","i","Math","max","min","slice","call","isNaN","collectNonEnumProps","nonEnumIdx","nonEnumerableProps","constructor","proto","isFunction","prototype","ObjProto","prop","has","contains","push","root","this","previousUnderscore","ArrayProto","Array","Object","FuncProto","Function","toString","hasOwnProperty","nativeIsArray","isArray","nativeKeys","nativeBind","bind","nativeCreate","create","Ctor","_wrapped","exports","module","VERSION","func","argCount","value","other","collection","accumulator","apply","identity","isObject","matcher","property","Infinity","createAssigner","keysFunc","undefinedOnly","source","l","key","baseCreate","result","MAX_ARRAY_INDEX","pow","each","forEach","map","collect","results","reduce","foldl","inject","reduceRight","foldr","find","detect","findIndex","findKey","filter","select","list","reject","negate","every","all","some","any","includes","include","fromIndex","guard","values","indexOf","invoke","method","args","isFunc","pluck","where","attrs","findWhere","computed","lastComputed","shuffle","rand","set","shuffled","random","sample","n","sortBy","criteria","sort","left","right","a","b","group","behavior","groupBy","indexBy","countBy","toArray","size","partition","pass","fail","first","head","take","initial","last","rest","tail","drop","compact","flatten","input","shallow","strict","startIndex","output","isArguments","j","len","without","difference","uniq","unique","isSorted","isBoolean","seen","union","intersection","argsLength","zip","unzip","object","findLastIndex","low","high","mid","floor","lastIndexOf","range","start","stop","step","ceil","executeBound","sourceFunc","boundFunc","callingContext","self","TypeError","bound","concat","partial","boundArgs","position","bindAll","Error","memoize","hasher","cache","address","delay","wait","setTimeout","defer","throttle","options","timeout","previous","later","leading","now","remaining","clearTimeout","trailing","debounce","immediate","timestamp","callNow","wrap","wrapper","compose","after","times","before","once","hasEnumBug","propertyIsEnumerable","allKeys","mapObject","pairs","invert","functions","methods","names","extend","extendOwn","assign","pick","oiteratee","omit","String","defaults","props","clone","tap","interceptor","isMatch","eq","aStack","bStack","className","areArrays","aCtor","bCtor","pop","isEqual","isEmpty","isString","isElement","nodeType","type","name","Int8Array","isFinite","parseFloat","isNumber","isNull","isUndefined","noConflict","constant","noop","propertyOf","matches","accum","Date","getTime","escapeMap","&","<",">","\"","'","`","unescapeMap","createEscaper","escaper","match","join","testRegexp","RegExp","replaceRegexp","string","test","replace","escape","unescape","fallback","idCounter","uniqueId","prefix","id","templateSettings","evaluate","interpolate","noMatch","escapes","\\","\r","\n","
","
","escapeChar","template","text","settings","oldSettings","offset","variable","render","e","data","argument","chain","instance","_chain","mixin","valueOf","toJSON","define","amd"],"mappings":";;;;CAKC,WA4KC,QAASA,GAAaC,GAGpB,QAASC,GAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,GAClD,KAAOD,GAAS,GAAaC,EAARD,EAAgBA,GAASN,EAAK,CACjD,GAAIQ,GAAaH,EAAOA,EAAKC,GAASA,CACtCF,GAAOD,EAASC,EAAMF,EAAIM,GAAaA,EAAYN,GAErD,MAAOE,GAGT,MAAO,UAASF,EAAKC,EAAUC,EAAMK,GACnCN,EAAWO,EAAWP,EAAUM,EAAS,EACzC,IAAIJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OACvBD,EAAQN,EAAM,EAAI,EAAIO,EAAS,CAMnC,OAJIM,WAAUN,OAAS,IACrBH,EAAOF,EAAIG,EAAOA,EAAKC,GAASA,GAChCA,GAASN,GAEJC,EAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,IA+ZtD,QAASO,GAA2Bd,GAClC,MAAO,UAASe,EAAOC,EAAWP,GAChCO,EAAYC,EAAGD,EAAWP,EAG1B,KAFA,GAAIF,GAASW,EAAUH,GACnBT,EAAQN,EAAM,EAAI,EAAIO,EAAS,EAC5BD,GAAS,GAAaC,EAARD,EAAgBA,GAASN,EAC5C,GAAIgB,EAAUD,EAAMT,GAAQA,EAAOS,GAAQ,MAAOT,EAEpD,QAAQ,GAsBZ,QAASa,GAAkBnB,EAAKoB,EAAeC,GAC7C,MAAO,UAASN,EAAOO,EAAMC,GAC3B,GAAIC,GAAI,EAAGjB,EAASW,EAAUH,EAC9B,IAAkB,gBAAPQ,GACLvB,EAAM,EACNwB,EAAID,GAAO,EAAIA,EAAME,KAAKC,IAAIH,EAAMhB,EAAQiB,GAE5CjB,EAASgB,GAAO,EAAIE,KAAKE,IAAIJ,EAAM,EAAGhB,GAAUgB,EAAMhB,EAAS,MAE9D,IAAIc,GAAeE,GAAOhB,EAE/B,MADAgB,GAAMF,EAAYN,EAAOO,GAClBP,EAAMQ,KAASD,EAAOC,GAAO,CAEtC,IAAID,IAASA,EAEX,MADAC,GAAMH,EAAcQ,EAAMC,KAAKd,EAAOS,EAAGjB,GAASK,EAAEkB,OAC7CP,GAAO,EAAIA,EAAMC,GAAK,CAE/B,KAAKD,EAAMvB,EAAM,EAAIwB,EAAIjB,EAAS,EAAGgB,GAAO,GAAWhB,EAANgB,EAAcA,GAAOvB,EACpE,GAAIe,EAAMQ,KAASD,EAAM,MAAOC,EAElC,QAAQ,GAqPZ,QAASQ,GAAoB7B,EAAKG,GAChC,GAAI2B,GAAaC,EAAmB1B,OAChC2B,EAAchC,EAAIgC,YAClBC,EAASvB,EAAEwB,WAAWF,IAAgBA,EAAYG,WAAcC,EAGhEC,EAAO,aAGX,KAFI3B,EAAE4B,IAAItC,EAAKqC,KAAU3B,EAAE6B,SAASpC,EAAMkC,IAAOlC,EAAKqC,KAAKH,GAEpDP,KACLO,EAAON,EAAmBD,GACtBO,IAAQrC,IAAOA,EAAIqC,KAAUJ,EAAMI,KAAU3B,EAAE6B,SAASpC,EAAMkC,IAChElC,EAAKqC,KAAKH,GA74BhB,GAAII,GAAOC,KAGPC,EAAqBF,EAAK/B,EAG1BkC,EAAaC,MAAMV,UAAWC,EAAWU,OAAOX,UAAWY,EAAYC,SAASb,UAIlFK,EAAmBI,EAAWJ,KAC9Bd,EAAmBkB,EAAWlB,MAC9BuB,EAAmBb,EAASa,SAC5BC,EAAmBd,EAASc,eAK5BC,EAAqBN,MAAMO,QAC3BC,EAAqBP,OAAO3C,KAC5BmD,EAAqBP,EAAUQ,KAC/BC,EAAqBV,OAAOW,OAG1BC,EAAO,aAGPhD,EAAI,SAASV,GACf,MAAIA,aAAeU,GAAUV,EACvB0C,eAAgBhC,QACtBgC,KAAKiB,SAAW3D,GADiB,GAAIU,GAAEV,GAOlB,oBAAZ4D,UACa,mBAAXC,SAA0BA,OAAOD,UAC1CA,QAAUC,OAAOD,QAAUlD,GAE7BkD,QAAQlD,EAAIA,GAEZ+B,EAAK/B,EAAIA,EAIXA,EAAEoD,QAAU,OAKZ,IAAItD,GAAa,SAASuD,EAAMxD,EAASyD,GACvC,GAAIzD,QAAiB,GAAG,MAAOwD,EAC/B,QAAoB,MAAZC,EAAmB,EAAIA,GAC7B,IAAK,GAAG,MAAO,UAASC,GACtB,MAAOF,GAAKpC,KAAKpB,EAAS0D,GAE5B,KAAK,GAAG,MAAO,UAASA,EAAOC,GAC7B,MAAOH,GAAKpC,KAAKpB,EAAS0D,EAAOC,GAEnC,KAAK,GAAG,MAAO,UAASD,EAAO7D,EAAO+D,GACpC,MAAOJ,GAAKpC,KAAKpB,EAAS0D,EAAO7D,EAAO+D,GAE1C,KAAK,GAAG,MAAO,UAASC,EAAaH,EAAO7D,EAAO+D,GACjD,MAAOJ,GAAKpC,KAAKpB,EAAS6D,EAAaH,EAAO7D,EAAO+D,IAGzD,MAAO,YACL,MAAOJ,GAAKM,MAAM9D,EAASI,aAO3BI,EAAK,SAASkD,EAAO1D,EAASyD,GAChC,MAAa,OAATC,EAAsBvD,EAAE4D,SACxB5D,EAAEwB,WAAW+B,GAAezD,EAAWyD,EAAO1D,EAASyD,GACvDtD,EAAE6D,SAASN,GAAevD,EAAE8D,QAAQP,GACjCvD,EAAE+D,SAASR,GAEpBvD,GAAET,SAAW,SAASgE,EAAO1D,GAC3B,MAAOQ,GAAGkD,EAAO1D,EAASmE,KAI5B,IAAIC,GAAiB,SAASC,EAAUC,GACtC,MAAO,UAAS7E,GACd,GAAIK,GAASM,UAAUN,MACvB,IAAa,EAATA,GAAqB,MAAPL,EAAa,MAAOA,EACtC,KAAK,GAAII,GAAQ,EAAWC,EAARD,EAAgBA,IAIlC,IAAK,GAHD0E,GAASnE,UAAUP,GACnBD,EAAOyE,EAASE,GAChBC,EAAI5E,EAAKE,OACJiB,EAAI,EAAOyD,EAAJzD,EAAOA,IAAK,CAC1B,GAAI0D,GAAM7E,EAAKmB,EACVuD,IAAiB7E,EAAIgF,SAAc,KAAGhF,EAAIgF,GAAOF,EAAOE,IAGjE,MAAOhF,KAKPiF,EAAa,SAAS9C,GACxB,IAAKzB,EAAE6D,SAASpC,GAAY,QAC5B,IAAIqB,EAAc,MAAOA,GAAarB,EACtCuB,GAAKvB,UAAYA,CACjB,IAAI+C,GAAS,GAAIxB,EAEjB,OADAA,GAAKvB,UAAY,KACV+C,GAGLT,EAAW,SAASO,GACtB,MAAO,UAAShF,GACd,MAAc,OAAPA,MAAmB,GAAIA,EAAIgF,KAQlCG,EAAkB5D,KAAK6D,IAAI,EAAG,IAAM,EACpCpE,EAAYyD,EAAS,UACrBhE,EAAc,SAAS0D,GACzB,GAAI9D,GAASW,EAAUmD,EACvB,OAAwB,gBAAV9D,IAAsBA,GAAU,GAAe8E,GAAV9E,EASrDK,GAAE2E,KAAO3E,EAAE4E,QAAU,SAAStF,EAAKC,EAAUM,GAC3CN,EAAWO,EAAWP,EAAUM,EAChC,IAAIe,GAAGjB,CACP,IAAII,EAAYT,GACd,IAAKsB,EAAI,EAAGjB,EAASL,EAAIK,OAAYA,EAAJiB,EAAYA,IAC3CrB,EAASD,EAAIsB,GAAIA,EAAGtB,OAEjB,CACL,GAAIG,GAAOO,EAAEP,KAAKH,EAClB,KAAKsB,EAAI,EAAGjB,EAASF,EAAKE,OAAYA,EAAJiB,EAAYA,IAC5CrB,EAASD,EAAIG,EAAKmB,IAAKnB,EAAKmB,GAAItB,GAGpC,MAAOA,IAITU,EAAE6E,IAAM7E,EAAE8E,QAAU,SAASxF,EAAKC,EAAUM,GAC1CN,EAAWc,EAAGd,EAAUM,EAIxB,KAAK,GAHDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OACvBoF,EAAU5C,MAAMxC,GACXD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtCqF,GAAQrF,GAASH,EAASD,EAAIM,GAAaA,EAAYN,GAEzD,MAAOyF,IA+BT/E,EAAEgF,OAAShF,EAAEiF,MAAQjF,EAAEkF,OAAS/F,EAAa,GAG7Ca,EAAEmF,YAAcnF,EAAEoF,MAAQjG,GAAc,GAGxCa,EAAEqF,KAAOrF,EAAEsF,OAAS,SAAShG,EAAKc,EAAWP,GAC3C,GAAIyE,EAMJ,OAJEA,GADEvE,EAAYT,GACRU,EAAEuF,UAAUjG,EAAKc,EAAWP,GAE5BG,EAAEwF,QAAQlG,EAAKc,EAAWP,GAE9ByE,QAAa,IAAKA,KAAS,EAAUhF,EAAIgF,GAA7C,QAKFtE,EAAEyF,OAASzF,EAAE0F,OAAS,SAASpG,EAAKc,EAAWP,GAC7C,GAAIkF,KAKJ,OAJA3E,GAAYC,EAAGD,EAAWP,GAC1BG,EAAE2E,KAAKrF,EAAK,SAASiE,EAAO7D,EAAOiG,GAC7BvF,EAAUmD,EAAO7D,EAAOiG,IAAOZ,EAAQjD,KAAKyB,KAE3CwB,GAIT/E,EAAE4F,OAAS,SAAStG,EAAKc,EAAWP,GAClC,MAAOG,GAAEyF,OAAOnG,EAAKU,EAAE6F,OAAOxF,EAAGD,IAAaP,IAKhDG,EAAE8F,MAAQ9F,EAAE+F,IAAM,SAASzG,EAAKc,EAAWP,GACzCO,EAAYC,EAAGD,EAAWP,EAG1B,KAAK,GAFDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OAClBD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtC,KAAKU,EAAUd,EAAIM,GAAaA,EAAYN,GAAM,OAAO,EAE3D,OAAO,GAKTU,EAAEgG,KAAOhG,EAAEiG,IAAM,SAAS3G,EAAKc,EAAWP,GACxCO,EAAYC,EAAGD,EAAWP,EAG1B,KAAK,GAFDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OAClBD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtC,IAAIU,EAAUd,EAAIM,GAAaA,EAAYN,GAAM,OAAO,EAE1D,OAAO,GAKTU,EAAE6B,SAAW7B,EAAEkG,SAAWlG,EAAEmG,QAAU,SAAS7G,EAAKoB,EAAM0F,EAAWC,GAGnE,MAFKtG,GAAYT,KAAMA,EAAMU,EAAEsG,OAAOhH,KACd,gBAAb8G,IAAyBC,KAAOD,EAAY,GAChDpG,EAAEuG,QAAQjH,EAAKoB,EAAM0F,IAAc,GAI5CpG,EAAEwG,OAAS,SAASlH,EAAKmH,GACvB,GAAIC,GAAO1F,EAAMC,KAAKhB,UAAW,GAC7B0G,EAAS3G,EAAEwB,WAAWiF,EAC1B,OAAOzG,GAAE6E,IAAIvF,EAAK,SAASiE,GACzB,GAAIF,GAAOsD,EAASF,EAASlD,EAAMkD,EACnC,OAAe,OAARpD,EAAeA,EAAOA,EAAKM,MAAMJ,EAAOmD,MAKnD1G,EAAE4G,MAAQ,SAAStH,EAAKgF,GACtB,MAAOtE,GAAE6E,IAAIvF,EAAKU,EAAE+D,SAASO,KAK/BtE,EAAE6G,MAAQ,SAASvH,EAAKwH,GACtB,MAAO9G,GAAEyF,OAAOnG,EAAKU,EAAE8D,QAAQgD,KAKjC9G,EAAE+G,UAAY,SAASzH,EAAKwH,GAC1B,MAAO9G,GAAEqF,KAAK/F,EAAKU,EAAE8D,QAAQgD,KAI/B9G,EAAEc,IAAM,SAASxB,EAAKC,EAAUM,GAC9B,GACI0D,GAAOyD,EADPxC,GAAUR,IAAUiD,GAAgBjD,GAExC,IAAgB,MAAZzE,GAA2B,MAAPD,EAAa,CACnCA,EAAMS,EAAYT,GAAOA,EAAMU,EAAEsG,OAAOhH,EACxC,KAAK,GAAIsB,GAAI,EAAGjB,EAASL,EAAIK,OAAYA,EAAJiB,EAAYA,IAC/C2C,EAAQjE,EAAIsB,GACR2C,EAAQiB,IACVA,EAASjB,OAIbhE,GAAWc,EAAGd,EAAUM,GACxBG,EAAE2E,KAAKrF,EAAK,SAASiE,EAAO7D,EAAOiG,GACjCqB,EAAWzH,EAASgE,EAAO7D,EAAOiG,IAC9BqB,EAAWC,GAAgBD,KAAchD,KAAYQ,KAAYR,OACnEQ,EAASjB,EACT0D,EAAeD,IAIrB,OAAOxC,IAITxE,EAAEe,IAAM,SAASzB,EAAKC,EAAUM,GAC9B,GACI0D,GAAOyD,EADPxC,EAASR,IAAUiD,EAAejD,GAEtC,IAAgB,MAAZzE,GAA2B,MAAPD,EAAa,CACnCA,EAAMS,EAAYT,GAAOA,EAAMU,EAAEsG,OAAOhH,EACxC,KAAK,GAAIsB,GAAI,EAAGjB,EAASL,EAAIK,OAAYA,EAAJiB,EAAYA,IAC/C2C,EAAQjE,EAAIsB,GACA4D,EAARjB,IACFiB,EAASjB,OAIbhE,GAAWc,EAAGd,EAAUM,GACxBG,EAAE2E,KAAKrF,EAAK,SAASiE,EAAO7D,EAAOiG,GACjCqB,EAAWzH,EAASgE,EAAO7D,EAAOiG,IACnBsB,EAAXD,GAAwChD,MAAbgD,GAAoChD,MAAXQ,KACtDA,EAASjB,EACT0D,EAAeD,IAIrB,OAAOxC,IAKTxE,EAAEkH,QAAU,SAAS5H,GAInB,IAAK,GAAe6H,GAHhBC,EAAMrH,EAAYT,GAAOA,EAAMU,EAAEsG,OAAOhH,GACxCK,EAASyH,EAAIzH,OACb0H,EAAWlF,MAAMxC,GACZD,EAAQ,EAAiBC,EAARD,EAAgBA,IACxCyH,EAAOnH,EAAEsH,OAAO,EAAG5H,GACfyH,IAASzH,IAAO2H,EAAS3H,GAAS2H,EAASF,IAC/CE,EAASF,GAAQC,EAAI1H,EAEvB,OAAO2H,IAMTrH,EAAEuH,OAAS,SAASjI,EAAKkI,EAAGnB,GAC1B,MAAS,OAALmB,GAAanB,GACVtG,EAAYT,KAAMA,EAAMU,EAAEsG,OAAOhH,IAC/BA,EAAIU,EAAEsH,OAAOhI,EAAIK,OAAS,KAE5BK,EAAEkH,QAAQ5H,GAAK0B,MAAM,EAAGH,KAAKC,IAAI,EAAG0G,KAI7CxH,EAAEyH,OAAS,SAASnI,EAAKC,EAAUM,GAEjC,MADAN,GAAWc,EAAGd,EAAUM,GACjBG,EAAE4G,MAAM5G,EAAE6E,IAAIvF,EAAK,SAASiE,EAAO7D,EAAOiG,GAC/C,OACEpC,MAAOA,EACP7D,MAAOA,EACPgI,SAAUnI,EAASgE,EAAO7D,EAAOiG,MAElCgC,KAAK,SAASC,EAAMC,GACrB,GAAIC,GAAIF,EAAKF,SACTK,EAAIF,EAAMH,QACd,IAAII,IAAMC,EAAG,CACX,GAAID,EAAIC,GAAKD,QAAW,GAAG,MAAO,EAClC,IAAQC,EAAJD,GAASC,QAAW,GAAG,OAAQ,EAErC,MAAOH,GAAKlI,MAAQmI,EAAMnI,QACxB,SAIN,IAAIsI,GAAQ,SAASC,GACnB,MAAO,UAAS3I,EAAKC,EAAUM,GAC7B,GAAI2E,KAMJ,OALAjF,GAAWc,EAAGd,EAAUM,GACxBG,EAAE2E,KAAKrF,EAAK,SAASiE,EAAO7D,GAC1B,GAAI4E,GAAM/E,EAASgE,EAAO7D,EAAOJ,EACjC2I,GAASzD,EAAQjB,EAAOe,KAEnBE,GAMXxE,GAAEkI,QAAUF,EAAM,SAASxD,EAAQjB,EAAOe,GACpCtE,EAAE4B,IAAI4C,EAAQF,GAAME,EAAOF,GAAKxC,KAAKyB,GAAaiB,EAAOF,IAAQf,KAKvEvD,EAAEmI,QAAUH,EAAM,SAASxD,EAAQjB,EAAOe,GACxCE,EAAOF,GAAOf,IAMhBvD,EAAEoI,QAAUJ,EAAM,SAASxD,EAAQjB,EAAOe,GACpCtE,EAAE4B,IAAI4C,EAAQF,GAAME,EAAOF,KAAaE,EAAOF,GAAO,IAI5DtE,EAAEqI,QAAU,SAAS/I,GACnB,MAAKA,GACDU,EAAE0C,QAAQpD,GAAa0B,EAAMC,KAAK3B,GAClCS,EAAYT,GAAaU,EAAE6E,IAAIvF,EAAKU,EAAE4D,UACnC5D,EAAEsG,OAAOhH,OAIlBU,EAAEsI,KAAO,SAAShJ,GAChB,MAAW,OAAPA,EAAoB,EACjBS,EAAYT,GAAOA,EAAIK,OAASK,EAAEP,KAAKH,GAAKK,QAKrDK,EAAEuI,UAAY,SAASjJ,EAAKc,EAAWP,GACrCO,EAAYC,EAAGD,EAAWP,EAC1B,IAAI2I,MAAWC,IAIf,OAHAzI,GAAE2E,KAAKrF,EAAK,SAASiE,EAAOe,EAAKhF,IAC9Bc,EAAUmD,EAAOe,EAAKhF,GAAOkJ,EAAOC,GAAM3G,KAAKyB,MAE1CiF,EAAMC,IAShBzI,EAAE0I,MAAQ1I,EAAE2I,KAAO3I,EAAE4I,KAAO,SAASzI,EAAOqH,EAAGnB,GAC7C,MAAa,OAATlG,MAA2B,GACtB,MAALqH,GAAanB,EAAclG,EAAM,GAC9BH,EAAE6I,QAAQ1I,EAAOA,EAAMR,OAAS6H,IAMzCxH,EAAE6I,QAAU,SAAS1I,EAAOqH,EAAGnB,GAC7B,MAAOrF,GAAMC,KAAKd,EAAO,EAAGU,KAAKC,IAAI,EAAGX,EAAMR,QAAe,MAAL6H,GAAanB,EAAQ,EAAImB,MAKnFxH,EAAE8I,KAAO,SAAS3I,EAAOqH,EAAGnB,GAC1B,MAAa,OAATlG,MAA2B,GACtB,MAALqH,GAAanB,EAAclG,EAAMA,EAAMR,OAAS,GAC7CK,EAAE+I,KAAK5I,EAAOU,KAAKC,IAAI,EAAGX,EAAMR,OAAS6H,KAMlDxH,EAAE+I,KAAO/I,EAAEgJ,KAAOhJ,EAAEiJ,KAAO,SAAS9I,EAAOqH,EAAGnB,GAC5C,MAAOrF,GAAMC,KAAKd,EAAY,MAALqH,GAAanB,EAAQ,EAAImB,IAIpDxH,EAAEkJ,QAAU,SAAS/I,GACnB,MAAOH,GAAEyF,OAAOtF,EAAOH,EAAE4D,UAI3B,IAAIuF,GAAU,SAASC,EAAOC,EAASC,EAAQC,GAE7C,IAAK,GADDC,MAAa7I,EAAM,EACdC,EAAI2I,GAAc,EAAG5J,EAASW,EAAU8I,GAAYzJ,EAAJiB,EAAYA,IAAK,CACxE,GAAI2C,GAAQ6F,EAAMxI,EAClB,IAAIb,EAAYwD,KAAWvD,EAAE0C,QAAQa,IAAUvD,EAAEyJ,YAAYlG,IAAS,CAE/D8F,IAAS9F,EAAQ4F,EAAQ5F,EAAO8F,EAASC,GAC9C,IAAII,GAAI,EAAGC,EAAMpG,EAAM5D,MAEvB,KADA6J,EAAO7J,QAAUgK,EACNA,EAAJD,GACLF,EAAO7I,KAAS4C,EAAMmG,SAEdJ,KACVE,EAAO7I,KAAS4C,GAGpB,MAAOiG,GAITxJ,GAAEmJ,QAAU,SAAShJ,EAAOkJ,GAC1B,MAAOF,GAAQhJ,EAAOkJ,GAAS,IAIjCrJ,EAAE4J,QAAU,SAASzJ,GACnB,MAAOH,GAAE6J,WAAW1J,EAAOa,EAAMC,KAAKhB,UAAW,KAMnDD,EAAE8J,KAAO9J,EAAE+J,OAAS,SAAS5J,EAAO6J,EAAUzK,EAAUM,GACjDG,EAAEiK,UAAUD,KACfnK,EAAUN,EACVA,EAAWyK,EACXA,GAAW,GAEG,MAAZzK,IAAkBA,EAAWc,EAAGd,EAAUM,GAG9C,KAAK,GAFD2E,MACA0F,KACKtJ,EAAI,EAAGjB,EAASW,EAAUH,GAAYR,EAAJiB,EAAYA,IAAK,CAC1D,GAAI2C,GAAQpD,EAAMS,GACdoG,EAAWzH,EAAWA,EAASgE,EAAO3C,EAAGT,GAASoD,CAClDyG,IACGpJ,GAAKsJ,IAASlD,GAAUxC,EAAO1C,KAAKyB,GACzC2G,EAAOlD,GACEzH,EACJS,EAAE6B,SAASqI,EAAMlD,KACpBkD,EAAKpI,KAAKkF,GACVxC,EAAO1C,KAAKyB,IAEJvD,EAAE6B,SAAS2C,EAAQjB,IAC7BiB,EAAO1C,KAAKyB,GAGhB,MAAOiB,IAKTxE,EAAEmK,MAAQ,WACR,MAAOnK,GAAE8J,KAAKX,EAAQlJ,WAAW,GAAM,KAKzCD,EAAEoK,aAAe,SAASjK,GAGxB,IAAK,GAFDqE,MACA6F,EAAapK,UAAUN,OAClBiB,EAAI,EAAGjB,EAASW,EAAUH,GAAYR,EAAJiB,EAAYA,IAAK,CAC1D,GAAIF,GAAOP,EAAMS,EACjB,KAAIZ,EAAE6B,SAAS2C,EAAQ9D,GAAvB,CACA,IAAK,GAAIgJ,GAAI,EAAOW,EAAJX,GACT1J,EAAE6B,SAAS5B,UAAUyJ,GAAIhJ,GADAgJ,KAG5BA,IAAMW,GAAY7F,EAAO1C,KAAKpB,IAEpC,MAAO8D,IAKTxE,EAAE6J,WAAa,SAAS1J,GACtB,GAAI4I,GAAOI,EAAQlJ,WAAW,GAAM,EAAM,EAC1C,OAAOD,GAAEyF,OAAOtF,EAAO,SAASoD,GAC9B,OAAQvD,EAAE6B,SAASkH,EAAMxF,MAM7BvD,EAAEsK,IAAM,WACN,MAAOtK,GAAEuK,MAAMtK,YAKjBD,EAAEuK,MAAQ,SAASpK,GAIjB,IAAK,GAHDR,GAASQ,GAASH,EAAEc,IAAIX,EAAOG,GAAWX,QAAU,EACpD6E,EAASrC,MAAMxC,GAEVD,EAAQ,EAAWC,EAARD,EAAgBA,IAClC8E,EAAO9E,GAASM,EAAE4G,MAAMzG,EAAOT,EAEjC,OAAO8E,IAMTxE,EAAEwK,OAAS,SAAS7E,EAAMW,GAExB,IAAK,GADD9B,MACK5D,EAAI,EAAGjB,EAASW,EAAUqF,GAAWhG,EAAJiB,EAAYA,IAChD0F,EACF9B,EAAOmB,EAAK/E,IAAM0F,EAAO1F,GAEzB4D,EAAOmB,EAAK/E,GAAG,IAAM+E,EAAK/E,GAAG,EAGjC,OAAO4D,IAiBTxE,EAAEuF,UAAYrF,EAA2B,GACzCF,EAAEyK,cAAgBvK,GAA4B,GAI9CF,EAAES,YAAc,SAASN,EAAOb,EAAKC,EAAUM,GAC7CN,EAAWc,EAAGd,EAAUM,EAAS,EAGjC,KAFA,GAAI0D,GAAQhE,EAASD,GACjBoL,EAAM,EAAGC,EAAOrK,EAAUH,GACjBwK,EAAND,GAAY,CACjB,GAAIE,GAAM/J,KAAKgK,OAAOH,EAAMC,GAAQ,EAChCpL,GAASY,EAAMyK,IAAQrH,EAAOmH,EAAME,EAAM,EAAQD,EAAOC,EAE/D,MAAOF,IAgCT1K,EAAEuG,QAAUhG,EAAkB,EAAGP,EAAEuF,UAAWvF,EAAES,aAChDT,EAAE8K,YAAcvK,GAAmB,EAAGP,EAAEyK,eAKxCzK,EAAE+K,MAAQ,SAASC,EAAOC,EAAMC,GAClB,MAARD,IACFA,EAAOD,GAAS,EAChBA,EAAQ,GAEVE,EAAOA,GAAQ,CAKf,KAAK,GAHDvL,GAASkB,KAAKC,IAAID,KAAKsK,MAAMF,EAAOD,GAASE,GAAO,GACpDH,EAAQ5I,MAAMxC,GAETgB,EAAM,EAAShB,EAANgB,EAAcA,IAAOqK,GAASE,EAC9CH,EAAMpK,GAAOqK,CAGf,OAAOD,GAQT,IAAIK,GAAe,SAASC,EAAYC,EAAWzL,EAAS0L,EAAgB7E,GAC1E,KAAM6E,YAA0BD,IAAY,MAAOD,GAAW1H,MAAM9D,EAAS6G,EAC7E,IAAI8E,GAAOjH,EAAW8G,EAAW5J,WAC7B+C,EAAS6G,EAAW1H,MAAM6H,EAAM9E,EACpC,OAAI1G,GAAE6D,SAASW,GAAgBA,EACxBgH,EAMTxL,GAAE6C,KAAO,SAASQ,EAAMxD,GACtB,GAAI+C,GAAcS,EAAKR,OAASD,EAAY,MAAOA,GAAWe,MAAMN,EAAMrC,EAAMC,KAAKhB,UAAW,GAChG,KAAKD,EAAEwB,WAAW6B,GAAO,KAAM,IAAIoI,WAAU,oCAC7C,IAAI/E,GAAO1F,EAAMC,KAAKhB,UAAW,GAC7ByL,EAAQ,WACV,MAAON,GAAa/H,EAAMqI,EAAO7L,EAASmC,KAAM0E,EAAKiF,OAAO3K,EAAMC,KAAKhB,aAEzE,OAAOyL,IAMT1L,EAAE4L,QAAU,SAASvI,GACnB,GAAIwI,GAAY7K,EAAMC,KAAKhB,UAAW,GAClCyL,EAAQ,WAGV,IAAK,GAFDI,GAAW,EAAGnM,EAASkM,EAAUlM,OACjC+G,EAAOvE,MAAMxC,GACRiB,EAAI,EAAOjB,EAAJiB,EAAYA,IAC1B8F,EAAK9F,GAAKiL,EAAUjL,KAAOZ,EAAIC,UAAU6L,KAAcD,EAAUjL,EAEnE,MAAOkL,EAAW7L,UAAUN,QAAQ+G,EAAK5E,KAAK7B,UAAU6L,KACxD,OAAOV,GAAa/H,EAAMqI,EAAO1J,KAAMA,KAAM0E,GAE/C,OAAOgF,IAMT1L,EAAE+L,QAAU,SAASzM,GACnB,GAAIsB,GAA8B0D,EAA3B3E,EAASM,UAAUN,MAC1B,IAAc,GAAVA,EAAa,KAAM,IAAIqM,OAAM,wCACjC,KAAKpL,EAAI,EAAOjB,EAAJiB,EAAYA,IACtB0D,EAAMrE,UAAUW,GAChBtB,EAAIgF,GAAOtE,EAAE6C,KAAKvD,EAAIgF,GAAMhF,EAE9B,OAAOA,IAITU,EAAEiM,QAAU,SAAS5I,EAAM6I,GACzB,GAAID,GAAU,SAAS3H,GACrB,GAAI6H,GAAQF,EAAQE,MAChBC,EAAU,IAAMF,EAASA,EAAOvI,MAAM3B,KAAM/B,WAAaqE,EAE7D,OADKtE,GAAE4B,IAAIuK,EAAOC,KAAUD,EAAMC,GAAW/I,EAAKM,MAAM3B,KAAM/B,YACvDkM,EAAMC,GAGf,OADAH,GAAQE,SACDF,GAKTjM,EAAEqM,MAAQ,SAAShJ,EAAMiJ,GACvB,GAAI5F,GAAO1F,EAAMC,KAAKhB,UAAW,EACjC,OAAOsM,YAAW,WAChB,MAAOlJ,GAAKM,MAAM,KAAM+C,IACvB4F,IAKLtM,EAAEwM,MAAQxM,EAAE4L,QAAQ5L,EAAEqM,MAAOrM,EAAG,GAOhCA,EAAEyM,SAAW,SAASpJ,EAAMiJ,EAAMI,GAChC,GAAI7M,GAAS6G,EAAMlC,EACfmI,EAAU,KACVC,EAAW,CACVF,KAASA,KACd,IAAIG,GAAQ,WACVD,EAAWF,EAAQI,WAAY,EAAQ,EAAI9M,EAAE+M,MAC7CJ,EAAU,KACVnI,EAASnB,EAAKM,MAAM9D,EAAS6G,GACxBiG,IAAS9M,EAAU6G,EAAO,MAEjC,OAAO,YACL,GAAIqG,GAAM/M,EAAE+M,KACPH,IAAYF,EAAQI,WAAY,IAAOF,EAAWG,EACvD,IAAIC,GAAYV,GAAQS,EAAMH,EAc9B,OAbA/M,GAAUmC,KACV0E,EAAOzG,UACU,GAAb+M,GAAkBA,EAAYV,GAC5BK,IACFM,aAAaN,GACbA,EAAU,MAEZC,EAAWG,EACXvI,EAASnB,EAAKM,MAAM9D,EAAS6G,GACxBiG,IAAS9M,EAAU6G,EAAO,OACrBiG,GAAWD,EAAQQ,YAAa,IAC1CP,EAAUJ,WAAWM,EAAOG,IAEvBxI,IAQXxE,EAAEmN,SAAW,SAAS9J,EAAMiJ,EAAMc,GAChC,GAAIT,GAASjG,EAAM7G,EAASwN,EAAW7I,EAEnCqI,EAAQ,WACV,GAAI/D,GAAO9I,EAAE+M,MAAQM,CAEVf,GAAPxD,GAAeA,GAAQ,EACzB6D,EAAUJ,WAAWM,EAAOP,EAAOxD,IAEnC6D,EAAU,KACLS,IACH5I,EAASnB,EAAKM,MAAM9D,EAAS6G,GACxBiG,IAAS9M,EAAU6G,EAAO,QAKrC,OAAO,YACL7G,EAAUmC,KACV0E,EAAOzG,UACPoN,EAAYrN,EAAE+M,KACd,IAAIO,GAAUF,IAAcT,CAO5B,OANKA,KAASA,EAAUJ,WAAWM,EAAOP,IACtCgB,IACF9I,EAASnB,EAAKM,MAAM9D,EAAS6G,GAC7B7G,EAAU6G,EAAO,MAGZlC,IAOXxE,EAAEuN,KAAO,SAASlK,EAAMmK,GACtB,MAAOxN,GAAE4L,QAAQ4B,EAASnK,IAI5BrD,EAAE6F,OAAS,SAASzF,GAClB,MAAO,YACL,OAAQA,EAAUuD,MAAM3B,KAAM/B,aAMlCD,EAAEyN,QAAU,WACV,GAAI/G,GAAOzG,UACP+K,EAAQtE,EAAK/G,OAAS,CAC1B,OAAO,YAGL,IAFA,GAAIiB,GAAIoK,EACJxG,EAASkC,EAAKsE,GAAOrH,MAAM3B,KAAM/B,WAC9BW,KAAK4D,EAASkC,EAAK9F,GAAGK,KAAKe,KAAMwC,EACxC,OAAOA,KAKXxE,EAAE0N,MAAQ,SAASC,EAAOtK,GACxB,MAAO,YACL,QAAMsK,EAAQ,EACLtK,EAAKM,MAAM3B,KAAM/B,WAD1B,SAOJD,EAAE4N,OAAS,SAASD,EAAOtK,GACzB,GAAI7D,EACJ,OAAO,YAKL,QAJMmO,EAAQ,IACZnO,EAAO6D,EAAKM,MAAM3B,KAAM/B,YAEb,GAAT0N,IAAYtK,EAAO,MAChB7D,IAMXQ,EAAE6N,KAAO7N,EAAE4L,QAAQ5L,EAAE4N,OAAQ,EAM7B,IAAIE,KAAevL,SAAU,MAAMwL,qBAAqB,YACpD1M,GAAsB,UAAW,gBAAiB,WAClC,uBAAwB,iBAAkB,iBAqB9DrB,GAAEP,KAAO,SAASH,GAChB,IAAKU,EAAE6D,SAASvE,GAAM,QACtB,IAAIqD,EAAY,MAAOA,GAAWrD,EAClC,IAAIG,KACJ,KAAK,GAAI6E,KAAOhF,GAASU,EAAE4B,IAAItC,EAAKgF,IAAM7E,EAAKqC,KAAKwC,EAGpD,OADIwJ,IAAY3M,EAAoB7B,EAAKG,GAClCA,GAITO,EAAEgO,QAAU,SAAS1O,GACnB,IAAKU,EAAE6D,SAASvE,GAAM,QACtB,IAAIG,KACJ,KAAK,GAAI6E,KAAOhF,GAAKG,EAAKqC,KAAKwC,EAG/B,OADIwJ,IAAY3M,EAAoB7B,EAAKG,GAClCA,GAITO,EAAEsG,OAAS,SAAShH,GAIlB,IAAK,GAHDG,GAAOO,EAAEP,KAAKH,GACdK,EAASF,EAAKE,OACd2G,EAASnE,MAAMxC,GACViB,EAAI,EAAOjB,EAAJiB,EAAYA,IAC1B0F,EAAO1F,GAAKtB,EAAIG,EAAKmB,GAEvB,OAAO0F,IAKTtG,EAAEiO,UAAY,SAAS3O,EAAKC,EAAUM,GACpCN,EAAWc,EAAGd,EAAUM,EAKtB,KAAK,GADDD,GAHFH,EAAQO,EAAEP,KAAKH,GACbK,EAASF,EAAKE,OACdoF,KAEKrF,EAAQ,EAAWC,EAARD,EAAgBA,IAClCE,EAAaH,EAAKC,GAClBqF,EAAQnF,GAAcL,EAASD,EAAIM,GAAaA,EAAYN,EAE9D,OAAOyF,IAIX/E,EAAEkO,MAAQ,SAAS5O,GAIjB,IAAK,GAHDG,GAAOO,EAAEP,KAAKH,GACdK,EAASF,EAAKE,OACduO,EAAQ/L,MAAMxC,GACTiB,EAAI,EAAOjB,EAAJiB,EAAYA,IAC1BsN,EAAMtN,IAAMnB,EAAKmB,GAAItB,EAAIG,EAAKmB,IAEhC,OAAOsN,IAITlO,EAAEmO,OAAS,SAAS7O,GAGlB,IAAK,GAFDkF,MACA/E,EAAOO,EAAEP,KAAKH,GACTsB,EAAI,EAAGjB,EAASF,EAAKE,OAAYA,EAAJiB,EAAYA,IAChD4D,EAAOlF,EAAIG,EAAKmB,KAAOnB,EAAKmB,EAE9B,OAAO4D,IAKTxE,EAAEoO,UAAYpO,EAAEqO,QAAU,SAAS/O,GACjC,GAAIgP,KACJ,KAAK,GAAIhK,KAAOhF,GACVU,EAAEwB,WAAWlC,EAAIgF,KAAOgK,EAAMxM,KAAKwC,EAEzC,OAAOgK,GAAM3G,QAIf3H,EAAEuO,OAAStK,EAAejE,EAAEgO,SAI5BhO,EAAEwO,UAAYxO,EAAEyO,OAASxK,EAAejE,EAAEP,MAG1CO,EAAEwF,QAAU,SAASlG,EAAKc,EAAWP,GACnCO,EAAYC,EAAGD,EAAWP,EAE1B,KAAK,GADmByE,GAApB7E,EAAOO,EAAEP,KAAKH,GACTsB,EAAI,EAAGjB,EAASF,EAAKE,OAAYA,EAAJiB,EAAYA,IAEhD,GADA0D,EAAM7E,EAAKmB,GACPR,EAAUd,EAAIgF,GAAMA,EAAKhF,GAAM,MAAOgF,IAK9CtE,EAAE0O,KAAO,SAASlE,EAAQmE,EAAW9O,GACnC,GAA+BN,GAAUE,EAArC+E,KAAalF,EAAMkL,CACvB,IAAW,MAAPlL,EAAa,MAAOkF,EACpBxE,GAAEwB,WAAWmN,IACflP,EAAOO,EAAEgO,QAAQ1O,GACjBC,EAAWO,EAAW6O,EAAW9O,KAEjCJ,EAAO0J,EAAQlJ,WAAW,GAAO,EAAO,GACxCV,EAAW,SAASgE,EAAOe,EAAKhF,GAAO,MAAOgF,KAAOhF,IACrDA,EAAM8C,OAAO9C,GAEf,KAAK,GAAIsB,GAAI,EAAGjB,EAASF,EAAKE,OAAYA,EAAJiB,EAAYA,IAAK,CACrD,GAAI0D,GAAM7E,EAAKmB,GACX2C,EAAQjE,EAAIgF,EACZ/E,GAASgE,EAAOe,EAAKhF,KAAMkF,EAAOF,GAAOf,GAE/C,MAAOiB,IAITxE,EAAE4O,KAAO,SAAStP,EAAKC,EAAUM,GAC/B,GAAIG,EAAEwB,WAAWjC,GACfA,EAAWS,EAAE6F,OAAOtG,OACf,CACL,GAAIE,GAAOO,EAAE6E,IAAIsE,EAAQlJ,WAAW,GAAO,EAAO,GAAI4O,OACtDtP,GAAW,SAASgE,EAAOe,GACzB,OAAQtE,EAAE6B,SAASpC,EAAM6E,IAG7B,MAAOtE,GAAE0O,KAAKpP,EAAKC,EAAUM,IAI/BG,EAAE8O,SAAW7K,EAAejE,EAAEgO,SAAS,GAKvChO,EAAE+C,OAAS,SAAStB,EAAWsN,GAC7B,GAAIvK,GAASD,EAAW9C,EAExB,OADIsN,IAAO/O,EAAEwO,UAAUhK,EAAQuK,GACxBvK,GAITxE,EAAEgP,MAAQ,SAAS1P,GACjB,MAAKU,GAAE6D,SAASvE,GACTU,EAAE0C,QAAQpD,GAAOA,EAAI0B,QAAUhB,EAAEuO,UAAWjP,GADtBA,GAO/BU,EAAEiP,IAAM,SAAS3P,EAAK4P,GAEpB,MADAA,GAAY5P,GACLA,GAITU,EAAEmP,QAAU,SAAS3E,EAAQ1D,GAC3B,GAAIrH,GAAOO,EAAEP,KAAKqH,GAAQnH,EAASF,EAAKE,MACxC,IAAc,MAAV6K,EAAgB,OAAQ7K,CAE5B,KAAK,GADDL,GAAM8C,OAAOoI,GACR5J,EAAI,EAAOjB,EAAJiB,EAAYA,IAAK,CAC/B,GAAI0D,GAAM7E,EAAKmB,EACf,IAAIkG,EAAMxC,KAAShF,EAAIgF,MAAUA,IAAOhF,IAAM,OAAO,EAEvD,OAAO,EAKT,IAAI8P,GAAK,SAAStH,EAAGC,EAAGsH,EAAQC,GAG9B,GAAIxH,IAAMC,EAAG,MAAa,KAAND,GAAW,EAAIA,IAAM,EAAIC,CAE7C,IAAS,MAALD,GAAkB,MAALC,EAAW,MAAOD,KAAMC,CAErCD,aAAa9H,KAAG8H,EAAIA,EAAE7E,UACtB8E,YAAa/H,KAAG+H,EAAIA,EAAE9E,SAE1B,IAAIsM,GAAYhN,EAAStB,KAAK6G,EAC9B,IAAIyH,IAAchN,EAAStB,KAAK8G,GAAI,OAAO,CAC3C,QAAQwH,GAEN,IAAK,kBAEL,IAAK,kBAGH,MAAO,GAAKzH,GAAM,GAAKC,CACzB,KAAK,kBAGH,OAAKD,KAAOA,GAAWC,KAAOA,EAEhB,KAAND,EAAU,GAAKA,IAAM,EAAIC,GAAKD,KAAOC,CAC/C,KAAK,gBACL,IAAK,mBAIH,OAAQD,KAAOC,EAGnB,GAAIyH,GAA0B,mBAAdD,CAChB,KAAKC,EAAW,CACd,GAAgB,gBAAL1H,IAA6B,gBAALC,GAAe,OAAO,CAIzD,IAAI0H,GAAQ3H,EAAExG,YAAaoO,EAAQ3H,EAAEzG,WACrC,IAAImO,IAAUC,KAAW1P,EAAEwB,WAAWiO,IAAUA,YAAiBA,IACxCzP,EAAEwB,WAAWkO,IAAUA,YAAiBA,KACzC,eAAiB5H,IAAK,eAAiBC,GAC7D,OAAO,EAQXsH,EAASA,MACTC,EAASA,KAET,KADA,GAAI3P,GAAS0P,EAAO1P,OACbA,KAGL,GAAI0P,EAAO1P,KAAYmI,EAAG,MAAOwH,GAAO3P,KAAYoI,CAQtD,IAJAsH,EAAOvN,KAAKgG,GACZwH,EAAOxN,KAAKiG,GAGRyH,EAAW,CAGb,GADA7P,EAASmI,EAAEnI,OACPA,IAAWoI,EAAEpI,OAAQ,OAAO,CAEhC,MAAOA,KACL,IAAKyP,EAAGtH,EAAEnI,GAASoI,EAAEpI,GAAS0P,EAAQC,GAAS,OAAO,MAEnD,CAEL,GAAsBhL,GAAlB7E,EAAOO,EAAEP,KAAKqI,EAGlB,IAFAnI,EAASF,EAAKE,OAEVK,EAAEP,KAAKsI,GAAGpI,SAAWA,EAAQ,OAAO,CACxC,MAAOA,KAGL,GADA2E,EAAM7E,EAAKE,IACLK,EAAE4B,IAAImG,EAAGzD,KAAQ8K,EAAGtH,EAAExD,GAAMyD,EAAEzD,GAAM+K,EAAQC,GAAU,OAAO,EAMvE,MAFAD,GAAOM,MACPL,EAAOK,OACA,EAIT3P,GAAE4P,QAAU,SAAS9H,EAAGC,GACtB,MAAOqH,GAAGtH,EAAGC,IAKf/H,EAAE6P,QAAU,SAASvQ,GACnB,MAAW,OAAPA,GAAoB,EACpBS,EAAYT,KAASU,EAAE0C,QAAQpD,IAAQU,EAAE8P,SAASxQ,IAAQU,EAAEyJ,YAAYnK,IAA6B,IAAfA,EAAIK,OAChE,IAAvBK,EAAEP,KAAKH,GAAKK,QAIrBK,EAAE+P,UAAY,SAASzQ,GACrB,SAAUA,GAAwB,IAAjBA,EAAI0Q,WAKvBhQ,EAAE0C,QAAUD,GAAiB,SAASnD,GACpC,MAA8B,mBAAvBiD,EAAStB,KAAK3B,IAIvBU,EAAE6D,SAAW,SAASvE,GACpB,GAAI2Q,SAAc3Q,EAClB,OAAgB,aAAT2Q,GAAgC,WAATA,KAAuB3Q,GAIvDU,EAAE2E,MAAM,YAAa,WAAY,SAAU,SAAU,OAAQ,SAAU,SAAU,SAASuL,GACxFlQ,EAAE,KAAOkQ,GAAQ,SAAS5Q,GACxB,MAAOiD,GAAStB,KAAK3B,KAAS,WAAa4Q,EAAO,OAMjDlQ,EAAEyJ,YAAYxJ,aACjBD,EAAEyJ,YAAc,SAASnK,GACvB,MAAOU,GAAE4B,IAAItC,EAAK,YAMJ,kBAAP,KAAyC,gBAAb6Q,aACrCnQ,EAAEwB,WAAa,SAASlC,GACtB,MAAqB,kBAAPA,KAAqB,IAKvCU,EAAEoQ,SAAW,SAAS9Q,GACpB,MAAO8Q,UAAS9Q,KAAS4B,MAAMmP,WAAW/Q,KAI5CU,EAAEkB,MAAQ,SAAS5B,GACjB,MAAOU,GAAEsQ,SAAShR,IAAQA,KAASA,GAIrCU,EAAEiK,UAAY,SAAS3K,GACrB,MAAOA,MAAQ,GAAQA,KAAQ,GAAgC,qBAAvBiD,EAAStB,KAAK3B,IAIxDU,EAAEuQ,OAAS,SAASjR,GAClB,MAAe,QAARA,GAITU,EAAEwQ,YAAc,SAASlR,GACvB,MAAOA,SAAa,IAKtBU,EAAE4B,IAAM,SAAStC,EAAKgF,GACpB,MAAc,OAAPhF,GAAekD,EAAevB,KAAK3B,EAAKgF,IAQjDtE,EAAEyQ,WAAa,WAEb,MADA1O,GAAK/B,EAAIiC,EACFD,MAIThC,EAAE4D,SAAW,SAASL,GACpB,MAAOA,IAITvD,EAAE0Q,SAAW,SAASnN,GACpB,MAAO,YACL,MAAOA,KAIXvD,EAAE2Q,KAAO,aAET3Q,EAAE+D,SAAWA,EAGb/D,EAAE4Q,WAAa,SAAStR,GACtB,MAAc,OAAPA,EAAc,aAAe,SAASgF,GAC3C,MAAOhF,GAAIgF,KAMftE,EAAE8D,QAAU9D,EAAE6Q,QAAU,SAAS/J,GAE/B,MADAA,GAAQ9G,EAAEwO,aAAc1H,GACjB,SAASxH,GACd,MAAOU,GAAEmP,QAAQ7P,EAAKwH,KAK1B9G,EAAE2N,MAAQ,SAASnG,EAAGjI,EAAUM,GAC9B,GAAIiR,GAAQ3O,MAAMtB,KAAKC,IAAI,EAAG0G,GAC9BjI,GAAWO,EAAWP,EAAUM,EAAS,EACzC,KAAK,GAAIe,GAAI,EAAO4G,EAAJ5G,EAAOA,IAAKkQ,EAAMlQ,GAAKrB,EAASqB,EAChD,OAAOkQ,IAIT9Q,EAAEsH,OAAS,SAASvG,EAAKD,GAKvB,MAJW,OAAPA,IACFA,EAAMC,EACNA,EAAM,GAEDA,EAAMF,KAAKgK,MAAMhK,KAAKyG,UAAYxG,EAAMC,EAAM,KAIvDf,EAAE+M,IAAMgE,KAAKhE,KAAO,WAClB,OAAO,GAAIgE,OAAOC,UAIpB,IAAIC,IACFC,IAAK,QACLC,IAAK,OACLC,IAAK,OACLC,IAAK,SACLC,IAAK,SACLC,IAAK,UAEHC,EAAcxR,EAAEmO,OAAO8C,GAGvBQ,EAAgB,SAAS5M,GAC3B,GAAI6M,GAAU,SAASC,GACrB,MAAO9M,GAAI8M,IAGTvN,EAAS,MAAQpE,EAAEP,KAAKoF,GAAK+M,KAAK,KAAO,IACzCC,EAAaC,OAAO1N,GACpB2N,EAAgBD,OAAO1N,EAAQ,IACnC,OAAO,UAAS4N,GAEd,MADAA,GAAmB,MAAVA,EAAiB,GAAK,GAAKA,EAC7BH,EAAWI,KAAKD,GAAUA,EAAOE,QAAQH,EAAeL,GAAWM,GAG9EhS,GAAEmS,OAASV,EAAcR,GACzBjR,EAAEoS,SAAWX,EAAcD,GAI3BxR,EAAEwE,OAAS,SAASgG,EAAQzG,EAAUsO,GACpC,GAAI9O,GAAkB,MAAViH,MAAsB,GAAIA,EAAOzG,EAI7C,OAHIR,SAAe,KACjBA,EAAQ8O,GAEHrS,EAAEwB,WAAW+B,GAASA,EAAMtC,KAAKuJ,GAAUjH,EAKpD,IAAI+O,GAAY,CAChBtS,GAAEuS,SAAW,SAASC,GACpB,GAAIC,KAAOH,EAAY,EACvB,OAAOE,GAASA,EAASC,EAAKA,GAKhCzS,EAAE0S,kBACAC,SAAc,kBACdC,YAAc,mBACdT,OAAc,mBAMhB,IAAIU,GAAU,OAIVC,GACFxB,IAAU,IACVyB,KAAU,KACVC,KAAU,IACVC,KAAU,IACVC,SAAU,QACVC,SAAU,SAGRzB,EAAU,4BAEV0B,EAAa,SAASzB,GACxB,MAAO,KAAOmB,EAAQnB,GAOxB3R,GAAEqT,SAAW,SAASC,EAAMC,EAAUC,IAC/BD,GAAYC,IAAaD,EAAWC,GACzCD,EAAWvT,EAAE8O,YAAayE,EAAUvT,EAAE0S,iBAGtC,IAAI5O,GAAUgO,SACXyB,EAASpB,QAAUU,GAASzO,QAC5BmP,EAASX,aAAeC,GAASzO,QACjCmP,EAASZ,UAAYE,GAASzO,QAC/BwN,KAAK,KAAO,KAAM,KAGhBlS,EAAQ,EACR0E,EAAS,QACbkP,GAAKpB,QAAQpO,EAAS,SAAS6N,EAAOQ,EAAQS,EAAaD,EAAUc,GAanE,MAZArP,IAAUkP,EAAKtS,MAAMtB,EAAO+T,GAAQvB,QAAQR,EAAS0B,GACrD1T,EAAQ+T,EAAS9B,EAAMhS,OAEnBwS,EACF/N,GAAU,cAAgB+N,EAAS,iCAC1BS,EACTxO,GAAU,cAAgBwO,EAAc,uBAC/BD,IACTvO,GAAU,OAASuO,EAAW,YAIzBhB,IAETvN,GAAU,OAGLmP,EAASG,WAAUtP,EAAS,mBAAqBA,EAAS,OAE/DA,EAAS,2CACP,oDACAA,EAAS,eAEX,KACE,GAAIuP,GAAS,GAAIrR,UAASiR,EAASG,UAAY,MAAO,IAAKtP,GAC3D,MAAOwP,GAEP,KADAA,GAAExP,OAASA,EACLwP,EAGR,GAAIP,GAAW,SAASQ,GACtB,MAAOF,GAAO1S,KAAKe,KAAM6R,EAAM7T,IAI7B8T,EAAWP,EAASG,UAAY,KAGpC,OAFAL,GAASjP,OAAS,YAAc0P,EAAW,OAAS1P,EAAS,IAEtDiP,GAITrT,EAAE+T,MAAQ,SAASzU,GACjB,GAAI0U,GAAWhU,EAAEV,EAEjB,OADA0U,GAASC,QAAS,EACXD,EAUT,IAAIxP,GAAS,SAASwP,EAAU1U,GAC9B,MAAO0U,GAASC,OAASjU,EAAEV,GAAKyU,QAAUzU,EAI5CU,GAAEkU,MAAQ,SAAS5U,GACjBU,EAAE2E,KAAK3E,EAAEoO,UAAU9O,GAAM,SAAS4Q,GAChC,GAAI7M,GAAOrD,EAAEkQ,GAAQ5Q,EAAI4Q,EACzBlQ,GAAEyB,UAAUyO,GAAQ,WAClB,GAAIxJ,IAAQ1E,KAAKiB,SAEjB,OADAnB,GAAK6B,MAAM+C,EAAMzG,WACVuE,EAAOxC,KAAMqB,EAAKM,MAAM3D,EAAG0G,QAMxC1G,EAAEkU,MAAMlU,GAGRA,EAAE2E,MAAM,MAAO,OAAQ,UAAW,QAAS,OAAQ,SAAU,WAAY,SAASuL,GAChF,GAAIzJ,GAASvE,EAAWgO,EACxBlQ,GAAEyB,UAAUyO,GAAQ,WAClB,GAAI5Q,GAAM0C,KAAKiB,QAGf,OAFAwD,GAAO9C,MAAMrE,EAAKW,WACJ,UAATiQ,GAA6B,WAATA,GAAqC,IAAf5Q,EAAIK,cAAqBL,GAAI,GACrEkF,EAAOxC,KAAM1C,MAKxBU,EAAE2E,MAAM,SAAU,OAAQ,SAAU,SAASuL,GAC3C,GAAIzJ,GAASvE,EAAWgO,EACxBlQ,GAAEyB,UAAUyO,GAAQ,WAClB,MAAO1L,GAAOxC,KAAMyE,EAAO9C,MAAM3B,KAAKiB,SAAUhD,eAKpDD,EAAEyB,UAAU8B,MAAQ,WAClB,MAAOvB,MAAKiB,UAKdjD,EAAEyB,UAAU0S,QAAUnU,EAAEyB,UAAU2S,OAASpU,EAAEyB,UAAU8B,MAEvDvD,EAAEyB,UAAUc,SAAW,WACrB,MAAO,GAAKP,KAAKiB,UAUG,kBAAXoR,SAAyBA,OAAOC,KACzCD,OAAO,gBAAkB,WACvB,MAAOrU,OAGXiB,KAAKe"} \ No newline at end of file diff --git a/node_modules/underscore/underscore.js b/node_modules/underscore/underscore.js deleted file mode 100644 index b29332f94..000000000 --- a/node_modules/underscore/underscore.js +++ /dev/null @@ -1,1548 +0,0 @@ -// Underscore.js 1.8.3 -// http://underscorejs.org -// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -// Underscore may be freely distributed under the MIT license. - -(function() { - - // Baseline setup - // -------------- - - // Establish the root object, `window` in the browser, or `exports` on the server. - var root = this; - - // Save the previous value of the `_` variable. - var previousUnderscore = root._; - - // Save bytes in the minified (but not gzipped) version: - var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype; - - // Create quick reference variables for speed access to core prototypes. - var - push = ArrayProto.push, - slice = ArrayProto.slice, - toString = ObjProto.toString, - hasOwnProperty = ObjProto.hasOwnProperty; - - // All **ECMAScript 5** native function implementations that we hope to use - // are declared here. - var - nativeIsArray = Array.isArray, - nativeKeys = Object.keys, - nativeBind = FuncProto.bind, - nativeCreate = Object.create; - - // Naked function reference for surrogate-prototype-swapping. - var Ctor = function(){}; - - // Create a safe reference to the Underscore object for use below. - var _ = function(obj) { - if (obj instanceof _) return obj; - if (!(this instanceof _)) return new _(obj); - this._wrapped = obj; - }; - - // Export the Underscore object for **Node.js**, with - // backwards-compatibility for the old `require()` API. If we're in - // the browser, add `_` as a global object. - if (typeof exports !== 'undefined') { - if (typeof module !== 'undefined' && module.exports) { - exports = module.exports = _; - } - exports._ = _; - } else { - root._ = _; - } - - // Current version. - _.VERSION = '1.8.3'; - - // Internal function that returns an efficient (for current engines) version - // of the passed-in callback, to be repeatedly applied in other Underscore - // functions. - var optimizeCb = function(func, context, argCount) { - if (context === void 0) return func; - switch (argCount == null ? 3 : argCount) { - case 1: return function(value) { - return func.call(context, value); - }; - case 2: return function(value, other) { - return func.call(context, value, other); - }; - case 3: return function(value, index, collection) { - return func.call(context, value, index, collection); - }; - case 4: return function(accumulator, value, index, collection) { - return func.call(context, accumulator, value, index, collection); - }; - } - return function() { - return func.apply(context, arguments); - }; - }; - - // A mostly-internal function to generate callbacks that can be applied - // to each element in a collection, returning the desired result — either - // identity, an arbitrary callback, a property matcher, or a property accessor. - var cb = function(value, context, argCount) { - if (value == null) return _.identity; - if (_.isFunction(value)) return optimizeCb(value, context, argCount); - if (_.isObject(value)) return _.matcher(value); - return _.property(value); - }; - _.iteratee = function(value, context) { - return cb(value, context, Infinity); - }; - - // An internal function for creating assigner functions. - var createAssigner = function(keysFunc, undefinedOnly) { - return function(obj) { - var length = arguments.length; - if (length < 2 || obj == null) return obj; - for (var index = 1; index < length; index++) { - var source = arguments[index], - keys = keysFunc(source), - l = keys.length; - for (var i = 0; i < l; i++) { - var key = keys[i]; - if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key]; - } - } - return obj; - }; - }; - - // An internal function for creating a new object that inherits from another. - var baseCreate = function(prototype) { - if (!_.isObject(prototype)) return {}; - if (nativeCreate) return nativeCreate(prototype); - Ctor.prototype = prototype; - var result = new Ctor; - Ctor.prototype = null; - return result; - }; - - var property = function(key) { - return function(obj) { - return obj == null ? void 0 : obj[key]; - }; - }; - - // Helper for collection methods to determine whether a collection - // should be iterated as an array or as an object - // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength - // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094 - var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1; - var getLength = property('length'); - var isArrayLike = function(collection) { - var length = getLength(collection); - return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX; - }; - - // Collection Functions - // -------------------- - - // The cornerstone, an `each` implementation, aka `forEach`. - // Handles raw objects in addition to array-likes. Treats all - // sparse array-likes as if they were dense. - _.each = _.forEach = function(obj, iteratee, context) { - iteratee = optimizeCb(iteratee, context); - var i, length; - if (isArrayLike(obj)) { - for (i = 0, length = obj.length; i < length; i++) { - iteratee(obj[i], i, obj); - } - } else { - var keys = _.keys(obj); - for (i = 0, length = keys.length; i < length; i++) { - iteratee(obj[keys[i]], keys[i], obj); - } - } - return obj; - }; - - // Return the results of applying the iteratee to each element. - _.map = _.collect = function(obj, iteratee, context) { - iteratee = cb(iteratee, context); - var keys = !isArrayLike(obj) && _.keys(obj), - length = (keys || obj).length, - results = Array(length); - for (var index = 0; index < length; index++) { - var currentKey = keys ? keys[index] : index; - results[index] = iteratee(obj[currentKey], currentKey, obj); - } - return results; - }; - - // Create a reducing function iterating left or right. - function createReduce(dir) { - // Optimized iterator function as using arguments.length - // in the main function will deoptimize the, see #1991. - function iterator(obj, iteratee, memo, keys, index, length) { - for (; index >= 0 && index < length; index += dir) { - var currentKey = keys ? keys[index] : index; - memo = iteratee(memo, obj[currentKey], currentKey, obj); - } - return memo; - } - - return function(obj, iteratee, memo, context) { - iteratee = optimizeCb(iteratee, context, 4); - var keys = !isArrayLike(obj) && _.keys(obj), - length = (keys || obj).length, - index = dir > 0 ? 0 : length - 1; - // Determine the initial value if none is provided. - if (arguments.length < 3) { - memo = obj[keys ? keys[index] : index]; - index += dir; - } - return iterator(obj, iteratee, memo, keys, index, length); - }; - } - - // **Reduce** builds up a single result from a list of values, aka `inject`, - // or `foldl`. - _.reduce = _.foldl = _.inject = createReduce(1); - - // The right-associative version of reduce, also known as `foldr`. - _.reduceRight = _.foldr = createReduce(-1); - - // Return the first value which passes a truth test. Aliased as `detect`. - _.find = _.detect = function(obj, predicate, context) { - var key; - if (isArrayLike(obj)) { - key = _.findIndex(obj, predicate, context); - } else { - key = _.findKey(obj, predicate, context); - } - if (key !== void 0 && key !== -1) return obj[key]; - }; - - // Return all the elements that pass a truth test. - // Aliased as `select`. - _.filter = _.select = function(obj, predicate, context) { - var results = []; - predicate = cb(predicate, context); - _.each(obj, function(value, index, list) { - if (predicate(value, index, list)) results.push(value); - }); - return results; - }; - - // Return all the elements for which a truth test fails. - _.reject = function(obj, predicate, context) { - return _.filter(obj, _.negate(cb(predicate)), context); - }; - - // Determine whether all of the elements match a truth test. - // Aliased as `all`. - _.every = _.all = function(obj, predicate, context) { - predicate = cb(predicate, context); - var keys = !isArrayLike(obj) && _.keys(obj), - length = (keys || obj).length; - for (var index = 0; index < length; index++) { - var currentKey = keys ? keys[index] : index; - if (!predicate(obj[currentKey], currentKey, obj)) return false; - } - return true; - }; - - // Determine if at least one element in the object matches a truth test. - // Aliased as `any`. - _.some = _.any = function(obj, predicate, context) { - predicate = cb(predicate, context); - var keys = !isArrayLike(obj) && _.keys(obj), - length = (keys || obj).length; - for (var index = 0; index < length; index++) { - var currentKey = keys ? keys[index] : index; - if (predicate(obj[currentKey], currentKey, obj)) return true; - } - return false; - }; - - // Determine if the array or object contains a given item (using `===`). - // Aliased as `includes` and `include`. - _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) { - if (!isArrayLike(obj)) obj = _.values(obj); - if (typeof fromIndex != 'number' || guard) fromIndex = 0; - return _.indexOf(obj, item, fromIndex) >= 0; - }; - - // Invoke a method (with arguments) on every item in a collection. - _.invoke = function(obj, method) { - var args = slice.call(arguments, 2); - var isFunc = _.isFunction(method); - return _.map(obj, function(value) { - var func = isFunc ? method : value[method]; - return func == null ? func : func.apply(value, args); - }); - }; - - // Convenience version of a common use case of `map`: fetching a property. - _.pluck = function(obj, key) { - return _.map(obj, _.property(key)); - }; - - // Convenience version of a common use case of `filter`: selecting only objects - // containing specific `key:value` pairs. - _.where = function(obj, attrs) { - return _.filter(obj, _.matcher(attrs)); - }; - - // Convenience version of a common use case of `find`: getting the first object - // containing specific `key:value` pairs. - _.findWhere = function(obj, attrs) { - return _.find(obj, _.matcher(attrs)); - }; - - // Return the maximum element (or element-based computation). - _.max = function(obj, iteratee, context) { - var result = -Infinity, lastComputed = -Infinity, - value, computed; - if (iteratee == null && obj != null) { - obj = isArrayLike(obj) ? obj : _.values(obj); - for (var i = 0, length = obj.length; i < length; i++) { - value = obj[i]; - if (value > result) { - result = value; - } - } - } else { - iteratee = cb(iteratee, context); - _.each(obj, function(value, index, list) { - computed = iteratee(value, index, list); - if (computed > lastComputed || computed === -Infinity && result === -Infinity) { - result = value; - lastComputed = computed; - } - }); - } - return result; - }; - - // Return the minimum element (or element-based computation). - _.min = function(obj, iteratee, context) { - var result = Infinity, lastComputed = Infinity, - value, computed; - if (iteratee == null && obj != null) { - obj = isArrayLike(obj) ? obj : _.values(obj); - for (var i = 0, length = obj.length; i < length; i++) { - value = obj[i]; - if (value < result) { - result = value; - } - } - } else { - iteratee = cb(iteratee, context); - _.each(obj, function(value, index, list) { - computed = iteratee(value, index, list); - if (computed < lastComputed || computed === Infinity && result === Infinity) { - result = value; - lastComputed = computed; - } - }); - } - return result; - }; - - // Shuffle a collection, using the modern version of the - // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle). - _.shuffle = function(obj) { - var set = isArrayLike(obj) ? obj : _.values(obj); - var length = set.length; - var shuffled = Array(length); - for (var index = 0, rand; index < length; index++) { - rand = _.random(0, index); - if (rand !== index) shuffled[index] = shuffled[rand]; - shuffled[rand] = set[index]; - } - return shuffled; - }; - - // Sample **n** random values from a collection. - // If **n** is not specified, returns a single random element. - // The internal `guard` argument allows it to work with `map`. - _.sample = function(obj, n, guard) { - if (n == null || guard) { - if (!isArrayLike(obj)) obj = _.values(obj); - return obj[_.random(obj.length - 1)]; - } - return _.shuffle(obj).slice(0, Math.max(0, n)); - }; - - // Sort the object's values by a criterion produced by an iteratee. - _.sortBy = function(obj, iteratee, context) { - iteratee = cb(iteratee, context); - return _.pluck(_.map(obj, function(value, index, list) { - return { - value: value, - index: index, - criteria: iteratee(value, index, list) - }; - }).sort(function(left, right) { - var a = left.criteria; - var b = right.criteria; - if (a !== b) { - if (a > b || a === void 0) return 1; - if (a < b || b === void 0) return -1; - } - return left.index - right.index; - }), 'value'); - }; - - // An internal function used for aggregate "group by" operations. - var group = function(behavior) { - return function(obj, iteratee, context) { - var result = {}; - iteratee = cb(iteratee, context); - _.each(obj, function(value, index) { - var key = iteratee(value, index, obj); - behavior(result, value, key); - }); - return result; - }; - }; - - // Groups the object's values by a criterion. Pass either a string attribute - // to group by, or a function that returns the criterion. - _.groupBy = group(function(result, value, key) { - if (_.has(result, key)) result[key].push(value); else result[key] = [value]; - }); - - // Indexes the object's values by a criterion, similar to `groupBy`, but for - // when you know that your index values will be unique. - _.indexBy = group(function(result, value, key) { - result[key] = value; - }); - - // Counts instances of an object that group by a certain criterion. Pass - // either a string attribute to count by, or a function that returns the - // criterion. - _.countBy = group(function(result, value, key) { - if (_.has(result, key)) result[key]++; else result[key] = 1; - }); - - // Safely create a real, live array from anything iterable. - _.toArray = function(obj) { - if (!obj) return []; - if (_.isArray(obj)) return slice.call(obj); - if (isArrayLike(obj)) return _.map(obj, _.identity); - return _.values(obj); - }; - - // Return the number of elements in an object. - _.size = function(obj) { - if (obj == null) return 0; - return isArrayLike(obj) ? obj.length : _.keys(obj).length; - }; - - // Split a collection into two arrays: one whose elements all satisfy the given - // predicate, and one whose elements all do not satisfy the predicate. - _.partition = function(obj, predicate, context) { - predicate = cb(predicate, context); - var pass = [], fail = []; - _.each(obj, function(value, key, obj) { - (predicate(value, key, obj) ? pass : fail).push(value); - }); - return [pass, fail]; - }; - - // Array Functions - // --------------- - - // Get the first element of an array. Passing **n** will return the first N - // values in the array. Aliased as `head` and `take`. The **guard** check - // allows it to work with `_.map`. - _.first = _.head = _.take = function(array, n, guard) { - if (array == null) return void 0; - if (n == null || guard) return array[0]; - return _.initial(array, array.length - n); - }; - - // Returns everything but the last entry of the array. Especially useful on - // the arguments object. Passing **n** will return all the values in - // the array, excluding the last N. - _.initial = function(array, n, guard) { - return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n))); - }; - - // Get the last element of an array. Passing **n** will return the last N - // values in the array. - _.last = function(array, n, guard) { - if (array == null) return void 0; - if (n == null || guard) return array[array.length - 1]; - return _.rest(array, Math.max(0, array.length - n)); - }; - - // Returns everything but the first entry of the array. Aliased as `tail` and `drop`. - // Especially useful on the arguments object. Passing an **n** will return - // the rest N values in the array. - _.rest = _.tail = _.drop = function(array, n, guard) { - return slice.call(array, n == null || guard ? 1 : n); - }; - - // Trim out all falsy values from an array. - _.compact = function(array) { - return _.filter(array, _.identity); - }; - - // Internal implementation of a recursive `flatten` function. - var flatten = function(input, shallow, strict, startIndex) { - var output = [], idx = 0; - for (var i = startIndex || 0, length = getLength(input); i < length; i++) { - var value = input[i]; - if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) { - //flatten current level of array or arguments object - if (!shallow) value = flatten(value, shallow, strict); - var j = 0, len = value.length; - output.length += len; - while (j < len) { - output[idx++] = value[j++]; - } - } else if (!strict) { - output[idx++] = value; - } - } - return output; - }; - - // Flatten out an array, either recursively (by default), or just one level. - _.flatten = function(array, shallow) { - return flatten(array, shallow, false); - }; - - // Return a version of the array that does not contain the specified value(s). - _.without = function(array) { - return _.difference(array, slice.call(arguments, 1)); - }; - - // Produce a duplicate-free version of the array. If the array has already - // been sorted, you have the option of using a faster algorithm. - // Aliased as `unique`. - _.uniq = _.unique = function(array, isSorted, iteratee, context) { - if (!_.isBoolean(isSorted)) { - context = iteratee; - iteratee = isSorted; - isSorted = false; - } - if (iteratee != null) iteratee = cb(iteratee, context); - var result = []; - var seen = []; - for (var i = 0, length = getLength(array); i < length; i++) { - var value = array[i], - computed = iteratee ? iteratee(value, i, array) : value; - if (isSorted) { - if (!i || seen !== computed) result.push(value); - seen = computed; - } else if (iteratee) { - if (!_.contains(seen, computed)) { - seen.push(computed); - result.push(value); - } - } else if (!_.contains(result, value)) { - result.push(value); - } - } - return result; - }; - - // Produce an array that contains the union: each distinct element from all of - // the passed-in arrays. - _.union = function() { - return _.uniq(flatten(arguments, true, true)); - }; - - // Produce an array that contains every item shared between all the - // passed-in arrays. - _.intersection = function(array) { - var result = []; - var argsLength = arguments.length; - for (var i = 0, length = getLength(array); i < length; i++) { - var item = array[i]; - if (_.contains(result, item)) continue; - for (var j = 1; j < argsLength; j++) { - if (!_.contains(arguments[j], item)) break; - } - if (j === argsLength) result.push(item); - } - return result; - }; - - // Take the difference between one array and a number of other arrays. - // Only the elements present in just the first array will remain. - _.difference = function(array) { - var rest = flatten(arguments, true, true, 1); - return _.filter(array, function(value){ - return !_.contains(rest, value); - }); - }; - - // Zip together multiple lists into a single array -- elements that share - // an index go together. - _.zip = function() { - return _.unzip(arguments); - }; - - // Complement of _.zip. Unzip accepts an array of arrays and groups - // each array's elements on shared indices - _.unzip = function(array) { - var length = array && _.max(array, getLength).length || 0; - var result = Array(length); - - for (var index = 0; index < length; index++) { - result[index] = _.pluck(array, index); - } - return result; - }; - - // Converts lists into objects. Pass either a single array of `[key, value]` - // pairs, or two parallel arrays of the same length -- one of keys, and one of - // the corresponding values. - _.object = function(list, values) { - var result = {}; - for (var i = 0, length = getLength(list); i < length; i++) { - if (values) { - result[list[i]] = values[i]; - } else { - result[list[i][0]] = list[i][1]; - } - } - return result; - }; - - // Generator function to create the findIndex and findLastIndex functions - function createPredicateIndexFinder(dir) { - return function(array, predicate, context) { - predicate = cb(predicate, context); - var length = getLength(array); - var index = dir > 0 ? 0 : length - 1; - for (; index >= 0 && index < length; index += dir) { - if (predicate(array[index], index, array)) return index; - } - return -1; - }; - } - - // Returns the first index on an array-like that passes a predicate test - _.findIndex = createPredicateIndexFinder(1); - _.findLastIndex = createPredicateIndexFinder(-1); - - // Use a comparator function to figure out the smallest index at which - // an object should be inserted so as to maintain order. Uses binary search. - _.sortedIndex = function(array, obj, iteratee, context) { - iteratee = cb(iteratee, context, 1); - var value = iteratee(obj); - var low = 0, high = getLength(array); - while (low < high) { - var mid = Math.floor((low + high) / 2); - if (iteratee(array[mid]) < value) low = mid + 1; else high = mid; - } - return low; - }; - - // Generator function to create the indexOf and lastIndexOf functions - function createIndexFinder(dir, predicateFind, sortedIndex) { - return function(array, item, idx) { - var i = 0, length = getLength(array); - if (typeof idx == 'number') { - if (dir > 0) { - i = idx >= 0 ? idx : Math.max(idx + length, i); - } else { - length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1; - } - } else if (sortedIndex && idx && length) { - idx = sortedIndex(array, item); - return array[idx] === item ? idx : -1; - } - if (item !== item) { - idx = predicateFind(slice.call(array, i, length), _.isNaN); - return idx >= 0 ? idx + i : -1; - } - for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) { - if (array[idx] === item) return idx; - } - return -1; - }; - } - - // Return the position of the first occurrence of an item in an array, - // or -1 if the item is not included in the array. - // If the array is large and already in sort order, pass `true` - // for **isSorted** to use binary search. - _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex); - _.lastIndexOf = createIndexFinder(-1, _.findLastIndex); - - // Generate an integer Array containing an arithmetic progression. A port of - // the native Python `range()` function. See - // [the Python documentation](http://docs.python.org/library/functions.html#range). - _.range = function(start, stop, step) { - if (stop == null) { - stop = start || 0; - start = 0; - } - step = step || 1; - - var length = Math.max(Math.ceil((stop - start) / step), 0); - var range = Array(length); - - for (var idx = 0; idx < length; idx++, start += step) { - range[idx] = start; - } - - return range; - }; - - // Function (ahem) Functions - // ------------------ - - // Determines whether to execute a function as a constructor - // or a normal function with the provided arguments - var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) { - if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args); - var self = baseCreate(sourceFunc.prototype); - var result = sourceFunc.apply(self, args); - if (_.isObject(result)) return result; - return self; - }; - - // Create a function bound to a given object (assigning `this`, and arguments, - // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if - // available. - _.bind = function(func, context) { - if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1)); - if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function'); - var args = slice.call(arguments, 2); - var bound = function() { - return executeBound(func, bound, context, this, args.concat(slice.call(arguments))); - }; - return bound; - }; - - // Partially apply a function by creating a version that has had some of its - // arguments pre-filled, without changing its dynamic `this` context. _ acts - // as a placeholder, allowing any combination of arguments to be pre-filled. - _.partial = function(func) { - var boundArgs = slice.call(arguments, 1); - var bound = function() { - var position = 0, length = boundArgs.length; - var args = Array(length); - for (var i = 0; i < length; i++) { - args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i]; - } - while (position < arguments.length) args.push(arguments[position++]); - return executeBound(func, bound, this, this, args); - }; - return bound; - }; - - // Bind a number of an object's methods to that object. Remaining arguments - // are the method names to be bound. Useful for ensuring that all callbacks - // defined on an object belong to it. - _.bindAll = function(obj) { - var i, length = arguments.length, key; - if (length <= 1) throw new Error('bindAll must be passed function names'); - for (i = 1; i < length; i++) { - key = arguments[i]; - obj[key] = _.bind(obj[key], obj); - } - return obj; - }; - - // Memoize an expensive function by storing its results. - _.memoize = function(func, hasher) { - var memoize = function(key) { - var cache = memoize.cache; - var address = '' + (hasher ? hasher.apply(this, arguments) : key); - if (!_.has(cache, address)) cache[address] = func.apply(this, arguments); - return cache[address]; - }; - memoize.cache = {}; - return memoize; - }; - - // Delays a function for the given number of milliseconds, and then calls - // it with the arguments supplied. - _.delay = function(func, wait) { - var args = slice.call(arguments, 2); - return setTimeout(function(){ - return func.apply(null, args); - }, wait); - }; - - // Defers a function, scheduling it to run after the current call stack has - // cleared. - _.defer = _.partial(_.delay, _, 1); - - // Returns a function, that, when invoked, will only be triggered at most once - // during a given window of time. Normally, the throttled function will run - // as much as it can, without ever going more than once per `wait` duration; - // but if you'd like to disable the execution on the leading edge, pass - // `{leading: false}`. To disable execution on the trailing edge, ditto. - _.throttle = function(func, wait, options) { - var context, args, result; - var timeout = null; - var previous = 0; - if (!options) options = {}; - var later = function() { - previous = options.leading === false ? 0 : _.now(); - timeout = null; - result = func.apply(context, args); - if (!timeout) context = args = null; - }; - return function() { - var now = _.now(); - if (!previous && options.leading === false) previous = now; - var remaining = wait - (now - previous); - context = this; - args = arguments; - if (remaining <= 0 || remaining > wait) { - if (timeout) { - clearTimeout(timeout); - timeout = null; - } - previous = now; - result = func.apply(context, args); - if (!timeout) context = args = null; - } else if (!timeout && options.trailing !== false) { - timeout = setTimeout(later, remaining); - } - return result; - }; - }; - - // Returns a function, that, as long as it continues to be invoked, will not - // be triggered. The function will be called after it stops being called for - // N milliseconds. If `immediate` is passed, trigger the function on the - // leading edge, instead of the trailing. - _.debounce = function(func, wait, immediate) { - var timeout, args, context, timestamp, result; - - var later = function() { - var last = _.now() - timestamp; - - if (last < wait && last >= 0) { - timeout = setTimeout(later, wait - last); - } else { - timeout = null; - if (!immediate) { - result = func.apply(context, args); - if (!timeout) context = args = null; - } - } - }; - - return function() { - context = this; - args = arguments; - timestamp = _.now(); - var callNow = immediate && !timeout; - if (!timeout) timeout = setTimeout(later, wait); - if (callNow) { - result = func.apply(context, args); - context = args = null; - } - - return result; - }; - }; - - // Returns the first function passed as an argument to the second, - // allowing you to adjust arguments, run code before and after, and - // conditionally execute the original function. - _.wrap = function(func, wrapper) { - return _.partial(wrapper, func); - }; - - // Returns a negated version of the passed-in predicate. - _.negate = function(predicate) { - return function() { - return !predicate.apply(this, arguments); - }; - }; - - // Returns a function that is the composition of a list of functions, each - // consuming the return value of the function that follows. - _.compose = function() { - var args = arguments; - var start = args.length - 1; - return function() { - var i = start; - var result = args[start].apply(this, arguments); - while (i--) result = args[i].call(this, result); - return result; - }; - }; - - // Returns a function that will only be executed on and after the Nth call. - _.after = function(times, func) { - return function() { - if (--times < 1) { - return func.apply(this, arguments); - } - }; - }; - - // Returns a function that will only be executed up to (but not including) the Nth call. - _.before = function(times, func) { - var memo; - return function() { - if (--times > 0) { - memo = func.apply(this, arguments); - } - if (times <= 1) func = null; - return memo; - }; - }; - - // Returns a function that will be executed at most one time, no matter how - // often you call it. Useful for lazy initialization. - _.once = _.partial(_.before, 2); - - // Object Functions - // ---------------- - - // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed. - var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString'); - var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString', - 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; - - function collectNonEnumProps(obj, keys) { - var nonEnumIdx = nonEnumerableProps.length; - var constructor = obj.constructor; - var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto; - - // Constructor is a special case. - var prop = 'constructor'; - if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop); - - while (nonEnumIdx--) { - prop = nonEnumerableProps[nonEnumIdx]; - if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) { - keys.push(prop); - } - } - } - - // Retrieve the names of an object's own properties. - // Delegates to **ECMAScript 5**'s native `Object.keys` - _.keys = function(obj) { - if (!_.isObject(obj)) return []; - if (nativeKeys) return nativeKeys(obj); - var keys = []; - for (var key in obj) if (_.has(obj, key)) keys.push(key); - // Ahem, IE < 9. - if (hasEnumBug) collectNonEnumProps(obj, keys); - return keys; - }; - - // Retrieve all the property names of an object. - _.allKeys = function(obj) { - if (!_.isObject(obj)) return []; - var keys = []; - for (var key in obj) keys.push(key); - // Ahem, IE < 9. - if (hasEnumBug) collectNonEnumProps(obj, keys); - return keys; - }; - - // Retrieve the values of an object's properties. - _.values = function(obj) { - var keys = _.keys(obj); - var length = keys.length; - var values = Array(length); - for (var i = 0; i < length; i++) { - values[i] = obj[keys[i]]; - } - return values; - }; - - // Returns the results of applying the iteratee to each element of the object - // In contrast to _.map it returns an object - _.mapObject = function(obj, iteratee, context) { - iteratee = cb(iteratee, context); - var keys = _.keys(obj), - length = keys.length, - results = {}, - currentKey; - for (var index = 0; index < length; index++) { - currentKey = keys[index]; - results[currentKey] = iteratee(obj[currentKey], currentKey, obj); - } - return results; - }; - - // Convert an object into a list of `[key, value]` pairs. - _.pairs = function(obj) { - var keys = _.keys(obj); - var length = keys.length; - var pairs = Array(length); - for (var i = 0; i < length; i++) { - pairs[i] = [keys[i], obj[keys[i]]]; - } - return pairs; - }; - - // Invert the keys and values of an object. The values must be serializable. - _.invert = function(obj) { - var result = {}; - var keys = _.keys(obj); - for (var i = 0, length = keys.length; i < length; i++) { - result[obj[keys[i]]] = keys[i]; - } - return result; - }; - - // Return a sorted list of the function names available on the object. - // Aliased as `methods` - _.functions = _.methods = function(obj) { - var names = []; - for (var key in obj) { - if (_.isFunction(obj[key])) names.push(key); - } - return names.sort(); - }; - - // Extend a given object with all the properties in passed-in object(s). - _.extend = createAssigner(_.allKeys); - - // Assigns a given object with all the own properties in the passed-in object(s) - // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) - _.extendOwn = _.assign = createAssigner(_.keys); - - // Returns the first key on an object that passes a predicate test - _.findKey = function(obj, predicate, context) { - predicate = cb(predicate, context); - var keys = _.keys(obj), key; - for (var i = 0, length = keys.length; i < length; i++) { - key = keys[i]; - if (predicate(obj[key], key, obj)) return key; - } - }; - - // Return a copy of the object only containing the whitelisted properties. - _.pick = function(object, oiteratee, context) { - var result = {}, obj = object, iteratee, keys; - if (obj == null) return result; - if (_.isFunction(oiteratee)) { - keys = _.allKeys(obj); - iteratee = optimizeCb(oiteratee, context); - } else { - keys = flatten(arguments, false, false, 1); - iteratee = function(value, key, obj) { return key in obj; }; - obj = Object(obj); - } - for (var i = 0, length = keys.length; i < length; i++) { - var key = keys[i]; - var value = obj[key]; - if (iteratee(value, key, obj)) result[key] = value; - } - return result; - }; - - // Return a copy of the object without the blacklisted properties. - _.omit = function(obj, iteratee, context) { - if (_.isFunction(iteratee)) { - iteratee = _.negate(iteratee); - } else { - var keys = _.map(flatten(arguments, false, false, 1), String); - iteratee = function(value, key) { - return !_.contains(keys, key); - }; - } - return _.pick(obj, iteratee, context); - }; - - // Fill in a given object with default properties. - _.defaults = createAssigner(_.allKeys, true); - - // Creates an object that inherits from the given prototype object. - // If additional properties are provided then they will be added to the - // created object. - _.create = function(prototype, props) { - var result = baseCreate(prototype); - if (props) _.extendOwn(result, props); - return result; - }; - - // Create a (shallow-cloned) duplicate of an object. - _.clone = function(obj) { - if (!_.isObject(obj)) return obj; - return _.isArray(obj) ? obj.slice() : _.extend({}, obj); - }; - - // Invokes interceptor with the obj, and then returns obj. - // The primary purpose of this method is to "tap into" a method chain, in - // order to perform operations on intermediate results within the chain. - _.tap = function(obj, interceptor) { - interceptor(obj); - return obj; - }; - - // Returns whether an object has a given set of `key:value` pairs. - _.isMatch = function(object, attrs) { - var keys = _.keys(attrs), length = keys.length; - if (object == null) return !length; - var obj = Object(object); - for (var i = 0; i < length; i++) { - var key = keys[i]; - if (attrs[key] !== obj[key] || !(key in obj)) return false; - } - return true; - }; - - - // Internal recursive comparison function for `isEqual`. - var eq = function(a, b, aStack, bStack) { - // Identical objects are equal. `0 === -0`, but they aren't identical. - // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). - if (a === b) return a !== 0 || 1 / a === 1 / b; - // A strict comparison is necessary because `null == undefined`. - if (a == null || b == null) return a === b; - // Unwrap any wrapped objects. - if (a instanceof _) a = a._wrapped; - if (b instanceof _) b = b._wrapped; - // Compare `[[Class]]` names. - var className = toString.call(a); - if (className !== toString.call(b)) return false; - switch (className) { - // Strings, numbers, regular expressions, dates, and booleans are compared by value. - case '[object RegExp]': - // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i') - case '[object String]': - // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is - // equivalent to `new String("5")`. - return '' + a === '' + b; - case '[object Number]': - // `NaN`s are equivalent, but non-reflexive. - // Object(NaN) is equivalent to NaN - if (+a !== +a) return +b !== +b; - // An `egal` comparison is performed for other numeric values. - return +a === 0 ? 1 / +a === 1 / b : +a === +b; - case '[object Date]': - case '[object Boolean]': - // Coerce dates and booleans to numeric primitive values. Dates are compared by their - // millisecond representations. Note that invalid dates with millisecond representations - // of `NaN` are not equivalent. - return +a === +b; - } - - var areArrays = className === '[object Array]'; - if (!areArrays) { - if (typeof a != 'object' || typeof b != 'object') return false; - - // Objects with different constructors are not equivalent, but `Object`s or `Array`s - // from different frames are. - var aCtor = a.constructor, bCtor = b.constructor; - if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor && - _.isFunction(bCtor) && bCtor instanceof bCtor) - && ('constructor' in a && 'constructor' in b)) { - return false; - } - } - // Assume equality for cyclic structures. The algorithm for detecting cyclic - // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. - - // Initializing stack of traversed objects. - // It's done here since we only need them for objects and arrays comparison. - aStack = aStack || []; - bStack = bStack || []; - var length = aStack.length; - while (length--) { - // Linear search. Performance is inversely proportional to the number of - // unique nested structures. - if (aStack[length] === a) return bStack[length] === b; - } - - // Add the first object to the stack of traversed objects. - aStack.push(a); - bStack.push(b); - - // Recursively compare objects and arrays. - if (areArrays) { - // Compare array lengths to determine if a deep comparison is necessary. - length = a.length; - if (length !== b.length) return false; - // Deep compare the contents, ignoring non-numeric properties. - while (length--) { - if (!eq(a[length], b[length], aStack, bStack)) return false; - } - } else { - // Deep compare objects. - var keys = _.keys(a), key; - length = keys.length; - // Ensure that both objects contain the same number of properties before comparing deep equality. - if (_.keys(b).length !== length) return false; - while (length--) { - // Deep compare each member - key = keys[length]; - if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false; - } - } - // Remove the first object from the stack of traversed objects. - aStack.pop(); - bStack.pop(); - return true; - }; - - // Perform a deep comparison to check if two objects are equal. - _.isEqual = function(a, b) { - return eq(a, b); - }; - - // Is a given array, string, or object empty? - // An "empty" object has no enumerable own-properties. - _.isEmpty = function(obj) { - if (obj == null) return true; - if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0; - return _.keys(obj).length === 0; - }; - - // Is a given value a DOM element? - _.isElement = function(obj) { - return !!(obj && obj.nodeType === 1); - }; - - // Is a given value an array? - // Delegates to ECMA5's native Array.isArray - _.isArray = nativeIsArray || function(obj) { - return toString.call(obj) === '[object Array]'; - }; - - // Is a given variable an object? - _.isObject = function(obj) { - var type = typeof obj; - return type === 'function' || type === 'object' && !!obj; - }; - - // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError. - _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) { - _['is' + name] = function(obj) { - return toString.call(obj) === '[object ' + name + ']'; - }; - }); - - // Define a fallback version of the method in browsers (ahem, IE < 9), where - // there isn't any inspectable "Arguments" type. - if (!_.isArguments(arguments)) { - _.isArguments = function(obj) { - return _.has(obj, 'callee'); - }; - } - - // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8, - // IE 11 (#1621), and in Safari 8 (#1929). - if (typeof /./ != 'function' && typeof Int8Array != 'object') { - _.isFunction = function(obj) { - return typeof obj == 'function' || false; - }; - } - - // Is a given object a finite number? - _.isFinite = function(obj) { - return isFinite(obj) && !isNaN(parseFloat(obj)); - }; - - // Is the given value `NaN`? (NaN is the only number which does not equal itself). - _.isNaN = function(obj) { - return _.isNumber(obj) && obj !== +obj; - }; - - // Is a given value a boolean? - _.isBoolean = function(obj) { - return obj === true || obj === false || toString.call(obj) === '[object Boolean]'; - }; - - // Is a given value equal to null? - _.isNull = function(obj) { - return obj === null; - }; - - // Is a given variable undefined? - _.isUndefined = function(obj) { - return obj === void 0; - }; - - // Shortcut function for checking if an object has a given property directly - // on itself (in other words, not on a prototype). - _.has = function(obj, key) { - return obj != null && hasOwnProperty.call(obj, key); - }; - - // Utility Functions - // ----------------- - - // Run Underscore.js in *noConflict* mode, returning the `_` variable to its - // previous owner. Returns a reference to the Underscore object. - _.noConflict = function() { - root._ = previousUnderscore; - return this; - }; - - // Keep the identity function around for default iteratees. - _.identity = function(value) { - return value; - }; - - // Predicate-generating functions. Often useful outside of Underscore. - _.constant = function(value) { - return function() { - return value; - }; - }; - - _.noop = function(){}; - - _.property = property; - - // Generates a function for a given object that returns a given property. - _.propertyOf = function(obj) { - return obj == null ? function(){} : function(key) { - return obj[key]; - }; - }; - - // Returns a predicate for checking whether an object has a given set of - // `key:value` pairs. - _.matcher = _.matches = function(attrs) { - attrs = _.extendOwn({}, attrs); - return function(obj) { - return _.isMatch(obj, attrs); - }; - }; - - // Run a function **n** times. - _.times = function(n, iteratee, context) { - var accum = Array(Math.max(0, n)); - iteratee = optimizeCb(iteratee, context, 1); - for (var i = 0; i < n; i++) accum[i] = iteratee(i); - return accum; - }; - - // Return a random integer between min and max (inclusive). - _.random = function(min, max) { - if (max == null) { - max = min; - min = 0; - } - return min + Math.floor(Math.random() * (max - min + 1)); - }; - - // A (possibly faster) way to get the current timestamp as an integer. - _.now = Date.now || function() { - return new Date().getTime(); - }; - - // List of HTML entities for escaping. - var escapeMap = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - "'": ''', - '`': '`' - }; - var unescapeMap = _.invert(escapeMap); - - // Functions for escaping and unescaping strings to/from HTML interpolation. - var createEscaper = function(map) { - var escaper = function(match) { - return map[match]; - }; - // Regexes for identifying a key that needs to be escaped - var source = '(?:' + _.keys(map).join('|') + ')'; - var testRegexp = RegExp(source); - var replaceRegexp = RegExp(source, 'g'); - return function(string) { - string = string == null ? '' : '' + string; - return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string; - }; - }; - _.escape = createEscaper(escapeMap); - _.unescape = createEscaper(unescapeMap); - - // If the value of the named `property` is a function then invoke it with the - // `object` as context; otherwise, return it. - _.result = function(object, property, fallback) { - var value = object == null ? void 0 : object[property]; - if (value === void 0) { - value = fallback; - } - return _.isFunction(value) ? value.call(object) : value; - }; - - // Generate a unique integer id (unique within the entire client session). - // Useful for temporary DOM ids. - var idCounter = 0; - _.uniqueId = function(prefix) { - var id = ++idCounter + ''; - return prefix ? prefix + id : id; - }; - - // By default, Underscore uses ERB-style template delimiters, change the - // following template settings to use alternative delimiters. - _.templateSettings = { - evaluate : /<%([\s\S]+?)%>/g, - interpolate : /<%=([\s\S]+?)%>/g, - escape : /<%-([\s\S]+?)%>/g - }; - - // When customizing `templateSettings`, if you don't want to define an - // interpolation, evaluation or escaping regex, we need one that is - // guaranteed not to match. - var noMatch = /(.)^/; - - // Certain characters need to be escaped so that they can be put into a - // string literal. - var escapes = { - "'": "'", - '\\': '\\', - '\r': 'r', - '\n': 'n', - '\u2028': 'u2028', - '\u2029': 'u2029' - }; - - var escaper = /\\|'|\r|\n|\u2028|\u2029/g; - - var escapeChar = function(match) { - return '\\' + escapes[match]; - }; - - // JavaScript micro-templating, similar to John Resig's implementation. - // Underscore templating handles arbitrary delimiters, preserves whitespace, - // and correctly escapes quotes within interpolated code. - // NB: `oldSettings` only exists for backwards compatibility. - _.template = function(text, settings, oldSettings) { - if (!settings && oldSettings) settings = oldSettings; - settings = _.defaults({}, settings, _.templateSettings); - - // Combine delimiters into one regular expression via alternation. - var matcher = RegExp([ - (settings.escape || noMatch).source, - (settings.interpolate || noMatch).source, - (settings.evaluate || noMatch).source - ].join('|') + '|$', 'g'); - - // Compile the template source, escaping string literals appropriately. - var index = 0; - var source = "__p+='"; - text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { - source += text.slice(index, offset).replace(escaper, escapeChar); - index = offset + match.length; - - if (escape) { - source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; - } else if (interpolate) { - source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; - } else if (evaluate) { - source += "';\n" + evaluate + "\n__p+='"; - } - - // Adobe VMs need the match returned to produce the correct offest. - return match; - }); - source += "';\n"; - - // If a variable is not specified, place data values in local scope. - if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n'; - - source = "var __t,__p='',__j=Array.prototype.join," + - "print=function(){__p+=__j.call(arguments,'');};\n" + - source + 'return __p;\n'; - - try { - var render = new Function(settings.variable || 'obj', '_', source); - } catch (e) { - e.source = source; - throw e; - } - - var template = function(data) { - return render.call(this, data, _); - }; - - // Provide the compiled source as a convenience for precompilation. - var argument = settings.variable || 'obj'; - template.source = 'function(' + argument + '){\n' + source + '}'; - - return template; - }; - - // Add a "chain" function. Start chaining a wrapped Underscore object. - _.chain = function(obj) { - var instance = _(obj); - instance._chain = true; - return instance; - }; - - // OOP - // --------------- - // If Underscore is called as a function, it returns a wrapped object that - // can be used OO-style. This wrapper holds altered versions of all the - // underscore functions. Wrapped objects may be chained. - - // Helper function to continue chaining intermediate results. - var result = function(instance, obj) { - return instance._chain ? _(obj).chain() : obj; - }; - - // Add your own custom functions to the Underscore object. - _.mixin = function(obj) { - _.each(_.functions(obj), function(name) { - var func = _[name] = obj[name]; - _.prototype[name] = function() { - var args = [this._wrapped]; - push.apply(args, arguments); - return result(this, func.apply(_, args)); - }; - }); - }; - - // Add all of the Underscore functions to the wrapper object. - _.mixin(_); - - // Add all mutator Array functions to the wrapper. - _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { - var method = ArrayProto[name]; - _.prototype[name] = function() { - var obj = this._wrapped; - method.apply(obj, arguments); - if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0]; - return result(this, obj); - }; - }); - - // Add all accessor Array functions to the wrapper. - _.each(['concat', 'join', 'slice'], function(name) { - var method = ArrayProto[name]; - _.prototype[name] = function() { - return result(this, method.apply(this._wrapped, arguments)); - }; - }); - - // Extracts the result from a wrapped and chained object. - _.prototype.value = function() { - return this._wrapped; - }; - - // Provide unwrapping proxy for some methods used in engine operations - // such as arithmetic and JSON stringification. - _.prototype.valueOf = _.prototype.toJSON = _.prototype.value; - - _.prototype.toString = function() { - return '' + this._wrapped; - }; - - // AMD registration happens at the end for compatibility with AMD loaders - // that may not enforce next-turn semantics on modules. Even though general - // practice for AMD registration is to be anonymous, underscore registers - // as a named module because, like jQuery, it is a base library that is - // popular enough to be bundled in a third party lib, but not be part of - // an AMD load request. Those cases could generate an error when an - // anonymous define() is called outside of a loader request. - if (typeof define === 'function' && define.amd) { - define('underscore', [], function() { - return _; - }); - } -}.call(this)); diff --git a/node_modules/unique-string/package.json b/node_modules/unique-string/package.json index 0bf04f042..b1c4b6522 100644 --- a/node_modules/unique-string/package.json +++ b/node_modules/unique-string/package.json @@ -1,24 +1,58 @@ { - "name": "unique-string", - "version": "2.0.0", - "description": "Generate a unique random string", - "license": "MIT", - "repository": "sindresorhus/unique-string", + "_args": [ + [ + "unique-string@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "unique-string@2.0.0", + "_id": "unique-string@2.0.0", + "_inBundle": false, + "_integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "_location": "/unique-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "unique-string@2.0.0", + "name": "unique-string", + "escapedName": "unique-string", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/configstore" + ], + "_resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/unique-string/issues" + }, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "description": "Generate a unique random string", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/unique-string#readme", "keywords": [ "unique", "string", @@ -29,12 +63,14 @@ "slug", "hex" ], - "dependencies": { - "crypto-random-string": "^2.0.0" + "license": "MIT", + "name": "unique-string", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/unique-string.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.0.0" +} diff --git a/node_modules/universal-user-agent/package.json b/node_modules/universal-user-agent/package.json index 507ae8da8..7052e18ef 100644 --- a/node_modules/universal-user-agent/package.json +++ b/node_modules/universal-user-agent/package.json @@ -1,19 +1,41 @@ { - "name": "universal-user-agent", - "description": "Get a user agent string in both browser and node", - "version": "5.0.0", - "license": "ISC", - "files": [ - "dist-*/", - "bin/" + "_args": [ + [ + "universal-user-agent@5.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "pika": true, - "sideEffects": false, - "keywords": [], - "repository": "https://github.com/gr2m/universal-user-agent.git", + "_from": "universal-user-agent@5.0.0", + "_id": "universal-user-agent@5.0.0", + "_inBundle": false, + "_integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==", + "_location": "/universal-user-agent", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "universal-user-agent@5.0.0", + "name": "universal-user-agent", + "escapedName": "universal-user-agent", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/@octokit/core", + "/@octokit/endpoint", + "/@octokit/request" + ], + "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/gr2m/universal-user-agent/issues" + }, "dependencies": { "os-name": "^3.1.0" }, + "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", "@pika/pack": "^0.5.0", @@ -26,8 +48,23 @@ "ts-jest": "^25.1.0", "typescript": "^3.6.2" }, + "files": [ + "dist-*/", + "bin/" + ], + "homepage": "https://github.com/gr2m/universal-user-agent#readme", + "keywords": [], + "license": "ISC", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "name": "universal-user-agent", + "pika": true, + "repository": { + "type": "git", + "url": "git+https://github.com/gr2m/universal-user-agent.git" + }, + "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "main": "dist-node/index.js", - "module": "dist-web/index.js" -} \ No newline at end of file + "version": "5.0.0" +} diff --git a/node_modules/update-notifier/node_modules/ansi-styles/package.json b/node_modules/update-notifier/node_modules/ansi-styles/package.json index 1a7731952..5c8229d32 100644 --- a/node_modules/update-notifier/node_modules/ansi-styles/package.json +++ b/node_modules/update-notifier/node_modules/ansi-styles/package.json @@ -1,26 +1,62 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/update-notifier/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/update-notifier/chalk" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +79,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/update-notifier/node_modules/chalk/package.json b/node_modules/update-notifier/node_modules/chalk/package.json index b68e931e7..6b5650501 100644 --- a/node_modules/update-notifier/node_modules/chalk/package.json +++ b/node_modules/update-notifier/node_modules/chalk/package.json @@ -1,21 +1,60 @@ { - "name": "chalk", - "version": "3.0.0", + "_args": [ + [ + "chalk@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "chalk@3.0.0", + "_id": "chalk@3.0.0", + "_inBundle": false, + "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "_location": "/update-notifier/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@3.0.0", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, "files": [ "source", "index.d.ts" ], + "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -39,25 +78,22 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "license": "MIT", + "main": "source", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" + "scripts": { + "bench": "matcha benchmark.js", + "test": "xo && nyc ava && tsd" }, + "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", "unicorn/prefer-includes": "off" } } -} \ No newline at end of file +} diff --git a/node_modules/update-notifier/node_modules/color-convert/package.json b/node_modules/update-notifier/node_modules/color-convert/package.json index d169f869b..ebd0d50f9 100644 --- a/node_modules/update-notifier/node_modules/color-convert/package.json +++ b/node_modules/update-notifier/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/update-notifier/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/update-notifier/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/update-notifier/node_modules/color-name/package.json b/node_modules/update-notifier/node_modules/color-name/package.json index fecb8dcfb..81a4f048c 100644 --- a/node_modules/update-notifier/node_modules/color-name/package.json +++ b/node_modules/update-notifier/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/update-notifier/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/update-notifier/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/update-notifier/node_modules/has-flag/package.json b/node_modules/update-notifier/node_modules/has-flag/package.json index 55d0058e4..a0ada6011 100644 --- a/node_modules/update-notifier/node_modules/has-flag/package.json +++ b/node_modules/update-notifier/node_modules/has-flag/package.json @@ -1,24 +1,55 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", + "_args": [ + [ + "has-flag@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "has-flag@4.0.0", + "_id": "has-flag@4.0.0", + "_inBundle": false, + "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "_location": "/update-notifier/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@4.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/update-notifier/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -38,9 +69,14 @@ "minimist", "optimist" ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/update-notifier/node_modules/supports-color/package.json b/node_modules/update-notifier/node_modules/supports-color/package.json index 79856038d..13f6df31b 100644 --- a/node_modules/update-notifier/node_modules/supports-color/package.json +++ b/node_modules/update-notifier/node_modules/supports-color/package.json @@ -1,24 +1,59 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", + "_args": [ + [ + "supports-color@7.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "supports-color@7.1.0", + "_id": "supports-color@7.1.0", + "_inBundle": false, + "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "_location": "/update-notifier/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@7.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "7.1.0", + "saveSpec": null, + "fetchSpec": "7.1.0" + }, + "_requiredBy": [ + "/update-notifier/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "_spec": "7.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^4.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js", "browser.js" ], + "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -41,13 +76,14 @@ "truecolor", "16m" ], - "dependencies": { - "has-flag": "^4.0.0" + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" + "scripts": { + "test": "xo && ava" }, - "browser": "browser.js" -} \ No newline at end of file + "version": "7.1.0" +} diff --git a/node_modules/update-notifier/package.json b/node_modules/update-notifier/package.json index 604f5db25..80468f269 100644 --- a/node_modules/update-notifier/package.json +++ b/node_modules/update-notifier/package.json @@ -1,38 +1,43 @@ { - "name": "update-notifier", - "version": "4.1.0", - "description": "Update notifications for your CLI app", - "license": "BSD-2-Clause", - "repository": "yeoman/update-notifier", - "funding": "https://github.com/yeoman/update-notifier?sponsor=1", + "_args": [ + [ + "update-notifier@4.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "update-notifier@4.1.0", + "_id": "update-notifier@4.1.0", + "_inBundle": false, + "_integrity": "sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew==", + "_location": "/update-notifier", + "_phantomChildren": { + "@types/color-name": "1.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "update-notifier@4.1.0", + "name": "update-notifier", + "escapedName": "update-notifier", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, - "engines": { - "node": ">=8" + "bugs": { + "url": "https://github.com/yeoman/update-notifier/issues" }, - "scripts": { - "test": "xo && ava --timeout=20s -s" - }, - "files": [ - "index.js", - "check.js" - ], - "keywords": [ - "npm", - "update", - "updater", - "notify", - "notifier", - "check", - "checker", - "cli", - "module", - "package", - "version" - ], "dependencies": { "boxen": "^4.2.0", "chalk": "^3.0.0", @@ -48,6 +53,7 @@ "semver-diff": "^3.1.1", "xdg-basedir": "^4.0.0" }, + "description": "Update notifications for your CLI app", "devDependencies": { "ava": "^2.4.0", "clear-module": "^4.0.0", @@ -56,9 +62,41 @@ "strip-ansi": "^6.0.0", "xo": "^0.26.1" }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "check.js" + ], + "funding": "https://github.com/yeoman/update-notifier?sponsor=1", + "homepage": "https://github.com/yeoman/update-notifier#readme", + "keywords": [ + "npm", + "update", + "updater", + "notify", + "notifier", + "check", + "checker", + "cli", + "module", + "package", + "version" + ], + "license": "BSD-2-Clause", + "name": "update-notifier", + "repository": { + "type": "git", + "url": "git+https://github.com/yeoman/update-notifier.git" + }, + "scripts": { + "test": "xo && ava --timeout=20s -s" + }, + "version": "4.1.0", "xo": { "rules": { "prefer-object-spread": 0 } } -} \ No newline at end of file +} diff --git a/node_modules/url-parse-lax/package.json b/node_modules/url-parse-lax/package.json index fb99b48ca..d60bbdf48 100644 --- a/node_modules/url-parse-lax/package.json +++ b/node_modules/url-parse-lax/package.json @@ -1,23 +1,56 @@ { - "name": "url-parse-lax", - "version": "3.0.0", - "description": "Lax url.parse() with support for protocol-less URLs & IPs", - "license": "MIT", - "repository": "sindresorhus/url-parse-lax", + "_args": [ + [ + "url-parse-lax@3.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "url-parse-lax@3.0.0", + "_id": "url-parse-lax@3.0.0", + "_inBundle": false, + "_integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "_location": "/url-parse-lax", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "url-parse-lax@3.0.0", + "name": "url-parse-lax", + "escapedName": "url-parse-lax", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/got" + ], + "_resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/url-parse-lax/issues" + }, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "description": "Lax url.parse() with support for protocol-less URLs & IPs", + "devDependencies": { + "ava": "*", + "xo": "*" + }, "engines": { "node": ">=4" }, - "scripts": { - "test": "xo && ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/sindresorhus/url-parse-lax#readme", "keywords": [ "url", "uri", @@ -32,11 +65,14 @@ "ipv4", "ipv6" ], - "dependencies": { - "prepend-http": "^2.0.0" + "license": "MIT", + "name": "url-parse-lax", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/url-parse-lax.git" }, - "devDependencies": { - "ava": "*", - "xo": "*" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/util/package.json b/node_modules/util/package.json index 3ea19135d..9badf98c7 100644 --- a/node_modules/util/package.json +++ b/node_modules/util/package.json @@ -1,35 +1,66 @@ { + "_args": [ + [ + "util@0.10.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "util@0.10.4", + "_id": "util@0.10.4", + "_inBundle": false, + "_integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "_location": "/util", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "util@0.10.4", + "name": "util", + "escapedName": "util", + "rawSpec": "0.10.4", + "saveSpec": null, + "fetchSpec": "0.10.4" + }, + "_requiredBy": [ + "/path" + ], + "_resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "_spec": "0.10.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Joyent", "url": "http://www.joyent.com" }, - "name": "util", + "browser": { + "./support/isBuffer.js": "./support/isBufferBrowser.js" + }, + "bugs": { + "url": "https://github.com/defunctzombie/node-util/issues" + }, + "dependencies": { + "inherits": "2.0.3" + }, "description": "Node.JS util module", + "devDependencies": { + "zuul": "~1.0.9" + }, + "files": [ + "util.js", + "support" + ], + "homepage": "https://github.com/defunctzombie/node-util", "keywords": [ "util" ], - "version": "0.10.4", - "homepage": "https://github.com/defunctzombie/node-util", + "license": "MIT", + "main": "./util.js", + "name": "util", "repository": { "type": "git", - "url": "git://github.com/defunctzombie/node-util" + "url": "git://github.com/defunctzombie/node-util.git" }, - "main": "./util.js", - "files": [ - "util.js", - "support" - ], "scripts": { "test": "node test/node/*.js && zuul test/browser/*.js" }, - "dependencies": { - "inherits": "2.0.3" - }, - "license": "MIT", - "devDependencies": { - "zuul": "~1.0.9" - }, - "browser": { - "./support/isBuffer.js": "./support/isBufferBrowser.js" - } -} \ No newline at end of file + "version": "0.10.4" +} diff --git a/node_modules/uuid/CHANGELOG.md b/node_modules/uuid/CHANGELOG.md index 1ff697807..f811b8a0c 100644 --- a/node_modules/uuid/CHANGELOG.md +++ b/node_modules/uuid/CHANGELOG.md @@ -2,70 +2,77 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -### [3.3.3](https://github.com/kelektiv/node-uuid/compare/v3.3.2...v3.3.3) (2019-08-19) +## [3.4.0](https://github.com/uuidjs/uuid/compare/v3.3.3...v3.4.0) (2020-01-16) + + +### Features + +* rename repository to github:uuidjs/uuid ([#351](https://github.com/uuidjs/uuid/issues/351)) ([e2d7314](https://github.com/uuidjs/uuid/commit/e2d7314)), closes [#338](https://github.com/uuidjs/uuid/issues/338) + +### [3.3.3](https://github.com/uuidjs/uuid/compare/v3.3.2...v3.3.3) (2019-08-19) -## [3.3.2](https://github.com/kelektiv/node-uuid/compare/v3.3.1...v3.3.2) (2018-06-28) +## [3.3.2](https://github.com/uuidjs/uuid/compare/v3.3.1...v3.3.2) (2018-06-28) ### Bug Fixes -* typo ([305d877](https://github.com/kelektiv/node-uuid/commit/305d877)) +* typo ([305d877](https://github.com/uuidjs/uuid/commit/305d877)) -## [3.3.1](https://github.com/kelektiv/node-uuid/compare/v3.3.0...v3.3.1) (2018-06-28) +## [3.3.1](https://github.com/uuidjs/uuid/compare/v3.3.0...v3.3.1) (2018-06-28) ### Bug Fixes -* fix [#284](https://github.com/kelektiv/node-uuid/issues/284) by setting function name in try-catch ([f2a60f2](https://github.com/kelektiv/node-uuid/commit/f2a60f2)) +* fix [#284](https://github.com/uuidjs/uuid/issues/284) by setting function name in try-catch ([f2a60f2](https://github.com/uuidjs/uuid/commit/f2a60f2)) -# [3.3.0](https://github.com/kelektiv/node-uuid/compare/v3.2.1...v3.3.0) (2018-06-22) +# [3.3.0](https://github.com/uuidjs/uuid/compare/v3.2.1...v3.3.0) (2018-06-22) ### Bug Fixes -* assignment to readonly property to allow running in strict mode ([#270](https://github.com/kelektiv/node-uuid/issues/270)) ([d062fdc](https://github.com/kelektiv/node-uuid/commit/d062fdc)) -* fix [#229](https://github.com/kelektiv/node-uuid/issues/229) ([c9684d4](https://github.com/kelektiv/node-uuid/commit/c9684d4)) -* Get correct version of IE11 crypto ([#274](https://github.com/kelektiv/node-uuid/issues/274)) ([153d331](https://github.com/kelektiv/node-uuid/commit/153d331)) -* mem issue when generating uuid ([#267](https://github.com/kelektiv/node-uuid/issues/267)) ([c47702c](https://github.com/kelektiv/node-uuid/commit/c47702c)) +* assignment to readonly property to allow running in strict mode ([#270](https://github.com/uuidjs/uuid/issues/270)) ([d062fdc](https://github.com/uuidjs/uuid/commit/d062fdc)) +* fix [#229](https://github.com/uuidjs/uuid/issues/229) ([c9684d4](https://github.com/uuidjs/uuid/commit/c9684d4)) +* Get correct version of IE11 crypto ([#274](https://github.com/uuidjs/uuid/issues/274)) ([153d331](https://github.com/uuidjs/uuid/commit/153d331)) +* mem issue when generating uuid ([#267](https://github.com/uuidjs/uuid/issues/267)) ([c47702c](https://github.com/uuidjs/uuid/commit/c47702c)) ### Features -* enforce Conventional Commit style commit messages ([#282](https://github.com/kelektiv/node-uuid/issues/282)) ([cc9a182](https://github.com/kelektiv/node-uuid/commit/cc9a182)) +* enforce Conventional Commit style commit messages ([#282](https://github.com/uuidjs/uuid/issues/282)) ([cc9a182](https://github.com/uuidjs/uuid/commit/cc9a182)) -## [3.2.1](https://github.com/kelektiv/node-uuid/compare/v3.2.0...v3.2.1) (2018-01-16) +## [3.2.1](https://github.com/uuidjs/uuid/compare/v3.2.0...v3.2.1) (2018-01-16) ### Bug Fixes -* use msCrypto if available. Fixes [#241](https://github.com/kelektiv/node-uuid/issues/241) ([#247](https://github.com/kelektiv/node-uuid/issues/247)) ([1fef18b](https://github.com/kelektiv/node-uuid/commit/1fef18b)) +* use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b)) -# [3.2.0](https://github.com/kelektiv/node-uuid/compare/v3.1.0...v3.2.0) (2018-01-16) +# [3.2.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.2.0) (2018-01-16) ### Bug Fixes -* remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/kelektiv/node-uuid/commit/09fa824)) -* use msCrypto if available. Fixes [#241](https://github.com/kelektiv/node-uuid/issues/241) ([#247](https://github.com/kelektiv/node-uuid/issues/247)) ([1fef18b](https://github.com/kelektiv/node-uuid/commit/1fef18b)) +* remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/uuidjs/uuid/commit/09fa824)) +* use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b)) ### Features -* Add v3 Support ([#217](https://github.com/kelektiv/node-uuid/issues/217)) ([d94f726](https://github.com/kelektiv/node-uuid/commit/d94f726)) +* Add v3 Support ([#217](https://github.com/uuidjs/uuid/issues/217)) ([d94f726](https://github.com/uuidjs/uuid/commit/d94f726)) -# [3.1.0](https://github.com/kelektiv/node-uuid/compare/v3.1.0...v3.0.1) (2017-06-17) +# [3.1.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.0.1) (2017-06-17) ### Bug Fixes diff --git a/node_modules/uuid/README.md b/node_modules/uuid/README.md index 6fc3708b4..1752e4751 100644 --- a/node_modules/uuid/README.md +++ b/node_modules/uuid/README.md @@ -80,46 +80,6 @@ uuidv5('Hello, World!', MY_NAMESPACE); // ⇨ '630eb68f-e0fa-5ecc-887a-7c7a62614 ``` -## Quickstart - Browser-ready Versions - -Browser-ready versions of this module are available via [wzrd.in](https://github.com/jfhbrook/wzrd.in). - -For version 1 uuids: - -```html - - -``` - -For version 3 uuids: - -```html - - -``` - -For version 4 uuids: - -```html - - -``` - -For version 5 uuids: - -```html - - -``` - ## API ### Version 1 @@ -167,8 +127,19 @@ Example: In-place generation of two binary IDs ```javascript // Generate two ids in an array const arr = new Array(); -uuidv1(null, arr, 0); // ⇨ [ 44, 94, 164, 192, 64, 103, 17, 233, 146, 52, 155, 29, 235, 77, 59, 125 ] -uuidv1(null, arr, 16); // ⇨ [ 44, 94, 164, 192, 64, 103, 17, 233, 146, 52, 155, 29, 235, 77, 59, 125, 44, 94, 164, 193, 64, 103, 17, 233, 146, 52, 155, 29, 235, 77, 59, 125 ] +uuidv1(null, arr, 0); // ⇨ + // [ + // 44, 94, 164, 192, 64, 103, + // 17, 233, 146, 52, 155, 29, + // 235, 77, 59, 125 + // ] +uuidv1(null, arr, 16); // ⇨ + // [ + // 44, 94, 164, 192, 64, 103, 17, 233, + // 146, 52, 155, 29, 235, 77, 59, 125, + // 44, 94, 164, 193, 64, 103, 17, 233, + // 146, 52, 155, 29, 235, 77, 59, 125 + // ] ``` @@ -237,8 +208,20 @@ Example: Generate two IDs in a single buffer ```javascript const buffer = new Array(); -uuidv4(null, buffer, 0); // ⇨ [ 155, 29, 235, 77, 59, 125, 75, 173, 155, 221, 43, 13, 123, 61, 203, 109 ] -uuidv4(null, buffer, 16); // ⇨ [ 155, 29, 235, 77, 59, 125, 75, 173, 155, 221, 43, 13, 123, 61, 203, 109, 27, 157, 107, 205, 187, 253, 75, 45, 155, 93, 171, 141, 251, 189, 75, 237 ] +uuidv4(null, buffer, 0); // ⇨ + // [ + // 155, 29, 235, 77, 59, + // 125, 75, 173, 155, 221, + // 43, 13, 123, 61, 203, + // 109 + // ] +uuidv4(null, buffer, 16); // ⇨ + // [ + // 155, 29, 235, 77, 59, 125, 75, 173, + // 155, 221, 43, 13, 123, 61, 203, 109, + // 27, 157, 107, 205, 187, 253, 75, 45, + // 155, 93, 171, 141, 251, 189, 75, 237 + // ] ``` diff --git a/node_modules/uuid/lib/bytesToUuid.js b/node_modules/uuid/lib/bytesToUuid.js index 847c48284..24b60412a 100644 --- a/node_modules/uuid/lib/bytesToUuid.js +++ b/node_modules/uuid/lib/bytesToUuid.js @@ -11,14 +11,16 @@ function bytesToUuid(buf, offset) { var i = offset || 0; var bth = byteToHex; // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 - return ([bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]]]).join(''); + return ([ + bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]] + ]).join(''); } module.exports = bytesToUuid; diff --git a/node_modules/uuid/package.json b/node_modules/uuid/package.json index 99f324528..a63987214 100644 --- a/node_modules/uuid/package.json +++ b/node_modules/uuid/package.json @@ -1,44 +1,100 @@ { - "name": "uuid", - "version": "3.3.3", - "description": "RFC4122 (v1, v4, and v5) UUIDs", + "_from": "uuid@^3.3.2", + "_id": "uuid@3.4.0", + "_inBundle": false, + "_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "_location": "/uuid", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "uuid@^3.3.2", + "name": "uuid", + "escapedName": "uuid", + "rawSpec": "^3.3.2", + "saveSpec": null, + "fetchSpec": "^3.3.2" + }, + "_requiredBy": [ + "/@actions/tool-cache" + ], + "_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "_shasum": "b23e4358afa8a202fe7a100af1f5f883f02007ee", + "_spec": "uuid@^3.3.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/@actions/tool-cache", + "bin": { + "uuid": "bin/uuid" + }, + "browser": { + "./lib/rng.js": "./lib/rng-browser.js", + "./lib/sha1.js": "./lib/sha1-browser.js", + "./lib/md5.js": "./lib/md5-browser.js" + }, + "bugs": { + "url": "https://github.com/uuidjs/uuid/issues" + }, + "bundleDependencies": false, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, + "contributors": [ + { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + { + "name": "Christoph Tavan", + "email": "dev@tavan.de" + }, + { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + { + "name": "Vincent Voyer", + "email": "vincent@zeroload.net" + }, + { + "name": "Roman Shtylman", + "email": "shtylman@gmail.com" + } + ], + "deprecated": false, + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "devDependencies": { + "@commitlint/cli": "~8.2.0", + "@commitlint/config-conventional": "~8.2.0", + "eslint": "~6.4.0", + "husky": "~3.0.5", + "mocha": "6.2.0", + "runmd": "1.2.1", + "standard-version": "7.0.0" + }, + "homepage": "https://github.com/uuidjs/uuid#readme", + "husky": { + "hooks": { + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + } + }, "keywords": [ "uuid", "guid", "rfc4122" ], "license": "MIT", - "bin": { - "uuid": "./bin/uuid" - }, - "devDependencies": { - "@commitlint/cli": "8.1.0", - "@commitlint/config-conventional": "8.1.0", - "eslint": "6.2.0", - "husky": "3.0.4", - "mocha": "6.2.0", - "runmd": "1.2.1", - "standard-version": "7.0.0" + "name": "uuid", + "repository": { + "type": "git", + "url": "git+https://github.com/uuidjs/uuid.git" }, "scripts": { - "commitmsg": "commitlint -E HUSKY_GIT_PARAMS", - "test": "mocha test/test.js", + "lint": "eslint .", "md": "runmd --watch --output=README.md README_js.md", + "prepare": "runmd --output=README.md README_js.md", "release": "standard-version", - "prepare": "runmd --output=README.md README_js.md" + "test": "npm run lint && mocha test/test.js" }, - "browser": { - "./lib/rng.js": "./lib/rng-browser.js", - "./lib/sha1.js": "./lib/sha1-browser.js", - "./lib/md5.js": "./lib/md5-browser.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/kelektiv/node-uuid.git" - } -} \ No newline at end of file + "version": "3.4.0" +} diff --git a/node_modules/uuid/v1.js b/node_modules/uuid/v1.js index d84c0f452..8c245de43 100644 --- a/node_modules/uuid/v1.js +++ b/node_modules/uuid/v1.js @@ -13,7 +13,7 @@ var _clockseq; var _lastMSecs = 0; var _lastNSecs = 0; -// See https://github.com/broofa/node-uuid for API details +// See https://github.com/uuidjs/uuid for API details function v1(options, buf, offset) { var i = buf && offset || 0; var b = buf || []; diff --git a/node_modules/validate-npm-package-license/package.json b/node_modules/validate-npm-package-license/package.json index 06ebbfc74..a3c6f536c 100644 --- a/node_modules/validate-npm-package-license/package.json +++ b/node_modules/validate-npm-package-license/package.json @@ -1,19 +1,57 @@ { - "name": "validate-npm-package-license", - "description": "Give me a string and I'll tell you if it's a valid npm package license string", - "version": "3.0.4", - "author": "Kyle E. Mitchell (https://kemitchell.com)", + "_args": [ + [ + "validate-npm-package-license@3.0.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "validate-npm-package-license@3.0.4", + "_id": "validate-npm-package-license@3.0.4", + "_inBundle": false, + "_integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "_location": "/validate-npm-package-license", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "validate-npm-package-license@3.0.4", + "name": "validate-npm-package-license", + "escapedName": "validate-npm-package-license", + "rawSpec": "3.0.4", + "saveSpec": null, + "fetchSpec": "3.0.4" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "_spec": "3.0.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/kemitchell/validate-npm-package-license.js/issues" + }, "contributors": [ - "Mark Stacey " + { + "name": "Mark Stacey", + "email": "markjstacey@gmail.com" + } ], "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" }, + "description": "Give me a string and I'll tell you if it's a valid npm package license string", "devDependencies": { "defence-cli": "^2.0.1", "replace-require-self": "^1.0.0" }, + "homepage": "https://github.com/kemitchell/validate-npm-package-license.js#readme", "keywords": [ "license", "npm", @@ -21,8 +59,13 @@ "validation" ], "license": "Apache-2.0", - "repository": "kemitchell/validate-npm-package-license.js", + "name": "validate-npm-package-license", + "repository": { + "type": "git", + "url": "git+https://github.com/kemitchell/validate-npm-package-license.js.git" + }, "scripts": { "test": "defence README.md | replace-require-self | node" - } -} \ No newline at end of file + }, + "version": "3.0.4" +} diff --git a/node_modules/wcwidth/package.json b/node_modules/wcwidth/package.json index 232687f75..32c0dc5e9 100644 --- a/node_modules/wcwidth/package.json +++ b/node_modules/wcwidth/package.json @@ -1,19 +1,58 @@ { - "name": "wcwidth", - "version": "1.0.1", - "description": "Port of C's wcwidth() and wcswidth()", - "author": "Tim Oxley", + "_args": [ + [ + "wcwidth@1.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "wcwidth@1.0.1", + "_id": "wcwidth@1.0.1", + "_inBundle": false, + "_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "_location": "/wcwidth", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "wcwidth@1.0.1", + "name": "wcwidth", + "escapedName": "wcwidth", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/ora" + ], + "_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Tim Oxley" + }, + "bugs": { + "url": "https://github.com/timoxley/wcwidth/issues" + }, "contributors": [ - "Woong Jun (http://code.woong.org/)" + { + "name": "Woong Jun", + "email": "woong.jun@gmail.com", + "url": "http://code.woong.org/" + } ], - "main": "index.js", "dependencies": { "defaults": "^1.0.3" }, + "description": "Port of C's wcwidth() and wcswidth()", "devDependencies": { "tape": "^4.5.1" }, - "license": "MIT", + "directories": { + "doc": "docs", + "test": "test" + }, + "homepage": "https://github.com/timoxley/wcwidth#readme", "keywords": [ "wide character", "wc", @@ -24,19 +63,15 @@ "wcwidth", "wcswidth" ], - "directories": { - "doc": "docs", - "test": "test" - }, - "scripts": { - "test": "tape test/*.js" - }, + "license": "MIT", + "main": "index.js", + "name": "wcwidth", "repository": { "type": "git", "url": "git+https://github.com/timoxley/wcwidth.git" }, - "bugs": { - "url": "https://github.com/timoxley/wcwidth/issues" + "scripts": { + "test": "tape test/*.js" }, - "homepage": "https://github.com/timoxley/wcwidth#readme" -} \ No newline at end of file + "version": "1.0.1" +} diff --git a/node_modules/well-known-symbols/package.json b/node_modules/well-known-symbols/package.json index 3506ecbc2..55b8900e5 100644 --- a/node_modules/well-known-symbols/package.json +++ b/node_modules/well-known-symbols/package.json @@ -1,22 +1,54 @@ { - "name": "well-known-symbols", - "version": "2.0.0", - "description": "Check whether a symbol is well-known", - "main": "index.js", - "files": [ - "index.js" + "_args": [ + [ + "well-known-symbols@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "engines": { - "node": ">=6" + "_development": true, + "_from": "well-known-symbols@2.0.0", + "_id": "well-known-symbols@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", + "_location": "/well-known-symbols", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "well-known-symbols@2.0.0", + "name": "well-known-symbols", + "escapedName": "well-known-symbols", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" }, - "scripts": { - "lint": "as-i-preach", - "test": "npm -s run lint && nyc ava" + "_requiredBy": [ + "/concordance" + ], + "_resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Mark Wubben", + "url": "https://novemberborn.net/" }, - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/well-known-symbols.git" + "bugs": { + "url": "https://github.com/novemberborn/well-known-symbols/issues" }, + "description": "Check whether a symbol is well-known", + "devDependencies": { + "@novemberborn/as-i-preach": "^11.0.0", + "ava": "1.0.0-beta.8", + "codecov": "^3.1.0", + "nyc": "^13.0.1" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/novemberborn/well-known-symbols#readme", "keywords": [ "symbols", "es6", @@ -26,18 +58,9 @@ "es2016", "es2017" ], - "author": "Mark Wubben (https://novemberborn.net/)", "license": "ISC", - "bugs": { - "url": "https://github.com/novemberborn/well-known-symbols/issues" - }, - "homepage": "https://github.com/novemberborn/well-known-symbols#readme", - "devDependencies": { - "@novemberborn/as-i-preach": "^11.0.0", - "ava": "1.0.0-beta.8", - "codecov": "^3.1.0", - "nyc": "^13.0.1" - }, + "main": "index.js", + "name": "well-known-symbols", "nyc": { "reporter": [ "html", @@ -45,5 +68,14 @@ "text" ] }, - "standard-engine": "@novemberborn/as-i-preach" -} \ No newline at end of file + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/well-known-symbols.git" + }, + "scripts": { + "lint": "as-i-preach", + "test": "npm -s run lint && nyc ava" + }, + "standard-engine": "@novemberborn/as-i-preach", + "version": "2.0.0" +} diff --git a/node_modules/which-module/package.json b/node_modules/which-module/package.json index 3d784c798..65bcc211c 100644 --- a/node_modules/which-module/package.json +++ b/node_modules/which-module/package.json @@ -1,21 +1,51 @@ { - "name": "which-module", - "version": "2.0.0", + "_args": [ + [ + "which-module@2.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "which-module@2.0.0", + "_id": "which-module@2.0.0", + "_inBundle": false, + "_integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "_location": "/which-module", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "which-module@2.0.0", + "name": "which-module", + "escapedName": "which-module", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "nexdrew" + }, + "bugs": { + "url": "https://github.com/nexdrew/which-module/issues" + }, "description": "Find the module object for something that was require()d", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "release": "standard-version" + "devDependencies": { + "ava": "^0.19.1", + "coveralls": "^2.13.1", + "nyc": "^10.3.0", + "standard": "^10.0.2", + "standard-version": "^4.0.0" }, "files": [ "index.js" ], - "repository": { - "type": "git", - "url": "git+https://github.com/nexdrew/which-module.git" - }, + "homepage": "https://github.com/nexdrew/which-module#readme", "keywords": [ "which", "module", @@ -25,17 +55,18 @@ "reverse", "lookup" ], - "author": "nexdrew", "license": "ISC", - "bugs": { - "url": "https://github.com/nexdrew/which-module/issues" + "main": "index.js", + "name": "which-module", + "repository": { + "type": "git", + "url": "git+https://github.com/nexdrew/which-module.git" }, - "homepage": "https://github.com/nexdrew/which-module#readme", - "devDependencies": { - "ava": "^0.19.1", - "coveralls": "^2.13.1", - "nyc": "^10.3.0", - "standard": "^10.0.2", - "standard-version": "^4.0.0" - } -} \ No newline at end of file + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/which/package.json b/node_modules/which/package.json index 6844ec286..df99cdc6d 100644 --- a/node_modules/which/package.json +++ b/node_modules/which/package.json @@ -1,30 +1,68 @@ { - "author": "Isaac Z. Schlueter (http://blog.izs.me)", - "name": "which", - "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "version": "1.3.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-which.git" + "_args": [ + [ + "which@1.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "which@1.3.1", + "_id": "which@1.3.1", + "_inBundle": false, + "_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "_location": "/which", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "which@1.3.1", + "name": "which", + "escapedName": "which", + "rawSpec": "1.3.1", + "saveSpec": null, + "fetchSpec": "1.3.1" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "_spec": "1.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "bin": { + "which": "bin/which" + }, + "bugs": { + "url": "https://github.com/isaacs/node-which/issues" }, - "main": "which.js", - "bin": "./bin/which", - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", "devDependencies": { "mkdirp": "^0.5.0", "rimraf": "^2.6.2", "tap": "^12.0.1" }, - "scripts": { - "test": "tap test/*.js --cov", - "changelog": "bash gen-changelog.sh", - "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}" - }, "files": [ "which.js", "bin/which" - ] -} \ No newline at end of file + ], + "homepage": "https://github.com/isaacs/node-which#readme", + "license": "ISC", + "main": "which.js", + "name": "which", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" + }, + "scripts": { + "changelog": "bash gen-changelog.sh", + "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}", + "test": "tap test/*.js --cov" + }, + "version": "1.3.1" +} diff --git a/node_modules/widest-line/package.json b/node_modules/widest-line/package.json index 55d21f276..ae73e2d9c 100644 --- a/node_modules/widest-line/package.json +++ b/node_modules/widest-line/package.json @@ -1,24 +1,58 @@ { - "name": "widest-line", - "version": "3.1.0", - "description": "Get the visual width of the widest line in a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/widest-line", + "_args": [ + [ + "widest-line@3.1.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "widest-line@3.1.0", + "_id": "widest-line@3.1.0", + "_inBundle": false, + "_integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "_location": "/widest-line", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "widest-line@3.1.0", + "name": "widest-line", + "escapedName": "widest-line", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/boxen" + ], + "_resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/widest-line/issues" + }, + "dependencies": { + "string-width": "^4.0.0" + }, + "description": "Get the visual width of the widest line in a string - the number of columns required to display it", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/widest-line#readme", "keywords": [ "string", "character", @@ -43,12 +77,14 @@ "korean", "fixed-width" ], - "dependencies": { - "string-width": "^4.0.0" + "license": "MIT", + "name": "widest-line", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/widest-line.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/windows-release/package.json b/node_modules/windows-release/package.json index b87232dd6..ef3874c27 100644 --- a/node_modules/windows-release/package.json +++ b/node_modules/windows-release/package.json @@ -1,24 +1,57 @@ { - "name": "windows-release", - "version": "3.2.0", - "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", - "license": "MIT", - "repository": "sindresorhus/windows-release", + "_args": [ + [ + "windows-release@3.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "windows-release@3.2.0", + "_id": "windows-release@3.2.0", + "_inBundle": false, + "_integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==", + "_location": "/windows-release", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "windows-release@3.2.0", + "name": "windows-release", + "escapedName": "windows-release", + "rawSpec": "3.2.0", + "saveSpec": null, + "fetchSpec": "3.2.0" + }, + "_requiredBy": [ + "/os-name" + ], + "_resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz", + "_spec": "3.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/windows-release/issues" + }, + "dependencies": { + "execa": "^1.0.0" + }, + "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=6" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/windows-release#readme", "keywords": [ "os", "win", @@ -32,12 +65,14 @@ "release", "version" ], - "dependencies": { - "execa": "^1.0.0" + "license": "MIT", + "name": "windows-release", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/windows-release.git" }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.2.0" +} diff --git a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json index 1a7731952..65069feb2 100644 --- a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json @@ -1,26 +1,62 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "_args": [ + [ + "ansi-styles@4.2.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "ansi-styles@4.2.1", + "_id": "ansi-styles@4.2.1", + "_inBundle": false, + "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "_location": "/wrap-ansi/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@4.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "4.2.1", + "saveSpec": null, + "fetchSpec": "4.2.1" + }, + "_requiredBy": [ + "/wrap-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "_spec": "4.2.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, "files": [ "index.js", "index.d.ts" ], + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -43,15 +79,15 @@ "command-line", "text" ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } -} \ No newline at end of file + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava && tsd" + }, + "version": "4.2.1" +} diff --git a/node_modules/wrap-ansi/node_modules/color-convert/package.json b/node_modules/wrap-ansi/node_modules/color-convert/package.json index d169f869b..ed6f88eb3 100644 --- a/node_modules/wrap-ansi/node_modules/color-convert/package.json +++ b/node_modules/wrap-ansi/node_modules/color-convert/package.json @@ -1,17 +1,57 @@ { - "name": "color-convert", + "_args": [ + [ + "color-convert@2.0.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-convert@2.0.1", + "_id": "color-convert@2.0.1", + "_inBundle": false, + "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "_location": "/wrap-ansi/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@2.0.1", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/wrap-ansi/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "~1.1.4" + }, "description": "Plain color conversion functions", - "version": "2.0.1", - "author": "Heather Arthur ", - "license": "MIT", - "repository": "Qix-/color-convert", - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" }, "engines": { "node": ">=7.0.0" }, + "files": [ + "index.js", + "conversions.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -26,23 +66,22 @@ "ansi", "ansi16" ], - "files": [ - "index.js", - "conversions.js", - "route.js" - ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "2.0.1", "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } - }, - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" - }, - "dependencies": { - "color-name": "~1.1.4" } -} \ No newline at end of file +} diff --git a/node_modules/wrap-ansi/node_modules/color-name/package.json b/node_modules/wrap-ansi/node_modules/color-name/package.json index fecb8dcfb..0698aa905 100644 --- a/node_modules/wrap-ansi/node_modules/color-name/package.json +++ b/node_modules/wrap-ansi/node_modules/color-name/package.json @@ -1,28 +1,60 @@ { - "name": "color-name", - "version": "1.1.4", + "_args": [ + [ + "color-name@1.1.4", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "color-name@1.1.4", + "_id": "color-name@1.1.4", + "_inBundle": false, + "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "_location": "/wrap-ansi/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.4", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/wrap-ansi/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, "description": "A list of color names and its values", - "main": "index.js", "files": [ "index.js" ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, + "homepage": "https://github.com/colorjs/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], - "author": "DY ", "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + }, + "scripts": { + "test": "node test.js" }, - "homepage": "https://github.com/colorjs/color-name" -} \ No newline at end of file + "version": "1.1.4" +} diff --git a/node_modules/wrap-ansi/package.json b/node_modules/wrap-ansi/package.json index 821aebb90..91437cfe5 100644 --- a/node_modules/wrap-ansi/package.json +++ b/node_modules/wrap-ansi/package.json @@ -1,23 +1,64 @@ { - "name": "wrap-ansi", - "version": "6.2.0", - "description": "Wordwrap a string with ANSI escape codes", - "license": "MIT", - "repository": "chalk/wrap-ansi", + "_args": [ + [ + "wrap-ansi@6.2.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "wrap-ansi@6.2.0", + "_id": "wrap-ansi@6.2.0", + "_inBundle": false, + "_integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "_location": "/wrap-ansi", + "_phantomChildren": { + "@types/color-name": "1.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "wrap-ansi@6.2.0", + "name": "wrap-ansi", + "escapedName": "wrap-ansi", + "rawSpec": "6.2.0", + "saveSpec": null, + "fetchSpec": "6.2.0" + }, + "_requiredBy": [ + "/cliui" + ], + "_resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "_spec": "6.2.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/chalk/wrap-ansi/issues" + }, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "description": "Wordwrap a string with ANSI escape codes", + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "coveralls": "^3.0.3", + "has-ansi": "^3.0.0", + "nyc": "^14.1.1", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && nyc ava" - }, "files": [ "index.js" ], + "homepage": "https://github.com/chalk/wrap-ansi#readme", "keywords": [ "wrap", "break", @@ -45,17 +86,14 @@ "command-line", "text" ], - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "license": "MIT", + "name": "wrap-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/wrap-ansi.git" }, - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "coveralls": "^3.0.3", - "has-ansi": "^3.0.0", - "nyc": "^14.1.1", - "xo": "^0.24.0" - } -} \ No newline at end of file + "scripts": { + "test": "xo && nyc ava" + }, + "version": "6.2.0" +} diff --git a/node_modules/wrappy/package.json b/node_modules/wrappy/package.json index 277d8831b..da7564e07 100644 --- a/node_modules/wrappy/package.json +++ b/node_modules/wrappy/package.json @@ -1,29 +1,62 @@ { - "name": "wrappy", - "version": "1.0.2", - "description": "Callback wrapping utility", - "main": "wrappy.js", - "files": [ - "wrappy.js" + "_args": [ + [ + "wrappy@1.0.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "directories": { - "test": "test" + "_from": "wrappy@1.0.2", + "_id": "wrappy@1.0.2", + "_inBundle": false, + "_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "_location": "/wrappy", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "wrappy@1.0.2", + "name": "wrappy", + "escapedName": "wrappy", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/inflight", + "/once" + ], + "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/npm/wrappy/issues" }, "dependencies": {}, + "description": "Callback wrapping utility", "devDependencies": { "tap": "^2.3.1" }, - "scripts": { - "test": "tap --coverage test/*.js" + "directories": { + "test": "test" }, + "files": [ + "wrappy.js" + ], + "homepage": "https://github.com/npm/wrappy", + "license": "ISC", + "main": "wrappy.js", + "name": "wrappy", "repository": { "type": "git", - "url": "https://github.com/npm/wrappy" + "url": "git+https://github.com/npm/wrappy.git" }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "bugs": { - "url": "https://github.com/npm/wrappy/issues" + "scripts": { + "test": "tap --coverage test/*.js" }, - "homepage": "https://github.com/npm/wrappy" -} \ No newline at end of file + "version": "1.0.2" +} diff --git a/node_modules/write-file-atomic/package.json b/node_modules/write-file-atomic/package.json index 58ff19175..da72aaeab 100644 --- a/node_modules/write-file-atomic/package.json +++ b/node_modules/write-file-atomic/package.json @@ -1,37 +1,49 @@ { - "name": "write-file-atomic", - "version": "3.0.3", - "description": "Write files in an atomic fashion w/configurable ownership", - "main": "index.js", - "scripts": { - "test": "tap", - "posttest": "npm run lint", - "lint": "standard", - "postlint": "rimraf chowncopy good nochmod nochown nofsync nofsyncopt noopen norename \"norename nounlink\" nowrite", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" - }, - "repository": { - "type": "git", - "url": "git://github.com/npm/write-file-atomic.git" + "_args": [ + [ + "write-file-atomic@3.0.3", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "write-file-atomic@3.0.3", + "_id": "write-file-atomic@3.0.3", + "_inBundle": false, + "_integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "_location": "/write-file-atomic", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "write-file-atomic@3.0.3", + "name": "write-file-atomic", + "escapedName": "write-file-atomic", + "rawSpec": "3.0.3", + "saveSpec": null, + "fetchSpec": "3.0.3" }, - "keywords": [ - "writeFile", - "atomic" + "_requiredBy": [ + "/ava", + "/configstore" ], - "author": "Rebecca Turner (http://re-becca.org)", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "_spec": "3.0.3", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": "http://re-becca.org" + }, "bugs": { "url": "https://github.com/npm/write-file-atomic/issues" }, - "homepage": "https://github.com/npm/write-file-atomic", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" }, + "description": "Write files in an atomic fashion w/configurable ownership", "devDependencies": { "mkdirp": "^0.5.1", "require-inject": "^1.4.4", @@ -42,7 +54,29 @@ "files": [ "index.js" ], + "homepage": "https://github.com/npm/write-file-atomic", + "keywords": [ + "writeFile", + "atomic" + ], + "license": "ISC", + "main": "index.js", + "name": "write-file-atomic", + "repository": { + "type": "git", + "url": "git://github.com/npm/write-file-atomic.git" + }, + "scripts": { + "lint": "standard", + "postlint": "rimraf chowncopy good nochmod nochown nofsync nofsyncopt noopen norename \"norename nounlink\" nowrite", + "posttest": "npm run lint", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "preversion": "npm test", + "test": "tap" + }, "tap": { "100": true - } -} \ No newline at end of file + }, + "version": "3.0.3" +} diff --git a/node_modules/xdg-basedir/package.json b/node_modules/xdg-basedir/package.json index 1028a16cf..4bfc14331 100644 --- a/node_modules/xdg-basedir/package.json +++ b/node_modules/xdg-basedir/package.json @@ -1,24 +1,57 @@ { - "name": "xdg-basedir", - "version": "4.0.0", - "description": "Get XDG Base Directory paths", - "license": "MIT", - "repository": "sindresorhus/xdg-basedir", + "_args": [ + [ + "xdg-basedir@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "xdg-basedir@4.0.0", + "_id": "xdg-basedir@4.0.0", + "_inBundle": false, + "_integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "_location": "/xdg-basedir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "xdg-basedir@4.0.0", + "name": "xdg-basedir", + "escapedName": "xdg-basedir", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/configstore", + "/update-notifier" + ], + "_resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "bugs": { + "url": "https://github.com/sindresorhus/xdg-basedir/issues" + }, + "description": "Get XDG Base Directory paths", + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, "engines": { "node": ">=8" }, - "scripts": { - "test": "xo && ava && tsd" - }, "files": [ "index.js", "index.d.ts" ], + "homepage": "https://github.com/sindresorhus/xdg-basedir#readme", "keywords": [ "xdg", "base", @@ -32,10 +65,14 @@ "unix", "spec" ], - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} \ No newline at end of file + "license": "MIT", + "name": "xdg-basedir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/xdg-basedir.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/y18n/package.json b/node_modules/y18n/package.json index 57f8da1ad..05fdf1f09 100644 --- a/node_modules/y18n/package.json +++ b/node_modules/y18n/package.json @@ -1,32 +1,41 @@ { - "name": "y18n", - "version": "4.0.0", - "description": "the bare-bones internationalization library used by yargs", - "main": "index.js", - "scripts": { - "pretest": "standard", - "test": "nyc mocha", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "release": "standard-version" - }, - "repository": { - "type": "git", - "url": "git@github.com:yargs/y18n.git" - }, - "files": [ - "index.js" + "_args": [ + [ + "y18n@4.0.0", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] ], - "keywords": [ - "i18n", - "internationalization", - "yargs" + "_development": true, + "_from": "y18n@4.0.0", + "_id": "y18n@4.0.0", + "_inBundle": false, + "_integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "_location": "/y18n", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "y18n@4.0.0", + "name": "y18n", + "escapedName": "y18n", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/yargs" ], - "author": "Ben Coe ", - "license": "ISC", + "_resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, "bugs": { "url": "https://github.com/yargs/y18n/issues" }, - "homepage": "https://github.com/yargs/y18n", + "description": "the bare-bones internationalization library used by yargs", "devDependencies": { "chai": "^4.0.1", "coveralls": "^3.0.0", @@ -35,5 +44,28 @@ "rimraf": "^2.5.0", "standard": "^10.0.0-beta.0", "standard-version": "^4.2.0" - } -} \ No newline at end of file + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/yargs/y18n", + "keywords": [ + "i18n", + "internationalization", + "yargs" + ], + "license": "ISC", + "main": "index.js", + "name": "y18n", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/y18n.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc mocha" + }, + "version": "4.0.0" +} diff --git a/node_modules/yargs-parser/package.json b/node_modules/yargs-parser/package.json index b611d3f6b..5730e2bf4 100644 --- a/node_modules/yargs-parser/package.json +++ b/node_modules/yargs-parser/package.json @@ -1,18 +1,59 @@ { - "name": "yargs-parser", - "version": "18.1.2", + "_args": [ + [ + "yargs-parser@18.1.2", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "yargs-parser@18.1.2", + "_id": "yargs-parser@18.1.2", + "_inBundle": false, + "_integrity": "sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ==", + "_location": "/yargs-parser", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "yargs-parser@18.1.2", + "name": "yargs-parser", + "escapedName": "yargs-parser", + "rawSpec": "18.1.2", + "saveSpec": null, + "fetchSpec": "18.1.2" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz", + "_spec": "18.1.2", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/yargs-parser/issues" + }, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, "description": "the mighty option parser used by yargs", - "main": "index.js", - "scripts": { - "fix": "standard --fix", - "test": "c8 --reporter=text --reporter=html mocha test/*.js", - "posttest": "standard", - "coverage": "c8 report --check-coverage check-coverage --lines=100 --branches=97 --statements=100" + "devDependencies": { + "c8": "^7.0.1", + "chai": "^4.2.0", + "mocha": "^7.0.0", + "standard": "^14.3.1" }, - "repository": { - "type": "git", - "url": "https://github.com/yargs/yargs-parser.git" + "engines": { + "node": ">=6" }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/yargs/yargs-parser#readme", "keywords": [ "argument", "parser", @@ -24,23 +65,18 @@ "args", "argument" ], - "author": "Ben Coe ", "license": "ISC", - "devDependencies": { - "c8": "^7.0.1", - "chai": "^4.2.0", - "mocha": "^7.0.0", - "standard": "^14.3.1" + "main": "index.js", + "name": "yargs-parser", + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/yargs-parser.git" }, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "scripts": { + "coverage": "c8 report --check-coverage check-coverage --lines=100 --branches=97 --statements=100", + "fix": "standard --fix", + "posttest": "standard", + "test": "c8 --reporter=text --reporter=html mocha test/*.js" }, - "files": [ - "lib", - "index.js" - ], - "engines": { - "node": ">=6" - } -} \ No newline at end of file + "version": "18.1.2" +} diff --git a/node_modules/yargs/package.json b/node_modules/yargs/package.json index 745bae01a..dec501daa 100644 --- a/node_modules/yargs/package.json +++ b/node_modules/yargs/package.json @@ -1,23 +1,42 @@ { - "name": "yargs", - "version": "15.3.1", - "description": "yargs the modern, pirate-themed, successor to optimist.", - "main": "./index.js", + "_args": [ + [ + "yargs@15.3.1", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_development": true, + "_from": "yargs@15.3.1", + "_id": "yargs@15.3.1", + "_inBundle": false, + "_integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", + "_location": "/yargs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "yargs@15.3.1", + "name": "yargs", + "escapedName": "yargs", + "rawSpec": "15.3.1", + "saveSpec": null, + "fetchSpec": "15.3.1" + }, + "_requiredBy": [ + "/ava" + ], + "_resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", + "_spec": "15.3.1", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "bugs": { + "url": "https://github.com/yargs/yargs/issues" + }, "contributors": [ { "name": "Yargs Contributors", "url": "https://github.com/yargs/yargs/graphs/contributors" } ], - "files": [ - "index.js", - "yargs.js", - "lib", - "locales", - "completion.sh.hbs", - "completion.zsh.hbs", - "LICENSE" - ], "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -31,6 +50,7 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.1" }, + "description": "yargs the modern, pirate-themed, successor to optimist.", "devDependencies": { "c8": "^7.0.0", "chai": "^4.2.0", @@ -46,22 +66,19 @@ "which": "^2.0.0", "yargs-test-extends": "^1.0.1" }, - "scripts": { - "fix": "standard --fix", - "posttest": "standard", - "test": "c8 mocha --require ./test/before.js --timeout=12000 --check-leaks", - "coverage": "c8 report --check-coverage" - }, - "repository": { - "type": "git", - "url": "https://github.com/yargs/yargs.git" + "engines": { + "node": ">=8" }, + "files": [ + "index.js", + "yargs.js", + "lib", + "locales", + "completion.sh.hbs", + "completion.zsh.hbs", + "LICENSE" + ], "homepage": "https://yargs.js.org/", - "standard": { - "ignore": [ - "**/example/**" - ] - }, "keywords": [ "argument", "args", @@ -72,7 +89,22 @@ "command" ], "license": "MIT", - "engines": { - "node": ">=8" - } -} \ No newline at end of file + "main": "./index.js", + "name": "yargs", + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/yargs.git" + }, + "scripts": { + "coverage": "c8 report --check-coverage", + "fix": "standard --fix", + "posttest": "standard", + "test": "c8 mocha --require ./test/before.js --timeout=12000 --check-leaks" + }, + "standard": { + "ignore": [ + "**/example/**" + ] + }, + "version": "15.3.1" +} diff --git a/node_modules/zlib/package.json b/node_modules/zlib/package.json index 5fa94d181..2d59e4be4 100644 --- a/node_modules/zlib/package.json +++ b/node_modules/zlib/package.json @@ -1,20 +1,54 @@ { - "name": "zlib", - "description": "Simple, synchronous deflate/inflate for buffers", - "version": "1.0.5", - "homepage": "https://github.com/kkaefer/node-zlib", - "author": "Konstantin Käfer ", - "repository": { - "type": "git", - "url": "git://github.com/kkaefer/node-zlib.git" + "_args": [ + [ + "zlib@1.0.5", + "/Users/alexkappa/Code/ts/github.com/github/codeql-action" + ] + ], + "_from": "zlib@1.0.5", + "_id": "zlib@1.0.5", + "_inBundle": false, + "_integrity": "sha1-bnyXL8NxxkWmr7A6sUdp3vEU/MA=", + "_location": "/zlib", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "zlib@1.0.5", + "name": "zlib", + "escapedName": "zlib", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" }, + "bugs": { + "url": "https://github.com/kkaefer/node-zlib/issues" + }, + "description": "Simple, synchronous deflate/inflate for buffers", "engines": { "node": ">=0.2.0" }, + "homepage": "https://github.com/kkaefer/node-zlib", "licenses": [ { "type": "BSD" } ], - "main": "./lib/zlib" -} \ No newline at end of file + "main": "./lib/zlib", + "name": "zlib", + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "version": "1.0.5" +} diff --git a/package-lock.json b/package-lock.json index ec6af6942..b9d9e31ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,18 +35,23 @@ "integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==" }, "@actions/tool-cache": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.1.2.tgz", - "integrity": "sha512-IJczPaZr02ECa3Lgws/TJEVco9tjOujiQSZbO3dHuXXjhd5vrUtfOgGwhmz3/f97L910OraPZ8SknofUk6RvOQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz", + "integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==", "requires": { - "@actions/core": "^1.1.0", - "@actions/exec": "^1.0.1", + "@actions/core": "^1.2.3", + "@actions/exec": "^1.0.0", + "@actions/http-client": "^1.0.8", "@actions/io": "^1.0.1", "semver": "^6.1.0", - "typed-rest-client": "^1.4.0", "uuid": "^3.3.2" }, "dependencies": { + "@actions/core": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz", + "integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg==" + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -310,6 +315,15 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", "dev": true }, + "@types/nock": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@types/nock/-/nock-11.1.0.tgz", + "integrity": "sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==", + "dev": true, + "requires": { + "nock": "*" + } + }, "@types/node": { "version": "12.12.14", "resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.14.tgz", @@ -321,6 +335,15 @@ "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", "dev": true }, + "@types/semver": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.2.0.tgz", + "integrity": "sha512-TbB0A8ACUWZt3Y6bQPstW9QNbhNeebdgLX4T/ZfkrswAfUzRiXrgd9seol+X379Wa589Pu4UEx9Uok0D4RjRCQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "acorn": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", @@ -951,6 +974,12 @@ "requires": { "md5-o-matic": "^0.1.1" } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -998,6 +1027,13 @@ "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } } }, "crypt": { @@ -1658,6 +1694,12 @@ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, "jsonschema": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz", @@ -1933,6 +1975,18 @@ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" }, + "nock": { + "version": "12.0.3", + "resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz", + "integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.13", + "propagate": "^2.0.0" + } + }, "node-fetch": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", @@ -1948,6 +2002,14 @@ "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "normalize-url": { @@ -2278,6 +2340,12 @@ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" }, + "propagate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", + "dev": true + }, "pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", @@ -2456,9 +2524,9 @@ "dev": true }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" }, "semver-diff": { "version": "3.1.1", @@ -2754,6 +2822,14 @@ "semver": "^5.3.0", "tslib": "^1.10.0", "tsutils": "^2.29.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "tsutils": { @@ -2765,20 +2841,6 @@ "tslib": "^1.8.1" } }, - "tunnel": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.4.tgz", - "integrity": "sha1-LTeFoVjBdMmhbcLARuxfxfF0IhM=" - }, - "typed-rest-client": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.5.0.tgz", - "integrity": "sha512-DVZRlmsfnTjp6ZJaatcdyvvwYwbWvR4YDNFDqb+qdTxpvaVP99YCpBkA8rxsLtAPjBVoDe4fNsnMIdZTiPuKWg==", - "requires": { - "tunnel": "0.0.4", - "underscore": "1.8.3" - } - }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -2794,11 +2856,6 @@ "integrity": "sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==", "dev": true }, - "underscore": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", - "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=" - }, "unique-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", @@ -2907,9 +2964,9 @@ } }, "uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, "validate-npm-package-license": { "version": "3.0.4", diff --git a/package.json b/package.json index b0e9b213a..6a6598995 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "@actions/exec": "^1.0.1", "@actions/http-client": "^1.0.8", "@actions/io": "^1.0.1", - "@actions/tool-cache": "^1.1.2", + "@actions/tool-cache": "^1.5.5", "@octokit/rest": "^17.1.0", "console-log-level": "^1.4.1", "file-url": "^3.0.0", @@ -32,6 +32,7 @@ "long": "^4.0.0", "md5": "^2.2.1", "path": "^0.12.7", + "semver": "^7.3.2", "zlib": "^1.0.5" }, "//": [ @@ -41,11 +42,14 @@ "@ava/typescript": "1.1.1", "@types/jszip": "^3.1.6", "@types/long": "4.0.0", + "@types/nock": "^11.1.0", "@types/node": "^12.0.4", + "@types/semver": "^7.2.0", "ava": "3.8.1", "micromatch": "4.0.2", + "nock": "^12.0.3", + "removeNPMAbsolutePaths": "2.0.0", "tslint": "^6.1.0", - "typescript": "^3.7.5", - "removeNPMAbsolutePaths": "2.0.0" + "typescript": "^3.7.5" } -} \ No newline at end of file +} From 3f2a60be8a02f3d0d30c4cd412be8d71466ff676 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Thu, 18 Jun 2020 16:31:39 +0200 Subject: [PATCH 04/11] switch to semver instead of hash --- src/setup-tools.ts | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/src/setup-tools.ts b/src/setup-tools.ts index edc814191..43df99d05 100644 --- a/src/setup-tools.ts +++ b/src/setup-tools.ts @@ -1,6 +1,6 @@ import * as core from '@actions/core'; import * as toolcache from '@actions/tool-cache'; -import * as crypto from 'crypto'; +import * as semver from 'semver'; import * as path from 'path'; export class CodeQLSetup { @@ -30,18 +30,17 @@ export class CodeQLSetup { } export async function setupCodeQL(): Promise { - const hash = crypto.createHash('sha256'); - const codeqlURL = core.getInput('tools', { required: true }); - const codeqlURLHash = hash.update(codeqlURL).digest('hex'); - try { - let codeqlFolder = toolcache.find('CodeQL', codeqlURLHash); + const codeqlURL = core.getInput('tools', { required: true }); + const codeqlURLVersion = getCodeQLURLVersion(codeqlURL); + + let codeqlFolder = toolcache.find('CodeQL', codeqlURLVersion); if (codeqlFolder) { core.debug(`CodeQL found in cache ${codeqlFolder}`); } else { const codeqlPath = await toolcache.downloadTool(codeqlURL); const codeqlExtracted = await toolcache.extractTar(codeqlPath); - codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLHash); + codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLVersion); } return new CodeQLSetup(path.join(codeqlFolder, 'codeql')); @@ -50,3 +49,25 @@ export async function setupCodeQL(): Promise { throw new Error("Unable to download and extract CodeQL CLI"); } } + +export function getCodeQLURLVersion(url: string): string { + + const match = url.match(/codeql-bundle-([\d+(\.\d+)]+)/); + if (match === null || match.length < 2) { + throw new Error(`Malformed tools url: ${url}. Version could not be inferred`); + } + + let version = match[1]; + + if (!semver.valid(version)) { + core.debug(`Bundle version ${version} is not in SemVer format. Will treat it as pre-release 0.0.0-${version}.`); + version = '0.0.0-' + version; + } + + const s = semver.clean(version); + if (!s) { + throw new Error(`Malformed tools url ${url}. Version should be in SemVer format but have ${version} instead`); + } + + return s; +} \ No newline at end of file From ff8fe44e0c653b621260ed4798a86910e475c790 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Thu, 18 Jun 2020 16:40:02 +0200 Subject: [PATCH 05/11] compiled js --- lib/setup-tools.js | 28 ++++++++++--- lib/setup-tools.js.map | 2 +- lib/setup-tools.test.js | 59 +++++++++++++++++++++++++++ lib/setup-tools.test.js.map | 1 + src/setup-tools.test.ts | 64 ++++++++++++++++++++++++++++++ src/testdata/codeql-bundle.tar.gz | Bin 0 -> 122 bytes 6 files changed, 147 insertions(+), 7 deletions(-) create mode 100644 lib/setup-tools.test.js create mode 100644 lib/setup-tools.test.js.map create mode 100644 src/setup-tools.test.ts create mode 100644 src/testdata/codeql-bundle.tar.gz diff --git a/lib/setup-tools.js b/lib/setup-tools.js index 0f2e4a419..811e04406 100644 --- a/lib/setup-tools.js +++ b/lib/setup-tools.js @@ -9,7 +9,7 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); const toolcache = __importStar(require("@actions/tool-cache")); -const crypto = __importStar(require("crypto")); +const semver = __importStar(require("semver")); const path = __importStar(require("path")); class CodeQLSetup { constructor(codeqlDist) { @@ -36,18 +36,17 @@ class CodeQLSetup { } exports.CodeQLSetup = CodeQLSetup; async function setupCodeQL() { - const hash = crypto.createHash('sha256'); - const codeqlURL = core.getInput('tools', { required: true }); - const codeqlURLHash = hash.update(codeqlURL).digest('hex'); try { - let codeqlFolder = toolcache.find('CodeQL', codeqlURLHash); + const codeqlURL = core.getInput('tools', { required: true }); + const codeqlURLVersion = getCodeQLURLVersion(codeqlURL); + let codeqlFolder = toolcache.find('CodeQL', codeqlURLVersion); if (codeqlFolder) { core.debug(`CodeQL found in cache ${codeqlFolder}`); } else { const codeqlPath = await toolcache.downloadTool(codeqlURL); const codeqlExtracted = await toolcache.extractTar(codeqlPath); - codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLHash); + codeqlFolder = await toolcache.cacheDir(codeqlExtracted, 'CodeQL', codeqlURLVersion); } return new CodeQLSetup(path.join(codeqlFolder, 'codeql')); } @@ -57,4 +56,21 @@ async function setupCodeQL() { } } exports.setupCodeQL = setupCodeQL; +function getCodeQLURLVersion(url) { + const match = url.match(/codeql-bundle-([\d+(\.\d+)]+)/); + if (match === null || match.length < 2) { + throw new Error(`Malformed tools url: ${url}. Version could not be inferred`); + } + let version = match[1]; + if (!semver.valid(version)) { + core.debug(`Bundle version ${version} is not in SemVer format. Will treat it as pre-release 0.0.0-${version}.`); + version = '0.0.0-' + version; + } + const s = semver.clean(version); + if (!s) { + throw new Error(`Malformed tools url ${url}. Version should be in SemVer format but have ${version} instead`); + } + return s; +} +exports.getCodeQLURLVersion = getCodeQLURLVersion; //# sourceMappingURL=setup-tools.js.map \ No newline at end of file diff --git a/lib/setup-tools.js.map b/lib/setup-tools.js.map index 5ccc5de98..83b288e31 100644 --- a/lib/setup-tools.js.map +++ b/lib/setup-tools.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,+CAAiC;AACjC,2CAA6B;AAE7B,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7D,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAE3D,IAAI;QACA,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC;QAC3D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACrF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AApBD,kCAoBC"} \ No newline at end of file +{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,+CAAiC;AACjC,2CAA6B;AAE7B,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,IAAI;QACA,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,gBAAgB,CAAC,CAAC;QAC9D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;SACxF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC;AAED,SAAgB,mBAAmB,CAAC,GAAW;IAE3C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;IACzD,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;QACpC,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,iCAAiC,CAAC,CAAC;KACjF;IAED,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAEvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE;QACxB,IAAI,CAAC,KAAK,CAAC,kBAAkB,OAAO,gEAAgE,OAAO,GAAG,CAAC,CAAC;QAChH,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;KAChC;IAED,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,CAAC,EAAE;QACJ,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,iDAAiD,OAAO,UAAU,CAAC,CAAC;KACjH;IAED,OAAO,CAAC,CAAC;AACb,CAAC;AApBD,kDAoBC"} \ No newline at end of file diff --git a/lib/setup-tools.test.js b/lib/setup-tools.test.js new file mode 100644 index 000000000..6a96fd378 --- /dev/null +++ b/lib/setup-tools.test.js @@ -0,0 +1,59 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const ava_1 = __importDefault(require("ava")); +const path = __importStar(require("path")); +const toolcache = __importStar(require("@actions/tool-cache")); +const util = __importStar(require("./util")); +const nock_1 = __importDefault(require("nock")); +const setupTools = __importStar(require("./setup-tools")); +ava_1.default('download codeql bundle cache', async (t) => { + await util.withTmpDir(async (tmpDir) => { + process.env['GITHUB_WORKSPACE'] = tmpDir; + process.env['RUNNER_TEMP'] = path.join(tmpDir, 'temp'); + process.env['RUNNER_TOOL_CACHE'] = path.join(tmpDir, 'cache'); + const versions = ['20200601', '20200610']; + for (let i = 0; i < versions.length; i++) { + const version = versions[i]; + nock_1.default('https://example.com') + .get(`/download/codeql-bundle-${version}/codeql-bundle.tar.gz`) + .replyWithFile(200, path.join(__dirname, `/../src/testdata/codeql-bundle.tar.gz`)); + process.env['INPUT_TOOLS'] = `https://example.com/download/codeql-bundle-${version}/codeql-bundle.tar.gz`; + await setupTools.setupCodeQL(); + t.assert(toolcache.find('CodeQL', `0.0.0-${version}`)); + } + const cachedVersions = toolcache.findAllVersions('CodeQL'); + t.is(cachedVersions.length, 2); + }); +}); +ava_1.default('parse codeql bundle url version', t => { + const tests = { + '20200601': '0.0.0-20200601', + '20200601.0': '0.0.0-20200601.0', + '20200601.0.0': '20200601.0.0', + '1.2.3': '1.2.3', + '1.2.3-alpha': '1.2.3-alpha', + '1.2.3-beta.1': '1.2.3-beta.1', + }; + for (const version in tests) { + const expectedVersion = tests[version]; + const url = `https://github.com/.../codeql-bundle-${version}/...`; + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.assert(parsedVersion, expectedVersion); + } + catch (e) { + t.fail(e.message); + } + } +}); +//# sourceMappingURL=setup-tools.test.js.map \ No newline at end of file diff --git a/lib/setup-tools.test.js.map b/lib/setup-tools.test.js.map new file mode 100644 index 000000000..55badf82c --- /dev/null +++ b/lib/setup-tools.test.js.map @@ -0,0 +1 @@ +{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,8CAAuB;AACvB,2CAA6B;AAC7B,+DAAiD;AACjD,6CAA+B;AAC/B,gDAAwB;AAExB,0DAA4C;AAE5C,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAA;AAEF,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QAEzB,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;QAElE,IAAI;YACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;YAC1D,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;SAC5C;QAAC,OAAO,CAAC,EAAE;YACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;SACrB;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/src/setup-tools.test.ts b/src/setup-tools.test.ts new file mode 100644 index 000000000..d473b37a9 --- /dev/null +++ b/src/setup-tools.test.ts @@ -0,0 +1,64 @@ +import test from 'ava'; +import * as path from 'path'; +import * as toolcache from '@actions/tool-cache'; +import * as util from './util'; +import nock from 'nock'; + +import * as setupTools from './setup-tools'; + +test('download codeql bundle cache', async t => { + + await util.withTmpDir(async tmpDir => { + + process.env['GITHUB_WORKSPACE'] = tmpDir; + + process.env['RUNNER_TEMP'] = path.join(tmpDir, 'temp'); + process.env['RUNNER_TOOL_CACHE'] = path.join(tmpDir, 'cache'); + + const versions = ['20200601', '20200610']; + + for (let i = 0; i < versions.length; i++) { + const version = versions[i]; + + nock('https://example.com') + .get(`/download/codeql-bundle-${version}/codeql-bundle.tar.gz`) + .replyWithFile(200, path.join(__dirname, `/../src/testdata/codeql-bundle.tar.gz`)); + + + process.env['INPUT_TOOLS'] = `https://example.com/download/codeql-bundle-${version}/codeql-bundle.tar.gz`; + + await setupTools.setupCodeQL(); + + t.assert(toolcache.find('CodeQL', `0.0.0-${version}`)); + } + + const cachedVersions = toolcache.findAllVersions('CodeQL'); + + t.is(cachedVersions.length, 2); + }); +}) + +test('parse codeql bundle url version', t => { + + const tests = { + '20200601': '0.0.0-20200601', + '20200601.0': '0.0.0-20200601.0', + '20200601.0.0': '20200601.0.0', + '1.2.3': '1.2.3', + '1.2.3-alpha': '1.2.3-alpha', + '1.2.3-beta.1': '1.2.3-beta.1', + }; + + for (const version in tests) { + + const expectedVersion = tests[version]; + const url = `https://github.com/.../codeql-bundle-${version}/...`; + + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.assert(parsedVersion, expectedVersion); + } catch (e) { + t.fail(e.message); + } + } +}); \ No newline at end of file diff --git a/src/testdata/codeql-bundle.tar.gz b/src/testdata/codeql-bundle.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..311ee5faee2cbb866e98639d8d0317a7ca79df31 GIT binary patch literal 122 zcmb2|=3of%dmYEXtnI0*m$<;t00@i?0~szpOIwz3>j1~0b|zz1=VaqzWn Date: Thu, 18 Jun 2020 18:29:25 +0200 Subject: [PATCH 06/11] fix tslint errors --- lib/setup-tools.js | 2 +- lib/setup-tools.js.map | 2 +- lib/setup-tools.test.js | 30 ++++++++++++++++-------------- lib/setup-tools.test.js.map | 2 +- src/setup-tools.test.ts | 26 ++++++++++++++------------ src/setup-tools.ts | 12 ++++++------ 6 files changed, 39 insertions(+), 35 deletions(-) diff --git a/lib/setup-tools.js b/lib/setup-tools.js index 811e04406..0e7ee466d 100644 --- a/lib/setup-tools.js +++ b/lib/setup-tools.js @@ -9,8 +9,8 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); const toolcache = __importStar(require("@actions/tool-cache")); -const semver = __importStar(require("semver")); const path = __importStar(require("path")); +const semver = __importStar(require("semver")); class CodeQLSetup { constructor(codeqlDist) { this.dist = codeqlDist; diff --git a/lib/setup-tools.js.map b/lib/setup-tools.js.map index 83b288e31..d7c20f447 100644 --- a/lib/setup-tools.js.map +++ b/lib/setup-tools.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,+CAAiC;AACjC,2CAA6B;AAE7B,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,IAAI;QACA,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,gBAAgB,CAAC,CAAC;QAC9D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;SACxF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC;AAED,SAAgB,mBAAmB,CAAC,GAAW;IAE3C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;IACzD,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;QACpC,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,iCAAiC,CAAC,CAAC;KACjF;IAED,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAEvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE;QACxB,IAAI,CAAC,KAAK,CAAC,kBAAkB,OAAO,gEAAgE,OAAO,GAAG,CAAC,CAAC;QAChH,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;KAChC;IAED,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,CAAC,EAAE;QACJ,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,iDAAiD,OAAO,UAAU,CAAC,CAAC;KACjH;IAED,OAAO,CAAC,CAAC;AACb,CAAC;AApBD,kDAoBC"} \ No newline at end of file +{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAC7B,+CAAiC;AAEjC,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,IAAI;QACA,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,gBAAgB,CAAC,CAAC;QAC9D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;SACxF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC;AAED,SAAgB,mBAAmB,CAAC,GAAW;IAE3C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;IACzD,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;QACpC,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,iCAAiC,CAAC,CAAC;KACjF;IAED,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAEvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE;QACxB,IAAI,CAAC,KAAK,CAAC,kBAAkB,OAAO,gEAAgE,OAAO,GAAG,CAAC,CAAC;QAChH,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;KAChC;IAED,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,CAAC,EAAE;QACJ,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,iDAAiD,OAAO,UAAU,CAAC,CAAC;KACjH;IAED,OAAO,CAAC,CAAC;AACb,CAAC;AApBD,kDAoBC"} \ No newline at end of file diff --git a/lib/setup-tools.test.js b/lib/setup-tools.test.js index 6a96fd378..8ea59733f 100644 --- a/lib/setup-tools.test.js +++ b/lib/setup-tools.test.js @@ -1,7 +1,4 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; @@ -9,13 +6,16 @@ var __importStar = (this && this.__importStar) || function (mod) { result["default"] = mod; return result; }; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -const ava_1 = __importDefault(require("ava")); -const path = __importStar(require("path")); const toolcache = __importStar(require("@actions/tool-cache")); -const util = __importStar(require("./util")); +const ava_1 = __importDefault(require("ava")); const nock_1 = __importDefault(require("nock")); +const path = __importStar(require("path")); const setupTools = __importStar(require("./setup-tools")); +const util = __importStar(require("./util")); ava_1.default('download codeql bundle cache', async (t) => { await util.withTmpDir(async (tmpDir) => { process.env['GITHUB_WORKSPACE'] = tmpDir; @@ -45,14 +45,16 @@ ava_1.default('parse codeql bundle url version', t => { '1.2.3-beta.1': '1.2.3-beta.1', }; for (const version in tests) { - const expectedVersion = tests[version]; - const url = `https://github.com/.../codeql-bundle-${version}/...`; - try { - const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.assert(parsedVersion, expectedVersion); - } - catch (e) { - t.fail(e.message); + if (tests.hasOwnProperty(version)) { + const expectedVersion = tests[version]; + const url = `https://github.com/.../codeql-bundle-${version}/...`; + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.assert(parsedVersion, expectedVersion); + } + catch (e) { + t.fail(e.message); + } } } }); diff --git a/lib/setup-tools.test.js.map b/lib/setup-tools.test.js.map index 55badf82c..351a88003 100644 --- a/lib/setup-tools.test.js.map +++ b/lib/setup-tools.test.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,8CAAuB;AACvB,2CAA6B;AAC7B,+DAAiD;AACjD,6CAA+B;AAC/B,gDAAwB;AAExB,0DAA4C;AAE5C,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAA;AAEF,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QAEzB,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;QAElE,IAAI;YACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;YAC1D,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;SAC5C;QAAC,OAAO,CAAC,EAAE;YACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;SACrB;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAAiD;AACjD,8CAAuB;AACvB,gDAAwB;AACxB,2CAA6B;AAE7B,0DAA4C;AAC5C,6CAA+B;AAE/B,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QACzB,IAAI,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YAE/B,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;YAElE,IAAI;gBACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;gBAC1D,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;aAC5C;YAAC,OAAO,CAAC,EAAE;gBACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;aACrB;SACJ;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/src/setup-tools.test.ts b/src/setup-tools.test.ts index d473b37a9..b56af0f3c 100644 --- a/src/setup-tools.test.ts +++ b/src/setup-tools.test.ts @@ -1,10 +1,10 @@ -import test from 'ava'; -import * as path from 'path'; import * as toolcache from '@actions/tool-cache'; -import * as util from './util'; +import test from 'ava'; import nock from 'nock'; +import * as path from 'path'; import * as setupTools from './setup-tools'; +import * as util from './util'; test('download codeql bundle cache', async t => { @@ -36,7 +36,7 @@ test('download codeql bundle cache', async t => { t.is(cachedVersions.length, 2); }); -}) +}); test('parse codeql bundle url version', t => { @@ -50,15 +50,17 @@ test('parse codeql bundle url version', t => { }; for (const version in tests) { + if (tests.hasOwnProperty(version)) { - const expectedVersion = tests[version]; - const url = `https://github.com/.../codeql-bundle-${version}/...`; + const expectedVersion = tests[version]; + const url = `https://github.com/.../codeql-bundle-${version}/...`; - try { - const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.assert(parsedVersion, expectedVersion); - } catch (e) { - t.fail(e.message); + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.assert(parsedVersion, expectedVersion); + } catch (e) { + t.fail(e.message); + } } } -}); \ No newline at end of file +}); diff --git a/src/setup-tools.ts b/src/setup-tools.ts index 43df99d05..c9edad923 100644 --- a/src/setup-tools.ts +++ b/src/setup-tools.ts @@ -1,7 +1,7 @@ import * as core from '@actions/core'; import * as toolcache from '@actions/tool-cache'; -import * as semver from 'semver'; import * as path from 'path'; +import * as semver from 'semver'; export class CodeQLSetup { public dist: string; @@ -32,7 +32,7 @@ export class CodeQLSetup { export async function setupCodeQL(): Promise { try { const codeqlURL = core.getInput('tools', { required: true }); - const codeqlURLVersion = getCodeQLURLVersion(codeqlURL); + const codeqlURLVersion = getCodeQLURLVersion(codeqlURL); let codeqlFolder = toolcache.find('CodeQL', codeqlURLVersion); if (codeqlFolder) { @@ -51,7 +51,7 @@ export async function setupCodeQL(): Promise { } export function getCodeQLURLVersion(url: string): string { - + const match = url.match(/codeql-bundle-([\d+(\.\d+)]+)/); if (match === null || match.length < 2) { throw new Error(`Malformed tools url: ${url}. Version could not be inferred`); @@ -61,13 +61,13 @@ export function getCodeQLURLVersion(url: string): string { if (!semver.valid(version)) { core.debug(`Bundle version ${version} is not in SemVer format. Will treat it as pre-release 0.0.0-${version}.`); - version = '0.0.0-' + version; + version = '0.0.0-' + version; } - + const s = semver.clean(version); if (!s) { throw new Error(`Malformed tools url ${url}. Version should be in SemVer format but have ${version} instead`); } return s; -} \ No newline at end of file +} From f9768ac4ba423c6095528f7bf8f0ecfab3fc579f Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Thu, 18 Jun 2020 18:43:30 +0200 Subject: [PATCH 07/11] update deps --- node_modules/@actions/core/package.json | 68 +-- node_modules/@actions/exec/package.json | 70 +-- .../node_modules/tunnel/package.json | 71 +-- .../@actions/http-client/package.json | 83 ++-- node_modules/@actions/io/package.json | 64 +-- .../node_modules/@actions/core/package.json | 66 +-- .../node_modules/semver/package.json | 71 +-- node_modules/@actions/tool-cache/package.json | 88 ++-- .../escape-string-regexp/package.json | 132 ++--- node_modules/@ava/typescript/package.json | 78 +-- node_modules/@babel/code-frame/package.json | 65 +-- node_modules/@babel/highlight/package.json | 64 +-- .../react/node_modules/arrify/package.json | 66 +-- node_modules/@concordance/react/package.json | 125 ++--- node_modules/@nodelib/fs.scandir/package.json | 69 +-- node_modules/@nodelib/fs.stat/package.json | 62 +-- node_modules/@nodelib/fs.walk/package.json | 69 +-- node_modules/@octokit/auth-token/package.json | 74 +-- node_modules/@octokit/core/package.json | 78 +-- node_modules/@octokit/endpoint/package.json | 77 +-- .../universal-user-agent/package.json | 67 +-- node_modules/@octokit/graphql/package.json | 79 +-- .../plugin-paginate-rest/package.json | 76 +-- .../@octokit/plugin-request-log/package.json | 76 +-- .../plugin-rest-endpoint-methods/package.json | 76 +-- .../@octokit/request-error/package.json | 77 +-- node_modules/@octokit/request/package.json | 78 +-- node_modules/@octokit/rest/package.json | 76 +-- node_modules/@octokit/types/package.json | 112 ++--- node_modules/@sindresorhus/is/package.json | 165 +++---- .../@szmarczak/http-timer/package.json | 128 ++--- node_modules/@types/color-name/package.json | 84 +--- node_modules/@types/events/package.json | 86 ++-- node_modules/@types/glob/package.json | 99 ++-- node_modules/@types/jszip/package.json | 92 ++-- node_modules/@types/long/package.json | 77 +-- node_modules/@types/minimatch/package.json | 84 ++-- node_modules/@types/nock/package.json | 62 +-- node_modules/@types/node/package.json | 457 +++++++++--------- .../normalize-package-data/package.json | 77 +-- node_modules/@types/semver/package.json | 123 ++--- node_modules/acorn/package.json | 64 +-- node_modules/aggregate-error/package.json | 121 ++--- .../node_modules/emoji-regex/package.json | 93 ++-- .../is-fullwidth-code-point/package.json | 64 +-- .../node_modules/string-width/package.json | 150 +++--- .../node_modules/strip-ansi/package.json | 146 +++--- node_modules/ansi-align/package.json | 89 ++-- node_modules/ansi-regex/package.json | 144 +++--- node_modules/ansi-styles/package.json | 150 +++--- node_modules/argparse/package.json | 85 +--- node_modules/array-find-index/package.json | 66 +-- node_modules/array-union/package.json | 115 ++--- node_modules/arrgv/package.json | 69 +-- node_modules/arrify/package.json | 108 ++--- .../ava/node_modules/acorn-walk/package.json | 60 +-- .../ava/node_modules/ansi-styles/package.json | 153 +++--- .../ava/node_modules/chalk/package.json | 174 +++---- .../node_modules/color-convert/package.json | 85 +--- .../ava/node_modules/color-name/package.json | 92 ++-- .../escape-string-regexp/package.json | 132 ++--- .../ava/node_modules/has-flag/package.json | 130 ++--- .../source-map-support/package.json | 62 +-- .../ava/node_modules/stack-utils/package.json | 76 +-- .../node_modules/supports-color/package.json | 144 +++--- node_modules/ava/package.json | 323 ++++++------- node_modules/balanced-match/package.json | 72 +-- node_modules/before-after-hook/package.json | 106 ++-- node_modules/binary-extensions/package.json | 114 ++--- node_modules/blueimp-md5/package.json | 84 ++-- .../node_modules/ansi-styles/package.json | 152 +++--- .../boxen/node_modules/chalk/package.json | 164 +++---- .../node_modules/color-convert/package.json | 85 +--- .../node_modules/color-name/package.json | 92 ++-- .../boxen/node_modules/has-flag/package.json | 130 ++--- .../node_modules/supports-color/package.json | 144 +++--- .../boxen/node_modules/type-fest/package.json | 140 +++--- node_modules/boxen/package.json | 142 +++--- node_modules/brace-expansion/package.json | 74 +-- node_modules/braces/package.json | 107 ++-- node_modules/buffer-from/package.json | 61 +-- node_modules/builtin-modules/package.json | 68 +-- .../node_modules/get-stream/package.json | 136 ++---- .../node_modules/lowercase-keys/package.json | 114 ++--- node_modules/cacheable-request/package.json | 156 +++--- node_modules/callsites/package.json | 116 ++--- node_modules/camelcase/package.json | 125 ++--- node_modules/chalk/package.json | 182 +++---- node_modules/charenc/package.json | 69 +-- .../node_modules/anymatch/package.json | 84 ++-- .../node_modules/normalize-path/package.json | 88 +--- node_modules/chokidar/package.json | 132 ++--- node_modules/chunkd/package.json | 149 +++--- node_modules/ci-info/package.json | 78 +-- node_modules/ci-parallel-vars/package.json | 73 +-- node_modules/clean-stack/package.json | 116 ++--- node_modules/clean-yaml-object/package.json | 72 +-- node_modules/cli-boxes/package.json | 120 ++--- node_modules/cli-cursor/package.json | 131 ++--- node_modules/cli-spinners/package.json | 132 ++--- node_modules/cli-truncate/package.json | 130 ++--- node_modules/cliui/package.json | 108 ++--- node_modules/clone-response/package.json | 87 ++-- node_modules/clone/package.json | 166 ++----- node_modules/code-excerpt/package.json | 68 +-- node_modules/color-convert/package.json | 87 +--- node_modules/color-name/package.json | 64 +-- node_modules/commander/package.json | 82 +--- node_modules/common-path-prefix/package.json | 76 +-- node_modules/concat-map/package.json | 135 ++---- .../node_modules/md5-hex/package.json | 70 +-- .../node_modules/semver/package.json | 68 +-- node_modules/concordance/package.json | 88 ++-- node_modules/configstore/package.json | 130 ++--- node_modules/console-log-level/package.json | 79 +-- node_modules/convert-source-map/package.json | 84 ++-- node_modules/convert-to-spaces/package.json | 73 +-- .../node_modules/semver/package.json | 68 +-- node_modules/cross-spawn/package.json | 118 ++--- node_modules/crypt/package.json | 65 +-- .../crypto-random-string/package.json | 118 ++--- node_modules/currently-unhandled/package.json | 92 ++-- node_modules/date-time/package.json | 70 +-- node_modules/debug/package.json | 119 ++--- node_modules/decamelize/package.json | 67 +-- node_modules/decompress-response/package.json | 96 ++-- node_modules/deep-extend/package.json | 104 ++-- node_modules/defaults/package.json | 73 +-- node_modules/defer-to-connect/package.json | 117 ++--- .../del/node_modules/globby/package.json | 204 ++++---- .../del/node_modules/p-map/package.json | 142 +++--- node_modules/del/package.json | 178 +++---- node_modules/deprecation/package.json | 78 +-- node_modules/diff/package.json | 95 ++-- node_modules/dir-glob/package.json | 115 ++--- node_modules/dot-prop/package.json | 128 ++--- node_modules/duplexer3/package.json | 68 +-- node_modules/emittery/package.json | 172 +++---- node_modules/emoji-regex/package.json | 91 ++-- node_modules/end-of-stream/package.json | 71 +-- node_modules/equal-length/package.json | 64 +-- node_modules/error-ex/package.json | 91 +--- node_modules/escape-goat/package.json | 128 ++--- .../escape-string-regexp/package.json | 83 +--- node_modules/esutils/package.json | 81 +--- node_modules/execa/package.json | 175 +++---- node_modules/fast-diff/package.json | 65 +-- node_modules/fast-glob/package.json | 125 ++--- node_modules/fastq/package.json | 96 ++-- node_modules/figures/package.json | 128 ++--- node_modules/file-url/package.json | 107 ++-- node_modules/fill-range/package.json | 101 ++-- node_modules/find-up/package.json | 145 +++--- node_modules/fs.realpath/package.json | 75 +-- node_modules/fs/package.json | 58 +-- node_modules/fsevents/package.json | 96 ++-- node_modules/get-caller-file/package.json | 81 ++-- node_modules/get-stream/package.json | 130 ++--- node_modules/glob-parent/package.json | 97 ++-- node_modules/glob/package.json | 89 ++-- node_modules/global-dirs/package.json | 148 +++--- node_modules/globby/package.json | 202 ++++---- node_modules/got/package.json | 186 +++---- node_modules/graceful-fs/package.json | 91 ++-- node_modules/has-flag/package.json | 66 +-- node_modules/has-yarn/package.json | 116 ++--- node_modules/hosted-git-info/package.json | 85 ++-- .../http-cache-semantics/package.json | 88 +--- node_modules/ignore-by-default/package.json | 74 +-- node_modules/ignore/package.json | 125 ++--- node_modules/import-lazy/package.json | 66 +-- node_modules/import-local/package.json | 140 +++--- node_modules/imurmurhash/package.json | 77 ++- node_modules/indent-string/package.json | 113 ++--- node_modules/inflight/package.json | 69 +-- node_modules/inherits/package.json | 66 +-- node_modules/ini/package.json | 80 +-- node_modules/irregular-plurals/package.json | 130 ++--- node_modules/is-arrayish/package.json | 72 +-- node_modules/is-binary-path/package.json | 118 ++--- node_modules/is-buffer/package.json | 43 +- node_modules/is-ci/package.json | 81 +--- node_modules/is-error/package.json | 89 +--- node_modules/is-extglob/package.json | 75 +-- .../is-fullwidth-code-point/package.json | 123 ++--- node_modules/is-glob/package.json | 94 +--- .../is-installed-globally/package.json | 146 +++--- node_modules/is-interactive/package.json | 114 ++--- node_modules/is-npm/package.json | 112 ++--- node_modules/is-number/package.json | 92 +--- node_modules/is-obj/package.json | 106 ++-- node_modules/is-path-cwd/package.json | 110 ++--- node_modules/is-path-inside/package.json | 111 ++--- node_modules/is-plain-object/package.json | 113 ++--- node_modules/is-promise/package.json | 67 +-- node_modules/is-stream/package.json | 67 +-- node_modules/is-typedarray/package.json | 70 +-- node_modules/is-yarn-global/package.json | 61 +-- node_modules/isexe/package.json | 70 +-- node_modules/isobject/package.json | 110 ++--- node_modules/js-string-escape/package.json | 86 ++-- node_modules/js-tokens/package.json | 78 +-- .../js-yaml/node_modules/esprima/package.json | 142 +++--- node_modules/js-yaml/package.json | 103 ++-- node_modules/json-buffer/package.json | 58 +-- .../json-parse-better-errors/package.json | 100 ++-- node_modules/json-stringify-safe/package.json | 71 +-- node_modules/jsonschema/package.json | 67 +-- node_modules/keyv/package.json | 93 ++-- node_modules/latest-version/package.json | 122 ++--- node_modules/lines-and-columns/package.json | 92 ++-- .../node_modules/strip-bom/package.json | 66 +-- .../node_modules/type-fest/package.json | 136 ++---- node_modules/load-json-file/package.json | 124 ++--- node_modules/locate-path/package.json | 128 ++--- node_modules/lodash.clonedeep/package.json | 84 +--- node_modules/lodash.flattendeep/package.json | 84 +--- node_modules/lodash.islength/package.json | 84 +--- node_modules/lodash.merge/package.json | 75 +-- node_modules/lodash/package.json | 76 +-- node_modules/log-symbols/package.json | 138 ++---- node_modules/long/package.json | 100 ++-- node_modules/lowercase-keys/package.json | 65 +-- node_modules/macos-release/package.json | 115 ++--- .../make-dir/node_modules/semver/package.json | 72 +-- node_modules/make-dir/package.json | 156 +++--- node_modules/map-age-cleaner/package.json | 156 +++--- .../escape-string-regexp/package.json | 114 ++--- node_modules/matcher/package.json | 146 +++--- node_modules/md5-hex/package.json | 120 ++--- node_modules/md5-o-matic/package.json | 81 ++-- node_modules/md5/package.json | 79 +-- .../mem/node_modules/mimic-fn/package.json | 122 ++--- node_modules/mem/package.json | 130 ++--- node_modules/merge2/package.json | 124 ++--- node_modules/micromatch/package.json | 148 ++---- node_modules/mimic-fn/package.json | 122 ++--- node_modules/mimic-response/package.json | 72 +-- node_modules/minimatch/package.json | 78 +-- node_modules/minimist/package.json | 83 ++-- node_modules/mkdirp/package.json | 81 +--- node_modules/ms/package.json | 81 +--- node_modules/mute-stream/package.json | 75 +-- node_modules/nice-try/package.json | 65 +-- node_modules/nock/package.json | 105 ++-- node_modules/node-fetch/package.json | 100 ++-- .../node_modules/semver/package.json | 68 +-- .../normalize-package-data/package.json | 80 +-- node_modules/normalize-url/package.json | 126 ++--- node_modules/npm-run-path/package.json | 67 +-- node_modules/once/package.json | 75 +-- node_modules/onetime/package.json | 122 ++--- .../ora/node_modules/ansi-styles/package.json | 152 +++--- .../ora/node_modules/chalk/package.json | 164 +++---- .../node_modules/color-convert/package.json | 85 +--- .../ora/node_modules/color-name/package.json | 92 ++-- .../ora/node_modules/has-flag/package.json | 130 ++--- .../node_modules/supports-color/package.json | 144 +++--- node_modules/ora/package.json | 152 +++--- node_modules/os-name/package.json | 128 ++--- node_modules/p-cancelable/package.json | 136 ++---- node_modules/p-defer/package.json | 64 +-- node_modules/p-finally/package.json | 63 +-- node_modules/p-limit/package.json | 141 +++--- node_modules/p-locate/package.json | 144 +++--- node_modules/p-map/package.json | 144 +++--- node_modules/p-try/package.json | 122 ++--- .../node_modules/semver/package.json | 72 +-- node_modules/package-json/package.json | 130 ++--- node_modules/parse-json/package.json | 74 +-- node_modules/parse-ms/package.json | 118 ++--- node_modules/path-exists/package.json | 116 ++--- node_modules/path-is-absolute/package.json | 64 +-- node_modules/path-key/package.json | 64 +-- node_modules/path-parse/package.json | 64 +-- node_modules/path-type/package.json | 128 ++--- node_modules/path/package.json | 83 ++-- node_modules/picomatch/package.json | 91 ++-- node_modules/pify/package.json | 140 +++--- .../node_modules/find-up/package.json | 138 ++---- .../node_modules/locate-path/package.json | 126 ++--- .../node_modules/p-locate/package.json | 140 +++--- .../node_modules/path-exists/package.json | 64 +-- node_modules/pkg-conf/package.json | 142 +++--- node_modules/pkg-dir/package.json | 150 +++--- node_modules/plur/package.json | 124 ++--- node_modules/prepend-http/package.json | 66 +-- node_modules/pretty-ms/package.json | 136 ++---- node_modules/process/package.json | 73 +-- node_modules/propagate/package.json | 91 ++-- node_modules/pump/package.json | 65 +-- node_modules/pupa/package.json | 132 ++--- node_modules/rc/package.json | 82 +--- .../node_modules/parse-json/package.json | 126 ++--- .../node_modules/type-fest/package.json | 140 +++--- node_modules/read-pkg/package.json | 141 ++---- node_modules/readdirp/package.json | 130 ++--- node_modules/registry-auth-token/package.json | 86 ++-- node_modules/registry-url/package.json | 126 ++--- .../removeNPMAbsolutePaths/package.json | 97 ++-- node_modules/require-directory/package.json | 87 ++-- .../require-main-filename/package.json | 84 ++-- node_modules/resolve-cwd/package.json | 125 ++--- node_modules/resolve-from/package.json | 110 ++--- node_modules/resolve/package.json | 130 ++--- node_modules/responselike/package.json | 83 +--- node_modules/restore-cursor/package.json | 142 +++--- node_modules/reusify/package.json | 98 ++-- node_modules/rimraf/package.json | 84 +--- node_modules/run-parallel/package.json | 43 +- node_modules/safe-buffer/package.json | 45 +- .../node_modules/semver/package.json | 72 +-- node_modules/semver-diff/package.json | 112 ++--- node_modules/semver/package.json | 73 +-- node_modules/serialize-error/package.json | 66 +-- node_modules/set-blocking/package.json | 86 ++-- node_modules/shebang-command/package.json | 67 +-- node_modules/shebang-regex/package.json | 63 +-- node_modules/signal-exit/package.json | 85 ++-- node_modules/slash/package.json | 111 ++--- .../node_modules/ansi-styles/package.json | 152 +++--- .../node_modules/astral-regex/package.json | 104 ++-- .../node_modules/color-convert/package.json | 85 +--- .../node_modules/color-name/package.json | 92 ++-- node_modules/slice-ansi/package.json | 142 +++--- node_modules/source-map/package.json | 257 +++------- node_modules/spdx-correct/package.json | 79 +-- node_modules/spdx-exceptions/package.json | 64 +-- .../spdx-expression-parse/package.json | 93 +--- node_modules/spdx-license-ids/package.json | 120 ++--- node_modules/sprintf-js/package.json | 79 +-- node_modules/string-width/package.json | 155 +++--- .../node_modules/ansi-regex/package.json | 148 +++--- node_modules/strip-ansi/package.json | 150 +++--- node_modules/strip-eof/package.json | 65 +-- node_modules/strip-json-comments/package.json | 66 +-- .../node_modules/ansi-regex/package.json | 68 +-- .../supertap/node_modules/arrify/package.json | 66 +-- .../node_modules/indent-string/package.json | 66 +-- .../node_modules/strip-ansi/package.json | 70 +-- node_modules/supertap/package.json | 82 +--- node_modules/supports-color/package.json | 144 +++--- node_modules/temp-dir/package.json | 120 ++--- node_modules/term-size/package.json | 124 ++--- node_modules/time-zone/package.json | 66 +-- node_modules/to-readable-stream/package.json | 118 ++--- node_modules/to-regex-range/package.json | 87 +--- node_modules/trim-off-newlines/package.json | 66 +-- node_modules/tslib/package.json | 90 ++-- .../tslint/node_modules/semver/package.json | 68 +-- node_modules/tslint/package.json | 218 ++++----- node_modules/tsutils/package.json | 105 ++-- .../typedarray-to-buffer/package.json | 43 +- node_modules/typescript/package.json | 299 ++++++------ node_modules/unique-string/package.json | 118 ++--- .../universal-user-agent/package.json | 69 +-- .../node_modules/ansi-styles/package.json | 152 +++--- .../node_modules/chalk/package.json | 164 +++---- .../node_modules/color-convert/package.json | 85 +--- .../node_modules/color-name/package.json | 92 ++-- .../node_modules/has-flag/package.json | 130 ++--- .../node_modules/supports-color/package.json | 144 +++--- node_modules/update-notifier/package.json | 168 +++---- node_modules/url-parse-lax/package.json | 70 +-- node_modules/util/package.json | 75 +-- node_modules/uuid/package.json | 111 ++--- .../validate-npm-package-license/package.json | 63 +-- node_modules/wcwidth/package.json | 75 +-- node_modules/well-known-symbols/package.json | 90 ++-- node_modules/which-module/package.json | 83 ++-- node_modules/which/package.json | 76 +-- node_modules/widest-line/package.json | 146 +++--- node_modules/windows-release/package.json | 123 ++--- .../node_modules/ansi-styles/package.json | 152 +++--- .../node_modules/color-convert/package.json | 85 +--- .../node_modules/color-name/package.json | 92 ++-- node_modules/wrap-ansi/package.json | 162 +++---- node_modules/wrappy/package.json | 71 +-- node_modules/write-file-atomic/package.json | 86 ++-- node_modules/xdg-basedir/package.json | 121 ++--- node_modules/y18n/package.json | 86 ++-- node_modules/yargs-parser/package.json | 96 ++-- node_modules/yargs/package.json | 98 ++-- node_modules/zlib/package.json | 72 +-- 384 files changed, 13616 insertions(+), 26090 deletions(-) diff --git a/node_modules/@actions/core/package.json b/node_modules/@actions/core/package.json index 53a91f686..f0c526e1c 100644 --- a/node_modules/@actions/core/package.json +++ b/node_modules/@actions/core/package.json @@ -1,57 +1,22 @@ { - "_args": [ - [ - "@actions/core@1.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@actions/core@1.2.0", - "_id": "@actions/core@1.2.0", - "_inBundle": false, - "_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==", - "_location": "/@actions/core", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@actions/core@1.2.0", - "name": "@actions/core", - "escapedName": "@actions%2fcore", - "scope": "@actions", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/", - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, + "name": "@actions/core", + "version": "1.2.0", "description": "Actions core lib", - "devDependencies": { - "@types/node": "^12.0.2" - }, - "directories": { - "lib": "lib", - "test": "__tests__" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", "keywords": [ "github", "actions", "core" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", "license": "MIT", "main": "lib/core.js", - "name": "@actions/core", + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], "publishConfig": { "access": "public" }, @@ -64,5 +29,14 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "version": "1.2.0" -} + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "devDependencies": { + "@types/node": "^12.0.2" + } + +,"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz" +,"_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==" +,"_from": "@actions/core@1.2.0" +} \ No newline at end of file diff --git a/node_modules/@actions/exec/package.json b/node_modules/@actions/exec/package.json index d1fb1217a..bb85262a2 100644 --- a/node_modules/@actions/exec/package.json +++ b/node_modules/@actions/exec/package.json @@ -1,58 +1,22 @@ { - "_args": [ - [ - "@actions/exec@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@actions/exec@1.0.1", - "_id": "@actions/exec@1.0.1", - "_inBundle": false, - "_integrity": "sha512-nvFkxwiicvpzNiCBF4wFBDfnBvi7xp/as7LE1hBxBxKG2L29+gkIPBiLKMVORL+Hg3JNf07AKRfl0V5djoypjQ==", - "_location": "/@actions/exec", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@actions/exec@1.0.1", - "name": "@actions/exec", - "escapedName": "@actions%2fexec", - "scope": "@actions", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/", - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, + "name": "@actions/exec", + "version": "1.0.1", "description": "Actions exec lib", - "devDependencies": { - "@actions/io": "^1.0.1" - }, - "directories": { - "lib": "lib", - "test": "__tests__" - }, - "files": [ - "lib" - ], - "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52", - "homepage": "https://github.com/actions/toolkit/tree/master/packages/exec", "keywords": [ "github", "actions", "exec" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/exec", "license": "MIT", "main": "lib/exec.js", - "name": "@actions/exec", + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], "publishConfig": { "access": "public" }, @@ -64,5 +28,15 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "version": "1.0.1" -} + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "devDependencies": { + "@actions/io": "^1.0.1" + }, + "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" + +,"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz" +,"_integrity": "sha512-nvFkxwiicvpzNiCBF4wFBDfnBvi7xp/as7LE1hBxBxKG2L29+gkIPBiLKMVORL+Hg3JNf07AKRfl0V5djoypjQ==" +,"_from": "@actions/exec@1.0.1" +} \ No newline at end of file diff --git a/node_modules/@actions/http-client/node_modules/tunnel/package.json b/node_modules/@actions/http-client/node_modules/tunnel/package.json index bc86680d7..eef71891b 100644 --- a/node_modules/@actions/http-client/node_modules/tunnel/package.json +++ b/node_modules/@actions/http-client/node_modules/tunnel/package.json @@ -1,51 +1,7 @@ { - "_args": [ - [ - "tunnel@0.0.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "tunnel@0.0.6", - "_id": "tunnel@0.0.6", - "_inBundle": false, - "_integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", - "_location": "/@actions/http-client/tunnel", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "tunnel@0.0.6", - "name": "tunnel", - "escapedName": "tunnel", - "rawSpec": "0.0.6", - "saveSpec": null, - "fetchSpec": "0.0.6" - }, - "_requiredBy": [ - "/@actions/http-client" - ], - "_resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", - "_spec": "0.0.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Koichi Kobayashi", - "email": "koichik@improvement.jp" - }, - "bugs": { - "url": "https://github.com/koichik/node-tunnel/issues" - }, + "name": "tunnel", + "version": "0.0.6", "description": "Node HTTP/HTTPS Agents for tunneling proxies", - "devDependencies": { - "mocha": "^5.2.0", - "should": "^13.2.3" - }, - "directories": { - "lib": "./lib" - }, - "engines": { - "node": ">=0.6.11 <=0.7.0 || >=0.7.3" - }, - "homepage": "https://github.com/koichik/node-tunnel/", "keywords": [ "http", "https", @@ -53,15 +9,30 @@ "proxy", "tunnel" ], + "homepage": "https://github.com/koichik/node-tunnel/", + "bugs": "https://github.com/koichik/node-tunnel/issues", "license": "MIT", + "author": "Koichi Kobayashi ", "main": "./index.js", - "name": "tunnel", + "directories": { + "lib": "./lib" + }, "repository": { "type": "git", - "url": "git+https://github.com/koichik/node-tunnel.git" + "url": "https://github.com/koichik/node-tunnel.git" }, "scripts": { "test": "mocha" }, - "version": "0.0.6" -} + "devDependencies": { + "mocha": "^5.2.0", + "should": "^13.2.3" + }, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + +,"_resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz" +,"_integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" +,"_from": "tunnel@0.0.6" +} \ No newline at end of file diff --git a/node_modules/@actions/http-client/package.json b/node_modules/@actions/http-client/package.json index eb01cdca5..4c7296d59 100644 --- a/node_modules/@actions/http-client/package.json +++ b/node_modules/@actions/http-client/package.json @@ -1,43 +1,29 @@ { - "_args": [ - [ - "@actions/http-client@1.0.8", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@actions/http-client@1.0.8", - "_id": "@actions/http-client@1.0.8", - "_inBundle": false, - "_integrity": "sha512-G4JjJ6f9Hb3Zvejj+ewLLKLf99ZC+9v+yCxoYf9vSyH+WkzPLB2LuUtRMGNkooMqdugGBFStIKXOuvH1W+EctA==", - "_location": "/@actions/http-client", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@actions/http-client@1.0.8", - "name": "@actions/http-client", - "escapedName": "@actions%2fhttp-client", - "scope": "@actions", - "rawSpec": "1.0.8", - "saveSpec": null, - "fetchSpec": "1.0.8" + "name": "@actions/http-client", + "version": "1.0.8", + "description": "Actions Http Client", + "main": "index.js", + "scripts": { + "build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out", + "test": "jest", + "format": "prettier --write *.ts && prettier --write **/*.ts", + "format-check": "prettier --check *.ts && prettier --check **/*.ts", + "audit-check": "npm audit --audit-level=moderate" }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.8.tgz", - "_spec": "1.0.8", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "GitHub, Inc." + "repository": { + "type": "git", + "url": "git+https://github.com/actions/http-client.git" }, + "keywords": [ + "Actions", + "Http" + ], + "author": "GitHub, Inc.", + "license": "MIT", "bugs": { "url": "https://github.com/actions/http-client/issues" }, - "dependencies": { - "tunnel": "0.0.6" - }, - "description": "Actions Http Client", + "homepage": "https://github.com/actions/http-client#readme", "devDependencies": { "@types/jest": "^25.1.4", "@types/node": "^12.12.31", @@ -47,24 +33,11 @@ "ts-jest": "^25.2.1", "typescript": "^3.8.3" }, - "homepage": "https://github.com/actions/http-client#readme", - "keywords": [ - "Actions", - "Http" - ], - "license": "MIT", - "main": "index.js", - "name": "@actions/http-client", - "repository": { - "type": "git", - "url": "git+https://github.com/actions/http-client.git" - }, - "scripts": { - "audit-check": "npm audit --audit-level=moderate", - "build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out", - "format": "prettier --write *.ts && prettier --write **/*.ts", - "format-check": "prettier --check *.ts && prettier --check **/*.ts", - "test": "jest" - }, - "version": "1.0.8" -} + "dependencies": { + "tunnel": "0.0.6" + } + +,"_resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.8.tgz" +,"_integrity": "sha512-G4JjJ6f9Hb3Zvejj+ewLLKLf99ZC+9v+yCxoYf9vSyH+WkzPLB2LuUtRMGNkooMqdugGBFStIKXOuvH1W+EctA==" +,"_from": "@actions/http-client@1.0.8" +} \ No newline at end of file diff --git a/node_modules/@actions/io/package.json b/node_modules/@actions/io/package.json index 51e76a3bf..3a303f251 100644 --- a/node_modules/@actions/io/package.json +++ b/node_modules/@actions/io/package.json @@ -1,55 +1,22 @@ { - "_args": [ - [ - "@actions/io@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@actions/io@1.0.1", - "_id": "@actions/io@1.0.1", - "_inBundle": false, - "_integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==", - "_location": "/@actions/io", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@actions/io@1.0.1", - "name": "@actions/io", - "escapedName": "@actions%2fio", - "scope": "@actions", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/", - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, + "name": "@actions/io", + "version": "1.0.1", "description": "Actions io lib", - "directories": { - "lib": "lib", - "test": "__tests__" - }, - "files": [ - "lib" - ], - "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52", - "homepage": "https://github.com/actions/toolkit/tree/master/packages/io", "keywords": [ "github", "actions", "io" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/io", "license": "MIT", "main": "lib/io.js", - "name": "@actions/io", + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], "publishConfig": { "access": "public" }, @@ -61,5 +28,12 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "version": "1.0.1" -} + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" + +,"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz" +,"_integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==" +,"_from": "@actions/io@1.0.1" +} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json index 171ddbdb8..dd01abb87 100644 --- a/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json @@ -1,53 +1,23 @@ { - "_from": "@actions/core@^1.2.3", - "_id": "@actions/core@1.2.4", - "_inBundle": false, - "_integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg==", - "_location": "/@actions/tool-cache/@actions/core", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@actions/core@^1.2.3", - "name": "@actions/core", - "escapedName": "@actions%2fcore", - "scope": "@actions", - "rawSpec": "^1.2.3", - "saveSpec": null, - "fetchSpec": "^1.2.3" - }, - "_requiredBy": [ - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz", - "_shasum": "96179dbf9f8d951dd74b40a0dbd5c22555d186ab", - "_spec": "@actions/core@^1.2.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/@actions/tool-cache", - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@actions/core", + "version": "1.2.4", "description": "Actions core lib", - "devDependencies": { - "@types/node": "^12.0.2" - }, - "directories": { - "lib": "lib", - "test": "__tests__" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", "keywords": [ "github", "actions", "core" ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/core", "license": "MIT", "main": "lib/core.js", - "name": "@actions/core", + "types": "lib/core.d.ts", + "directories": { + "lib": "lib", + "test": "__tests__" + }, + "files": [ + "lib" + ], "publishConfig": { "access": "public" }, @@ -61,6 +31,14 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "types": "lib/core.d.ts", - "version": "1.2.4" -} + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "devDependencies": { + "@types/node": "^12.0.2" + } + +,"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz" +,"_integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg==" +,"_from": "@actions/core@1.2.4" +} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/semver/package.json b/node_modules/@actions/tool-cache/node_modules/semver/package.json index 20cba5dc9..13030769c 100644 --- a/node_modules/@actions/tool-cache/node_modules/semver/package.json +++ b/node_modules/@actions/tool-cache/node_modules/semver/package.json @@ -1,63 +1,32 @@ { - "_args": [ - [ - "semver@6.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "semver@6.3.0", - "_id": "semver@6.3.0", - "_inBundle": false, - "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "_location": "/@actions/tool-cache/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@6.3.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "6.3.0", - "saveSpec": null, - "fetchSpec": "6.3.0" - }, - "_requiredBy": [ - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "_spec": "6.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, + "name": "semver", + "version": "6.3.0", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" + }, "devDependencies": { "tap": "^14.3.1" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver.js" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "6.3.0" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" +,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" +,"_from": "semver@6.3.0" +} \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/package.json b/node_modules/@actions/tool-cache/package.json index ea99ac676..17c984e44 100644 --- a/node_modules/@actions/tool-cache/package.json +++ b/node_modules/@actions/tool-cache/package.json @@ -1,48 +1,16 @@ { - "_from": "@actions/tool-cache@^1.5.5", - "_id": "@actions/tool-cache@1.5.5", - "_inBundle": false, - "_integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==", - "_location": "/@actions/tool-cache", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@actions/tool-cache@^1.5.5", - "name": "@actions/tool-cache", - "escapedName": "@actions%2ftool-cache", - "scope": "@actions", - "rawSpec": "^1.5.5", - "saveSpec": null, - "fetchSpec": "^1.5.5" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz", - "_shasum": "2a49253f0f5838b9c4929b6f7cc7d73ae3ef4d2d", - "_spec": "@actions/tool-cache@^1.5.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/actions/toolkit/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@actions/core": "^1.2.3", - "@actions/exec": "^1.0.0", - "@actions/http-client": "^1.0.8", - "@actions/io": "^1.0.1", - "semver": "^6.1.0", - "uuid": "^3.3.2" - }, - "deprecated": false, + "name": "@actions/tool-cache", + "version": "1.5.5", "description": "Actions tool-cache lib", - "devDependencies": { - "@types/nock": "^10.0.3", - "@types/semver": "^6.0.0", - "@types/uuid": "^3.4.4", - "nock": "^10.0.6" - }, + "keywords": [ + "github", + "actions", + "exec" + ], + "homepage": "https://github.com/actions/toolkit/tree/master/packages/tool-cache", + "license": "MIT", + "main": "lib/tool-cache.js", + "types": "lib/tool-cache.d.ts", "directories": { "lib": "lib", "test": "__tests__" @@ -51,15 +19,6 @@ "lib", "scripts" ], - "homepage": "https://github.com/actions/toolkit/tree/master/packages/tool-cache", - "keywords": [ - "github", - "actions", - "exec" - ], - "license": "MIT", - "main": "lib/tool-cache.js", - "name": "@actions/tool-cache", "publishConfig": { "access": "public" }, @@ -73,6 +32,25 @@ "test": "echo \"Error: run tests from root\" && exit 1", "tsc": "tsc" }, - "types": "lib/tool-cache.d.ts", - "version": "1.5.5" -} + "bugs": { + "url": "https://github.com/actions/toolkit/issues" + }, + "dependencies": { + "@actions/core": "^1.2.3", + "@actions/exec": "^1.0.0", + "@actions/http-client": "^1.0.8", + "@actions/io": "^1.0.1", + "semver": "^6.1.0", + "uuid": "^3.3.2" + }, + "devDependencies": { + "@types/nock": "^10.0.3", + "@types/semver": "^6.0.0", + "@types/uuid": "^3.4.4", + "nock": "^10.0.6" + } + +,"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz" +,"_integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==" +,"_from": "@actions/tool-cache@1.5.5" +} \ No newline at end of file diff --git a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json index 4f162255e..99dd980e9 100644 --- a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json +++ b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json @@ -1,87 +1,47 @@ { - "_args": [ - [ - "escape-string-regexp@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "escape-string-regexp@2.0.0", - "_id": "escape-string-regexp@2.0.0", - "_inBundle": false, - "_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "_location": "/@ava/typescript/escape-string-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "escape-string-regexp@2.0.0", - "name": "escape-string-regexp", - "escapedName": "escape-string-regexp", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/@ava/typescript" - ], - "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", - "keywords": [ - "escape", - "regex", - "regexp", - "re", - "regular", - "expression", - "string", - "str", - "special", - "characters" - ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Boy Nicolai Appelman", - "email": "joshua@jbna.nl", - "url": "jbna.nl" - } - ], - "name": "escape-string-regexp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "escape-string-regexp", + "version": "2.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "re", + "regular", + "expression", + "string", + "str", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" +,"_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" +,"_from": "escape-string-regexp@2.0.0" +} \ No newline at end of file diff --git a/node_modules/@ava/typescript/package.json b/node_modules/@ava/typescript/package.json index c1daaa707..be099a845 100644 --- a/node_modules/@ava/typescript/package.json +++ b/node_modules/@ava/typescript/package.json @@ -1,64 +1,32 @@ { - "_args": [ - [ - "@ava/typescript@1.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@ava/typescript@1.1.1", - "_id": "@ava/typescript@1.1.1", - "_inBundle": false, - "_integrity": "sha512-KbLUAe2cWXK63WLK6LnOJonjwEDU/8MNXCOA1ooX/YFZgKRmeAD1kZu+2K0ks5fnOCEcckNQAooyBNGdZUmMQA==", - "_location": "/@ava/typescript", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@ava/typescript@1.1.1", - "name": "@ava/typescript", - "escapedName": "@ava%2ftypescript", - "scope": "@ava", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" + "name": "@ava/typescript", + "version": "1.1.1", + "description": "TypeScript provider for AVA", + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0" }, - "_requiredBy": [ - "#DEV:/" + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/@ava/typescript/-/typescript-1.1.1.tgz", - "_spec": "1.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net" - }, - "bugs": { - "url": "https://github.com/avajs/typescript/issues" + "author": "Mark Wubben (https://novemberborn.net)", + "repository": "avajs/typescript", + "license": "MIT", + "keywords": [ + "ava", + "typescript" + ], + "scripts": { + "test": "xo && nyc ava" }, "dependencies": { "escape-string-regexp": "^2.0.0" }, - "description": "TypeScript provider for AVA", "devDependencies": { "ava": "^3.0.0", "execa": "^4.0.0", "nyc": "^15.0.0", "xo": "^0.25.3" }, - "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/avajs/typescript#readme", - "keywords": [ - "ava", - "typescript" - ], - "license": "MIT", - "name": "@ava/typescript", "nyc": { "reporter": [ "html", @@ -66,17 +34,13 @@ "text" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/avajs/typescript.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "1.1.1", "xo": { "rules": { "import/order": "off" } } -} + +,"_resolved": "https://registry.npmjs.org/@ava/typescript/-/typescript-1.1.1.tgz" +,"_integrity": "sha512-KbLUAe2cWXK63WLK6LnOJonjwEDU/8MNXCOA1ooX/YFZgKRmeAD1kZu+2K0ks5fnOCEcckNQAooyBNGdZUmMQA==" +,"_from": "@ava/typescript@1.1.1" +} \ No newline at end of file diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json index 3f80a0729..bdf027869 100644 --- a/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/code-frame/package.json @@ -1,58 +1,25 @@ { - "_args": [ - [ - "@babel/code-frame@7.5.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@babel/code-frame@7.5.5", - "_id": "@babel/code-frame@7.5.5", - "_inBundle": false, - "_integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "_location": "/@babel/code-frame", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@babel/code-frame@7.5.5", - "name": "@babel/code-frame", - "escapedName": "@babel%2fcode-frame", - "scope": "@babel", - "rawSpec": "7.5.5", - "saveSpec": null, - "fetchSpec": "7.5.5" - }, - "_requiredBy": [ - "/read-pkg/parse-json", - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "_spec": "7.5.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.5.5", + "description": "Generate errors that contain a code frame that point to source locations.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.0.0" }, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/code-frame", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" - }, - "version": "7.5.5" -} + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43" + +,"_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz" +,"_integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==" +,"_from": "@babel/code-frame@7.5.5" +} \ No newline at end of file diff --git a/node_modules/@babel/highlight/package.json b/node_modules/@babel/highlight/package.json index cd437e629..d6588bcfa 100644 --- a/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/highlight/package.json @@ -1,58 +1,26 @@ { - "_args": [ - [ - "@babel/highlight@7.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@babel/highlight@7.5.0", - "_id": "@babel/highlight@7.5.0", - "_inBundle": false, - "_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", - "_location": "/@babel/highlight", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@babel/highlight@7.5.0", - "name": "@babel/highlight", - "escapedName": "@babel%2fhighlight", - "scope": "@babel", - "rawSpec": "7.5.0", - "saveSpec": null, - "fetchSpec": "7.5.0" - }, - "_requiredBy": [ - "/@babel/code-frame" - ], - "_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", - "_spec": "7.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.5.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "chalk": "^2.0.0", "esutils": "^2.0.2", "js-tokens": "^4.0.0" }, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/highlight", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-highlight" - }, - "version": "7.5.0" -} + "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4" + +,"_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz" +,"_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==" +,"_from": "@babel/highlight@7.5.0" +} \ No newline at end of file diff --git a/node_modules/@concordance/react/node_modules/arrify/package.json b/node_modules/@concordance/react/node_modules/arrify/package.json index 5ae8dd37b..bfc8621c9 100644 --- a/node_modules/@concordance/react/node_modules/arrify/package.json +++ b/node_modules/@concordance/react/node_modules/arrify/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "arrify@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "arrify@1.0.1", - "_id": "arrify@1.0.1", - "_inBundle": false, - "_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "_location": "/@concordance/react/arrify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "arrify@1.0.1", - "name": "arrify", - "escapedName": "arrify", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/@concordance/react" - ], - "_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "arrify", + "version": "1.0.1", + "description": "Convert a value to an array", + "license": "MIT", + "repository": "sindresorhus/arrify", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/arrify/issues" - }, - "description": "Convert a value to an array", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/arrify#readme", "keywords": [ "array", "arr", @@ -56,14 +26,12 @@ "convert", "value" ], - "license": "MIT", - "name": "arrify", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/arrify.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.1" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" +,"_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" +,"_from": "arrify@1.0.1" +} \ No newline at end of file diff --git a/node_modules/@concordance/react/package.json b/node_modules/@concordance/react/package.json index 7f5e7b24a..e65f61ee9 100644 --- a/node_modules/@concordance/react/package.json +++ b/node_modules/@concordance/react/package.json @@ -1,63 +1,39 @@ { - "_args": [ - [ - "@concordance/react@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@concordance/react@2.0.0", - "_id": "@concordance/react@2.0.0", - "_inBundle": false, - "_integrity": "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA==", - "_location": "/@concordance/react", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@concordance/react@2.0.0", - "name": "@concordance/react", - "escapedName": "@concordance%2freact", - "scope": "@concordance", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/ava" + "name": "@concordance/react", + "version": "2.0.0", + "description": "Compare, format, diff and serialize React trees with Concordance", + "main": "index.js", + "files": [ + "lib", + "index.js" ], - "_resolved": "https://registry.npmjs.org/@concordance/react/-/react-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "as-i-preach": { - "allowDevDependencies": [ - "test/**/*.js", - "test/**/*.jsx" - ], - "ignore": [ - "test/fixtures/react/*.js" - ] + "engines": { + "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" }, - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" + "scripts": { + "build:fixtures": "babel --presets=module:@babel/preset-react,module:ava/stage-4 --out-dir=test/fixtures/react --extensions=.jsx test/fixtures/react", + "lint": "as-i-preach", + "pretest": "npm run -s build:fixtures", + "test": "npm run -s lint && nyc ava" }, - "ava": { - "babel": { - "testOptions": { - "presets": [ - "module:@babel/preset-react" - ] - } - } + "repository": { + "type": "git", + "url": "git+https://github.com/concordancejs/react.git" }, + "author": "Mark Wubben (https://novemberborn.net/)", + "license": "ISC", "bugs": { "url": "https://github.com/concordancejs/react/issues" }, + "homepage": "https://github.com/concordancejs/react#readme", + "keywords": [ + "concordance-plugin", + "concordance", + "react" + ], "dependencies": { "arrify": "^1.0.1" }, - "description": "Compare, format, diff and serialize React trees with Concordance", "devDependencies": { "@babel/cli": "^7.1.0", "@babel/core": "^7.1.0", @@ -70,22 +46,24 @@ "react": "^16.5.2", "react-test-renderer": "^16.5.2" }, - "engines": { - "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" + "as-i-preach": { + "allowDevDependencies": [ + "test/**/*.js", + "test/**/*.jsx" + ], + "ignore": [ + "test/fixtures/react/*.js" + ] + }, + "ava": { + "babel": { + "testOptions": { + "presets": [ + "module:@babel/preset-react" + ] + } + } }, - "files": [ - "lib", - "index.js" - ], - "homepage": "https://github.com/concordancejs/react#readme", - "keywords": [ - "concordance-plugin", - "concordance", - "react" - ], - "license": "ISC", - "main": "index.js", - "name": "@concordance/react", "nyc": { "reporter": [ "html", @@ -93,16 +71,9 @@ "text" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/concordancejs/react.git" - }, - "scripts": { - "build:fixtures": "babel --presets=module:@babel/preset-react,module:ava/stage-4 --out-dir=test/fixtures/react --extensions=.jsx test/fixtures/react", - "lint": "as-i-preach", - "pretest": "npm run -s build:fixtures", - "test": "npm run -s lint && nyc ava" - }, - "standard-engine": "@novemberborn/as-i-preach", - "version": "2.0.0" -} + "standard-engine": "@novemberborn/as-i-preach" + +,"_resolved": "https://registry.npmjs.org/@concordance/react/-/react-2.0.0.tgz" +,"_integrity": "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA==" +,"_from": "@concordance/react@2.0.0" +} \ No newline at end of file diff --git a/node_modules/@nodelib/fs.scandir/package.json b/node_modules/@nodelib/fs.scandir/package.json index 5dbc112c4..5ed6f43c3 100644 --- a/node_modules/@nodelib/fs.scandir/package.json +++ b/node_modules/@nodelib/fs.scandir/package.json @@ -1,43 +1,9 @@ { - "_args": [ - [ - "@nodelib/fs.scandir@2.1.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@nodelib/fs.scandir@2.1.3", - "_id": "@nodelib/fs.scandir@2.1.3", - "_inBundle": false, - "_integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", - "_location": "/@nodelib/fs.scandir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@nodelib/fs.scandir@2.1.3", - "name": "@nodelib/fs.scandir", - "escapedName": "@nodelib%2ffs.scandir", - "scope": "@nodelib", - "rawSpec": "2.1.3", - "saveSpec": null, - "fetchSpec": "2.1.3" - }, - "_requiredBy": [ - "/@nodelib/fs.walk" - ], - "_resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", - "_spec": "2.1.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "dependencies": { - "@nodelib/fs.stat": "2.0.3", - "run-parallel": "^1.1.9" - }, + "name": "@nodelib/fs.scandir", + "version": "2.1.3", "description": "List files and directories inside the specified directory", - "engines": { - "node": ">= 8" - }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "license": "MIT", + "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir", "keywords": [ "NodeLib", "fs", @@ -47,22 +13,27 @@ "readdir", "dirent" ], - "license": "MIT", - "main": "out/index.js", - "name": "@nodelib/fs.scandir", - "repository": { - "type": "git", - "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir" + "engines": { + "node": ">= 8" }, + "main": "out/index.js", + "typings": "out/index.d.ts", "scripts": { - "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", - "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", + "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "typings": "out/index.d.ts", - "version": "2.1.3" -} + "dependencies": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" + +,"_resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz" +,"_integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" +,"_from": "@nodelib/fs.scandir@2.1.3" +} \ No newline at end of file diff --git a/node_modules/@nodelib/fs.stat/package.json b/node_modules/@nodelib/fs.stat/package.json index aef349958..014b307de 100644 --- a/node_modules/@nodelib/fs.stat/package.json +++ b/node_modules/@nodelib/fs.stat/package.json @@ -1,40 +1,9 @@ { - "_args": [ - [ - "@nodelib/fs.stat@2.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@nodelib/fs.stat@2.0.3", - "_id": "@nodelib/fs.stat@2.0.3", - "_inBundle": false, - "_integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", - "_location": "/@nodelib/fs.stat", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@nodelib/fs.stat@2.0.3", - "name": "@nodelib/fs.stat", - "escapedName": "@nodelib%2ffs.stat", - "scope": "@nodelib", - "rawSpec": "2.0.3", - "saveSpec": null, - "fetchSpec": "2.0.3" - }, - "_requiredBy": [ - "/@nodelib/fs.scandir", - "/fast-glob" - ], - "_resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", - "_spec": "2.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "@nodelib/fs.stat", + "version": "2.0.3", "description": "Get the status of a file with some features", - "engines": { - "node": ">= 8" - }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "license": "MIT", + "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat", "keywords": [ "NodeLib", "fs", @@ -42,22 +11,23 @@ "file system", "stat" ], - "license": "MIT", - "main": "out/index.js", - "name": "@nodelib/fs.stat", - "repository": { - "type": "git", - "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat" + "engines": { + "node": ">= 8" }, + "main": "out/index.js", + "typings": "out/index.d.ts", "scripts": { - "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", - "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", + "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "typings": "out/index.d.ts", - "version": "2.0.3" -} + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" + +,"_resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz" +,"_integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" +,"_from": "@nodelib/fs.stat@2.0.3" +} \ No newline at end of file diff --git a/node_modules/@nodelib/fs.walk/package.json b/node_modules/@nodelib/fs.walk/package.json index 19ffcba89..5289c2a75 100644 --- a/node_modules/@nodelib/fs.walk/package.json +++ b/node_modules/@nodelib/fs.walk/package.json @@ -1,43 +1,9 @@ { - "_args": [ - [ - "@nodelib/fs.walk@1.2.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@nodelib/fs.walk@1.2.4", - "_id": "@nodelib/fs.walk@1.2.4", - "_inBundle": false, - "_integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", - "_location": "/@nodelib/fs.walk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@nodelib/fs.walk@1.2.4", - "name": "@nodelib/fs.walk", - "escapedName": "@nodelib%2ffs.walk", - "scope": "@nodelib", - "rawSpec": "1.2.4", - "saveSpec": null, - "fetchSpec": "1.2.4" - }, - "_requiredBy": [ - "/fast-glob" - ], - "_resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", - "_spec": "1.2.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "dependencies": { - "@nodelib/fs.scandir": "2.1.3", - "fastq": "^1.6.0" - }, + "name": "@nodelib/fs.walk", + "version": "1.2.4", "description": "A library for efficiently walking a directory recursively", - "engines": { - "node": ">= 8" - }, - "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf", + "license": "MIT", + "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk", "keywords": [ "NodeLib", "fs", @@ -47,22 +13,27 @@ "scanner", "crawler" ], - "license": "MIT", - "main": "out/index.js", - "name": "@nodelib/fs.walk", - "repository": { - "type": "git", - "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk" + "engines": { + "node": ">= 8" }, + "main": "out/index.js", + "typings": "out/index.d.ts", "scripts": { - "build": "npm run clean && npm run compile && npm run lint && npm test", "clean": "rimraf {tsconfig.tsbuildinfo,out}", + "lint": "eslint \"src/**/*.ts\" --cache", "compile": "tsc -b .", "compile:watch": "tsc -p . --watch --sourceMap", - "lint": "eslint \"src/**/*.ts\" --cache", "test": "mocha \"out/**/*.spec.js\" -s 0", + "build": "npm run clean && npm run compile && npm run lint && npm test", "watch": "npm run clean && npm run compile:watch" }, - "typings": "out/index.d.ts", - "version": "1.2.4" -} + "dependencies": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + }, + "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" + +,"_resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz" +,"_integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" +,"_from": "@nodelib/fs.walk@1.2.4" +} \ No newline at end of file diff --git a/node_modules/@octokit/auth-token/package.json b/node_modules/@octokit/auth-token/package.json index fc2330e5e..71f2d0260 100644 --- a/node_modules/@octokit/auth-token/package.json +++ b/node_modules/@octokit/auth-token/package.json @@ -1,40 +1,28 @@ { - "_args": [ - [ - "@octokit/auth-token@2.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/auth-token", + "description": "GitHub API token authentication for browsers and Node.js", + "version": "2.4.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/auth-token@2.4.0", - "_id": "@octokit/auth-token@2.4.0", - "_inBundle": false, - "_integrity": "sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==", - "_location": "/@octokit/auth-token", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/auth-token@2.4.0", - "name": "@octokit/auth-token", - "escapedName": "@octokit%2fauth-token", - "scope": "@octokit", - "rawSpec": "2.4.0", - "saveSpec": null, - "fetchSpec": "2.4.0" - }, - "_requiredBy": [ - "/@octokit/core" + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "octokit", + "authentication", + "api" ], - "_resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.0.tgz", - "_spec": "2.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/octokit/auth-token.js#readme", "bugs": { "url": "https://github.com/octokit/auth-token.js/issues" }, + "repository": "https://github.com/octokit/auth-token.js", "dependencies": { "@octokit/types": "^2.0.0" }, - "description": "GitHub API token authentication for browsers and Node.js", "devDependencies": { "@octokit/request": "^5.3.0", "@pika/pack": "^0.5.0", @@ -49,31 +37,15 @@ "ts-jest": "^24.0.2", "typescript": "^3.5.1" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/auth-token.js#readme", - "keywords": [ - "github", - "octokit", - "authentication", - "api" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/auth-token", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/auth-token.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "2.4.0" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.0.tgz" +,"_integrity": "sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==" +,"_from": "@octokit/auth-token@2.4.0" +} \ No newline at end of file diff --git a/node_modules/@octokit/core/package.json b/node_modules/@octokit/core/package.json index f59f7b553..965b7ab8f 100644 --- a/node_modules/@octokit/core/package.json +++ b/node_modules/@octokit/core/package.json @@ -1,36 +1,22 @@ { - "_args": [ - [ - "@octokit/core@2.4.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/core", + "description": "Extendable client for GitHub's REST & GraphQL APIs", + "version": "2.4.2", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/core@2.4.2", - "_id": "@octokit/core@2.4.2", - "_inBundle": false, - "_integrity": "sha512-fUx/Qt774cgiPhb3HRKfdl6iufVL/ltECkwkCg373I4lIPYvAPY4cbidVZqyVqHI+ThAIlFlTW8FT4QHChv3Sg==", - "_location": "/@octokit/core", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/core@2.4.2", - "name": "@octokit/core", - "escapedName": "@octokit%2fcore", - "scope": "@octokit", - "rawSpec": "2.4.2", - "saveSpec": null, - "fetchSpec": "2.4.2" - }, - "_requiredBy": [ - "/@octokit/rest" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "sdk", + "toolkit" ], - "_resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.4.2.tgz", - "_spec": "2.4.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/octokit/core.js/issues" - }, + "repository": "https://github.com/octokit/core.js", "dependencies": { "@octokit/auth-token": "^2.4.0", "@octokit/graphql": "^4.3.1", @@ -39,7 +25,6 @@ "before-after-hook": "^2.1.0", "universal-user-agent": "^5.0.0" }, - "description": "Extendable client for GitHub's REST & GraphQL APIs", "devDependencies": { "@octokit/auth": "^1.1.0", "@pika/pack": "^0.5.0", @@ -62,32 +47,15 @@ "ts-jest": "^25.1.0", "typescript": "^3.5.3" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/core.js#readme", - "keywords": [ - "octokit", - "github", - "api", - "sdk", - "toolkit" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/core", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/core.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "2.4.2" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.4.2.tgz" +,"_integrity": "sha512-fUx/Qt774cgiPhb3HRKfdl6iufVL/ltECkwkCg373I4lIPYvAPY4cbidVZqyVqHI+ThAIlFlTW8FT4QHChv3Sg==" +,"_from": "@octokit/core@2.4.2" +} \ No newline at end of file diff --git a/node_modules/@octokit/endpoint/package.json b/node_modules/@octokit/endpoint/package.json index 177bac351..6ad4cc528 100644 --- a/node_modules/@octokit/endpoint/package.json +++ b/node_modules/@octokit/endpoint/package.json @@ -1,42 +1,33 @@ { - "_args": [ - [ - "@octokit/endpoint@5.5.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/endpoint", + "description": "Turns REST API endpoints into generic request options", + "version": "5.5.3", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/endpoint@5.5.3", - "_id": "@octokit/endpoint@5.5.3", - "_inBundle": false, - "_integrity": "sha512-EzKwkwcxeegYYah5ukEeAI/gYRLv2Y9U5PpIsseGSFDk+G3RbipQGBs8GuYS1TLCtQaqoO66+aQGtITPalxsNQ==", - "_location": "/@octokit/endpoint", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/endpoint@5.5.3", - "name": "@octokit/endpoint", - "escapedName": "@octokit%2fendpoint", - "scope": "@octokit", - "rawSpec": "5.5.3", - "saveSpec": null, - "fetchSpec": "5.5.3" - }, - "_requiredBy": [ - "/@octokit/request" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "rest" ], - "_resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.3.tgz", - "_spec": "5.5.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/octokit/endpoint.js#readme", "bugs": { "url": "https://github.com/octokit/endpoint.js/issues" }, + "repository": { + "type": "git", + "url": "git+https://github.com/octokit/endpoint.js.git" + }, "dependencies": { "@octokit/types": "^2.0.0", "is-plain-object": "^3.0.0", "universal-user-agent": "^5.0.0" }, - "description": "Turns REST API endpoints into generic request options", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.9.0", @@ -50,31 +41,15 @@ "ts-jest": "^25.1.0", "typescript": "^3.4.5" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/endpoint.js#readme", - "keywords": [ - "octokit", - "github", - "api", - "rest" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/endpoint", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/endpoint.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "5.5.3" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.3.tgz" +,"_integrity": "sha512-EzKwkwcxeegYYah5ukEeAI/gYRLv2Y9U5PpIsseGSFDk+G3RbipQGBs8GuYS1TLCtQaqoO66+aQGtITPalxsNQ==" +,"_from": "@octokit/endpoint@5.5.3" +} \ No newline at end of file diff --git a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json index 0d27b29e5..eb8e2be66 100644 --- a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json @@ -1,39 +1,19 @@ { - "_args": [ - [ - "universal-user-agent@4.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "universal-user-agent@4.0.1", - "_id": "universal-user-agent@4.0.1", - "_inBundle": false, - "_integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==", - "_location": "/@octokit/graphql/universal-user-agent", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "universal-user-agent@4.0.1", - "name": "universal-user-agent", - "escapedName": "universal-user-agent", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" - }, - "_requiredBy": [ - "/@octokit/graphql" + "name": "universal-user-agent", + "description": "Get a user agent string in both browser and node", + "version": "4.0.1", + "license": "ISC", + "files": [ + "dist-*/", + "bin/" ], - "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/gr2m/universal-user-agent/issues" - }, + "pika": true, + "sideEffects": false, + "keywords": [], + "repository": "https://github.com/gr2m/universal-user-agent.git", "dependencies": { "os-name": "^3.1.0" }, - "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", "@pika/pack": "^0.5.0", @@ -46,23 +26,12 @@ "ts-jest": "^25.1.0", "typescript": "^3.6.2" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/gr2m/universal-user-agent#readme", - "keywords": [], - "license": "ISC", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "universal-user-agent", - "pika": true, - "repository": { - "type": "git", - "url": "git+https://github.com/gr2m/universal-user-agent.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "4.0.1" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz" +,"_integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==" +,"_from": "universal-user-agent@4.0.1" +} \ No newline at end of file diff --git a/node_modules/@octokit/graphql/package.json b/node_modules/@octokit/graphql/package.json index cb67838fe..52fa976f7 100644 --- a/node_modules/@octokit/graphql/package.json +++ b/node_modules/@octokit/graphql/package.json @@ -1,45 +1,33 @@ { - "_args": [ - [ - "@octokit/graphql@4.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/graphql", + "description": "GitHub GraphQL API client for browsers and Node", + "version": "4.3.1", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/graphql@4.3.1", - "_id": "@octokit/graphql@4.3.1", - "_inBundle": false, - "_integrity": "sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA==", - "_location": "/@octokit/graphql", - "_phantomChildren": { - "os-name": "3.1.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/graphql@4.3.1", - "name": "@octokit/graphql", - "escapedName": "@octokit%2fgraphql", - "scope": "@octokit", - "rawSpec": "4.3.1", - "saveSpec": null, - "fetchSpec": "4.3.1" - }, - "_requiredBy": [ - "/@octokit/core" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "graphql" ], - "_resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.3.1.tgz", - "_spec": "4.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/octokit/graphql.js#readme", "bugs": { "url": "https://github.com/octokit/graphql.js/issues" }, - "deno": "dist-web/index.js", + "repository": { + "type": "git", + "url": "https://github.com/octokit/graphql.js.git" + }, "dependencies": { "@octokit/request": "^5.3.0", "@octokit/types": "^2.0.0", "universal-user-agent": "^4.0.0" }, - "description": "GitHub GraphQL API client for browsers and Node", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.7.0", @@ -56,30 +44,15 @@ "ts-jest": "^24.0.2", "typescript": "^3.4.5" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/graphql.js#readme", - "keywords": [ - "octokit", - "github", - "api", - "graphql" - ], - "license": "MIT", - "main": "dist-node/index.js", - "name": "@octokit/graphql", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/graphql.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "4.3.1" -} + "main": "dist-node/index.js", + "deno": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.3.1.tgz" +,"_integrity": "sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA==" +,"_from": "@octokit/graphql@4.3.1" +} \ No newline at end of file diff --git a/node_modules/@octokit/plugin-paginate-rest/package.json b/node_modules/@octokit/plugin-paginate-rest/package.json index 65f447c31..d2c998e8b 100644 --- a/node_modules/@octokit/plugin-paginate-rest/package.json +++ b/node_modules/@octokit/plugin-paginate-rest/package.json @@ -1,40 +1,24 @@ { - "_args": [ - [ - "@octokit/plugin-paginate-rest@2.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/plugin-paginate-rest", + "description": "Octokit plugin to paginate REST API endpoint responses", + "version": "2.0.2", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/plugin-paginate-rest@2.0.2", - "_id": "@octokit/plugin-paginate-rest@2.0.2", - "_inBundle": false, - "_integrity": "sha512-HzODcSUt9mjErly26TlTOGZrhf9bmF/FEDQ2zln1izhgmIV6ulsjsHmgmR4VZ0wzVr/m52Eb6U2XuyS8fkcR1A==", - "_location": "/@octokit/plugin-paginate-rest", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/plugin-paginate-rest@2.0.2", - "name": "@octokit/plugin-paginate-rest", - "escapedName": "@octokit%2fplugin-paginate-rest", - "scope": "@octokit", - "rawSpec": "2.0.2", - "saveSpec": null, - "fetchSpec": "2.0.2" - }, - "_requiredBy": [ - "/@octokit/rest" + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" ], - "_resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.0.2.tgz", - "_spec": "2.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/octokit/plugin-paginate-rest.js/issues" - }, + "repository": "https://github.com/octokit/plugin-paginate-rest.js", "dependencies": { "@octokit/types": "^2.0.1" }, - "description": "Octokit plugin to paginate REST API endpoint responses", "devDependencies": { "@octokit/core": "^2.0.0", "@pika/pack": "^0.5.0", @@ -52,31 +36,15 @@ "ts-jest": "^25.1.0", "typescript": "^3.7.2" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/plugin-paginate-rest.js#readme", - "keywords": [ - "github", - "api", - "sdk", - "toolkit" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/plugin-paginate-rest", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/plugin-paginate-rest.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "2.0.2" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.0.2.tgz" +,"_integrity": "sha512-HzODcSUt9mjErly26TlTOGZrhf9bmF/FEDQ2zln1izhgmIV6ulsjsHmgmR4VZ0wzVr/m52Eb6U2XuyS8fkcR1A==" +,"_from": "@octokit/plugin-paginate-rest@2.0.2" +} \ No newline at end of file diff --git a/node_modules/@octokit/plugin-request-log/package.json b/node_modules/@octokit/plugin-request-log/package.json index de040676a..dde789f3c 100644 --- a/node_modules/@octokit/plugin-request-log/package.json +++ b/node_modules/@octokit/plugin-request-log/package.json @@ -1,38 +1,22 @@ { - "_args": [ - [ - "@octokit/plugin-request-log@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/plugin-request-log", + "description": "Log all requests and request errors", + "version": "1.0.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/plugin-request-log@1.0.0", - "_id": "@octokit/plugin-request-log@1.0.0", - "_inBundle": false, - "_integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==", - "_location": "/@octokit/plugin-request-log", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/plugin-request-log@1.0.0", - "name": "@octokit/plugin-request-log", - "escapedName": "@octokit%2fplugin-request-log", - "scope": "@octokit", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/@octokit/rest" + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" ], - "_resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/octokit/plugin-request-log.js/issues" - }, + "repository": "https://github.com/octokit/plugin-request-log.js", "dependencies": {}, - "description": "Log all requests and request errors", "devDependencies": { "@octokit/core": "^2.1.2", "@pika/pack": "^0.5.0", @@ -50,31 +34,15 @@ "ts-jest": "^24.3.0", "typescript": "^3.7.4" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/plugin-request-log.js#readme", - "keywords": [ - "github", - "api", - "sdk", - "toolkit" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/plugin-request-log", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/plugin-request-log.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "1.0.0" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz" +,"_integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==" +,"_from": "@octokit/plugin-request-log@1.0.0" +} \ No newline at end of file diff --git a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json index 77dcd6c1e..3775af4bc 100644 --- a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json +++ b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json @@ -1,41 +1,25 @@ { - "_args": [ - [ - "@octokit/plugin-rest-endpoint-methods@3.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/plugin-rest-endpoint-methods", + "description": "Octokit plugin adding one method for all of api.github.com REST API endpoints", + "version": "3.3.1", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/plugin-rest-endpoint-methods@3.3.1", - "_id": "@octokit/plugin-rest-endpoint-methods@3.3.1", - "_inBundle": false, - "_integrity": "sha512-iLAXPLWBZaP6ocy1GFfZUCzyN4cwg3y2JE6yZjQo0zLE3UaewC3TI68/TnS4ilyhXDxh81Jr1qwPN1AqTp8t3w==", - "_location": "/@octokit/plugin-rest-endpoint-methods", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/plugin-rest-endpoint-methods@3.3.1", - "name": "@octokit/plugin-rest-endpoint-methods", - "escapedName": "@octokit%2fplugin-rest-endpoint-methods", - "scope": "@octokit", - "rawSpec": "3.3.1", - "saveSpec": null, - "fetchSpec": "3.3.1" - }, - "_requiredBy": [ - "/@octokit/rest" + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" ], - "_resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.3.1.tgz", - "_spec": "3.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/octokit/plugin-rest-endpoint-methods.js/issues" - }, + "repository": "https://github.com/octokit/plugin-rest-endpoint-methods.js", "dependencies": { "@octokit/types": "^2.0.1", "deprecation": "^2.3.1" }, - "description": "Octokit plugin adding one method for all of api.github.com REST API endpoints", "devDependencies": { "@gimenete/type-writer": "^0.1.4", "@octokit/core": "^2.1.2", @@ -63,31 +47,15 @@ "ts-jest": "^25.1.0", "typescript": "^3.7.2" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/plugin-rest-endpoint-methods.js#readme", - "keywords": [ - "github", - "api", - "sdk", - "toolkit" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/plugin-rest-endpoint-methods", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/plugin-rest-endpoint-methods.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "3.3.1" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.3.1.tgz" +,"_integrity": "sha512-iLAXPLWBZaP6ocy1GFfZUCzyN4cwg3y2JE6yZjQo0zLE3UaewC3TI68/TnS4ilyhXDxh81Jr1qwPN1AqTp8t3w==" +,"_from": "@octokit/plugin-rest-endpoint-methods@3.3.1" +} \ No newline at end of file diff --git a/node_modules/@octokit/request-error/package.json b/node_modules/@octokit/request-error/package.json index 5c1c1d43e..5d11805dd 100644 --- a/node_modules/@octokit/request-error/package.json +++ b/node_modules/@octokit/request-error/package.json @@ -1,42 +1,33 @@ { - "_args": [ - [ - "@octokit/request-error@1.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/request-error", + "description": "Error class for Octokit request errors", + "version": "1.2.1", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/request-error@1.2.1", - "_id": "@octokit/request-error@1.2.1", - "_inBundle": false, - "_integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==", - "_location": "/@octokit/request-error", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/request-error@1.2.1", - "name": "@octokit/request-error", - "escapedName": "@octokit%2frequest-error", - "scope": "@octokit", - "rawSpec": "1.2.1", - "saveSpec": null, - "fetchSpec": "1.2.1" - }, - "_requiredBy": [ - "/@octokit/request" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "error" ], - "_resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz", - "_spec": "1.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/octokit/request-error.js#readme", "bugs": { "url": "https://github.com/octokit/request-error.js/issues" }, + "repository": { + "type": "git", + "url": "https://github.com/octokit/request-error.js.git" + }, "dependencies": { "@octokit/types": "^2.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" }, - "description": "Error class for Octokit request errors", "devDependencies": { "@pika/pack": "^0.5.0", "@pika/plugin-build-node": "^0.8.1", @@ -53,31 +44,15 @@ "ts-jest": "^24.0.2", "typescript": "^3.4.5" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/request-error.js#readme", - "keywords": [ - "octokit", - "github", - "api", - "error" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/request-error", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/request-error.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "1.2.1" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz" +,"_integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==" +,"_from": "@octokit/request-error@1.2.1" +} \ No newline at end of file diff --git a/node_modules/@octokit/request/package.json b/node_modules/@octokit/request/package.json index 4afc1ca4f..6fa672d8d 100644 --- a/node_modules/@octokit/request/package.json +++ b/node_modules/@octokit/request/package.json @@ -1,37 +1,28 @@ { - "_args": [ - [ - "@octokit/request@5.3.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/request", + "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node", + "version": "5.3.2", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/request@5.3.2", - "_id": "@octokit/request@5.3.2", - "_inBundle": false, - "_integrity": "sha512-7NPJpg19wVQy1cs2xqXjjRq/RmtSomja/VSWnptfYwuBxLdbYh2UjhGi0Wx7B1v5Iw5GKhfFDQL7jM7SSp7K2g==", - "_location": "/@octokit/request", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/request@5.3.2", - "name": "@octokit/request", - "escapedName": "@octokit%2frequest", - "scope": "@octokit", - "rawSpec": "5.3.2", - "saveSpec": null, - "fetchSpec": "5.3.2" - }, - "_requiredBy": [ - "/@octokit/core", - "/@octokit/graphql" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "request" ], - "_resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.3.2.tgz", - "_spec": "5.3.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/octokit/request.js#readme", "bugs": { "url": "https://github.com/octokit/request.js/issues" }, + "repository": { + "type": "git", + "url": "https://github.com/octokit/request.js.git" + }, "dependencies": { "@octokit/endpoint": "^5.5.0", "@octokit/request-error": "^1.0.1", @@ -42,7 +33,6 @@ "once": "^1.4.0", "universal-user-agent": "^5.0.0" }, - "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node", "devDependencies": { "@octokit/auth-app": "^2.1.2", "@pika/pack": "^0.5.0", @@ -64,31 +54,15 @@ "ts-jest": "^25.1.0", "typescript": "^3.4.5" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/request.js#readme", - "keywords": [ - "octokit", - "github", - "api", - "request" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/request", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/request.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "5.3.2" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.3.2.tgz" +,"_integrity": "sha512-7NPJpg19wVQy1cs2xqXjjRq/RmtSomja/VSWnptfYwuBxLdbYh2UjhGi0Wx7B1v5Iw5GKhfFDQL7jM7SSp7K2g==" +,"_from": "@octokit/request@5.3.2" +} \ No newline at end of file diff --git a/node_modules/@octokit/rest/package.json b/node_modules/@octokit/rest/package.json index b31ec8833..2ea157f22 100644 --- a/node_modules/@octokit/rest/package.json +++ b/node_modules/@octokit/rest/package.json @@ -1,36 +1,20 @@ { - "_args": [ - [ - "@octokit/rest@17.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "@octokit/rest", + "description": "GitHub REST API client for Node.js", + "version": "17.1.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" ], - "_from": "@octokit/rest@17.1.0", - "_id": "@octokit/rest@17.1.0", - "_inBundle": false, - "_integrity": "sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==", - "_location": "/@octokit/rest", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/rest@17.1.0", - "name": "@octokit/rest", - "escapedName": "@octokit%2frest", - "scope": "@octokit", - "rawSpec": "17.1.0", - "saveSpec": null, - "fetchSpec": "17.1.0" - }, - "_requiredBy": [ - "/" + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "rest", + "api-client" ], - "_resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.1.0.tgz", - "_spec": "17.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/octokit/rest.js/issues" - }, "contributors": [ { "name": "Mike de Boer", @@ -49,13 +33,13 @@ "url": "https://github.com/gr2m" } ], + "repository": "https://github.com/octokit/rest.js", "dependencies": { "@octokit/core": "^2.4.0", "@octokit/plugin-paginate-rest": "^2.0.0", "@octokit/plugin-request-log": "^1.0.0", "@octokit/plugin-rest-endpoint-methods": "^3.3.0" }, - "description": "GitHub REST API client for Node.js", "devDependencies": { "@octokit/auth": "^2.0.0", "@octokit/fixtures-server": "^6.0.0", @@ -74,31 +58,15 @@ "ts-jest": "^25.2.0", "typescript": "^3.7.5" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/octokit/rest.js#readme", - "keywords": [ - "octokit", - "github", - "rest", - "api-client" - ], - "license": "MIT", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "@octokit/rest", - "pika": true, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/rest.js.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "17.1.0" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.1.0.tgz" +,"_integrity": "sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==" +,"_from": "@octokit/rest@17.1.0" +} \ No newline at end of file diff --git a/node_modules/@octokit/types/package.json b/node_modules/@octokit/types/package.json index 4e377ffce..da45e714b 100644 --- a/node_modules/@octokit/types/package.json +++ b/node_modules/@octokit/types/package.json @@ -1,51 +1,34 @@ { - "_args": [ - [ - "@octokit/types@2.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@octokit/types@2.5.0", - "_id": "@octokit/types@2.5.0", - "_inBundle": false, - "_integrity": "sha512-KEnLwOfdXzxPNL34fj508bhi9Z9cStyN7qY1kOfVahmqtAfrWw6Oq3P4R+dtsg0lYtZdWBpUrS/Ixmd5YILSww==", - "_location": "/@octokit/types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@octokit/types@2.5.0", - "name": "@octokit/types", - "escapedName": "@octokit%2ftypes", - "scope": "@octokit", - "rawSpec": "2.5.0", - "saveSpec": null, - "fetchSpec": "2.5.0" + "name": "@octokit/types", + "version": "2.5.0", + "publishConfig": { + "access": "public" }, - "_requiredBy": [ - "/@octokit/auth-token", - "/@octokit/core", - "/@octokit/endpoint", - "/@octokit/graphql", - "/@octokit/plugin-paginate-rest", - "/@octokit/plugin-rest-endpoint-methods", - "/@octokit/request", - "/@octokit/request-error" + "description": "Shared TypeScript definitions for Octokit projects", + "main": "src/index.ts", + "files": [ + "src/" ], - "_resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.5.0.tgz", - "_spec": "2.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Gregor Martynus", - "url": "https://twitter.com/gr2m" - }, - "bugs": { - "url": "https://github.com/octokit/types.ts/issues" - }, - "dependencies": { - "@types/node": ">= 8" + "scripts": { + "docs": "typedoc --module commonjs --readme none --out docs src/", + "lint": "prettier --check '{src,test}/**/*' README.md package.json !src/generated/*", + "lint:fix": "prettier --write '{src,test}/**/*' README.md package.json !src/generated/*", + "pretest": "npm run -s lint", + "test": "./node_modules/.bin/tsc --noEmit --declaration src/index.ts", + "update-endpoints": "npm-run-all update-endpoints:*", + "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json", + "update-endpoints:typescript": "node scripts/update-endpoints/typescript" }, - "description": "Shared TypeScript definitions for Octokit projects", + "repository": "https://github.com/octokit/types.ts", + "keywords": [ + "github", + "api", + "sdk", + "toolkit", + "typescript" + ], + "author": "Gregor Martynus (https://twitter.com/gr2m)", + "license": "MIT", "devDependencies": { "@octokit/graphql": "^4.2.2", "handlebars": "^4.4.5", @@ -60,23 +43,6 @@ "typedoc": "^0.16.0", "typescript": "^3.6.4" }, - "files": [ - "src/" - ], - "homepage": "https://github.com/octokit/types.ts#readme", - "keywords": [ - "github", - "api", - "sdk", - "toolkit", - "typescript" - ], - "license": "MIT", - "main": "src/index.ts", - "name": "@octokit/types", - "publishConfig": { - "access": "public" - }, "release": { "plugins": [ "@semantic-release/commit-analyzer", @@ -93,19 +59,11 @@ ] ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/octokit/types.ts.git" - }, - "scripts": { - "docs": "typedoc --module commonjs --readme none --out docs src/", - "lint": "prettier --check '{src,test}/**/*' README.md package.json !src/generated/*", - "lint:fix": "prettier --write '{src,test}/**/*' README.md package.json !src/generated/*", - "pretest": "npm run -s lint", - "test": "tsc --noEmit --declaration src/index.ts", - "update-endpoints": "npm-run-all update-endpoints:*", - "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json", - "update-endpoints:typescript": "node scripts/update-endpoints/typescript" - }, - "version": "2.5.0" -} + "dependencies": { + "@types/node": ">= 8" + } + +,"_resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.5.0.tgz" +,"_integrity": "sha512-KEnLwOfdXzxPNL34fj508bhi9Z9cStyN7qY1kOfVahmqtAfrWw6Oq3P4R+dtsg0lYtZdWBpUrS/Ixmd5YILSww==" +,"_from": "@octokit/types@2.5.0" +} \ No newline at end of file diff --git a/node_modules/@sindresorhus/is/package.json b/node_modules/@sindresorhus/is/package.json index 0ea0e30d6..b08acf00a 100644 --- a/node_modules/@sindresorhus/is/package.json +++ b/node_modules/@sindresorhus/is/package.json @@ -1,100 +1,67 @@ { - "_args": [ - [ - "@sindresorhus/is@0.14.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@sindresorhus/is@0.14.0", - "_id": "@sindresorhus/is@0.14.0", - "_inBundle": false, - "_integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "_location": "/@sindresorhus/is", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@sindresorhus/is@0.14.0", - "name": "@sindresorhus/is", - "escapedName": "@sindresorhus%2fis", - "scope": "@sindresorhus", - "rawSpec": "0.14.0", - "saveSpec": null, - "fetchSpec": "0.14.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "_spec": "0.14.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is/issues" - }, - "description": "Type check values: `is.string('🦄') //=> true`", - "devDependencies": { - "@sindresorhus/tsconfig": "^0.1.0", - "@types/jsdom": "^11.12.0", - "@types/node": "^10.12.10", - "@types/tempy": "^0.2.0", - "@types/zen-observable": "^0.8.0", - "ava": "^0.25.0", - "del-cli": "^1.1.0", - "jsdom": "^11.6.2", - "rxjs": "^6.3.3", - "tempy": "^0.2.1", - "tslint": "^5.9.1", - "tslint-xo": "^0.10.0", - "typescript": "^3.2.1", - "zen-observable": "^0.8.8" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "dist" - ], - "homepage": "https://github.com/sindresorhus/is#readme", - "keywords": [ - "type", - "types", - "is", - "check", - "checking", - "validate", - "validation", - "utility", - "util", - "typeof", - "instanceof", - "object", - "assert", - "assertion", - "test", - "kind", - "primitive", - "verify", - "compare" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "@sindresorhus/is", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is.git" - }, - "scripts": { - "build": "del dist && tsc", - "lint": "tslint --format stylish --project .", - "prepublish": "npm run build && del dist/tests", - "test": "npm run lint && npm run build && ava dist/tests" - }, - "types": "dist/index.d.ts", - "version": "0.14.0" -} + "name": "@sindresorhus/is", + "version": "0.14.0", + "description": "Type check values: `is.string('🦄') //=> true`", + "license": "MIT", + "repository": "sindresorhus/is", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "main": "dist/index.js", + "engines": { + "node": ">=6" + }, + "scripts": { + "lint": "tslint --format stylish --project .", + "build": "del dist && tsc", + "test": "npm run lint && npm run build && ava dist/tests", + "prepublish": "npm run build && del dist/tests" + }, + "files": [ + "dist" + ], + "keywords": [ + "type", + "types", + "is", + "check", + "checking", + "validate", + "validation", + "utility", + "util", + "typeof", + "instanceof", + "object", + "assert", + "assertion", + "test", + "kind", + "primitive", + "verify", + "compare" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.1.0", + "@types/jsdom": "^11.12.0", + "@types/node": "^10.12.10", + "@types/tempy": "^0.2.0", + "@types/zen-observable": "^0.8.0", + "ava": "^0.25.0", + "del-cli": "^1.1.0", + "jsdom": "^11.6.2", + "rxjs": "^6.3.3", + "tempy": "^0.2.1", + "tslint": "^5.9.1", + "tslint-xo": "^0.10.0", + "typescript": "^3.2.1", + "zen-observable": "^0.8.8" + }, + "types": "dist/index.d.ts" + +,"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz" +,"_integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" +,"_from": "@sindresorhus/is@0.14.0" +} \ No newline at end of file diff --git a/node_modules/@szmarczak/http-timer/package.json b/node_modules/@szmarczak/http-timer/package.json index cc089bf38..ce9d4c665 100755 --- a/node_modules/@szmarczak/http-timer/package.json +++ b/node_modules/@szmarczak/http-timer/package.json @@ -1,79 +1,51 @@ { - "_args": [ - [ - "@szmarczak/http-timer@1.1.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@szmarczak/http-timer@1.1.2", - "_id": "@szmarczak/http-timer@1.1.2", - "_inBundle": false, - "_integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "_location": "/@szmarczak/http-timer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@szmarczak/http-timer@1.1.2", - "name": "@szmarczak/http-timer", - "escapedName": "@szmarczak%2fhttp-timer", - "scope": "@szmarczak", - "rawSpec": "1.1.2", - "saveSpec": null, - "fetchSpec": "1.1.2" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "_spec": "1.1.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Szymon Marczak" - }, - "bugs": { - "url": "https://github.com/szmarczak/http-timer/issues" - }, - "dependencies": { - "defer-to-connect": "^1.0.1" - }, - "description": "Timings for HTTP requests", - "devDependencies": { - "ava": "^0.25.0", - "coveralls": "^3.0.2", - "nyc": "^12.0.2", - "p-event": "^2.1.0", - "xo": "^0.22.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "source" - ], - "homepage": "https://github.com/szmarczak/http-timer#readme", - "keywords": [ - "http", - "https", - "timer", - "timings" - ], - "license": "MIT", - "main": "source", - "name": "@szmarczak/http-timer", - "repository": { - "type": "git", - "url": "git+https://github.com/szmarczak/http-timer.git" - }, - "scripts": { - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && nyc ava" - }, - "version": "1.1.2", - "xo": { - "rules": { - "unicorn/filename-case": "camelCase" - } - } -} + "name": "@szmarczak/http-timer", + "version": "1.1.2", + "description": "Timings for HTTP requests", + "main": "source", + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && nyc ava", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "source" + ], + "keywords": [ + "http", + "https", + "timer", + "timings" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/szmarczak/http-timer.git" + }, + "author": "Szymon Marczak", + "license": "MIT", + "bugs": { + "url": "https://github.com/szmarczak/http-timer/issues" + }, + "homepage": "https://github.com/szmarczak/http-timer#readme", + "xo": { + "rules": { + "unicorn/filename-case": "camelCase" + } + }, + "devDependencies": { + "ava": "^0.25.0", + "coveralls": "^3.0.2", + "p-event": "^2.1.0", + "nyc": "^12.0.2", + "xo": "^0.22.0" + }, + "dependencies": { + "defer-to-connect": "^1.0.1" + } + +,"_resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz" +,"_integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" +,"_from": "@szmarczak/http-timer@1.1.2" +} \ No newline at end of file diff --git a/node_modules/@types/color-name/package.json b/node_modules/@types/color-name/package.json index 22b8cdfc9..da77dae61 100644 --- a/node_modules/@types/color-name/package.json +++ b/node_modules/@types/color-name/package.json @@ -1,61 +1,27 @@ { - "_args": [ - [ - "@types/color-name@1.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/color-name@1.1.1", - "_id": "@types/color-name@1.1.1", - "_inBundle": false, - "_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", - "_location": "/@types/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/color-name@1.1.1", "name": "@types/color-name", - "escapedName": "@types%2fcolor-name", - "scope": "@types", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/ava/ansi-styles", - "/boxen/ansi-styles", - "/ora/ansi-styles", - "/slice-ansi/ansi-styles", - "/update-notifier/ansi-styles", - "/wrap-ansi/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "_spec": "1.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "Junyoung Clare Jang", - "url": "https://github.com/Ailrun" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for color-name", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/color-name", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "types": "index", - "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", - "version": "1.1.1" -} + "version": "1.1.1", + "description": "TypeScript definitions for color-name", + "license": "MIT", + "contributors": [ + { + "name": "Junyoung Clare Jang", + "url": "https://github.com/Ailrun", + "githubUsername": "Ailrun" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz" +,"_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" +,"_from": "@types/color-name@1.1.1" +} \ No newline at end of file diff --git a/node_modules/@types/events/package.json b/node_modules/@types/events/package.json index c6ae64cda..ec26d33d0 100644 --- a/node_modules/@types/events/package.json +++ b/node_modules/@types/events/package.json @@ -1,60 +1,32 @@ { - "_args": [ - [ - "@types/events@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/events@3.0.0", - "_id": "@types/events@3.0.0", - "_inBundle": false, - "_integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", - "_location": "/@types/events", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/events@3.0.0", "name": "@types/events", - "escapedName": "@types%2fevents", - "scope": "@types", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/@types/glob" - ], - "_resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "Yasunori Ohoka", - "url": "https://github.com/yasupeke" + "version": "3.0.0", + "description": "TypeScript definitions for events", + "license": "MIT", + "contributors": [ + { + "name": "Yasunori Ohoka", + "url": "https://github.com/yasupeke", + "githubUsername": "yasupeke" + }, + { + "name": "Shenwei Wang", + "url": "https://github.com/weareoutman", + "githubUsername": "weareoutman" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, - { - "name": "Shenwei Wang", - "url": "https://github.com/weareoutman" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for events", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/events", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "types": "index", - "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", - "version": "3.0.0" -} + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz" +,"_integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" +,"_from": "@types/events@3.0.0" +} \ No newline at end of file diff --git a/node_modules/@types/glob/package.json b/node_modules/@types/glob/package.json index fcdea7634..7b98f8851 100644 --- a/node_modules/@types/glob/package.json +++ b/node_modules/@types/glob/package.json @@ -1,67 +1,40 @@ { - "_args": [ - [ - "@types/glob@7.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/glob@7.1.1", - "_id": "@types/glob@7.1.1", - "_inBundle": false, - "_integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", - "_location": "/@types/glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/glob@7.1.1", "name": "@types/glob", - "escapedName": "@types%2fglob", - "scope": "@types", - "rawSpec": "7.1.1", - "saveSpec": null, - "fetchSpec": "7.1.1" - }, - "_requiredBy": [ - "/del/globby" - ], - "_resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "_spec": "7.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "vvakame", - "url": "https://github.com/vvakame" + "version": "7.1.1", + "description": "TypeScript definitions for Glob", + "license": "MIT", + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame", + "githubUsername": "vvakame" + }, + { + "name": "voy", + "url": "https://github.com/voy", + "githubUsername": "voy" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, - { - "name": "voy", - "url": "https://github.com/voy" + "scripts": {}, + "dependencies": { + "@types/events": "*", + "@types/minimatch": "*", + "@types/node": "*" }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff" - } - ], - "dependencies": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" - }, - "description": "TypeScript definitions for Glob", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/glob", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", - "version": "7.1.1" -} + "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz" +,"_integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" +,"_from": "@types/glob@7.1.1" +} \ No newline at end of file diff --git a/node_modules/@types/jszip/package.json b/node_modules/@types/jszip/package.json index 0926df052..3f6eafbd7 100644 --- a/node_modules/@types/jszip/package.json +++ b/node_modules/@types/jszip/package.json @@ -1,63 +1,35 @@ { - "_args": [ - [ - "@types/jszip@3.1.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/jszip@3.1.6", - "_id": "@types/jszip@3.1.6", - "_inBundle": false, - "_integrity": "sha512-m8uFcI+O2EupCfbEVQWsBM/4nhbegjOHL7cQgBpM95FeF98kdFJXzy9/8yhx4b3lCRl/gMBhcvyh30Qt3X+XPQ==", - "_location": "/@types/jszip", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/jszip@3.1.6", "name": "@types/jszip", - "escapedName": "@types%2fjszip", - "scope": "@types", - "rawSpec": "3.1.6", - "saveSpec": null, - "fetchSpec": "3.1.6" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/@types/jszip/-/jszip-3.1.6.tgz", - "_spec": "3.1.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "mzeiher", - "url": "https://github.com/mzeiher" + "version": "3.1.6", + "description": "TypeScript definitions for JSZip", + "license": "MIT", + "contributors": [ + { + "name": "mzeiher", + "url": "https://github.com/mzeiher", + "githubUsername": "mzeiher" + }, + { + "name": "forabi", + "url": "https://github.com/forabi", + "githubUsername": "forabi" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/jszip" }, - { - "name": "forabi", - "url": "https://github.com/forabi" - } - ], - "dependencies": { - "@types/node": "*" - }, - "description": "TypeScript definitions for JSZip", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/jszip", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/jszip" - }, - "scripts": {}, - "typeScriptVersion": "2.3", - "types": "index", - "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", - "version": "3.1.6" -} + "scripts": {}, + "dependencies": { + "@types/node": "*" + }, + "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", + "typeScriptVersion": "2.3" + +,"_resolved": "https://registry.npmjs.org/@types/jszip/-/jszip-3.1.6.tgz" +,"_integrity": "sha512-m8uFcI+O2EupCfbEVQWsBM/4nhbegjOHL7cQgBpM95FeF98kdFJXzy9/8yhx4b3lCRl/gMBhcvyh30Qt3X+XPQ==" +,"_from": "@types/jszip@3.1.6" +} \ No newline at end of file diff --git a/node_modules/@types/long/package.json b/node_modules/@types/long/package.json index cd467c393..690bb90f3 100644 --- a/node_modules/@types/long/package.json +++ b/node_modules/@types/long/package.json @@ -1,55 +1,26 @@ { - "_args": [ - [ - "@types/long@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/long@4.0.0", - "_id": "@types/long@4.0.0", - "_inBundle": false, - "_integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==", - "_location": "/@types/long", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/long@4.0.0", "name": "@types/long", - "escapedName": "@types%2flong", - "scope": "@types", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "Peter Kooijmans", - "url": "https://github.com/peterkooijmans" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for long.js", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/long", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", - "version": "4.0.0" -} + "version": "4.0.0", + "description": "TypeScript definitions for long.js", + "license": "MIT", + "contributors": [ + { + "name": "Peter Kooijmans", + "url": "https://github.com/peterkooijmans", + "githubUsername": "peterkooijmans" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz" +,"_integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==" +,"_from": "@types/long@4.0.0" +} \ No newline at end of file diff --git a/node_modules/@types/minimatch/package.json b/node_modules/@types/minimatch/package.json index 69e216828..2ffb9f1c8 100644 --- a/node_modules/@types/minimatch/package.json +++ b/node_modules/@types/minimatch/package.json @@ -1,59 +1,31 @@ { - "_args": [ - [ - "@types/minimatch@3.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/minimatch@3.0.3", - "_id": "@types/minimatch@3.0.3", - "_inBundle": false, - "_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", - "_location": "/@types/minimatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/minimatch@3.0.3", "name": "@types/minimatch", - "escapedName": "@types%2fminimatch", - "scope": "@types", - "rawSpec": "3.0.3", - "saveSpec": null, - "fetchSpec": "3.0.3" - }, - "_requiredBy": [ - "/@types/glob" - ], - "_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "_spec": "3.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "vvakame", - "url": "https://github.com/vvakame" + "version": "3.0.3", + "description": "TypeScript definitions for Minimatch", + "license": "MIT", + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame", + "githubUsername": "vvakame" + }, + { + "name": "Shant Marouti", + "url": "https://github.com/shantmarouti", + "githubUsername": "shantmarouti" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" }, - { - "name": "Shant Marouti", - "url": "https://github.com/shantmarouti" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for Minimatch", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/minimatch", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", - "version": "3.0.3" -} + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz" +,"_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" +,"_from": "@types/minimatch@3.0.3" +} \ No newline at end of file diff --git a/node_modules/@types/nock/package.json b/node_modules/@types/nock/package.json index 9873e4121..28efa45be 100644 --- a/node_modules/@types/nock/package.json +++ b/node_modules/@types/nock/package.json @@ -1,48 +1,18 @@ { - "_from": "@types/nock", - "_id": "@types/nock@11.1.0", - "_inBundle": false, - "_integrity": "sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==", - "_location": "/@types/nock", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "@types/nock", "name": "@types/nock", - "escapedName": "@types%2fnock", - "scope": "@types", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmjs.org/@types/nock/-/nock-11.1.0.tgz", - "_shasum": "0a8c1056a31ba32a959843abccf99626dd90a538", - "_spec": "@types/nock", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": "", - "bugs": { - "url": "https://github.com/nock/nock/issues" - }, - "bundleDependencies": false, - "dependencies": { - "nock": "*" - }, - "deprecated": "This is a stub types definition. nock provides its own type definitions, so you do not need this installed.", - "description": "Stub TypeScript definitions entry for nock, which provides its own types definitions", - "homepage": "https://github.com/nock/nock#readme", - "license": "MIT", - "main": "", - "name": "@types/nock", - "repository": { - "type": "git", - "url": "git+https://github.com/nock/nock.git" - }, - "scripts": {}, - "typings": null, - "version": "11.1.0" -} + "version": "11.1.0", + "typings": null, + "description": "Stub TypeScript definitions entry for nock, which provides its own types definitions", + "main": "", + "scripts": {}, + "author": "", + "repository": "https://github.com/nock/nock", + "license": "MIT", + "dependencies": { + "nock": "*" + } + +,"_resolved": "https://registry.npmjs.org/@types/nock/-/nock-11.1.0.tgz" +,"_integrity": "sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==" +,"_from": "@types/nock@11.1.0" +} \ No newline at end of file diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index ae1878b4e..c62c0141d 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -1,226 +1,235 @@ { - "_args": [ - [ - "@types/node@12.12.14", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "@types/node@12.12.14", - "_id": "@types/node@12.12.14", - "_inBundle": false, - "_integrity": "sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA==", - "_location": "/@types/node", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/node@12.12.14", "name": "@types/node", - "escapedName": "@types%2fnode", - "scope": "@types", - "rawSpec": "12.12.14", - "saveSpec": null, - "fetchSpec": "12.12.14" - }, - "_requiredBy": [ - "#DEV:/", - "/@octokit/types", - "/@types/glob", - "/@types/jszip" - ], - "_resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.14.tgz", - "_spec": "12.12.14", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "Microsoft TypeScript", - "url": "https://github.com/Microsoft" - }, - { - "name": "DefinitelyTyped", - "url": "https://github.com/DefinitelyTyped" - }, - { - "name": "Alberto Schiabel", - "url": "https://github.com/jkomyno" - }, - { - "name": "Alexander T.", - "url": "https://github.com/a-tarasyuk" - }, - { - "name": "Alvis HT Tang", - "url": "https://github.com/alvis" - }, - { - "name": "Andrew Makarov", - "url": "https://github.com/r3nya" - }, - { - "name": "Benjamin Toueg", - "url": "https://github.com/btoueg" - }, - { - "name": "Bruno Scheufler", - "url": "https://github.com/brunoscheufler" - }, - { - "name": "Chigozirim C.", - "url": "https://github.com/smac89" - }, - { - "name": "Christian Vaagland Tellnes", - "url": "https://github.com/tellnes" - }, - { - "name": "David Junger", - "url": "https://github.com/touffy" - }, - { - "name": "Deividas Bakanas", - "url": "https://github.com/DeividasBakanas" - }, - { - "name": "Eugene Y. Q. Shen", - "url": "https://github.com/eyqs" - }, - { - "name": "Flarna", - "url": "https://github.com/Flarna" - }, - { - "name": "Hannes Magnusson", - "url": "https://github.com/Hannes-Magnusson-CK" - }, - { - "name": "Hoàng Văn Khải", - "url": "https://github.com/KSXGitHub" - }, - { - "name": "Huw", - "url": "https://github.com/hoo29" - }, - { - "name": "Kelvin Jin", - "url": "https://github.com/kjin" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff" - }, - { - "name": "Lishude", - "url": "https://github.com/islishude" - }, - { - "name": "Mariusz Wiktorczyk", - "url": "https://github.com/mwiktorczyk" - }, - { - "name": "Mohsen Azimi", - "url": "https://github.com/mohsen1" - }, - { - "name": "Nicolas Even", - "url": "https://github.com/n-e" - }, - { - "name": "Nicolas Voigt", - "url": "https://github.com/octo-sniffle" - }, - { - "name": "Nikita Galkin", - "url": "https://github.com/galkin" - }, - { - "name": "Parambir Singh", - "url": "https://github.com/parambirs" - }, - { - "name": "Sebastian Silbermann", - "url": "https://github.com/eps1lon" - }, - { - "name": "Simon Schick", - "url": "https://github.com/SimonSchick" - }, - { - "name": "Thomas den Hollander", - "url": "https://github.com/ThomasdenH" - }, - { - "name": "Wilco Bakker", - "url": "https://github.com/WilcoBakker" - }, - { - "name": "wwwy3y3", - "url": "https://github.com/wwwy3y3" - }, - { - "name": "Zane Hannan AU", - "url": "https://github.com/ZaneHannanAU" - }, - { - "name": "Samuel Ainsworth", - "url": "https://github.com/samuela" - }, - { - "name": "Kyle Uehlein", - "url": "https://github.com/kuehlein" - }, - { - "name": "Jordi Oliveras Rovira", - "url": "https://github.com/j-oliveras" - }, - { - "name": "Thanik Bhongbhibhat", - "url": "https://github.com/bhongy" - }, - { - "name": "Marcin Kopacz", - "url": "https://github.com/chyzwar" - }, - { - "name": "Trivikram Kamat", - "url": "https://github.com/trivikr" - }, - { - "name": "Minh Son Nguyen", - "url": "https://github.com/nguymin4" - }, - { - "name": "Junxiao Shi", - "url": "https://github.com/yoursunny" - }, - { - "name": "Ilia Baryshnikov", - "url": "https://github.com/qwelias" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for Node.js", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/node", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/node" - }, - "scripts": {}, - "typeScriptVersion": "2.8", - "types": "index.d.ts", - "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", - "typesVersions": { - ">=3.2.0-0": { - "*": [ - "ts3.2/*" - ] - } - }, - "version": "12.12.14" -} + "version": "12.12.14", + "description": "TypeScript definitions for Node.js", + "license": "MIT", + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft", + "githubUsername": "Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped", + "githubUsername": "DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno", + "githubUsername": "jkomyno" + }, + { + "name": "Alexander T.", + "url": "https://github.com/a-tarasyuk", + "githubUsername": "a-tarasyuk" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis", + "githubUsername": "alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya", + "githubUsername": "r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg", + "githubUsername": "btoueg" + }, + { + "name": "Bruno Scheufler", + "url": "https://github.com/brunoscheufler", + "githubUsername": "brunoscheufler" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89", + "githubUsername": "smac89" + }, + { + "name": "Christian Vaagland Tellnes", + "url": "https://github.com/tellnes", + "githubUsername": "tellnes" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy", + "githubUsername": "touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas", + "githubUsername": "DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs", + "githubUsername": "eyqs" + }, + { + "name": "Flarna", + "url": "https://github.com/Flarna", + "githubUsername": "Flarna" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK", + "githubUsername": "Hannes-Magnusson-CK" + }, + { + "name": "Hoàng Văn Khải", + "url": "https://github.com/KSXGitHub", + "githubUsername": "KSXGitHub" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29", + "githubUsername": "hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin", + "githubUsername": "kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude", + "githubUsername": "islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk", + "githubUsername": "mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1", + "githubUsername": "mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e", + "githubUsername": "n-e" + }, + { + "name": "Nicolas Voigt", + "url": "https://github.com/octo-sniffle", + "githubUsername": "octo-sniffle" + }, + { + "name": "Nikita Galkin", + "url": "https://github.com/galkin", + "githubUsername": "galkin" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs", + "githubUsername": "parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon", + "githubUsername": "eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick", + "githubUsername": "SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH", + "githubUsername": "ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker", + "githubUsername": "WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3", + "githubUsername": "wwwy3y3" + }, + { + "name": "Zane Hannan AU", + "url": "https://github.com/ZaneHannanAU", + "githubUsername": "ZaneHannanAU" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela", + "githubUsername": "samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein", + "githubUsername": "kuehlein" + }, + { + "name": "Jordi Oliveras Rovira", + "url": "https://github.com/j-oliveras", + "githubUsername": "j-oliveras" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy", + "githubUsername": "bhongy" + }, + { + "name": "Marcin Kopacz", + "url": "https://github.com/chyzwar", + "githubUsername": "chyzwar" + }, + { + "name": "Trivikram Kamat", + "url": "https://github.com/trivikr", + "githubUsername": "trivikr" + }, + { + "name": "Minh Son Nguyen", + "url": "https://github.com/nguymin4", + "githubUsername": "nguymin4" + }, + { + "name": "Junxiao Shi", + "url": "https://github.com/yoursunny", + "githubUsername": "yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "url": "https://github.com/qwelias", + "githubUsername": "qwelias" + } + ], + "main": "", + "types": "index.d.ts", + "typesVersions": { + ">=3.2.0-0": { + "*": [ + "ts3.2/*" + ] + } + }, + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", + "typeScriptVersion": "2.8" + +,"_resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.14.tgz" +,"_integrity": "sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA==" +,"_from": "@types/node@12.12.14" +} \ No newline at end of file diff --git a/node_modules/@types/normalize-package-data/package.json b/node_modules/@types/normalize-package-data/package.json index 145f70cd7..82b657ae0 100755 --- a/node_modules/@types/normalize-package-data/package.json +++ b/node_modules/@types/normalize-package-data/package.json @@ -1,55 +1,26 @@ { - "_args": [ - [ - "@types/normalize-package-data@2.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "@types/normalize-package-data@2.4.0", - "_id": "@types/normalize-package-data@2.4.0", - "_inBundle": false, - "_integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", - "_location": "/@types/normalize-package-data", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@types/normalize-package-data@2.4.0", "name": "@types/normalize-package-data", - "escapedName": "@types%2fnormalize-package-data", - "scope": "@types", - "rawSpec": "2.4.0", - "saveSpec": null, - "fetchSpec": "2.4.0" - }, - "_requiredBy": [ - "/read-pkg" - ], - "_resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "_spec": "2.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "contributors": [ - { - "name": "Jeff Dickey", - "url": "https://github.com/jdxcode" - } - ], - "dependencies": {}, - "description": "TypeScript definitions for normalize-package-data", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/normalize-package-data", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "typeScriptVersion": "2.0", - "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", - "version": "2.4.0" -} + "version": "2.4.0", + "description": "TypeScript definitions for normalize-package-data", + "license": "MIT", + "contributors": [ + { + "name": "Jeff Dickey", + "url": "https://github.com/jdxcode", + "githubUsername": "jdxcode" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", + "typeScriptVersion": "2.0" + +,"_resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz" +,"_integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" +,"_from": "@types/normalize-package-data@2.4.0" +} \ No newline at end of file diff --git a/node_modules/@types/semver/package.json b/node_modules/@types/semver/package.json index 26cbaed8d..5bff6095b 100644 --- a/node_modules/@types/semver/package.json +++ b/node_modules/@types/semver/package.json @@ -1,76 +1,55 @@ { - "_from": "@types/semver", - "_id": "@types/semver@7.2.0", - "_inBundle": false, - "_integrity": "sha512-TbB0A8ACUWZt3Y6bQPstW9QNbhNeebdgLX4T/ZfkrswAfUzRiXrgd9seol+X379Wa589Pu4UEx9Uok0D4RjRCQ==", - "_location": "/@types/semver", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "@types/semver", "name": "@types/semver", - "escapedName": "@types%2fsemver", - "scope": "@types", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.2.0.tgz", - "_shasum": "0d72066965e910531e1db4621c15d0ca36b8d83b", - "_spec": "@types/semver", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Bart van der Schoor", - "url": "https://github.com/Bartvds" + "version": "7.2.0", + "description": "TypeScript definitions for semver", + "license": "MIT", + "contributors": [ + { + "name": "Bart van der Schoor", + "url": "https://github.com/Bartvds", + "githubUsername": "Bartvds" + }, + { + "name": "BendingBender", + "url": "https://github.com/BendingBender", + "githubUsername": "BendingBender" + }, + { + "name": "Lucian Buzzo", + "url": "https://github.com/LucianBuzzo", + "githubUsername": "LucianBuzzo" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" + }, + { + "name": "Piotr Błażejewicz", + "url": "https://github.com/peterblazejewicz", + "githubUsername": "peterblazejewicz" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/semver" }, - { - "name": "BendingBender", - "url": "https://github.com/BendingBender" + "scripts": {}, + "dependencies": { + "@types/node": "*" }, - { - "name": "Lucian Buzzo", - "url": "https://github.com/LucianBuzzo" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff" - }, - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" - }, - { - "name": "Piotr Błażejewicz", - "url": "https://github.com/peterblazejewicz" - } - ], - "dependencies": { - "@types/node": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for semver", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", - "main": "", - "name": "@types/semver", - "repository": { - "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/semver" - }, - "scripts": {}, - "typeScriptVersion": "2.9", - "types": "index.d.ts", - "typesPublisherContentHash": "a85c812786f6121af7012f9234a35445623e4933797ddf4b52584d65deaec9ef", - "version": "7.2.0" -} + "typesPublisherContentHash": "a85c812786f6121af7012f9234a35445623e4933797ddf4b52584d65deaec9ef", + "typeScriptVersion": "2.9" + +,"_resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.2.0.tgz" +,"_integrity": "sha512-TbB0A8ACUWZt3Y6bQPstW9QNbhNeebdgLX4T/ZfkrswAfUzRiXrgd9seol+X379Wa589Pu4UEx9Uok0D4RjRCQ==" +,"_from": "@types/semver@7.2.0" +} \ No newline at end of file diff --git a/node_modules/acorn/package.json b/node_modules/acorn/package.json index 9c16c3498..3509ed8ad 100644 --- a/node_modules/acorn/package.json +++ b/node_modules/acorn/package.json @@ -1,71 +1,39 @@ { - "_args": [ - [ - "acorn@7.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "acorn@7.1.1", - "_id": "acorn@7.1.1", - "_inBundle": false, - "_integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==", - "_location": "/acorn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "acorn@7.1.1", - "name": "acorn", - "escapedName": "acorn", - "rawSpec": "7.1.1", - "saveSpec": null, - "fetchSpec": "7.1.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "_spec": "7.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "acorn": "bin/acorn" - }, - "bugs": { - "url": "https://github.com/acornjs/acorn/issues" - }, + "name": "acorn", "description": "ECMAScript parser", - "engines": { - "node": ">=0.4.0" - }, "homepage": "https://github.com/acornjs/acorn", - "license": "MIT", "main": "dist/acorn.js", + "types": "dist/acorn.d.ts", + "module": "dist/acorn.mjs", + "version": "7.1.1", + "engines": {"node": ">=0.4.0"}, "maintainers": [ { "name": "Marijn Haverbeke", "email": "marijnh@gmail.com", - "url": "https://marijnhaverbeke.nl" + "web": "https://marijnhaverbeke.nl" }, { "name": "Ingvar Stepanyan", "email": "me@rreverser.com", - "url": "https://rreverser.com/" + "web": "https://rreverser.com/" }, { "name": "Adrian Heine", - "url": "http://adrianheine.de" + "web": "http://adrianheine.de" } ], - "module": "dist/acorn.mjs", - "name": "acorn", "repository": { "type": "git", - "url": "git+https://github.com/acornjs/acorn.git" + "url": "https://github.com/acornjs/acorn.git" }, + "license": "MIT", "scripts": { "prepare": "cd ..; npm run build:main && npm run build:bin" }, - "types": "dist/acorn.d.ts", - "version": "7.1.1" -} + "bin": {"acorn": "./bin/acorn"} + +,"_resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz" +,"_integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" +,"_from": "acorn@7.1.1" +} \ No newline at end of file diff --git a/node_modules/aggregate-error/package.json b/node_modules/aggregate-error/package.json index 623ad38bf..bea3cd781 100644 --- a/node_modules/aggregate-error/package.json +++ b/node_modules/aggregate-error/package.json @@ -1,78 +1,45 @@ { - "_args": [ - [ - "aggregate-error@3.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "aggregate-error@3.0.1", - "_id": "aggregate-error@3.0.1", - "_inBundle": false, - "_integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", - "_location": "/aggregate-error", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "aggregate-error@3.0.1", - "name": "aggregate-error", - "escapedName": "aggregate-error", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/del/p-map", - "/p-map" - ], - "_resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/aggregate-error/issues" - }, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "description": "Create an error from multiple errors", - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.7.1", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/aggregate-error#readme", - "keywords": [ - "aggregate", - "error", - "combine", - "multiple", - "many", - "collection", - "iterable", - "iterator" - ], - "license": "MIT", - "name": "aggregate-error", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/aggregate-error.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.1" -} + "name": "aggregate-error", + "version": "3.0.1", + "description": "Create an error from multiple errors", + "license": "MIT", + "repository": "sindresorhus/aggregate-error", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "aggregate", + "error", + "combine", + "multiple", + "many", + "collection", + "iterable", + "iterator" + ], + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.7.1", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz" +,"_integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" +,"_from": "aggregate-error@3.0.1" +} \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/emoji-regex/package.json b/node_modules/ansi-align/node_modules/emoji-regex/package.json index 2391b4dc1..0815d4b6b 100644 --- a/node_modules/ansi-align/node_modules/emoji-regex/package.json +++ b/node_modules/ansi-align/node_modules/emoji-regex/package.json @@ -1,60 +1,10 @@ { - "_args": [ - [ - "emoji-regex@7.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "emoji-regex@7.0.3", - "_id": "emoji-regex@7.0.3", - "_inBundle": false, - "_integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "_location": "/ansi-align/emoji-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "emoji-regex@7.0.3", - "name": "emoji-regex", - "escapedName": "emoji-regex", - "rawSpec": "7.0.3", - "saveSpec": null, - "fetchSpec": "7.0.3" - }, - "_requiredBy": [ - "/ansi-align/string-width" - ], - "_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "_spec": "7.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/emoji-regex/issues" - }, + "name": "emoji-regex", + "version": "7.0.3", "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", - "devDependencies": { - "@babel/cli": "^7.0.0", - "@babel/core": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.0.0", - "@babel/preset-env": "^7.0.0", - "mocha": "^5.2.0", - "regexgen": "^1.3.0", - "unicode-11.0.0": "^0.7.7", - "unicode-tr51": "^9.0.1" - }, - "files": [ - "LICENSE-MIT.txt", - "index.js", - "index.d.ts", - "text.js", - "es2015/index.js", - "es2015/text.js" - ], "homepage": "https://mths.be/emoji-regex", + "main": "index.js", + "types": "index.d.ts", "keywords": [ "unicode", "regex", @@ -66,17 +16,40 @@ "emoji" ], "license": "MIT", - "main": "index.js", - "name": "emoji-regex", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, "repository": { "type": "git", - "url": "git+https://github.com/mathiasbynens/emoji-regex.git" + "url": "https://github.com/mathiasbynens/emoji-regex.git" }, + "bugs": "https://github.com/mathiasbynens/emoji-regex/issues", + "files": [ + "LICENSE-MIT.txt", + "index.js", + "index.d.ts", + "text.js", + "es2015/index.js", + "es2015/text.js" + ], "scripts": { "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js", "test": "mocha", "test:watch": "npm run test -- --watch" }, - "types": "index.d.ts", - "version": "7.0.3" -} + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "mocha": "^5.2.0", + "regexgen": "^1.3.0", + "unicode-11.0.0": "^0.7.7", + "unicode-tr51": "^9.0.1" + } + +,"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" +,"_integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" +,"_from": "emoji-regex@7.0.3" +} \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json index ee98786f7..2a660ef08 100644 --- a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "is-fullwidth-code-point@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-fullwidth-code-point@2.0.0", - "_id": "is-fullwidth-code-point@2.0.0", - "_inBundle": false, - "_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "_location": "/ansi-align/is-fullwidth-code-point", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-fullwidth-code-point@2.0.0", - "name": "is-fullwidth-code-point", - "escapedName": "is-fullwidth-code-point", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/ansi-align/string-width" - ], - "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "is-fullwidth-code-point", + "version": "2.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "license": "MIT", + "repository": "sindresorhus/is-fullwidth-code-point", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" - }, - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", "keywords": [ "fullwidth", "full-width", @@ -65,17 +35,15 @@ "detect", "check" ], - "license": "MIT", - "name": "is-fullwidth-code-point", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.0.0", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" +,"_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" +,"_from": "is-fullwidth-code-point@2.0.0" +} \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/string-width/package.json b/node_modules/ansi-align/node_modules/string-width/package.json index 9a5ea2b71..04b93127c 100644 --- a/node_modules/ansi-align/node_modules/string-width/package.json +++ b/node_modules/ansi-align/node_modules/string-width/package.json @@ -1,92 +1,60 @@ { - "_args": [ - [ - "string-width@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "string-width@3.1.0", - "_id": "string-width@3.1.0", - "_inBundle": false, - "_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "_location": "/ansi-align/string-width", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "string-width@3.1.0", - "name": "string-width", - "escapedName": "string-width", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/ansi-align" - ], - "_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/string-width/issues" - }, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "description": "Get the visual width of a string - the number of columns required to display it", - "devDependencies": { - "ava": "^1.0.1", - "xo": "^0.23.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/string-width#readme", - "keywords": [ - "string", - "str", - "character", - "char", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "license": "MIT", - "name": "string-width", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/string-width.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.1.0" -} + "name": "string-width", + "version": "3.1.0", + "description": "Get the visual width of a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/string-width", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "string", + "str", + "character", + "char", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "devDependencies": { + "ava": "^1.0.1", + "xo": "^0.23.0" + } + +,"_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" +,"_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" +,"_from": "string-width@3.1.0" +} \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/strip-ansi/package.json b/node_modules/ansi-align/node_modules/strip-ansi/package.json index 89103e49b..b8c890988 100644 --- a/node_modules/ansi-align/node_modules/strip-ansi/package.json +++ b/node_modules/ansi-align/node_modules/strip-ansi/package.json @@ -1,90 +1,58 @@ { - "_args": [ - [ - "strip-ansi@5.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "strip-ansi@5.2.0", - "_id": "strip-ansi@5.2.0", - "_inBundle": false, - "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "_location": "/ansi-align/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@5.2.0", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "5.2.0", - "saveSpec": null, - "fetchSpec": "5.2.0" - }, - "_requiredBy": [ - "/ansi-align/string-width" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "_spec": "5.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "description": "Strip ANSI escape codes from a string", - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/strip-ansi#readme", - "keywords": [ - "strip", - "trim", - "remove", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "version": "5.2.0" -} + "name": "strip-ansi", + "version": "5.2.0", + "description": "Strip ANSI escape codes from a string", + "license": "MIT", + "repository": "chalk/strip-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" +,"_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" +,"_from": "strip-ansi@5.2.0" +} \ No newline at end of file diff --git a/node_modules/ansi-align/package.json b/node_modules/ansi-align/package.json index b35be3e08..c44a43b98 100644 --- a/node_modules/ansi-align/package.json +++ b/node_modules/ansi-align/package.json @@ -1,45 +1,37 @@ { - "_args": [ - [ - "ansi-align@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-align@3.0.0", - "_id": "ansi-align@3.0.0", - "_inBundle": false, - "_integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", - "_location": "/ansi-align", - "_phantomChildren": { - "ansi-regex": "4.1.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-align@3.0.0", - "name": "ansi-align", - "escapedName": "ansi-align", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" + "name": "ansi-align", + "version": "3.0.0", + "description": "align-text with ANSI support for CLIs", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "standard-version" }, - "_requiredBy": [ - "/boxen" + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "nexdrew" + "repository": { + "type": "git", + "url": "git+https://github.com/nexdrew/ansi-align.git" }, + "keywords": [ + "ansi", + "align", + "cli", + "center", + "pad" + ], + "author": "nexdrew", + "license": "ISC", "bugs": { "url": "https://github.com/nexdrew/ansi-align/issues" }, + "homepage": "https://github.com/nexdrew/ansi-align#readme", "dependencies": { "string-width": "^3.0.0" }, - "description": "align-text with ANSI support for CLIs", "devDependencies": { "ava": "^1.0.1", "chalk": "^2.4.1", @@ -47,30 +39,9 @@ "nyc": "^13.1.0", "standard": "^12.0.1", "standard-version": "^4.4.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/nexdrew/ansi-align#readme", - "keywords": [ - "ansi", - "align", - "cli", - "center", - "pad" - ], - "license": "ISC", - "main": "index.js", - "name": "ansi-align", - "repository": { - "type": "git", - "url": "git+https://github.com/nexdrew/ansi-align.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "pretest": "standard", - "release": "standard-version", - "test": "nyc ava" - }, - "version": "3.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz" +,"_integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" +,"_from": "ansi-align@3.0.0" +} \ No newline at end of file diff --git a/node_modules/ansi-regex/package.json b/node_modules/ansi-regex/package.json index a9fc4330f..3a7e5ef08 100644 --- a/node_modules/ansi-regex/package.json +++ b/node_modules/ansi-regex/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "ansi-regex@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-regex@4.1.0", - "_id": "ansi-regex@4.1.0", - "_inBundle": false, - "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "_location": "/ansi-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-regex@4.1.0", - "name": "ansi-regex", - "escapedName": "ansi-regex", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/ansi-align/strip-ansi" - ], - "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "description": "Regular expression for matching ANSI escape codes", - "devDependencies": { - "ava": "^0.25.0", - "xo": "^0.23.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/chalk/ansi-regex#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "text", - "regex", - "regexp", - "re", - "match", - "test", - "find", - "pattern" - ], - "license": "MIT", - "name": "ansi-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-regex.git" - }, - "scripts": { - "test": "xo && ava", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "4.1.0" -} + "name": "ansi-regex", + "version": "4.1.0", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "devDependencies": { + "ava": "^0.25.0", + "xo": "^0.23.0" + } + +,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" +,"_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" +,"_from": "ansi-regex@4.1.0" +} \ No newline at end of file diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json index 50da3cacd..8e2972cd4 100644 --- a/node_modules/ansi-styles/package.json +++ b/node_modules/ansi-styles/package.json @@ -1,92 +1,60 @@ { - "_args": [ - [ - "ansi-styles@3.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@3.2.1", - "_id": "ansi-styles@3.2.1", - "_inBundle": false, - "_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "_location": "/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@3.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "3.2.1", - "saveSpec": null, - "fetchSpec": "3.2.1" - }, - "_requiredBy": [ - "/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "_spec": "3.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "ava": { - "require": "babel-polyfill" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "color-convert": "^1.9.0" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "ava": "*", - "babel-polyfill": "^6.23.0", - "svg-term-cli": "^2.1.1", - "xo": "*" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava" - }, - "version": "3.2.1" -} + "name": "ansi-styles", + "version": "3.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "color-convert": "^1.9.0" + }, + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" + }, + "ava": { + "require": "babel-polyfill" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" +,"_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" +,"_from": "ansi-styles@3.2.1" +} \ No newline at end of file diff --git a/node_modules/argparse/package.json b/node_modules/argparse/package.json index 8a3557e90..6bb96cb71 100644 --- a/node_modules/argparse/package.json +++ b/node_modules/argparse/package.json @@ -1,58 +1,7 @@ { - "_args": [ - [ - "argparse@1.0.10", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "argparse@1.0.10", - "_id": "argparse@1.0.10", - "_inBundle": false, - "_integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "_location": "/argparse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "argparse@1.0.10", - "name": "argparse", - "escapedName": "argparse", - "rawSpec": "1.0.10", - "saveSpec": null, - "fetchSpec": "1.0.10" - }, - "_requiredBy": [ - "/js-yaml" - ], - "_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "_spec": "1.0.10", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/nodeca/argparse/issues" - }, - "contributors": [ - { - "name": "Eugene Shkuropat" - }, - { - "name": "Paul Jacobson" - } - ], - "dependencies": { - "sprintf-js": "~1.0.2" - }, + "name": "argparse", "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", - "devDependencies": { - "eslint": "^2.13.1", - "istanbul": "^0.4.5", - "mocha": "^3.1.0", - "ndoc": "^5.0.1" - }, - "files": [ - "index.js", - "lib/" - ], - "homepage": "https://github.com/nodeca/argparse#readme", + "version": "1.0.10", "keywords": [ "cli", "parser", @@ -60,14 +9,30 @@ "option", "args" ], + "contributors": [ + "Eugene Shkuropat", + "Paul Jacobson" + ], + "files": [ + "index.js", + "lib/" + ], "license": "MIT", - "name": "argparse", - "repository": { - "type": "git", - "url": "git+https://github.com/nodeca/argparse.git" - }, + "repository": "nodeca/argparse", "scripts": { "test": "make test" }, - "version": "1.0.10" -} + "dependencies": { + "sprintf-js": "~1.0.2" + }, + "devDependencies": { + "eslint": "^2.13.1", + "istanbul": "^0.4.5", + "mocha": "^3.1.0", + "ndoc": "^5.0.1" + } + +,"_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" +,"_integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" +,"_from": "argparse@1.0.10" +} \ No newline at end of file diff --git a/node_modules/array-find-index/package.json b/node_modules/array-find-index/package.json index a2b1eafdc..8fdab7d97 100644 --- a/node_modules/array-find-index/package.json +++ b/node_modules/array-find-index/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "array-find-index@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "array-find-index@1.0.2", - "_id": "array-find-index@1.0.2", - "_inBundle": false, - "_integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "_location": "/array-find-index", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "array-find-index@1.0.2", - "name": "array-find-index", - "escapedName": "array-find-index", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/currently-unhandled" - ], - "_resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "array-find-index", + "version": "1.0.2", + "description": "ES2015 `Array#findIndex()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/array-find-index", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/array-find-index/issues" - }, - "description": "ES2015 `Array#findIndex()` ponyfill", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/array-find-index#readme", "keywords": [ "es2015", "ponyfill", @@ -58,14 +28,12 @@ "findindex", "array" ], - "license": "MIT", - "name": "array-find-index", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/array-find-index.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.2" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz" +,"_integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" +,"_from": "array-find-index@1.0.2" +} \ No newline at end of file diff --git a/node_modules/array-union/package.json b/node_modules/array-union/package.json index 47c91f2c4..a7f5d17e0 100644 --- a/node_modules/array-union/package.json +++ b/node_modules/array-union/package.json @@ -1,75 +1,42 @@ { - "_args": [ - [ - "array-union@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "array-union@2.1.0", - "_id": "array-union@2.1.0", - "_inBundle": false, - "_integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "_location": "/array-union", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "array-union@2.1.0", - "name": "array-union", - "escapedName": "array-union", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/del/globby", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/array-union/issues" - }, - "description": "Create an array of unique values, in order, from the input arrays", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/array-union#readme", - "keywords": [ - "array", - "set", - "uniq", - "unique", - "duplicate", - "remove", - "union", - "combine", - "merge" - ], - "license": "MIT", - "name": "array-union", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/array-union.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "array-union", + "version": "2.1.0", + "description": "Create an array of unique values, in order, from the input arrays", + "license": "MIT", + "repository": "sindresorhus/array-union", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "array", + "set", + "uniq", + "unique", + "duplicate", + "remove", + "union", + "combine", + "merge" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" +,"_integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" +,"_from": "array-union@2.1.0" +} \ No newline at end of file diff --git a/node_modules/arrgv/package.json b/node_modules/arrgv/package.json index 7de924368..db0f2f523 100644 --- a/node_modules/arrgv/package.json +++ b/node_modules/arrgv/package.json @@ -1,52 +1,25 @@ { - "_args": [ - [ - "arrgv@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "arrgv@1.0.2", - "_id": "arrgv@1.0.2", - "_inBundle": false, - "_integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", - "_location": "/arrgv", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "arrgv@1.0.2", - "name": "arrgv", - "escapedName": "arrgv", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" + "name": "arrgv", + "version": "1.0.2", + "description": "Parsing string to array of args like node on bash do.", + "main": "index.js", + "author": "astur (http://kozlov.am/)", + "scripts": { + "test": "eslint . && nyc ava -v" }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "astur", - "email": "astur@yandex.ru", - "url": "http://kozlov.am/" + "repository": { + "type": "git", + "url": "https://github.com/astur/arrgv.git" }, - "bugs": { - "url": "https://github.com/astur/arrgv/issues" + "engines": { + "node": ">=8.0.0" }, - "description": "Parsing string to array of args like node on bash do.", "devDependencies": { "ava": "^0.25.0", "eslint": "^5.4.0", "eslint-config-astur": "^1.6.1", "nyc": "^12.0.2" }, - "engines": { - "node": ">=8.0.0" - }, - "homepage": "https://github.com/astur/arrgv#readme", "keywords": [ "arguments", "cli", @@ -56,15 +29,9 @@ "args", "argv" ], - "license": "MIT", - "main": "index.js", - "name": "arrgv", - "repository": { - "type": "git", - "url": "git+https://github.com/astur/arrgv.git" - }, - "scripts": { - "test": "eslint . && nyc ava -v" - }, - "version": "1.0.2" -} + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz" +,"_integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==" +,"_from": "arrgv@1.0.2" +} \ No newline at end of file diff --git a/node_modules/arrify/package.json b/node_modules/arrify/package.json index 30aff4cb8..5a1a8c0b5 100644 --- a/node_modules/arrify/package.json +++ b/node_modules/arrify/package.json @@ -1,71 +1,39 @@ { - "_args": [ - [ - "arrify@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "arrify@2.0.1", - "_id": "arrify@2.0.1", - "_inBundle": false, - "_integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", - "_location": "/arrify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "arrify@2.0.1", - "name": "arrify", - "escapedName": "arrify", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/arrify/issues" - }, - "description": "Convert a value to an array", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/arrify#readme", - "keywords": [ - "array", - "arrify", - "arrayify", - "convert", - "value", - "ensure" - ], - "license": "MIT", - "name": "arrify", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/arrify.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.1" -} + "name": "arrify", + "version": "2.0.1", + "description": "Convert a value to an array", + "license": "MIT", + "repository": "sindresorhus/arrify", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "array", + "arrify", + "arrayify", + "convert", + "value", + "ensure" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" +,"_integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" +,"_from": "arrify@2.0.1" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/acorn-walk/package.json b/node_modules/ava/node_modules/acorn-walk/package.json index a0de0d67c..555e40782 100644 --- a/node_modules/ava/node_modules/acorn-walk/package.json +++ b/node_modules/ava/node_modules/acorn-walk/package.json @@ -1,68 +1,38 @@ { - "_args": [ - [ - "acorn-walk@7.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "acorn-walk@7.1.1", - "_id": "acorn-walk@7.1.1", - "_inBundle": false, - "_integrity": "sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==", - "_location": "/ava/acorn-walk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "acorn-walk@7.1.1", - "name": "acorn-walk", - "escapedName": "acorn-walk", - "rawSpec": "7.1.1", - "saveSpec": null, - "fetchSpec": "7.1.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.1.1.tgz", - "_spec": "7.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/acornjs/acorn/issues" - }, + "name": "acorn-walk", "description": "ECMAScript (ESTree) AST walker", - "engines": { - "node": ">=0.4.0" - }, "homepage": "https://github.com/acornjs/acorn", - "license": "MIT", "main": "dist/walk.js", + "types": "dist/walk.d.ts", + "module": "dist/walk.mjs", + "version": "7.1.1", + "engines": {"node": ">=0.4.0"}, "maintainers": [ { "name": "Marijn Haverbeke", "email": "marijnh@gmail.com", - "url": "https://marijnhaverbeke.nl" + "web": "https://marijnhaverbeke.nl" }, { "name": "Ingvar Stepanyan", "email": "me@rreverser.com", - "url": "https://rreverser.com/" + "web": "https://rreverser.com/" }, { "name": "Adrian Heine", - "url": "http://adrianheine.de" + "web": "http://adrianheine.de" } ], - "module": "dist/walk.mjs", - "name": "acorn-walk", "repository": { "type": "git", - "url": "git+https://github.com/acornjs/acorn.git" + "url": "https://github.com/acornjs/acorn.git" }, "scripts": { "prepare": "cd ..; npm run build:walk" }, - "types": "dist/walk.d.ts", - "version": "7.1.1" -} + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.1.1.tgz" +,"_integrity": "sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==" +,"_from": "acorn-walk@7.1.1" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/ansi-styles/package.json b/node_modules/ava/node_modules/ansi-styles/package.json index a65916a36..f970a55ac 100644 --- a/node_modules/ava/node_modules/ansi-styles/package.json +++ b/node_modules/ava/node_modules/ansi-styles/package.json @@ -1,94 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/ava/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/ava", - "/ava/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/chalk/package.json b/node_modules/ava/node_modules/chalk/package.json index 192382986..1266d81f3 100644 --- a/node_modules/ava/node_modules/chalk/package.json +++ b/node_modules/ava/node_modules/chalk/package.json @@ -1,104 +1,72 @@ { - "_args": [ - [ - "chalk@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chalk@4.0.0", - "_id": "chalk@4.0.0", - "_inBundle": false, - "_integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", - "_location": "/ava/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chalk@4.0.0", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^4.0.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^15.0.0", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.28.2" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "source", - "index.d.ts" - ], - "funding": "https://github.com/chalk/chalk?sponsor=1", - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" - }, - "version": "4.0.0", - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off", - "@typescript-eslint/member-ordering": "off", - "no-redeclare": "off", - "unicorn/string-content": "off", - "unicorn/better-regex": "off" - } - } -} + "name": "chalk", + "version": "4.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "funding": "https://github.com/chalk/chalk?sponsor=1", + "main": "source", + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^4.0.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^15.0.0", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.28.2" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off", + "@typescript-eslint/member-ordering": "off", + "no-redeclare": "off", + "unicorn/string-content": "off", + "unicorn/better-regex": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz" +,"_integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==" +,"_from": "chalk@4.0.0" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/color-convert/package.json b/node_modules/ava/node_modules/color-convert/package.json index e97b21293..26354b46e 100644 --- a/node_modules/ava/node_modules/color-convert/package.json +++ b/node_modules/ava/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/ava/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/ava/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/color-name/package.json b/node_modules/ava/node_modules/color-name/package.json index 72b1ad495..14739f13f 100644 --- a/node_modules/ava/node_modules/color-name/package.json +++ b/node_modules/ava/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/ava/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/ava/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/escape-string-regexp/package.json b/node_modules/ava/node_modules/escape-string-regexp/package.json index 0e87af48a..99dd980e9 100644 --- a/node_modules/ava/node_modules/escape-string-regexp/package.json +++ b/node_modules/ava/node_modules/escape-string-regexp/package.json @@ -1,87 +1,47 @@ { - "_args": [ - [ - "escape-string-regexp@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "escape-string-regexp@2.0.0", - "_id": "escape-string-regexp@2.0.0", - "_inBundle": false, - "_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "_location": "/ava/escape-string-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "escape-string-regexp@2.0.0", - "name": "escape-string-regexp", - "escapedName": "escape-string-regexp", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/ava/stack-utils" - ], - "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", - "keywords": [ - "escape", - "regex", - "regexp", - "re", - "regular", - "expression", - "string", - "str", - "special", - "characters" - ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Boy Nicolai Appelman", - "email": "joshua@jbna.nl", - "url": "jbna.nl" - } - ], - "name": "escape-string-regexp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "escape-string-regexp", + "version": "2.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "re", + "regular", + "expression", + "string", + "str", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" +,"_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" +,"_from": "escape-string-regexp@2.0.0" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/has-flag/package.json b/node_modules/ava/node_modules/has-flag/package.json index 3ab4b51fc..5b10a2844 100644 --- a/node_modules/ava/node_modules/has-flag/package.json +++ b/node_modules/ava/node_modules/has-flag/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "has-flag@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-flag@4.0.0", - "_id": "has-flag@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "_location": "/ava/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-flag@4.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/ava/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" +,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" +,"_from": "has-flag@4.0.0" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/source-map-support/package.json b/node_modules/ava/node_modules/source-map-support/package.json index cfe0d3ea7..febada891 100644 --- a/node_modules/ava/node_modules/source-map-support/package.json +++ b/node_modules/ava/node_modules/source-map-support/package.json @@ -1,41 +1,18 @@ { - "_args": [ - [ - "source-map-support@0.5.19", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "source-map-support@0.5.19", - "_id": "source-map-support@0.5.19", - "_inBundle": false, - "_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "_location": "/ava/source-map-support", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-map-support@0.5.19", - "name": "source-map-support", - "escapedName": "source-map-support", - "rawSpec": "0.5.19", - "saveSpec": null, - "fetchSpec": "0.5.19" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "_spec": "0.5.19", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/evanw/node-source-map-support/issues" + "name": "source-map-support", + "description": "Fixes stack traces for files with source maps", + "version": "0.5.19", + "main": "./source-map-support.js", + "scripts": { + "build": "node build.js", + "serve-tests": "http-server -p 1336", + "prepublish": "npm run build", + "test": "mocha" }, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" }, - "description": "Fixes stack traces for files with source maps", "devDependencies": { "browserify": "^4.2.3", "coffeescript": "^1.12.7", @@ -43,19 +20,16 @@ "mocha": "^3.5.3", "webpack": "^1.15.0" }, - "homepage": "https://github.com/evanw/node-source-map-support#readme", - "license": "MIT", - "main": "./source-map-support.js", - "name": "source-map-support", "repository": { "type": "git", - "url": "git+https://github.com/evanw/node-source-map-support.git" + "url": "https://github.com/evanw/node-source-map-support" }, - "scripts": { - "build": "node build.js", - "prepublish": "npm run build", - "serve-tests": "http-server -p 1336", - "test": "mocha" + "bugs": { + "url": "https://github.com/evanw/node-source-map-support/issues" }, - "version": "0.5.19" -} + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" +,"_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" +,"_from": "source-map-support@0.5.19" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/stack-utils/package.json b/node_modules/ava/node_modules/stack-utils/package.json index 3674c4d75..1f6223fa4 100644 --- a/node_modules/ava/node_modules/stack-utils/package.json +++ b/node_modules/ava/node_modules/stack-utils/package.json @@ -1,45 +1,29 @@ { - "_args": [ - [ - "stack-utils@2.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "stack-utils@2.0.2", - "_id": "stack-utils@2.0.2", - "_inBundle": false, - "_integrity": "sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==", - "_location": "/ava/stack-utils", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "stack-utils@2.0.2", - "name": "stack-utils", - "escapedName": "stack-utils", - "rawSpec": "2.0.2", - "saveSpec": null, - "fetchSpec": "2.0.2" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.2.tgz", - "_spec": "2.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "stack-utils", + "version": "2.0.2", + "description": "Captures and cleans stack traces", + "license": "MIT", + "repository": "tapjs/stack-utils", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "bugs": { - "url": "https://github.com/tapjs/stack-utils/issues" + "engines": { + "node": ">=10" }, + "scripts": { + "test": "tap --no-esm --100", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "files": [ + "index.js" + ], "dependencies": { "escape-string-regexp": "^2.0.0" }, - "description": "Captures and cleans stack traces", "devDependencies": { "bluebird": "^3.7.2", "coveralls": "^3.0.9", @@ -47,25 +31,9 @@ "pify": "^4.0.1", "q": "^1.5.1", "tap": "=14.10.2-unbundled" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/tapjs/stack-utils#readme", - "license": "MIT", - "name": "stack-utils", - "repository": { - "type": "git", - "url": "git+https://github.com/tapjs/stack-utils.git" - }, - "scripts": { - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", - "preversion": "npm test", - "test": "tap --no-esm --100" - }, - "version": "2.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.2.tgz" +,"_integrity": "sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==" +,"_from": "stack-utils@2.0.2" +} \ No newline at end of file diff --git a/node_modules/ava/node_modules/supports-color/package.json b/node_modules/ava/node_modules/supports-color/package.json index 421e1ca02..f0982eb21 100644 --- a/node_modules/ava/node_modules/supports-color/package.json +++ b/node_modules/ava/node_modules/supports-color/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "supports-color@7.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supports-color@7.1.0", - "_id": "supports-color@7.1.0", - "_inBundle": false, - "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "_location": "/ava/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@7.1.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "7.1.0", - "saveSpec": null, - "fetchSpec": "7.1.0" - }, - "_requiredBy": [ - "/ava/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "_spec": "7.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^4.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "7.1.0" -} + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" +,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" +,"_from": "supports-color@7.1.0" +} \ No newline at end of file diff --git a/node_modules/ava/package.json b/node_modules/ava/package.json index a9d513e3b..79ccc8482 100644 --- a/node_modules/ava/package.json +++ b/node_modules/ava/package.json @@ -1,181 +1,144 @@ { - "_args": [ - [ - "ava@3.8.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ava@3.8.1", - "_id": "ava@3.8.1", - "_inBundle": false, - "_integrity": "sha512-OPWrTxcf1EbtAaGGFQPLbx4AaVqPrFMumKOKn2SzIRo+RTKb33lF2aoVnWqBeZaJ68uSc9R6jqIE7qkG6O33uQ==", - "_location": "/ava", - "_phantomChildren": { - "@types/color-name": "1.1.1", - "buffer-from": "1.1.1", - "source-map": "0.6.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "ava@3.8.1", - "name": "ava", - "escapedName": "ava", - "rawSpec": "3.8.1", - "saveSpec": null, - "fetchSpec": "3.8.1" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/ava/-/ava-3.8.1.tgz", - "_spec": "3.8.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "ava": "cli.js" - }, - "bugs": { - "url": "https://github.com/avajs/ava/issues" - }, - "dependencies": { - "@concordance/react": "^2.0.0", - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1", - "ansi-styles": "^4.2.1", - "arrgv": "^1.0.2", - "arrify": "^2.0.1", - "callsites": "^3.1.0", - "chalk": "^4.0.0", - "chokidar": "^3.4.0", - "chunkd": "^2.0.1", - "ci-info": "^2.0.0", - "ci-parallel-vars": "^1.0.0", - "clean-yaml-object": "^0.1.0", - "cli-cursor": "^3.1.0", - "cli-truncate": "^2.1.0", - "code-excerpt": "^2.1.1", - "common-path-prefix": "^3.0.0", - "concordance": "^4.0.0", - "convert-source-map": "^1.7.0", - "currently-unhandled": "^0.4.1", - "debug": "^4.1.1", - "del": "^5.1.0", - "emittery": "^0.6.0", - "equal-length": "^1.0.0", - "figures": "^3.2.0", - "globby": "^11.0.0", - "ignore-by-default": "^1.0.0", - "import-local": "^3.0.2", - "indent-string": "^4.0.0", - "is-error": "^2.2.2", - "is-plain-object": "^3.0.0", - "is-promise": "^3.0.0", - "lodash": "^4.17.15", - "matcher": "^3.0.0", - "md5-hex": "^3.0.1", - "mem": "^6.1.0", - "ms": "^2.1.2", - "ora": "^4.0.4", - "p-map": "^4.0.0", - "picomatch": "^2.2.2", - "pkg-conf": "^3.1.0", - "plur": "^4.0.0", - "pretty-ms": "^6.0.1", - "read-pkg": "^5.2.0", - "resolve-cwd": "^3.0.0", - "slash": "^3.0.0", - "source-map-support": "^0.5.19", - "stack-utils": "^2.0.1", - "strip-ansi": "^6.0.0", - "supertap": "^1.0.0", - "temp-dir": "^2.0.0", - "trim-off-newlines": "^1.0.1", - "update-notifier": "^4.1.0", - "write-file-atomic": "^3.0.3", - "yargs": "^15.3.1" - }, - "description": "Testing can be a drag. AVA helps you get it done.", - "devDependencies": { - "@ava/babel": "^1.0.1", - "@babel/plugin-proposal-do-expressions": "^7.8.3", - "@sinonjs/fake-timers": "^6.0.1", - "ansi-escapes": "^4.3.1", - "c8": "^7.1.0", - "delay": "^4.3.0", - "esm": "^3.2.25", - "execa": "^4.0.0", - "get-stream": "^5.1.0", - "p-event": "^4.1.0", - "proxyquire": "^2.1.3", - "react": "^16.13.1", - "react-test-renderer": "^16.13.1", - "replace-string": "^3.0.0", - "sinon": "^9.0.2", - "source-map-fixtures": "^2.1.0", - "tap": "^14.10.7", - "temp-write": "^4.0.0", - "tempy": "^0.5.0", - "touch": "^3.1.0", - "tsd": "^0.11.0", - "typescript": "^3.8.3", - "xo": "^0.30.0", - "zen-observable": "^0.8.15" - }, - "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" - }, - "files": [ - "lib", - "*.js", - "!*.config.js", - "index.d.ts" - ], - "homepage": "https://avajs.dev", - "keywords": [ - "🦄", - "test", - "runner", - "testing", - "ava", - "concurrent", - "parallel", - "fast", - "tdd", - "cli-app", - "cli", - "jest", - "mocha", - "tape", - "tap", - "qunit", - "jasmine", - "babel", - "assert", - "assertion", - "promise", - "promises", - "async", - "function", - "await", - "generator", - "generators", - "yield", - "observable", - "observables", - "unit", - "snapshot", - "expect", - "typescript" - ], - "license": "MIT", - "name": "ava", - "repository": { - "type": "git", - "url": "git+https://github.com/avajs/ava.git" - }, - "scripts": { - "test": "xo && tsd && c8 tap" - }, - "version": "3.8.1" -} + "name": "ava", + "version": "3.8.1", + "description": "Testing can be a drag. AVA helps you get it done.", + "license": "MIT", + "repository": "avajs/ava", + "homepage": "https://avajs.dev", + "bin": "cli.js", + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" + }, + "scripts": { + "test": "xo && tsd && c8 tap" + }, + "files": [ + "lib", + "*.js", + "!*.config.js", + "index.d.ts" + ], + "keywords": [ + "🦄", + "test", + "runner", + "testing", + "ava", + "concurrent", + "parallel", + "fast", + "tdd", + "cli-app", + "cli", + "jest", + "mocha", + "tape", + "tap", + "qunit", + "jasmine", + "babel", + "assert", + "assertion", + "promise", + "promises", + "async", + "function", + "await", + "generator", + "generators", + "yield", + "observable", + "observables", + "unit", + "snapshot", + "expect", + "typescript" + ], + "dependencies": { + "@concordance/react": "^2.0.0", + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "ansi-styles": "^4.2.1", + "arrgv": "^1.0.2", + "arrify": "^2.0.1", + "callsites": "^3.1.0", + "chalk": "^4.0.0", + "chokidar": "^3.4.0", + "chunkd": "^2.0.1", + "ci-info": "^2.0.0", + "ci-parallel-vars": "^1.0.0", + "clean-yaml-object": "^0.1.0", + "cli-cursor": "^3.1.0", + "cli-truncate": "^2.1.0", + "code-excerpt": "^2.1.1", + "common-path-prefix": "^3.0.0", + "concordance": "^4.0.0", + "convert-source-map": "^1.7.0", + "currently-unhandled": "^0.4.1", + "debug": "^4.1.1", + "del": "^5.1.0", + "emittery": "^0.6.0", + "equal-length": "^1.0.0", + "figures": "^3.2.0", + "globby": "^11.0.0", + "ignore-by-default": "^1.0.0", + "import-local": "^3.0.2", + "indent-string": "^4.0.0", + "is-error": "^2.2.2", + "is-plain-object": "^3.0.0", + "is-promise": "^3.0.0", + "lodash": "^4.17.15", + "matcher": "^3.0.0", + "md5-hex": "^3.0.1", + "mem": "^6.1.0", + "ms": "^2.1.2", + "ora": "^4.0.4", + "p-map": "^4.0.0", + "picomatch": "^2.2.2", + "pkg-conf": "^3.1.0", + "plur": "^4.0.0", + "pretty-ms": "^6.0.1", + "read-pkg": "^5.2.0", + "resolve-cwd": "^3.0.0", + "slash": "^3.0.0", + "source-map-support": "^0.5.19", + "stack-utils": "^2.0.1", + "strip-ansi": "^6.0.0", + "supertap": "^1.0.0", + "temp-dir": "^2.0.0", + "trim-off-newlines": "^1.0.1", + "update-notifier": "^4.1.0", + "write-file-atomic": "^3.0.3", + "yargs": "^15.3.1" + }, + "devDependencies": { + "@ava/babel": "^1.0.1", + "@babel/plugin-proposal-do-expressions": "^7.8.3", + "@sinonjs/fake-timers": "^6.0.1", + "ansi-escapes": "^4.3.1", + "c8": "^7.1.0", + "delay": "^4.3.0", + "esm": "^3.2.25", + "execa": "^4.0.0", + "get-stream": "^5.1.0", + "p-event": "^4.1.0", + "proxyquire": "^2.1.3", + "react": "^16.13.1", + "react-test-renderer": "^16.13.1", + "replace-string": "^3.0.0", + "sinon": "^9.0.2", + "source-map-fixtures": "^2.1.0", + "tap": "^14.10.7", + "temp-write": "^4.0.0", + "tempy": "^0.5.0", + "touch": "^3.1.0", + "tsd": "^0.11.0", + "typescript": "^3.8.3", + "xo": "^0.30.0", + "zen-observable": "^0.8.15" + } + +,"_resolved": "https://registry.npmjs.org/ava/-/ava-3.8.1.tgz" +,"_integrity": "sha512-OPWrTxcf1EbtAaGGFQPLbx4AaVqPrFMumKOKn2SzIRo+RTKb33lF2aoVnWqBeZaJ68uSc9R6jqIE7qkG6O33uQ==" +,"_from": "ava@3.8.1" +} \ No newline at end of file diff --git a/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json index 2ebc34e51..5fc21da86 100644 --- a/node_modules/balanced-match/package.json +++ b/node_modules/balanced-match/package.json @@ -1,48 +1,22 @@ { - "_args": [ - [ - "balanced-match@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "balanced-match@1.0.0", - "_id": "balanced-match@1.0.0", - "_inBundle": false, - "_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "_location": "/balanced-match", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "balanced-match@1.0.0", - "name": "balanced-match", - "escapedName": "balanced-match", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/brace-expansion" - ], - "_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "1.0.0", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" }, - "bugs": { - "url": "https://github.com/juliangruber/balanced-match/issues" + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "make test", + "bench": "make bench" }, "dependencies": {}, - "description": "Match balanced character pairs, like \"{\" and \"}\"", "devDependencies": { "matcha": "^0.7.0", "tape": "^4.6.0" }, - "homepage": "https://github.com/juliangruber/balanced-match", "keywords": [ "match", "regexp", @@ -50,17 +24,12 @@ "balanced", "parse" ], - "license": "MIT", - "main": "index.js", - "name": "balanced-match", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/balanced-match.git" - }, - "scripts": { - "bench": "make bench", - "test": "make test" + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" }, + "license": "MIT", "testling": { "files": "test/*.js", "browsers": [ @@ -76,6 +45,9 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" +,"_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" +,"_from": "balanced-match@1.0.0" +} \ No newline at end of file diff --git a/node_modules/before-after-hook/package.json b/node_modules/before-after-hook/package.json index 255d01315..e43a284df 100644 --- a/node_modules/before-after-hook/package.json +++ b/node_modules/before-after-hook/package.json @@ -1,40 +1,45 @@ { - "_args": [ - [ - "before-after-hook@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "before-after-hook", + "version": "2.1.0", + "description": "asynchronous before/error/after hooks for internal functionality", + "files": [ + "index.js", + "index.d.ts", + "lib" ], - "_from": "before-after-hook@2.1.0", - "_id": "before-after-hook@2.1.0", - "_inBundle": false, - "_integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==", - "_location": "/before-after-hook", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "before-after-hook@2.1.0", - "name": "before-after-hook", - "escapedName": "before-after-hook", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" + "types": "./index.d.ts", + "scripts": { + "prebuild": "rimraf dist && mkdirp dist", + "build": "browserify index.js --standalone=Hook > dist/before-after-hook.js", + "postbuild": "uglifyjs dist/before-after-hook.js -mc > dist/before-after-hook.min.js", + "pretest": "standard", + "test": "npm run -s test:node | tap-spec", + "posttest": "npm run validate:ts", + "test:node": "node test", + "test:watch": "gaze 'clear && node test | tap-min' 'test/**/*.js' 'index.js' 'lib/**/*.js'", + "test:coverage": "istanbul cover test", + "test:coverage:upload": "istanbul-coveralls", + "validate:ts": "tsc --strict --target es6 index.d.ts", + "postvalidate:ts": "tsc --noEmit --strict --target es6 test/typescript-validate.ts", + "presemantic-release": "npm run build", + "semantic-release": "semantic-release" }, - "_requiredBy": [ - "/@octokit/core" - ], - "_resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Gregor Martynus" + "repository": { + "type": "git", + "url": "https://github.com/gr2m/before-after-hook.git" }, + "keywords": [ + "hook", + "hooks", + "api" + ], + "author": "Gregor Martynus", + "license": "Apache-2.0", "bugs": { "url": "https://github.com/gr2m/before-after-hook/issues" }, + "homepage": "https://github.com/gr2m/before-after-hook#readme", "dependencies": {}, - "description": "asynchronous before/error/after hooks for internal functionality", "devDependencies": { "browserify": "^16.0.0", "gaze-cli": "^0.2.0", @@ -51,19 +56,6 @@ "typescript": "^3.5.3", "uglify-js": "^3.0.0" }, - "files": [ - "index.js", - "index.d.ts", - "lib" - ], - "homepage": "https://github.com/gr2m/before-after-hook#readme", - "keywords": [ - "hook", - "hooks", - "api" - ], - "license": "Apache-2.0", - "name": "before-after-hook", "release": { "publish": [ "@semantic-release/npm", @@ -74,27 +66,9 @@ ] } ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/gr2m/before-after-hook.git" - }, - "scripts": { - "build": "browserify index.js --standalone=Hook > dist/before-after-hook.js", - "postbuild": "uglifyjs dist/before-after-hook.js -mc > dist/before-after-hook.min.js", - "posttest": "npm run validate:ts", - "postvalidate:ts": "tsc --noEmit --strict --target es6 test/typescript-validate.ts", - "prebuild": "rimraf dist && mkdirp dist", - "presemantic-release": "npm run build", - "pretest": "standard", - "semantic-release": "semantic-release", - "test": "npm run -s test:node | tap-spec", - "test:coverage": "istanbul cover test", - "test:coverage:upload": "istanbul-coveralls", - "test:node": "node test", - "test:watch": "gaze 'clear && node test | tap-min' 'test/**/*.js' 'index.js' 'lib/**/*.js'", - "validate:ts": "tsc --strict --target es6 index.d.ts" - }, - "types": "./index.d.ts", - "version": "2.1.0" -} + } + +,"_resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz" +,"_integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==" +,"_from": "before-after-hook@2.1.0" +} \ No newline at end of file diff --git a/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json index 1f141aba2..29fed23f6 100644 --- a/node_modules/binary-extensions/package.json +++ b/node_modules/binary-extensions/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "binary-extensions@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "binary-extensions@2.0.0", - "_id": "binary-extensions@2.0.0", - "_inBundle": false, - "_integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", - "_location": "/binary-extensions", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "binary-extensions@2.0.0", - "name": "binary-extensions", - "escapedName": "binary-extensions", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/is-binary-path" - ], - "_resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/binary-extensions/issues" - }, - "description": "List of binary file extensions", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "binary-extensions.json", - "binary-extensions.json.d.ts" - ], - "homepage": "https://github.com/sindresorhus/binary-extensions#readme", - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "json", - "list", - "array" - ], - "license": "MIT", - "name": "binary-extensions", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/binary-extensions.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "binary-extensions", + "version": "2.0.0", + "description": "List of binary file extensions", + "license": "MIT", + "repository": "sindresorhus/binary-extensions", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "binary-extensions.json", + "binary-extensions.json.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "json", + "list", + "array" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz" +,"_integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==" +,"_from": "binary-extensions@2.0.0" +} \ No newline at end of file diff --git a/node_modules/blueimp-md5/package.json b/node_modules/blueimp-md5/package.json index 38d1733d8..4fcfc0813 100644 --- a/node_modules/blueimp-md5/package.json +++ b/node_modules/blueimp-md5/package.json @@ -1,47 +1,28 @@ { - "_args": [ - [ - "blueimp-md5@2.15.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "blueimp-md5@2.15.0", - "_id": "blueimp-md5@2.15.0", - "_inBundle": false, - "_integrity": "sha512-Zc6sowqlCWu3+V0bocZwdaPPXlRv14EHtYcQDCOghj9EdyKLMkAOODBh3HHAx5r7QRylDYCOaXa/b/edgBLDpA==", - "_location": "/blueimp-md5", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "blueimp-md5@2.15.0", - "name": "blueimp-md5", - "escapedName": "blueimp-md5", - "rawSpec": "2.15.0", - "saveSpec": null, - "fetchSpec": "2.15.0" - }, - "_requiredBy": [ - "/md5-hex" + "name": "blueimp-md5", + "version": "2.15.0", + "title": "JavaScript MD5", + "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.", + "keywords": [ + "javascript", + "md5" ], - "_resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.15.0.tgz", - "_spec": "2.15.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "homepage": "https://github.com/blueimp/JavaScript-MD5", "author": { "name": "Sebastian Tschan", "url": "https://blueimp.net" }, - "bugs": { - "url": "https://github.com/blueimp/JavaScript-MD5/issues" - }, "contributors": [ { "name": "Paul Johnston", "url": "http://pajhome.org.uk/crypt/md5" } ], - "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.", + "repository": { + "type": "git", + "url": "git://github.com/blueimp/JavaScript-MD5.git" + }, + "license": "MIT", "devDependencies": { "chai": "4", "eslint": "6", @@ -68,18 +49,6 @@ "js/*.min.js", "test/vendor" ], - "files": [ - "js/*.js", - "js/*.js.map" - ], - "homepage": "https://github.com/blueimp/JavaScript-MD5", - "keywords": [ - "javascript", - "md5" - ], - "license": "MIT", - "main": "js/md5.js", - "name": "blueimp-md5", "prettier": { "arrowParens": "avoid", "proseWrap": "always", @@ -87,19 +56,22 @@ "singleQuote": true, "trailingComma": "none" }, - "repository": { - "type": "git", - "url": "git://github.com/blueimp/JavaScript-MD5.git" - }, "scripts": { - "build": "cd js && uglifyjs md5.js -c -m -o md5.min.js --source-map url=md5.min.js.map", "lint": "eslint .", - "postversion": "git push --tags origin master master:gh-pages && npm publish", - "preversion": "npm test", - "test": "npm run lint && npm run unit", "unit": "mocha", - "version": "npm run build && git add -A js" + "test": "npm run lint && npm run unit", + "build": "cd js && uglifyjs md5.js -c -m -o md5.min.js --source-map url=md5.min.js.map", + "preversion": "npm test", + "version": "npm run build && git add -A js", + "postversion": "git push --tags origin master master:gh-pages && npm publish" }, - "title": "JavaScript MD5", - "version": "2.15.0" -} + "files": [ + "js/*.js", + "js/*.js.map" + ], + "main": "js/md5.js" + +,"_resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.15.0.tgz" +,"_integrity": "sha512-Zc6sowqlCWu3+V0bocZwdaPPXlRv14EHtYcQDCOghj9EdyKLMkAOODBh3HHAx5r7QRylDYCOaXa/b/edgBLDpA==" +,"_from": "blueimp-md5@2.15.0" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/ansi-styles/package.json b/node_modules/boxen/node_modules/ansi-styles/package.json index 56a2df4ab..f970a55ac 100644 --- a/node_modules/boxen/node_modules/ansi-styles/package.json +++ b/node_modules/boxen/node_modules/ansi-styles/package.json @@ -1,93 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/boxen/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/boxen/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/chalk/package.json b/node_modules/boxen/node_modules/chalk/package.json index 54e4f32e4..c75d30e94 100644 --- a/node_modules/boxen/node_modules/chalk/package.json +++ b/node_modules/boxen/node_modules/chalk/package.json @@ -1,99 +1,67 @@ { - "_args": [ - [ - "chalk@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chalk@3.0.0", - "_id": "chalk@3.0.0", - "_inBundle": false, - "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "_location": "/boxen/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chalk@3.0.0", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/boxen" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "source", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" - }, - "version": "3.0.0", - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } -} + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" +,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" +,"_from": "chalk@3.0.0" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/color-convert/package.json b/node_modules/boxen/node_modules/color-convert/package.json index a57c5fd66..26354b46e 100644 --- a/node_modules/boxen/node_modules/color-convert/package.json +++ b/node_modules/boxen/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/boxen/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/boxen/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/color-name/package.json b/node_modules/boxen/node_modules/color-name/package.json index 03a6f45f2..14739f13f 100644 --- a/node_modules/boxen/node_modules/color-name/package.json +++ b/node_modules/boxen/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/boxen/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/boxen/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/has-flag/package.json b/node_modules/boxen/node_modules/has-flag/package.json index a90aa7cbc..5b10a2844 100644 --- a/node_modules/boxen/node_modules/has-flag/package.json +++ b/node_modules/boxen/node_modules/has-flag/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "has-flag@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-flag@4.0.0", - "_id": "has-flag@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "_location": "/boxen/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-flag@4.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/boxen/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" +,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" +,"_from": "has-flag@4.0.0" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/supports-color/package.json b/node_modules/boxen/node_modules/supports-color/package.json index 4d0e14470..f0982eb21 100644 --- a/node_modules/boxen/node_modules/supports-color/package.json +++ b/node_modules/boxen/node_modules/supports-color/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "supports-color@7.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supports-color@7.1.0", - "_id": "supports-color@7.1.0", - "_inBundle": false, - "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "_location": "/boxen/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@7.1.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "7.1.0", - "saveSpec": null, - "fetchSpec": "7.1.0" - }, - "_requiredBy": [ - "/boxen/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "_spec": "7.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^4.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "7.1.0" -} + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" +,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" +,"_from": "supports-color@7.1.0" +} \ No newline at end of file diff --git a/node_modules/boxen/node_modules/type-fest/package.json b/node_modules/boxen/node_modules/type-fest/package.json index 6a9ce2409..e896022e8 100644 --- a/node_modules/boxen/node_modules/type-fest/package.json +++ b/node_modules/boxen/node_modules/type-fest/package.json @@ -1,87 +1,55 @@ { - "_args": [ - [ - "type-fest@0.8.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "type-fest@0.8.1", - "_id": "type-fest@0.8.1", - "_inBundle": false, - "_integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "_location": "/boxen/type-fest", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "type-fest@0.8.1", - "name": "type-fest", - "escapedName": "type-fest", - "rawSpec": "0.8.1", - "saveSpec": null, - "fetchSpec": "0.8.1" - }, - "_requiredBy": [ - "/boxen" - ], - "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "_spec": "0.8.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/type-fest/issues" - }, - "description": "A collection of essential TypeScript types", - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^2.2.0", - "@typescript-eslint/parser": "^2.2.0", - "eslint-config-xo-typescript": "^0.18.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.d.ts", - "source" - ], - "homepage": "https://github.com/sindresorhus/type-fest#readme", - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "license": "(MIT OR CC0-1.0)", - "name": "type-fest", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/type-fest.git" - }, - "scripts": { - "test": "xo && tsd" - }, - "version": "0.8.1", - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off", - "@typescript-eslint/indent": "off" - } - } -} + "name": "type-fest", + "version": "0.8.1", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^2.2.0", + "@typescript-eslint/parser": "^2.2.0", + "eslint-config-xo-typescript": "^0.18.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off", + "@typescript-eslint/indent": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" +,"_integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" +,"_from": "type-fest@0.8.1" +} \ No newline at end of file diff --git a/node_modules/boxen/package.json b/node_modules/boxen/package.json index 2dc70f5bd..003986fb7 100644 --- a/node_modules/boxen/package.json +++ b/node_modules/boxen/package.json @@ -1,89 +1,55 @@ { - "_args": [ - [ - "boxen@4.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "boxen@4.2.0", - "_id": "boxen@4.2.0", - "_inBundle": false, - "_integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "_location": "/boxen", - "_phantomChildren": { - "@types/color-name": "1.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "boxen@4.2.0", - "name": "boxen", - "escapedName": "boxen", - "rawSpec": "4.2.0", - "saveSpec": null, - "fetchSpec": "4.2.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "_spec": "4.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/boxen/issues" - }, - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "description": "Create boxes in the terminal", - "devDependencies": { - "ava": "^2.1.0", - "nyc": "^14.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/boxen#readme", - "keywords": [ - "cli", - "box", - "boxes", - "terminal", - "term", - "console", - "ascii", - "unicode", - "border", - "text" - ], - "license": "MIT", - "name": "boxen", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/boxen.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "version": "4.2.0" -} + "name": "boxen", + "version": "4.2.0", + "description": "Create boxes in the terminal", + "license": "MIT", + "repository": "sindresorhus/boxen", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "box", + "boxes", + "terminal", + "term", + "console", + "ascii", + "unicode", + "border", + "text" + ], + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "nyc": "^14.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz" +,"_integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" +,"_from": "boxen@4.2.0" +} \ No newline at end of file diff --git a/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json index 16086abc3..99f83cd7d 100644 --- a/node_modules/brace-expansion/package.json +++ b/node_modules/brace-expansion/package.json @@ -1,64 +1,33 @@ { - "_args": [ - [ - "brace-expansion@1.1.11", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "brace-expansion@1.1.11", - "_id": "brace-expansion@1.1.11", - "_inBundle": false, - "_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "_location": "/brace-expansion", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "brace-expansion@1.1.11", - "name": "brace-expansion", - "escapedName": "brace-expansion", - "rawSpec": "1.1.11", - "saveSpec": null, - "fetchSpec": "1.1.11" - }, - "_requiredBy": [ - "/minimatch" - ], - "_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "_spec": "1.1.11", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Julian Gruber", - "email": "mail@juliangruber.com", - "url": "http://juliangruber.com" + "name": "brace-expansion", + "description": "Brace expansion as known from sh/bash", + "version": "1.1.11", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/brace-expansion.git" }, - "bugs": { - "url": "https://github.com/juliangruber/brace-expansion/issues" + "homepage": "https://github.com/juliangruber/brace-expansion", + "main": "index.js", + "scripts": { + "test": "tape test/*.js", + "gentest": "bash test/generate.sh", + "bench": "matcha test/perf/bench.js" }, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" }, - "description": "Brace expansion as known from sh/bash", "devDependencies": { "matcha": "^0.7.0", "tape": "^4.6.0" }, - "homepage": "https://github.com/juliangruber/brace-expansion", "keywords": [], - "license": "MIT", - "main": "index.js", - "name": "brace-expansion", - "repository": { - "type": "git", - "url": "git://github.com/juliangruber/brace-expansion.git" - }, - "scripts": { - "bench": "matcha test/perf/bench.js", - "gentest": "bash test/generate.sh", - "test": "tape test/*.js" + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" }, + "license": "MIT", "testling": { "files": "test/*.js", "browsers": [ @@ -74,6 +43,9 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.1.11" -} + } + +,"_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" +,"_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" +,"_from": "brace-expansion@1.1.11" +} \ No newline at end of file diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json index a43034b37..008f6401a 100644 --- a/node_modules/braces/package.json +++ b/node_modules/braces/package.json @@ -1,81 +1,42 @@ { - "_args": [ - [ - "braces@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "braces@3.0.2", - "_id": "braces@3.0.2", - "_inBundle": false, - "_integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "_location": "/braces", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "braces@3.0.2", - "name": "braces", - "escapedName": "braces", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" - }, - "_requiredBy": [ - "/chokidar", - "/micromatch" + "name": "braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "version": "3.0.2", + "homepage": "https://github.com/micromatch/braces", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Elan Shanker (https://github.com/es128)", + "Eugene Sharygin (https://github.com/eush77)", + "hemanth.hm (http://h3manth.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Eugene Sharygin", - "url": "https://github.com/eush77" - }, - { - "name": "hemanth.hm", - "url": "http://h3manth.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js", + "lib" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha", + "benchmark": "node benchmark" + }, "dependencies": { "fill-range": "^7.0.1" }, - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", "devDependencies": { "ansi-colors": "^3.2.4", "bash-path": "^2.0.1", "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "lib" - ], - "homepage": "https://github.com/micromatch/braces", "keywords": [ "alpha", "alphabetical", @@ -100,17 +61,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "braces", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/braces.git" - }, - "scripts": { - "benchmark": "node benchmark", - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -123,6 +73,9 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" +,"_integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" +,"_from": "braces@3.0.2" +} \ No newline at end of file diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json index cd543504c..a01e0f19a 100644 --- a/node_modules/buffer-from/package.json +++ b/node_modules/buffer-from/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "buffer-from@1.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "buffer-from@1.1.1", - "_id": "buffer-from@1.1.1", - "_inBundle": false, - "_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "_location": "/buffer-from", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "buffer-from@1.1.1", - "name": "buffer-from", - "escapedName": "buffer-from", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/ava/source-map-support" + "name": "buffer-from", + "version": "1.1.1", + "license": "MIT", + "repository": "LinusU/buffer-from", + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "_spec": "1.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/LinusU/buffer-from/issues" + "scripts": { + "test": "standard && node test" }, - "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", "devDependencies": { "standard": "^7.1.2" }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/LinusU/buffer-from#readme", "keywords": [ "buffer", "buffer from" - ], - "license": "MIT", - "name": "buffer-from", - "repository": { - "type": "git", - "url": "git+https://github.com/LinusU/buffer-from.git" - }, - "scripts": { - "test": "standard && node test" - }, - "version": "1.1.1" -} + ] + +,"_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" +,"_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" +,"_from": "buffer-from@1.1.1" +} \ No newline at end of file diff --git a/node_modules/builtin-modules/package.json b/node_modules/builtin-modules/package.json index f10471cbc..830ed46e2 100644 --- a/node_modules/builtin-modules/package.json +++ b/node_modules/builtin-modules/package.json @@ -1,55 +1,26 @@ { - "_args": [ - [ - "builtin-modules@1.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "builtin-modules@1.1.1", - "_id": "builtin-modules@1.1.1", - "_inBundle": false, - "_integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "_location": "/builtin-modules", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "builtin-modules@1.1.1", - "name": "builtin-modules", - "escapedName": "builtin-modules", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "_spec": "1.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "builtin-modules", + "version": "1.1.1", + "description": "List of the Node.js builtin modules", + "license": "MIT", + "repository": "sindresorhus/builtin-modules", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/builtin-modules/issues" - }, - "description": "List of the Node.js builtin modules", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava", + "make": "node make.js" + }, "files": [ "index.js", "static.js", "builtin-modules.json" ], - "homepage": "https://github.com/sindresorhus/builtin-modules#readme", "keywords": [ "builtin", "built-in", @@ -62,15 +33,12 @@ "array", "names" ], - "license": "MIT", - "name": "builtin-modules", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/builtin-modules.git" - }, - "scripts": { - "make": "node make.js", - "test": "xo && ava" - }, - "version": "1.1.1" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" +,"_integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" +,"_from": "builtin-modules@1.1.1" +} \ No newline at end of file diff --git a/node_modules/cacheable-request/node_modules/get-stream/package.json b/node_modules/cacheable-request/node_modules/get-stream/package.json index 00685f525..646812e99 100644 --- a/node_modules/cacheable-request/node_modules/get-stream/package.json +++ b/node_modules/cacheable-request/node_modules/get-stream/package.json @@ -1,85 +1,53 @@ { - "_args": [ - [ - "get-stream@5.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "get-stream@5.1.0", - "_id": "get-stream@5.1.0", - "_inBundle": false, - "_integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", - "_location": "/cacheable-request/get-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "get-stream@5.1.0", - "name": "get-stream", - "escapedName": "get-stream", - "rawSpec": "5.1.0", - "saveSpec": null, - "fetchSpec": "5.1.0" - }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", - "_spec": "5.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/get-stream/issues" - }, - "dependencies": { - "pump": "^3.0.0" - }, - "description": "Get a stream as a string, buffer, or array", - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "into-stream": "^5.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "buffer-stream.js" - ], - "homepage": "https://github.com/sindresorhus/get-stream#readme", - "keywords": [ - "get", - "stream", - "promise", - "concat", - "string", - "text", - "buffer", - "read", - "data", - "consume", - "readable", - "readablestream", - "array", - "object" - ], - "license": "MIT", - "name": "get-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/get-stream.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.1.0" -} + "name": "get-stream", + "version": "5.1.0", + "description": "Get a stream as a string, buffer, or array", + "license": "MIT", + "repository": "sindresorhus/get-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "buffer-stream.js" + ], + "keywords": [ + "get", + "stream", + "promise", + "concat", + "string", + "text", + "buffer", + "read", + "data", + "consume", + "readable", + "readablestream", + "array", + "object" + ], + "dependencies": { + "pump": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "into-stream": "^5.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz" +,"_integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" +,"_from": "get-stream@5.1.0" +} \ No newline at end of file diff --git a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json index adf901030..abe6ca778 100644 --- a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json +++ b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "lowercase-keys@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lowercase-keys@2.0.0", - "_id": "lowercase-keys@2.0.0", - "_inBundle": false, - "_integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "_location": "/cacheable-request/lowercase-keys", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lowercase-keys@2.0.0", - "name": "lowercase-keys", - "escapedName": "lowercase-keys", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/lowercase-keys/issues" - }, - "description": "Lowercase the keys of an object", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/lowercase-keys#readme", - "keywords": [ - "object", - "assign", - "extend", - "properties", - "lowercase", - "lower-case", - "case", - "keys", - "key" - ], - "license": "MIT", - "name": "lowercase-keys", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/lowercase-keys.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "lowercase-keys", + "version": "2.0.0", + "description": "Lowercase the keys of an object", + "license": "MIT", + "repository": "sindresorhus/lowercase-keys", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "assign", + "extend", + "properties", + "lowercase", + "lower-case", + "case", + "keys", + "key" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz" +,"_integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" +,"_from": "lowercase-keys@2.0.0" +} \ No newline at end of file diff --git a/node_modules/cacheable-request/package.json b/node_modules/cacheable-request/package.json index aa7e57256..3b9865307 100644 --- a/node_modules/cacheable-request/package.json +++ b/node_modules/cacheable-request/package.json @@ -1,98 +1,60 @@ { - "_args": [ - [ - "cacheable-request@6.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cacheable-request@6.1.0", - "_id": "cacheable-request@6.1.0", - "_inBundle": false, - "_integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "_location": "/cacheable-request", - "_phantomChildren": { - "pump": "3.0.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "cacheable-request@6.1.0", - "name": "cacheable-request", - "escapedName": "cacheable-request", - "rawSpec": "6.1.0", - "saveSpec": null, - "fetchSpec": "6.1.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "_spec": "6.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Luke Childs", - "email": "lukechilds123@gmail.com", - "url": "http://lukechilds.co.uk" - }, - "bugs": { - "url": "https://github.com/lukechilds/cacheable-request/issues" - }, - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "description": "Wrap native HTTP requests with RFC compliant cache support", - "devDependencies": { - "@keyv/sqlite": "^2.0.0", - "ava": "^1.1.0", - "coveralls": "^3.0.0", - "create-test-server": "3.0.0", - "delay": "^4.0.0", - "eslint-config-xo-lukechilds": "^1.0.0", - "nyc": "^14.1.1", - "pify": "^4.0.0", - "sqlite3": "^4.0.2", - "this": "^1.0.2", - "xo": "^0.23.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "src" - ], - "homepage": "https://github.com/lukechilds/cacheable-request#readme", - "keywords": [ - "HTTP", - "HTTPS", - "cache", - "caching", - "layer", - "cacheable", - "RFC 7234", - "RFC", - "7234", - "compliant" - ], - "license": "MIT", - "main": "src/index.js", - "name": "cacheable-request", - "repository": { - "type": "git", - "url": "git+https://github.com/lukechilds/cacheable-request.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && nyc ava" - }, - "version": "6.1.0", - "xo": { - "extends": "xo-lukechilds" - } -} + "name": "cacheable-request", + "version": "6.1.0", + "description": "Wrap native HTTP requests with RFC compliant cache support", + "license": "MIT", + "repository": "lukechilds/cacheable-request", + "author": "Luke Childs (http://lukechilds.co.uk)", + "main": "src/index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "src" + ], + "keywords": [ + "HTTP", + "HTTPS", + "cache", + "caching", + "layer", + "cacheable", + "RFC 7234", + "RFC", + "7234", + "compliant" + ], + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "devDependencies": { + "@keyv/sqlite": "^2.0.0", + "ava": "^1.1.0", + "coveralls": "^3.0.0", + "create-test-server": "3.0.0", + "delay": "^4.0.0", + "eslint-config-xo-lukechilds": "^1.0.0", + "nyc": "^14.1.1", + "pify": "^4.0.0", + "sqlite3": "^4.0.2", + "this": "^1.0.2", + "xo": "^0.23.0" + }, + "xo": { + "extends": "xo-lukechilds" + } + +,"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz" +,"_integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" +,"_from": "cacheable-request@6.1.0" +} \ No newline at end of file diff --git a/node_modules/callsites/package.json b/node_modules/callsites/package.json index f3cb8e843..7e70e5686 100644 --- a/node_modules/callsites/package.json +++ b/node_modules/callsites/package.json @@ -1,75 +1,43 @@ { - "_args": [ - [ - "callsites@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "callsites@3.1.0", - "_id": "callsites@3.1.0", - "_inBundle": false, - "_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "_location": "/callsites", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "callsites@3.1.0", - "name": "callsites", - "escapedName": "callsites", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/callsites/issues" - }, - "description": "Get callsites from the V8 stack trace API", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/callsites#readme", - "keywords": [ - "stacktrace", - "v8", - "callsite", - "callsites", - "stack", - "trace", - "function", - "file", - "line", - "debug" - ], - "license": "MIT", - "name": "callsites", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/callsites.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.0" -} + "name": "callsites", + "version": "3.1.0", + "description": "Get callsites from the V8 stack trace API", + "license": "MIT", + "repository": "sindresorhus/callsites", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "stacktrace", + "v8", + "callsite", + "callsites", + "stack", + "trace", + "function", + "file", + "line", + "debug" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" +,"_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" +,"_from": "callsites@3.1.0" +} \ No newline at end of file diff --git a/node_modules/camelcase/package.json b/node_modules/camelcase/package.json index 8a8b5bcb0..07bc8fe9c 100644 --- a/node_modules/camelcase/package.json +++ b/node_modules/camelcase/package.json @@ -1,80 +1,47 @@ { - "_args": [ - [ - "camelcase@5.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "camelcase@5.3.1", - "_id": "camelcase@5.3.1", - "_inBundle": false, - "_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "_location": "/camelcase", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "camelcase@5.3.1", - "name": "camelcase", - "escapedName": "camelcase", - "rawSpec": "5.3.1", - "saveSpec": null, - "fetchSpec": "5.3.1" - }, - "_requiredBy": [ - "/boxen", - "/yargs-parser" - ], - "_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "_spec": "5.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/camelcase/issues" - }, - "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/camelcase#readme", - "keywords": [ - "camelcase", - "camel-case", - "camel", - "case", - "dash", - "hyphen", - "dot", - "underscore", - "separator", - "string", - "text", - "convert", - "pascalcase", - "pascal-case" - ], - "license": "MIT", - "name": "camelcase", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/camelcase.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.3.1" -} + "name": "camelcase", + "version": "5.3.1", + "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", + "license": "MIT", + "repository": "sindresorhus/camelcase", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "camelcase", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "dot", + "underscore", + "separator", + "string", + "text", + "convert", + "pascalcase", + "pascal-case" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" +,"_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" +,"_from": "camelcase@5.3.1" +} \ No newline at end of file diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json index aa96604ea..0b96e3717 100644 --- a/node_modules/chalk/package.json +++ b/node_modules/chalk/package.json @@ -1,109 +1,75 @@ { - "_args": [ - [ - "chalk@2.4.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chalk@2.4.2", - "_id": "chalk@2.4.2", - "_inBundle": false, - "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "_location": "/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chalk@2.4.2", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "2.4.2", - "saveSpec": null, - "fetchSpec": "2.4.2" - }, - "_requiredBy": [ - "/@babel/highlight", - "/log-symbols", - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "_spec": "2.4.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "*", - "coveralls": "^3.0.0", - "execa": "^0.9.0", - "flow-bin": "^0.68.0", - "import-fresh": "^2.0.0", - "matcha": "^0.7.0", - "nyc": "^11.0.2", - "resolve-from": "^4.0.0", - "typescript": "^2.5.3", - "xo": "*" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "templates.js", - "types/index.d.ts", - "index.js.flow" - ], - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" - }, - "types": "types/index.d.ts", - "version": "2.4.2", - "xo": { - "envs": [ - "node", - "mocha" - ], - "ignores": [ - "test/_flow.js" - ] - } -} + "name": "chalk", + "version": "2.4.2", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava", + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "index.js", + "templates.js", + "types/index.d.ts", + "index.js.flow" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, + "types": "types/index.d.ts", + "xo": { + "envs": [ + "node", + "mocha" + ], + "ignores": [ + "test/_flow.js" + ] + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" +,"_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" +,"_from": "chalk@2.4.2" +} \ No newline at end of file diff --git a/node_modules/charenc/package.json b/node_modules/charenc/package.json index 064782a71..df5475001 100644 --- a/node_modules/charenc/package.json +++ b/node_modules/charenc/package.json @@ -1,57 +1,28 @@ { - "_args": [ - [ - "charenc@0.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "charenc@0.0.2", - "_id": "charenc@0.0.2", - "_inBundle": false, - "_integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", - "_location": "/charenc", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "charenc@0.0.2", - "name": "charenc", - "escapedName": "charenc", - "rawSpec": "0.0.2", - "saveSpec": null, - "fetchSpec": "0.0.2" - }, - "_requiredBy": [ - "/md5" - ], - "_resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "_spec": "0.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": "http://vorb.de" - }, - "bugs": { - "url": "https://github.com/pvorb/node-charenc/issues" - }, - "description": "character encoding utilities", - "engines": { - "node": "*" - }, - "homepage": "https://github.com/pvorb/node-charenc#readme", - "license": "BSD-3-Clause", - "main": "charenc.js", + "author": "Paul Vorbach (http://vorb.de)", "name": "charenc", - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-charenc.git" - }, + "description": "character encoding utilities", "tags": [ "utf8", "binary", "byte", "string" ], - "version": "0.0.2" -} + "version": "0.0.2", + "license": "BSD-3-Clause", + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-charenc.git" + }, + "bugs": { + "url": "https://github.com/pvorb/node-charenc/issues" + }, + "main": "charenc.js", + "engines": { + "node": "*" + } + +,"_resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz" +,"_integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" +,"_from": "charenc@0.0.2" +} \ No newline at end of file diff --git a/node_modules/chokidar/node_modules/anymatch/package.json b/node_modules/chokidar/node_modules/anymatch/package.json index 3c627c62a..5b9f2c4fa 100644 --- a/node_modules/chokidar/node_modules/anymatch/package.json +++ b/node_modules/chokidar/node_modules/anymatch/package.json @@ -1,57 +1,25 @@ { - "_args": [ - [ - "anymatch@3.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "anymatch@3.1.1", - "_id": "anymatch@3.1.1", - "_inBundle": false, - "_integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "_location": "/chokidar/anymatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "anymatch@3.1.1", - "name": "anymatch", - "escapedName": "anymatch", - "rawSpec": "3.1.1", - "saveSpec": null, - "fetchSpec": "3.1.1" - }, - "_requiredBy": [ - "/chokidar" + "name": "anymatch", + "version": "3.1.1", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "files": [ + "index.js", + "index.d.ts" ], - "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "_spec": "3.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - "bugs": { - "url": "https://github.com/micromatch/anymatch/issues" - }, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, - "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", - "devDependencies": { - "mocha": "^6.1.3", - "nyc": "^14.0.0" - }, - "engines": { - "node": ">= 8" + "author": { + "name": "Elan Shanker", + "url": "https://github.com/es128" }, - "files": [ - "index.js", - "index.d.ts" - ], + "license": "ISC", "homepage": "https://github.com/micromatch/anymatch", + "repository": { + "type": "git", + "url": "https://github.com/micromatch/anymatch" + }, "keywords": [ "match", "any", @@ -66,15 +34,19 @@ "expression", "function" ], - "license": "ISC", - "name": "anymatch", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/anymatch.git" - }, "scripts": { - "mocha": "mocha", - "test": "nyc mocha" + "test": "nyc mocha", + "mocha": "mocha" + }, + "devDependencies": { + "mocha": "^6.1.3", + "nyc": "^14.0.0" }, - "version": "3.1.1" -} + "engines": { + "node": ">= 8" + } + +,"_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" +,"_integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==" +,"_from": "anymatch@3.1.1" +} \ No newline at end of file diff --git a/node_modules/chokidar/node_modules/normalize-path/package.json b/node_modules/chokidar/node_modules/normalize-path/package.json index b4d6cddba..73ab0c933 100644 --- a/node_modules/chokidar/node_modules/normalize-path/package.json +++ b/node_modules/chokidar/node_modules/normalize-path/package.json @@ -1,64 +1,33 @@ { - "_args": [ - [ - "normalize-path@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "normalize-path@3.0.0", - "_id": "normalize-path@3.0.0", - "_inBundle": false, - "_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "_location": "/chokidar/normalize-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "normalize-path@3.0.0", - "name": "normalize-path", - "escapedName": "normalize-path", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/chokidar", - "/chokidar/anymatch" + "name": "normalize-path", + "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", + "version": "3.0.0", + "homepage": "https://github.com/jonschlinkert/normalize-path", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Blaine Bublitz (https://twitter.com/BlaineBublitz)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/normalize-path", "bugs": { "url": "https://github.com/jonschlinkert/normalize-path/issues" }, - "contributors": [ - { - "name": "Blaine Bublitz", - "url": "https://twitter.com/BlaineBublitz" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], - "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "gulp-format-md": "^1.0.0", "minimist": "^1.2.0", "mocha": "^3.5.3" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/normalize-path", "keywords": [ "absolute", "backslash", @@ -80,16 +49,6 @@ "unix", "urix" ], - "license": "MIT", - "main": "index.js", - "name": "normalize-path", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/normalize-path.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -114,6 +73,9 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" +,"_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" +,"_from": "normalize-path@3.0.0" +} \ No newline at end of file diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json index b8456e1b3..0891bbdf2 100644 --- a/node_modules/chokidar/package.json +++ b/node_modules/chokidar/package.json @@ -1,62 +1,29 @@ { - "_args": [ - [ - "chokidar@3.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chokidar@3.4.0", - "_id": "chokidar@3.4.0", - "_inBundle": false, - "_integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==", - "_location": "/chokidar", - "_phantomChildren": { - "picomatch": "2.2.2" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "chokidar@3.4.0", - "name": "chokidar", - "escapedName": "chokidar", - "rawSpec": "3.4.0", - "saveSpec": null, - "fetchSpec": "3.4.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz", - "_spec": "3.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Paul Miller", - "url": "https://paulmillr.com" - }, - "bugs": { - "url": "https://github.com/paulmillr/chokidar/issues" - }, + "name": "chokidar", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "version": "3.4.0", + "homepage": "https://github.com/paulmillr/chokidar", + "author": "Paul Miller (https://paulmillr.com)", "contributors": [ - { - "name": "Paul Miller", - "url": "https://paulmillr.com" - }, - { - "name": "Elan Shanker" - } + "Paul Miller (https://paulmillr.com)", + "Elan Shanker" ], + "engines": { + "node": ">= 8.10.0" + }, + "main": "index.js", "dependencies": { "anymatch": "~3.1.1", "braces": "~3.0.2", - "fsevents": "~2.1.2", "glob-parent": "~5.1.0", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.4.0" }, - "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "optionalDependencies": { + "fsevents": "~2.1.2" + }, "devDependencies": { "@types/node": "^13", "chai": "^4.2", @@ -69,9 +36,35 @@ "sinon-chai": "^3.3.0", "upath": "^1.2.0" }, - "engines": { - "node": ">= 8.10.0" + "files": [ + "index.js", + "lib/*.js", + "types/index.d.ts" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/paulmillr/chokidar.git" }, + "bugs": { + "url": "https://github.com/paulmillr/chokidar/issues" + }, + "license": "MIT", + "scripts": { + "dtslint": "dtslint types", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --exit --timeout 60000", + "test": "npm run lint && npm run mocha" + }, + "keywords": [ + "fs", + "watch", + "watchFile", + "watcher", + "watching", + "file", + "fsevents" + ], + "types": "./types/index.d.ts", "eslintConfig": { "extends": "eslint:recommended", "parserOptions": { @@ -122,24 +115,6 @@ ] } }, - "files": [ - "index.js", - "lib/*.js", - "types/index.d.ts" - ], - "homepage": "https://github.com/paulmillr/chokidar", - "keywords": [ - "fs", - "watch", - "watchFile", - "watcher", - "watching", - "file", - "fsevents" - ], - "license": "MIT", - "main": "index.js", - "name": "chokidar", "nyc": { "include": [ "index.js", @@ -149,20 +124,9 @@ "html", "text" ] - }, - "optionalDependencies": { - "fsevents": "~2.1.2" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/paulmillr/chokidar.git" - }, - "scripts": { - "dtslint": "dtslint types", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --exit --timeout 60000", - "test": "npm run lint && npm run mocha" - }, - "types": "./types/index.d.ts", - "version": "3.4.0" -} + } + +,"_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz" +,"_integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==" +,"_from": "chokidar@3.4.0" +} \ No newline at end of file diff --git a/node_modules/chunkd/package.json b/node_modules/chunkd/package.json index 7a5cd437c..ea5843112 100644 --- a/node_modules/chunkd/package.json +++ b/node_modules/chunkd/package.json @@ -1,93 +1,58 @@ { - "_args": [ - [ - "chunkd@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chunkd@2.0.1", - "_id": "chunkd@2.0.1", - "_inBundle": false, - "_integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", - "_location": "/chunkd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chunkd@2.0.1", - "name": "chunkd", - "escapedName": "chunkd", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jamie Kyle", - "email": "me@thejameskyle.com" - }, - "ava": { - "compileEnhancements": false, - "extensions": [ - "ts" - ], - "require": [ - "ts-node/register" - ] - }, - "bugs": { - "url": "https://github.com/jamiebuilds/chunkd/issues" - }, - "description": "Get a chunk of an array based on the total number of chunks and current index", - "devDependencies": { - "ava": "^2.4.0", - "husky": "^3.1.0", - "lint-staged": "^9.4.3", - "prettier": "^1.19.1", - "ts-node": "^8.5.2", - "typescript": "^3.7.2" - }, - "files": [ - "dist" - ], - "homepage": "https://github.com/jamiebuilds/chunkd#readme", - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "keywords": [ - "util", - "chunk", - "index", - "total" - ], - "license": "MIT", - "lint-staged": { - "*": [ - "prettier --write", - "git add" - ] - }, - "main": "dist/chunkd.js", - "name": "chunkd", - "repository": { - "type": "git", - "url": "git+https://github.com/jamiebuilds/chunkd.git" - }, - "scripts": { - "build": "rm -rf dist && tsc", - "check:prettier": "prettier --check '**'", - "check:typescript": "tsc --noEmit", - "format": "prettier --write '**'", - "prepublishOnly": "npm run -s build", - "test": "ava" - }, - "version": "2.0.1" -} + "name": "chunkd", + "version": "2.0.1", + "description": "Get a chunk of an array based on the total number of chunks and current index", + "main": "dist/chunkd.js", + "repository": "jamiebuilds/chunkd", + "author": "Jamie Kyle ", + "license": "MIT", + "keywords": [ + "util", + "chunk", + "index", + "total" + ], + "files": [ + "dist" + ], + "scripts": { + "check:typescript": "tsc --noEmit", + "check:prettier": "prettier --check '**'", + "build": "rm -rf dist && tsc", + "format": "prettier --write '**'", + "test": "ava", + "prepublishOnly": "npm run -s build" + }, + "devDependencies": { + "ava": "^2.4.0", + "husky": "^3.1.0", + "lint-staged": "^9.4.3", + "prettier": "^1.19.1", + "ts-node": "^8.5.2", + "typescript": "^3.7.2" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + }, + "lint-staged": { + "*": [ + "prettier --write", + "git add" + ] + }, + "ava": { + "compileEnhancements": false, + "extensions": [ + "ts" + ], + "require": [ + "ts-node/register" + ] + } + +,"_resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz" +,"_integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==" +,"_from": "chunkd@2.0.1" +} \ No newline at end of file diff --git a/node_modules/ci-info/package.json b/node_modules/ci-info/package.json index 52b5376be..a62c59e19 100644 --- a/node_modules/ci-info/package.json +++ b/node_modules/ci-info/package.json @@ -1,54 +1,21 @@ { - "_args": [ - [ - "ci-info@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ci-info@2.0.0", - "_id": "ci-info@2.0.0", - "_inBundle": false, - "_integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "_location": "/ci-info", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ci-info@2.0.0", - "name": "ci-info", - "escapedName": "ci-info", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/ava", - "/is-ci" - ], - "_resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Thomas Watson Steen", - "email": "w@tson.dk", - "url": "https://twitter.com/wa7son" - }, - "bugs": { - "url": "https://github.com/watson/ci-info/issues" - }, - "coordinates": [ - 55.778231, - 12.593179 - ], - "dependencies": {}, + "name": "ci-info", + "version": "2.0.0", "description": "Get details about the current Continuous Integration environment", + "main": "index.js", + "dependencies": {}, "devDependencies": { "clear-require": "^1.0.1", "standard": "^12.0.1", "tape": "^4.9.1" }, - "homepage": "https://github.com/watson/ci-info", + "scripts": { + "test": "standard && node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/watson/ci-info.git" + }, "keywords": [ "ci", "continuous", @@ -56,15 +23,18 @@ "test", "detect" ], + "author": "Thomas Watson Steen (https://twitter.com/wa7son)", "license": "MIT", - "main": "index.js", - "name": "ci-info", - "repository": { - "type": "git", - "url": "git+https://github.com/watson/ci-info.git" - }, - "scripts": { - "test": "standard && node test.js" + "bugs": { + "url": "https://github.com/watson/ci-info/issues" }, - "version": "2.0.0" -} + "homepage": "https://github.com/watson/ci-info", + "coordinates": [ + 55.778231, + 12.593179 + ] + +,"_resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" +,"_integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" +,"_from": "ci-info@2.0.0" +} \ No newline at end of file diff --git a/node_modules/ci-parallel-vars/package.json b/node_modules/ci-parallel-vars/package.json index b3503f081..a865c584e 100644 --- a/node_modules/ci-parallel-vars/package.json +++ b/node_modules/ci-parallel-vars/package.json @@ -1,50 +1,11 @@ { - "_args": [ - [ - "ci-parallel-vars@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ci-parallel-vars@1.0.0", - "_id": "ci-parallel-vars@1.0.0", - "_inBundle": false, - "_integrity": "sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g==", - "_location": "/ci-parallel-vars", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ci-parallel-vars@1.0.0", - "name": "ci-parallel-vars", - "escapedName": "ci-parallel-vars", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jamie Kyle", - "email": "me@thejameskyle.com" - }, - "bugs": { - "url": "https://github.com/jamiebuilds/ci-parallel-vars/issues" - }, + "name": "ci-parallel-vars", + "version": "1.0.0", "description": "Get CI environment variables for parallelizing builds", - "devDependencies": { - "ava": "^0.25.0", - "flow-bin": "^0.73.0", - "spawndamnit": "^2.0.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jamiebuilds/ci-parallel-vars#readme", + "main": "index.js", + "repository": "https://github.com/jamiebuilds/ci-parallel-vars", + "author": "Jamie Kyle ", + "license": "MIT", "keywords": [ "ci", "env", @@ -61,15 +22,19 @@ "pipelines", "knapsack" ], - "license": "MIT", - "main": "index.js", - "name": "ci-parallel-vars", - "repository": { - "type": "git", - "url": "git+https://github.com/jamiebuilds/ci-parallel-vars.git" - }, + "files": [ + "index.js" + ], "scripts": { "test": "ava" }, - "version": "1.0.0" -} + "devDependencies": { + "ava": "^0.25.0", + "flow-bin": "^0.73.0", + "spawndamnit": "^2.0.0" + } + +,"_resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.0.tgz" +,"_integrity": "sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g==" +,"_from": "ci-parallel-vars@1.0.0" +} \ No newline at end of file diff --git a/node_modules/clean-stack/package.json b/node_modules/clean-stack/package.json index 47a21a6c0..c727708c6 100644 --- a/node_modules/clean-stack/package.json +++ b/node_modules/clean-stack/package.json @@ -1,75 +1,43 @@ { - "_args": [ - [ - "clean-stack@2.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "clean-stack@2.2.0", - "_id": "clean-stack@2.2.0", - "_inBundle": false, - "_integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "_location": "/clean-stack", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "clean-stack@2.2.0", - "name": "clean-stack", - "escapedName": "clean-stack", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/aggregate-error" - ], - "_resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "_spec": "2.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": { - "os": false - }, - "bugs": { - "url": "https://github.com/sindresorhus/clean-stack/issues" - }, - "description": "Clean up error stack traces", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/clean-stack#readme", - "keywords": [ - "clean", - "stack", - "trace", - "traces", - "error", - "err", - "electron" - ], - "license": "MIT", - "name": "clean-stack", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/clean-stack.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" -} + "name": "clean-stack", + "version": "2.2.0", + "description": "Clean up error stack traces", + "license": "MIT", + "repository": "sindresorhus/clean-stack", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "clean", + "stack", + "trace", + "traces", + "error", + "err", + "electron" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "browser": { + "os": false + } + +,"_resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" +,"_integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" +,"_from": "clean-stack@2.2.0" +} \ No newline at end of file diff --git a/node_modules/clean-yaml-object/package.json b/node_modules/clean-yaml-object/package.json index 9d6634303..6b362458f 100644 --- a/node_modules/clean-yaml-object/package.json +++ b/node_modules/clean-yaml-object/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "clean-yaml-object@0.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "clean-yaml-object@0.1.0", - "_id": "clean-yaml-object@0.1.0", - "_inBundle": false, - "_integrity": "sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=", - "_location": "/clean-yaml-object", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "clean-yaml-object@0.1.0", - "name": "clean-yaml-object", - "escapedName": "clean-yaml-object", - "rawSpec": "0.1.0", - "saveSpec": null, - "fetchSpec": "0.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz", - "_spec": "0.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "clean-yaml-object", + "version": "0.1.0", + "description": "Clean up an object prior to serialization", + "license": "MIT", + "repository": "tapjs/clean-yaml-object", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "bugs": { - "url": "https://github.com/tapjs/clean-yaml-object/issues" - }, - "dependencies": {}, - "description": "Clean up an object prior to serialization", - "devDependencies": { - "ava": "^0.10.0", - "coveralls": "^2.11.6", - "nyc": "^5.3.0", - "xo": "^0.12.1" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && nyc --cache --reporter=lcov --reporter=text ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/tapjs/clean-yaml-object#readme", "keywords": [ "serialize", "clean", @@ -60,14 +27,15 @@ "json", "error" ], - "license": "MIT", - "name": "clean-yaml-object", - "repository": { - "type": "git", - "url": "git+https://github.com/tapjs/clean-yaml-object.git" - }, - "scripts": { - "test": "xo && nyc --cache --reporter=lcov --reporter=text ava" - }, - "version": "0.1.0" -} + "dependencies": {}, + "devDependencies": { + "ava": "^0.10.0", + "coveralls": "^2.11.6", + "nyc": "^5.3.0", + "xo": "^0.12.1" + } + +,"_resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz" +,"_integrity": "sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=" +,"_from": "clean-yaml-object@0.1.0" +} \ No newline at end of file diff --git a/node_modules/cli-boxes/package.json b/node_modules/cli-boxes/package.json index 3723a532c..c4becb60f 100644 --- a/node_modules/cli-boxes/package.json +++ b/node_modules/cli-boxes/package.json @@ -1,77 +1,45 @@ { - "_args": [ - [ - "cli-boxes@2.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cli-boxes@2.2.0", - "_id": "cli-boxes@2.2.0", - "_inBundle": false, - "_integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==", - "_location": "/cli-boxes", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cli-boxes@2.2.0", - "name": "cli-boxes", - "escapedName": "cli-boxes", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/boxen" - ], - "_resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz", - "_spec": "2.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/cli-boxes/issues" - }, - "description": "Boxes for use in the terminal", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts", - "boxes.json" - ], - "homepage": "https://github.com/sindresorhus/cli-boxes#readme", - "keywords": [ - "cli", - "box", - "boxes", - "terminal", - "term", - "console", - "ascii", - "unicode", - "border", - "text", - "json" - ], - "license": "MIT", - "name": "cli-boxes", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/cli-boxes.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" -} + "name": "cli-boxes", + "version": "2.2.0", + "description": "Boxes for use in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-boxes", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "boxes.json" + ], + "keywords": [ + "cli", + "box", + "boxes", + "terminal", + "term", + "console", + "ascii", + "unicode", + "border", + "text", + "json" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz" +,"_integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==" +,"_from": "cli-boxes@2.2.0" +} \ No newline at end of file diff --git a/node_modules/cli-cursor/package.json b/node_modules/cli-cursor/package.json index 2f18ca637..c4e5e9014 100644 --- a/node_modules/cli-cursor/package.json +++ b/node_modules/cli-cursor/package.json @@ -1,83 +1,50 @@ { - "_args": [ - [ - "cli-cursor@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cli-cursor@3.1.0", - "_id": "cli-cursor@3.1.0", - "_inBundle": false, - "_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "_location": "/cli-cursor", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cli-cursor@3.1.0", - "name": "cli-cursor", - "escapedName": "cli-cursor", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/ava", - "/ora" - ], - "_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/cli-cursor/issues" - }, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "description": "Toggle the CLI cursor", - "devDependencies": { - "@types/node": "^12.0.7", - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/cli-cursor#readme", - "keywords": [ - "cli", - "cursor", - "ansi", - "toggle", - "display", - "show", - "hide", - "term", - "terminal", - "console", - "tty", - "shell", - "command-line" - ], - "license": "MIT", - "name": "cli-cursor", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/cli-cursor.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.0" -} + "name": "cli-cursor", + "version": "3.1.0", + "description": "Toggle the CLI cursor", + "license": "MIT", + "repository": "sindresorhus/cli-cursor", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "cursor", + "ansi", + "toggle", + "display", + "show", + "hide", + "term", + "terminal", + "console", + "tty", + "shell", + "command-line" + ], + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "devDependencies": { + "@types/node": "^12.0.7", + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" +,"_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" +,"_from": "cli-cursor@3.1.0" +} \ No newline at end of file diff --git a/node_modules/cli-spinners/package.json b/node_modules/cli-spinners/package.json index 92e3e4cd9..4fb3ec4b0 100644 --- a/node_modules/cli-spinners/package.json +++ b/node_modules/cli-spinners/package.json @@ -1,83 +1,51 @@ { - "_args": [ - [ - "cli-spinners@2.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cli-spinners@2.3.0", - "_id": "cli-spinners@2.3.0", - "_inBundle": false, - "_integrity": "sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w==", - "_location": "/cli-spinners", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cli-spinners@2.3.0", - "name": "cli-spinners", - "escapedName": "cli-spinners", - "rawSpec": "2.3.0", - "saveSpec": null, - "fetchSpec": "2.3.0" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz", - "_spec": "2.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/cli-spinners/issues" - }, - "description": "Spinners for use in the terminal", - "devDependencies": { - "ava": "^1.4.1", - "log-update": "^3.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts", - "spinners.json" - ], - "homepage": "https://github.com/sindresorhus/cli-spinners#readme", - "keywords": [ - "cli", - "spinner", - "spinners", - "terminal", - "term", - "console", - "ascii", - "unicode", - "loading", - "indicator", - "progress", - "busy", - "wait", - "idle", - "json" - ], - "license": "MIT", - "name": "cli-spinners", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/cli-spinners.git" - }, - "scripts": { - "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet", - "test": "xo && ava && tsd" - }, - "version": "2.3.0" -} + "name": "cli-spinners", + "version": "2.3.0", + "description": "Spinners for use in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-spinners", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd", + "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet" + }, + "files": [ + "index.js", + "index.d.ts", + "spinners.json" + ], + "keywords": [ + "cli", + "spinner", + "spinners", + "terminal", + "term", + "console", + "ascii", + "unicode", + "loading", + "indicator", + "progress", + "busy", + "wait", + "idle", + "json" + ], + "devDependencies": { + "ava": "^1.4.1", + "log-update": "^3.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz" +,"_integrity": "sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w==" +,"_from": "cli-spinners@2.3.0" +} \ No newline at end of file diff --git a/node_modules/cli-truncate/package.json b/node_modules/cli-truncate/package.json index 461f79810..e4933a52c 100644 --- a/node_modules/cli-truncate/package.json +++ b/node_modules/cli-truncate/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "cli-truncate@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cli-truncate@2.1.0", - "_id": "cli-truncate@2.1.0", - "_inBundle": false, - "_integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "_location": "/cli-truncate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cli-truncate@2.1.0", - "name": "cli-truncate", - "escapedName": "cli-truncate", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/cli-truncate/issues" - }, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "description": "Truncate a string to a specific width in the terminal", - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/cli-truncate#readme", - "keywords": [ - "truncate", - "ellipsis", - "text", - "limit", - "slice", - "cli", - "terminal", - "term", - "shell", - "width", - "ansi", - "string" - ], - "license": "MIT", - "name": "cli-truncate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/cli-truncate.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "cli-truncate", + "version": "2.1.0", + "description": "Truncate a string to a specific width in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-truncate", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "truncate", + "ellipsis", + "text", + "limit", + "slice", + "cli", + "terminal", + "term", + "shell", + "width", + "ansi", + "string" + ], + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz" +,"_integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" +,"_from": "cli-truncate@2.1.0" +} \ No newline at end of file diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json index 3fe4495c5..513f5ba00 100644 --- a/node_modules/cliui/package.json +++ b/node_modules/cliui/package.json @@ -1,39 +1,16 @@ { - "_args": [ - [ - "cliui@6.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "cliui@6.0.0", - "_id": "cliui@6.0.0", - "_inBundle": false, - "_integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "_location": "/cliui", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cliui@6.0.0", - "name": "cliui", - "escapedName": "cliui", - "rawSpec": "6.0.0", - "saveSpec": null, - "fetchSpec": "6.0.0" - }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "_spec": "6.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "name": "cliui", + "version": "6.0.0", + "description": "easily create complex multi-column command-line-interfaces", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "nyc mocha", + "coverage": "nyc --reporter=text-lcov mocha | coveralls" }, - "bugs": { - "url": "https://github.com/yargs/cliui/issues" + "repository": { + "type": "git", + "url": "http://github.com/yargs/cliui.git" }, "config": { "blanket": { @@ -47,12 +24,30 @@ "output-reporter": "spec" } }, + "standard": { + "ignore": [ + "**/example/**" + ], + "globals": [ + "it" + ] + }, + "keywords": [ + "cli", + "command-line", + "layout", + "design", + "console", + "wrap", + "table" + ], + "author": "Ben Coe ", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" }, - "description": "easily create complex multi-column command-line-interfaces", "devDependencies": { "chai": "^4.2.0", "chalk": "^3.0.0", @@ -61,41 +56,14 @@ "nyc": "^14.1.1", "standard": "^12.0.1" }, - "engine": { - "node": ">=8" - }, "files": [ "index.js" ], - "homepage": "https://github.com/yargs/cliui#readme", - "keywords": [ - "cli", - "command-line", - "layout", - "design", - "console", - "wrap", - "table" - ], - "license": "ISC", - "main": "index.js", - "name": "cliui", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/yargs/cliui.git" - }, - "scripts": { - "coverage": "nyc --reporter=text-lcov mocha | coveralls", - "pretest": "standard", - "test": "nyc mocha" - }, - "standard": { - "ignore": [ - "**/example/**" - ], - "globals": [ - "it" - ] - }, - "version": "6.0.0" -} + "engine": { + "node": ">=8" + } + +,"_resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" +,"_integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" +,"_from": "cliui@6.0.0" +} \ No newline at end of file diff --git a/node_modules/clone-response/package.json b/node_modules/clone-response/package.json index edb468f4f..e6bead037 100644 --- a/node_modules/clone-response/package.json +++ b/node_modules/clone-response/package.json @@ -1,45 +1,36 @@ { - "_args": [ - [ - "clone-response@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "clone-response@1.0.2", - "_id": "clone-response@1.0.2", - "_inBundle": false, - "_integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", - "_location": "/clone-response", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "clone-response@1.0.2", - "name": "clone-response", - "escapedName": "clone-response", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" + "name": "clone-response", + "version": "1.0.2", + "description": "Clone a Node.js HTTP response stream", + "main": "src/index.js", + "scripts": { + "test": "xo && nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls" }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Luke Childs", - "email": "lukechilds123@gmail.com", - "url": "http://lukechilds.co.uk" + "xo": { + "extends": "xo-lukechilds" }, + "repository": { + "type": "git", + "url": "git+https://github.com/lukechilds/clone-response.git" + }, + "keywords": [ + "clone", + "duplicate", + "copy", + "response", + "HTTP", + "stream" + ], + "author": "Luke Childs (http://lukechilds.co.uk)", + "license": "MIT", "bugs": { "url": "https://github.com/lukechilds/clone-response/issues" }, + "homepage": "https://github.com/lukechilds/clone-response", "dependencies": { "mimic-response": "^1.0.0" }, - "description": "Clone a Node.js HTTP response stream", "devDependencies": { "ava": "^0.22.0", "coveralls": "^2.13.1", @@ -49,29 +40,9 @@ "nyc": "^11.0.2", "pify": "^3.0.0", "xo": "^0.19.0" - }, - "homepage": "https://github.com/lukechilds/clone-response", - "keywords": [ - "clone", - "duplicate", - "copy", - "response", - "HTTP", - "stream" - ], - "license": "MIT", - "main": "src/index.js", - "name": "clone-response", - "repository": { - "type": "git", - "url": "git+https://github.com/lukechilds/clone-response.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && nyc ava" - }, - "version": "1.0.2", - "xo": { - "extends": "xo-lukechilds" } -} + +,"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" +,"_integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" +,"_from": "clone-response@1.0.2" +} \ No newline at end of file diff --git a/node_modules/clone/package.json b/node_modules/clone/package.json index e2b43da8a..075e6aeae 100644 --- a/node_modules/clone/package.json +++ b/node_modules/clone/package.json @@ -1,141 +1,55 @@ { - "_args": [ - [ - "clone@1.0.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "clone@1.0.4", - "_id": "clone@1.0.4", - "_inBundle": false, - "_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", - "_location": "/clone", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "clone@1.0.4", - "name": "clone", - "escapedName": "clone", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/defaults" + "name": "clone", + "description": "deep cloning of objects and arrays", + "tags": [ + "clone", + "object", + "array", + "function", + "date" ], - "_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "_spec": "1.0.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Paul Vorbach", - "email": "paul@vorba.ch", - "url": "http://paul.vorba.ch/" + "version": "1.0.4", + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-clone.git" }, "bugs": { "url": "https://github.com/pvorb/node-clone/issues" }, + "main": "clone.js", + "author": "Paul Vorbach (http://paul.vorba.ch/)", "contributors": [ - { - "name": "Blake Miner", - "email": "miner.blake@gmail.com", - "url": "http://www.blakeminer.com/" - }, - { - "name": "Tian You", - "email": "axqd001@gmail.com", - "url": "http://blog.axqd.net/" - }, - { - "name": "George Stagas", - "email": "gstagas@gmail.com", - "url": "http://stagas.com/" - }, - { - "name": "Tobiasz Cudnik", - "email": "tobiasz.cudnik@gmail.com", - "url": "https://github.com/TobiaszCudnik" - }, - { - "name": "Pavel Lang", - "email": "langpavel@phpskelet.org", - "url": "https://github.com/langpavel" - }, - { - "name": "Dan MacTough", - "url": "http://yabfog.com/" - }, - { - "name": "w1nk", - "url": "https://github.com/w1nk" - }, - { - "name": "Hugh Kennedy", - "url": "http://twitter.com/hughskennedy" - }, - { - "name": "Dustin Diaz", - "url": "http://dustindiaz.com" - }, - { - "name": "Ilya Shaisultanov", - "url": "https://github.com/diversario" - }, - { - "name": "Nathan MacInnes", - "email": "nathan@macinn.es", - "url": "http://macinn.es/" - }, - { - "name": "Benjamin E. Coe", - "email": "ben@npmjs.com", - "url": "https://twitter.com/benjamincoe" - }, - { - "name": "Nathan Zadoks", - "url": "https://github.com/nathan7" - }, - { - "name": "Róbert Oroszi", - "email": "robert+gh@oroszi.net", - "url": "https://github.com/oroce" - }, - { - "name": "Aurélio A. Heckert", - "url": "http://softwarelivre.org/aurium" - }, - { - "name": "Guy Ellis", - "url": "http://www.guyellisrocks.com/" - } + "Blake Miner (http://www.blakeminer.com/)", + "Tian You (http://blog.axqd.net/)", + "George Stagas (http://stagas.com/)", + "Tobiasz Cudnik (https://github.com/TobiaszCudnik)", + "Pavel Lang (https://github.com/langpavel)", + "Dan MacTough (http://yabfog.com/)", + "w1nk (https://github.com/w1nk)", + "Hugh Kennedy (http://twitter.com/hughskennedy)", + "Dustin Diaz (http://dustindiaz.com)", + "Ilya Shaisultanov (https://github.com/diversario)", + "Nathan MacInnes (http://macinn.es/)", + "Benjamin E. Coe (https://twitter.com/benjamincoe)", + "Nathan Zadoks (https://github.com/nathan7)", + "Róbert Oroszi (https://github.com/oroce)", + "Aurélio A. Heckert (http://softwarelivre.org/aurium)", + "Guy Ellis (http://www.guyellisrocks.com/)" ], + "license": "MIT", + "engines": { + "node": ">=0.8" + }, "dependencies": {}, - "description": "deep cloning of objects and arrays", "devDependencies": { "nodeunit": "~0.9.0" }, - "engines": { - "node": ">=0.8" - }, - "homepage": "https://github.com/pvorb/node-clone#readme", - "license": "MIT", - "main": "clone.js", - "name": "clone", "optionalDependencies": {}, - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-clone.git" - }, "scripts": { "test": "nodeunit test.js" - }, - "tags": [ - "clone", - "object", - "array", - "function", - "date" - ], - "version": "1.0.4" -} + } + +,"_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" +,"_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" +,"_from": "clone@1.0.4" +} \ No newline at end of file diff --git a/node_modules/code-excerpt/package.json b/node_modules/code-excerpt/package.json index e1bd6c5ee..9ec17bf8e 100644 --- a/node_modules/code-excerpt/package.json +++ b/node_modules/code-excerpt/package.json @@ -1,67 +1,35 @@ { - "_args": [ - [ - "code-excerpt@2.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "code-excerpt@2.1.1", - "_id": "code-excerpt@2.1.1", - "_inBundle": false, - "_integrity": "sha512-tJLhH3EpFm/1x7heIW0hemXJTUU5EWl2V0EIX558jp05Mt1U6DVryCgkp3l37cxqs+DNbNgxG43SkwJXpQ14Jw==", - "_location": "/code-excerpt", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "code-excerpt@2.1.1", - "name": "code-excerpt", - "escapedName": "code-excerpt", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "code-excerpt", + "version": "2.1.1", + "description": "Extract code excerpts", + "license": "MIT", + "repository": "vadimdemedes/code-excerpt", "author": { "name": "vdemedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, - "bugs": { - "url": "https://github.com/vadimdemedes/code-excerpt/issues" - }, - "dependencies": { - "convert-to-spaces": "^1.0.1" - }, - "description": "Extract code excerpts", - "devDependencies": { - "ava": "^0.16.0", - "xo": "^0.17.1" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/vadimdemedes/code-excerpt#readme", - "license": "MIT", - "name": "code-excerpt", - "repository": { - "type": "git", - "url": "git+https://github.com/vadimdemedes/code-excerpt.git" + "dependencies": { + "convert-to-spaces": "^1.0.1" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^0.16.0", + "xo": "^0.17.1" }, - "version": "2.1.1", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.1.tgz" +,"_integrity": "sha512-tJLhH3EpFm/1x7heIW0hemXJTUU5EWl2V0EIX558jp05Mt1U6DVryCgkp3l37cxqs+DNbNgxG43SkwJXpQ14Jw==" +,"_from": "code-excerpt@2.1.1" +} \ No newline at end of file diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json index d63a6ab92..faaa48587 100644 --- a/node_modules/color-convert/package.json +++ b/node_modules/color-convert/package.json @@ -1,55 +1,14 @@ { - "_args": [ - [ - "color-convert@1.9.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@1.9.3", - "_id": "color-convert@1.9.3", - "_inBundle": false, - "_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "_location": "/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@1.9.3", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "1.9.3", - "saveSpec": null, - "fetchSpec": "1.9.3" - }, - "_requiredBy": [ - "/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "_spec": "1.9.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "1.1.3" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "1.1.1", - "xo": "0.11.2" + "version": "1.9.3", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, - "files": [ - "index.js", - "conversions.js", - "css-keywords.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -64,22 +23,28 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "1.9.3", + "files": [ + "index.js", + "conversions.js", + "css-keywords.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "1.1.1", + "xo": "0.11.2" + }, + "dependencies": { + "color-name": "1.1.3" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" +,"_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" +,"_from": "color-convert@1.9.3" +} \ No newline at end of file diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json index 205650d2e..0afa4856d 100644 --- a/node_modules/color-name/package.json +++ b/node_modules/color-name/package.json @@ -1,57 +1,29 @@ { - "_args": [ - [ - "color-name@1.1.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.3", - "_id": "color-name@1.1.3", - "_inBundle": false, - "_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "_location": "/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.3", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.3", - "saveSpec": null, - "fetchSpec": "1.1.3" - }, - "_requiredBy": [ - "/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "_spec": "1.1.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" + "name": "color-name", + "version": "1.1.3", + "description": "A list of color names and its values", + "main": "index.js", + "scripts": { + "test": "node test.js" }, - "bugs": { - "url": "https://github.com/dfcreative/color-name/issues" + "repository": { + "type": "git", + "url": "git@github.com:dfcreative/color-name.git" }, - "description": "A list of color names and its values", - "homepage": "https://github.com/dfcreative/color-name", "keywords": [ "color-name", "color", "color-keyword", "keyword" ], + "author": "DY ", "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/dfcreative/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/dfcreative/color-name/issues" }, - "version": "1.1.3" -} + "homepage": "https://github.com/dfcreative/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" +,"_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" +,"_from": "color-name@1.1.3" +} \ No newline at end of file diff --git a/node_modules/commander/package.json b/node_modules/commander/package.json index 5bad4c964..4c42e53cc 100644 --- a/node_modules/commander/package.json +++ b/node_modules/commander/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "commander@2.20.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "commander@2.20.3", - "_id": "commander@2.20.3", - "_inBundle": false, - "_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "_location": "/commander", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "commander@2.20.3", - "name": "commander", - "escapedName": "commander", - "rawSpec": "2.20.3", - "saveSpec": null, - "fetchSpec": "2.20.3" - }, - "_requiredBy": [ - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "_spec": "2.20.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "bugs": { - "url": "https://github.com/tj/commander.js/issues" - }, - "dependencies": {}, + "name": "commander", + "version": "2.20.3", "description": "the complete solution for node.js command-line programs", - "devDependencies": { - "@types/node": "^12.7.8", - "eslint": "^6.4.0", - "should": "^13.2.3", - "sinon": "^7.5.0", - "standard": "^14.3.1", - "ts-node": "^8.4.1", - "typescript": "^3.6.3" - }, - "files": [ - "index.js", - "typings/index.d.ts" - ], - "homepage": "https://github.com/tj/commander.js#readme", "keywords": [ "commander", "command", "option", "parser" ], + "author": "TJ Holowaychuk ", "license": "MIT", - "main": "index", - "name": "commander", "repository": { "type": "git", - "url": "git+https://github.com/tj/commander.js.git" + "url": "https://github.com/tj/commander.js.git" }, "scripts": { "lint": "eslint index.js", "test": "node test/run.js && npm run test-typings", "test-typings": "tsc -p tsconfig.json" }, - "typings": "typings/index.d.ts", - "version": "2.20.3" -} + "main": "index", + "files": [ + "index.js", + "typings/index.d.ts" + ], + "dependencies": {}, + "devDependencies": { + "@types/node": "^12.7.8", + "eslint": "^6.4.0", + "should": "^13.2.3", + "sinon": "^7.5.0", + "standard": "^14.3.1", + "ts-node": "^8.4.1", + "typescript": "^3.6.3" + }, + "typings": "typings/index.d.ts" + +,"_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" +,"_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" +,"_from": "commander@2.20.3" +} \ No newline at end of file diff --git a/node_modules/common-path-prefix/package.json b/node_modules/common-path-prefix/package.json index 22fe0c323..81747f16b 100644 --- a/node_modules/common-path-prefix/package.json +++ b/node_modules/common-path-prefix/package.json @@ -1,50 +1,24 @@ { - "_args": [ - [ - "common-path-prefix@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "common-path-prefix", + "version": "3.0.0", + "description": "Computes the longest prefix string that is common to each path, excluding the base component", + "main": "index.js", + "files": [ + "index.d.ts", + "index.js" ], - "_development": true, - "_from": "common-path-prefix@3.0.0", - "_id": "common-path-prefix@3.0.0", - "_inBundle": false, - "_integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "_location": "/common-path-prefix", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "common-path-prefix@3.0.0", - "name": "common-path-prefix", - "escapedName": "common-path-prefix", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" + "scripts": { + "test": "standard && nyc ava" }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/common-path-prefix.git" }, + "author": "Mark Wubben (https://novemberborn.net/)", + "license": "ISC", "bugs": { "url": "https://github.com/novemberborn/common-path-prefix/issues" }, - "description": "Computes the longest prefix string that is common to each path, excluding the base component", - "devDependencies": { - "ava": "^2.3.0", - "nyc": "^14.1.1", - "standard": "^14.0.2" - }, - "files": [ - "index.d.ts", - "index.js" - ], "homepage": "https://github.com/novemberborn/common-path-prefix#readme", "keywords": [ "common", @@ -59,15 +33,13 @@ "common path start", "common root" ], - "license": "ISC", - "main": "index.js", - "name": "common-path-prefix", - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/common-path-prefix.git" - }, - "scripts": { - "test": "standard && nyc ava" - }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "^2.3.0", + "nyc": "^14.1.1", + "standard": "^14.0.2" + } + +,"_resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz" +,"_integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" +,"_from": "common-path-prefix@3.0.0" +} \ No newline at end of file diff --git a/node_modules/concat-map/package.json b/node_modules/concat-map/package.json index 70e0a4f09..03d173495 100644 --- a/node_modules/concat-map/package.json +++ b/node_modules/concat-map/package.json @@ -1,92 +1,47 @@ { - "_args": [ - [ - "concat-map@0.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "concat-map@0.0.1", - "_id": "concat-map@0.0.1", - "_inBundle": false, - "_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "_location": "/concat-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "concat-map@0.0.1", - "name": "concat-map", - "escapedName": "concat-map", - "rawSpec": "0.0.1", - "saveSpec": null, - "fetchSpec": "0.0.1" - }, - "_requiredBy": [ - "/brace-expansion" - ], - "_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "_spec": "0.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/substack/node-concat-map/issues" - }, - "description": "concatenative mapdashery", - "devDependencies": { - "tape": "~2.4.0" - }, - "directories": { - "example": "example", - "test": "test" - }, - "homepage": "https://github.com/substack/node-concat-map#readme", - "keywords": [ - "concat", - "concatMap", - "map", - "functional", - "higher-order" - ], - "license": "MIT", - "main": "index.js", - "name": "concat-map", - "repository": { - "type": "git", - "url": "git://github.com/substack/node-concat-map.git" - }, - "scripts": { - "test": "tape test/*.js" - }, - "testling": { - "files": "test/*.js", - "browsers": { - "ie": [ - 6, - 7, - 8, - 9 - ], - "ff": [ - 3.5, - 10, - 15 - ], - "chrome": [ - 10, - 22 - ], - "safari": [ - 5.1 - ], - "opera": [ - 12 - ] + "name" : "concat-map", + "description" : "concatenative mapdashery", + "version" : "0.0.1", + "repository" : { + "type" : "git", + "url" : "git://github.com/substack/node-concat-map.git" + }, + "main" : "index.js", + "keywords" : [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "directories" : { + "example" : "example", + "test" : "test" + }, + "scripts" : { + "test" : "tape test/*.js" + }, + "devDependencies" : { + "tape" : "~2.4.0" + }, + "license" : "MIT", + "author" : { + "name" : "James Halliday", + "email" : "mail@substack.net", + "url" : "http://substack.net" + }, + "testling" : { + "files" : "test/*.js", + "browsers" : { + "ie" : [ 6, 7, 8, 9 ], + "ff" : [ 3.5, 10, 15.0 ], + "chrome" : [ 10, 22 ], + "safari" : [ 5.1 ], + "opera" : [ 12 ] + } } - }, - "version": "0.0.1" -} + +,"_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" +,"_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" +,"_from": "concat-map@0.0.1" +} \ No newline at end of file diff --git a/node_modules/concordance/node_modules/md5-hex/package.json b/node_modules/concordance/node_modules/md5-hex/package.json index 366ffe5c6..9898d7cc7 100644 --- a/node_modules/concordance/node_modules/md5-hex/package.json +++ b/node_modules/concordance/node_modules/md5-hex/package.json @@ -1,58 +1,24 @@ { - "_args": [ - [ - "md5-hex@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "md5-hex@2.0.0", - "_id": "md5-hex@2.0.0", - "_inBundle": false, - "_integrity": "sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM=", - "_location": "/concordance/md5-hex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "md5-hex@2.0.0", - "name": "md5-hex", - "escapedName": "md5-hex", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "md5-hex", + "version": "2.0.0", + "description": "Create a MD5 hash with hex encoding", + "license": "MIT", + "repository": "sindresorhus/md5-hex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/sindresorhus/md5-hex/issues" - }, - "dependencies": { - "md5-o-matic": "^0.1.1" - }, - "description": "Create a MD5 hash with hex encoding", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js", "browser.js" ], - "homepage": "https://github.com/sindresorhus/md5-hex#readme", "keywords": [ "hash", "crypto", @@ -62,14 +28,16 @@ "browser", "browserify" ], - "license": "MIT", - "name": "md5-hex", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/md5-hex.git" + "dependencies": { + "md5-o-matic": "^0.1.1" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.0.0" -} + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz" +,"_integrity": "sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM=" +,"_from": "md5-hex@2.0.0" +} \ No newline at end of file diff --git a/node_modules/concordance/node_modules/semver/package.json b/node_modules/concordance/node_modules/semver/package.json index af07c865c..31e12dde0 100644 --- a/node_modules/concordance/node_modules/semver/package.json +++ b/node_modules/concordance/node_modules/semver/package.json @@ -1,60 +1,32 @@ { - "_from": "semver@^5.5.1", - "_id": "semver@5.7.1", - "_inBundle": false, - "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "_location": "/concordance/semver", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "semver@^5.5.1", - "name": "semver", - "escapedName": "semver", - "rawSpec": "^5.5.1", - "saveSpec": null, - "fetchSpec": "^5.5.1" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", - "_spec": "semver@^5.5.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/concordance", - "bin": { - "semver": "bin/semver" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "semver", + "version": "5.7.1", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "devDependencies": { "tap": "^13.0.0-rc.18" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "5.7.1" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" +,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" +,"_from": "semver@5.7.1" +} \ No newline at end of file diff --git a/node_modules/concordance/package.json b/node_modules/concordance/package.json index 8df836287..0810c2a4b 100644 --- a/node_modules/concordance/package.json +++ b/node_modules/concordance/package.json @@ -1,48 +1,29 @@ { - "_args": [ - [ - "concordance@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "concordance", + "version": "4.0.0", + "description": "Compare, format, diff and serialize any JavaScript value", + "main": "index.js", + "files": [ + "lib", + "index.js" ], - "_development": true, - "_from": "concordance@4.0.0", - "_id": "concordance@4.0.0", - "_inBundle": false, - "_integrity": "sha512-l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ==", - "_location": "/concordance", - "_phantomChildren": { - "md5-o-matic": "0.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "concordance@4.0.0", - "name": "concordance", - "escapedName": "concordance", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" + "engines": { + "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/concordance/-/concordance-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "as-i-preach": { - "allowDevDependencies": [ - "perf/**/*.js", - "test/**/*.js" - ] + "scripts": { + "lint": "as-i-preach", + "test": "npm run -s lint && nyc ava" }, - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" + "repository": { + "type": "git", + "url": "git+https://github.com/concordancejs/concordance.git" }, + "author": "Mark Wubben (https://novemberborn.net/)", + "license": "ISC", "bugs": { "url": "https://github.com/concordancejs/concordance/issues" }, + "homepage": "https://github.com/concordancejs/concordance#readme", "dependencies": { "date-time": "^2.1.0", "esutils": "^2.0.2", @@ -56,7 +37,6 @@ "semver": "^5.5.1", "well-known-symbols": "^2.0.0" }, - "description": "Compare, format, diff and serialize any JavaScript value", "devDependencies": { "@novemberborn/as-i-preach": "^10.0.1", "ava": "1.0.0-beta.8", @@ -67,17 +47,12 @@ "nyc": "^13.0.1", "pretty-format": "^23.6.0" }, - "engines": { - "node": ">=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0" + "as-i-preach": { + "allowDevDependencies": [ + "perf/**/*.js", + "test/**/*.js" + ] }, - "files": [ - "lib", - "index.js" - ], - "homepage": "https://github.com/concordancejs/concordance#readme", - "license": "ISC", - "main": "index.js", - "name": "concordance", "nyc": { "reporter": [ "html", @@ -85,14 +60,9 @@ "text" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/concordancejs/concordance.git" - }, - "scripts": { - "lint": "as-i-preach", - "test": "npm run -s lint && nyc ava" - }, - "standard-engine": "@novemberborn/as-i-preach", - "version": "4.0.0" -} + "standard-engine": "@novemberborn/as-i-preach" + +,"_resolved": "https://registry.npmjs.org/concordance/-/concordance-4.0.0.tgz" +,"_integrity": "sha512-l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ==" +,"_from": "concordance@4.0.0" +} \ No newline at end of file diff --git a/node_modules/configstore/package.json b/node_modules/configstore/package.json index 64739a64a..26ac1332f 100644 --- a/node_modules/configstore/package.json +++ b/node_modules/configstore/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "configstore@5.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "configstore@5.0.1", - "_id": "configstore@5.0.1", - "_inBundle": false, - "_integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "_location": "/configstore", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "configstore@5.0.1", - "name": "configstore", - "escapedName": "configstore", - "rawSpec": "5.0.1", - "saveSpec": null, - "fetchSpec": "5.0.1" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "_spec": "5.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/yeoman/configstore/issues" - }, - "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - }, - "description": "Easily load and save config without having to think about where and how", - "devDependencies": { - "ava": "^2.1.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/yeoman/configstore#readme", - "keywords": [ - "config", - "store", - "storage", - "configuration", - "settings", - "preferences", - "json", - "data", - "persist", - "persistent", - "save" - ], - "license": "BSD-2-Clause", - "name": "configstore", - "repository": { - "type": "git", - "url": "git+https://github.com/yeoman/configstore.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "5.0.1" -} + "name": "configstore", + "version": "5.0.1", + "description": "Easily load and save config without having to think about where and how", + "license": "BSD-2-Clause", + "repository": "yeoman/configstore", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "config", + "store", + "storage", + "configuration", + "settings", + "preferences", + "json", + "data", + "persist", + "persistent", + "save" + ], + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz" +,"_integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" +,"_from": "configstore@5.0.1" +} \ No newline at end of file diff --git a/node_modules/console-log-level/package.json b/node_modules/console-log-level/package.json index 311fa90ee..a511957fd 100644 --- a/node_modules/console-log-level/package.json +++ b/node_modules/console-log-level/package.json @@ -1,50 +1,15 @@ { - "_args": [ - [ - "console-log-level@1.4.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "console-log-level@1.4.1", - "_id": "console-log-level@1.4.1", - "_inBundle": false, - "_integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==", - "_location": "/console-log-level", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "console-log-level@1.4.1", - "name": "console-log-level", - "escapedName": "console-log-level", - "rawSpec": "1.4.1", - "saveSpec": null, - "fetchSpec": "1.4.1" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz", - "_spec": "1.4.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Thomas Watson Steen", - "email": "w@tson.dk" - }, - "bugs": { - "url": "https://github.com/watson/console-log-level/issues" - }, - "coordinates": [ - 55.778253, - 12.593208 - ], - "dependencies": {}, + "name": "console-log-level", + "version": "1.4.1", "description": "The most simple logger imaginable", - "devDependencies": { - "standard": "^12.0.1", - "tape": "^4.10.1" + "main": "index.js", + "scripts": { + "test": "standard && tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/watson/console-log-level.git" }, - "homepage": "https://github.com/watson/console-log-level", "keywords": [ "log", "logging", @@ -54,15 +19,23 @@ "stdout", "stderr" ], + "author": "Thomas Watson Steen ", "license": "MIT", - "main": "index.js", - "name": "console-log-level", - "repository": { - "type": "git", - "url": "git+https://github.com/watson/console-log-level.git" + "bugs": { + "url": "https://github.com/watson/console-log-level/issues" }, - "scripts": { - "test": "standard && tape test.js" + "homepage": "https://github.com/watson/console-log-level", + "dependencies": {}, + "devDependencies": { + "standard": "^12.0.1", + "tape": "^4.10.1" }, - "version": "1.4.1" -} + "coordinates": [ + 55.778253, + 12.593208 + ] + +,"_resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz" +,"_integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==" +,"_from": "console-log-level@1.4.1" +} \ No newline at end of file diff --git a/node_modules/convert-source-map/package.json b/node_modules/convert-source-map/package.json index 9093a2ec0..60f4a887c 100644 --- a/node_modules/convert-source-map/package.json +++ b/node_modules/convert-source-map/package.json @@ -1,59 +1,23 @@ { - "_args": [ - [ - "convert-source-map@1.7.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "convert-source-map@1.7.0", - "_id": "convert-source-map@1.7.0", - "_inBundle": false, - "_integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "_location": "/convert-source-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "convert-source-map@1.7.0", - "name": "convert-source-map", - "escapedName": "convert-source-map", - "rawSpec": "1.7.0", - "saveSpec": null, - "fetchSpec": "1.7.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "_spec": "1.7.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "http://thlorenz.com" - }, - "browser": { - "fs": false + "name": "convert-source-map", + "version": "1.7.0", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "main": "index.js", + "scripts": { + "test": "tap test/*.js --color" }, - "bugs": { - "url": "https://github.com/thlorenz/convert-source-map/issues" + "repository": { + "type": "git", + "url": "git://github.com/thlorenz/convert-source-map.git" }, + "homepage": "https://github.com/thlorenz/convert-source-map", "dependencies": { "safe-buffer": "~5.1.1" }, - "description": "Converts a source-map from/to different formats and allows adding/changing properties.", "devDependencies": { "inline-source-map": "~0.6.2", "tap": "~9.0.0" }, - "engine": { - "node": ">=0.6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/thlorenz/convert-source-map", "keywords": [ "convert", "sourcemap", @@ -62,15 +26,23 @@ "browser", "debug" ], - "license": "MIT", - "main": "index.js", - "name": "convert-source-map", - "repository": { - "type": "git", - "url": "git://github.com/thlorenz/convert-source-map.git" + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "http://thlorenz.com" }, - "scripts": { - "test": "tap test/*.js --color" + "license": "MIT", + "engine": { + "node": ">=0.6" }, - "version": "1.7.0" -} + "files": [ + "index.js" + ], + "browser": { + "fs": false + } + +,"_resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" +,"_integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" +,"_from": "convert-source-map@1.7.0" +} \ No newline at end of file diff --git a/node_modules/convert-to-spaces/package.json b/node_modules/convert-to-spaces/package.json index 9277f4bc0..59b226f37 100644 --- a/node_modules/convert-to-spaces/package.json +++ b/node_modules/convert-to-spaces/package.json @@ -1,64 +1,29 @@ { - "_args": [ - [ - "convert-to-spaces@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "convert-to-spaces@1.0.2", - "_id": "convert-to-spaces@1.0.2", - "_inBundle": false, - "_integrity": "sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=", - "_location": "/convert-to-spaces", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "convert-to-spaces@1.0.2", - "name": "convert-to-spaces", - "escapedName": "convert-to-spaces", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/code-excerpt" - ], - "_resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Vadim Demedes", - "email": "vdemedes@gmail.com" - }, - "bugs": { - "url": "https://github.com/vadimdemedes/convert-to-spaces/issues" - }, + "name": "convert-to-spaces", + "version": "1.0.2", "description": "Convert tabs to spaces in a string", - "devDependencies": { - "ava": "^0.18.2", - "xo": "^0.17.1" - }, - "engines": { - "node": ">= 4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/vadimdemedes/convert-to-spaces#readme", + "license": "MIT", + "repository": "vadimdemedes/convert-to-spaces", + "author": "Vadim Demedes ", "keywords": [ "tabs", "spaces" ], - "license": "MIT", - "name": "convert-to-spaces", - "repository": { - "type": "git", - "url": "git+https://github.com/vadimdemedes/convert-to-spaces.git" + "engines": { + "node": ">= 4" }, "scripts": { "test": "xo && ava" }, - "version": "1.0.2" -} + "files": [ + "index.js" + ], + "devDependencies": { + "ava": "^0.18.2", + "xo": "^0.17.1" + } + +,"_resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz" +,"_integrity": "sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=" +,"_from": "convert-to-spaces@1.0.2" +} \ No newline at end of file diff --git a/node_modules/cross-spawn/node_modules/semver/package.json b/node_modules/cross-spawn/node_modules/semver/package.json index 0dceee117..31e12dde0 100644 --- a/node_modules/cross-spawn/node_modules/semver/package.json +++ b/node_modules/cross-spawn/node_modules/semver/package.json @@ -1,60 +1,32 @@ { - "_from": "semver@^5.5.0", - "_id": "semver@5.7.1", - "_inBundle": false, - "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "_location": "/cross-spawn/semver", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "semver@^5.5.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "^5.5.0", - "saveSpec": null, - "fetchSpec": "^5.5.0" - }, - "_requiredBy": [ - "/cross-spawn" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", - "_spec": "semver@^5.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/cross-spawn", - "bin": { - "semver": "bin/semver" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "semver", + "version": "5.7.1", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "devDependencies": { "tap": "^13.0.0-rc.18" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "5.7.1" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" +,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" +,"_from": "semver@5.7.1" +} \ No newline at end of file diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json index 1624e2005..3d5bf3149 100644 --- a/node_modules/cross-spawn/package.json +++ b/node_modules/cross-spawn/package.json @@ -1,38 +1,46 @@ { - "_args": [ - [ - "cross-spawn@6.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "cross-spawn", + "version": "6.0.5", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "keywords": [ + "spawn", + "spawnSync", + "windows", + "cross-platform", + "path-ext", + "shebang", + "cmd", + "execute" ], - "_from": "cross-spawn@6.0.5", - "_id": "cross-spawn@6.0.5", - "_inBundle": false, - "_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "_location": "/cross-spawn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "cross-spawn@6.0.5", - "name": "cross-spawn", - "escapedName": "cross-spawn", - "rawSpec": "6.0.5", - "saveSpec": null, - "fetchSpec": "6.0.5" + "author": "André Cruz ", + "homepage": "https://github.com/moxystudio/node-cross-spawn", + "repository": { + "type": "git", + "url": "git@github.com:moxystudio/node-cross-spawn.git" }, - "_requiredBy": [ - "/execa" + "license": "MIT", + "main": "index.js", + "files": [ + "lib" ], - "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "_spec": "6.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "André Cruz", - "email": "andre@moxy.studio" + "scripts": { + "lint": "eslint .", + "test": "jest --env node --coverage", + "prerelease": "npm t && npm run lint", + "release": "standard-version", + "precommit": "lint-staged", + "commitmsg": "commitlint -e $GIT_PARAMS" + }, + "standard-version": { + "scripts": { + "posttag": "git push --follow-tags origin master && npm publish" + } }, - "bugs": { - "url": "https://github.com/moxystudio/node-cross-spawn/issues" + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ] }, "commitlint": { "extends": [ @@ -46,7 +54,6 @@ "shebang-command": "^1.2.0", "which": "^1.2.9" }, - "description": "Cross platform child_process#spawn and child_process#spawnSync", "devDependencies": { "@commitlint/cli": "^6.0.0", "@commitlint/config-conventional": "^6.0.2", @@ -65,46 +72,9 @@ }, "engines": { "node": ">=4.8" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/moxystudio/node-cross-spawn", - "keywords": [ - "spawn", - "spawnSync", - "windows", - "cross-platform", - "path-ext", - "shebang", - "cmd", - "execute" - ], - "license": "MIT", - "lint-staged": { - "*.js": [ - "eslint --fix", - "git add" - ] - }, - "main": "index.js", - "name": "cross-spawn", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/moxystudio/node-cross-spawn.git" - }, - "scripts": { - "commitmsg": "commitlint -e $GIT_PARAMS", - "lint": "eslint .", - "precommit": "lint-staged", - "prerelease": "npm t && npm run lint", - "release": "standard-version", - "test": "jest --env node --coverage" - }, - "standard-version": { - "scripts": { - "posttag": "git push --follow-tags origin master && npm publish" - } - }, - "version": "6.0.5" -} + } + +,"_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" +,"_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" +,"_from": "cross-spawn@6.0.5" +} \ No newline at end of file diff --git a/node_modules/crypt/package.json b/node_modules/crypt/package.json index 0c9daaf6e..7177e5102 100644 --- a/node_modules/crypt/package.json +++ b/node_modules/crypt/package.json @@ -1,55 +1,26 @@ { - "_args": [ - [ - "crypt@0.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "crypt@0.0.2", - "_id": "crypt@0.0.2", - "_inBundle": false, - "_integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "_location": "/crypt", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "crypt@0.0.2", - "name": "crypt", - "escapedName": "crypt", - "rawSpec": "0.0.2", - "saveSpec": null, - "fetchSpec": "0.0.2" - }, - "_requiredBy": [ - "/md5" + "author": "Paul Vorbach (http://vorb.de)", + "name": "crypt", + "description": "utilities for encryption and hashing", + "tags": [ + "hash", + "security" ], - "_resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "_spec": "0.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": "http://vorb.de" + "version": "0.0.2", + "license": "BSD-3-Clause", + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-crypt.git" }, "bugs": { "url": "https://github.com/pvorb/node-crypt/issues" }, - "description": "utilities for encryption and hashing", + "main": "crypt.js", "engines": { "node": "*" - }, - "homepage": "https://github.com/pvorb/node-crypt#readme", - "license": "BSD-3-Clause", - "main": "crypt.js", - "name": "crypt", - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-crypt.git" - }, - "tags": [ - "hash", - "security" - ], - "version": "0.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz" +,"_integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" +,"_from": "crypt@0.0.2" +} \ No newline at end of file diff --git a/node_modules/crypto-random-string/package.json b/node_modules/crypto-random-string/package.json index aebec572f..6089e2c65 100644 --- a/node_modules/crypto-random-string/package.json +++ b/node_modules/crypto-random-string/package.json @@ -1,76 +1,44 @@ { - "_args": [ - [ - "crypto-random-string@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "crypto-random-string@2.0.0", - "_id": "crypto-random-string@2.0.0", - "_inBundle": false, - "_integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "_location": "/crypto-random-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "crypto-random-string@2.0.0", - "name": "crypto-random-string", - "escapedName": "crypto-random-string", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/unique-string" - ], - "_resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/crypto-random-string/issues" - }, - "description": "Generate a cryptographically strong random string", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/crypto-random-string#readme", - "keywords": [ - "random", - "string", - "text", - "id", - "identifier", - "slug", - "salt", - "crypto", - "strong", - "secure", - "hex" - ], - "license": "MIT", - "name": "crypto-random-string", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/crypto-random-string.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "crypto-random-string", + "version": "2.0.0", + "description": "Generate a cryptographically strong random string", + "license": "MIT", + "repository": "sindresorhus/crypto-random-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "random", + "string", + "text", + "id", + "identifier", + "slug", + "salt", + "crypto", + "strong", + "secure", + "hex" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" +,"_integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" +,"_from": "crypto-random-string@2.0.0" +} \ No newline at end of file diff --git a/node_modules/currently-unhandled/package.json b/node_modules/currently-unhandled/package.json index 573e36048..dc5fb68f0 100644 --- a/node_modules/currently-unhandled/package.json +++ b/node_modules/currently-unhandled/package.json @@ -1,51 +1,34 @@ { - "_args": [ - [ - "currently-unhandled@0.4.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "currently-unhandled@0.4.1", - "_id": "currently-unhandled@0.4.1", - "_inBundle": false, - "_integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "_location": "/currently-unhandled", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "currently-unhandled@0.4.1", - "name": "currently-unhandled", - "escapedName": "currently-unhandled", - "rawSpec": "0.4.1", - "saveSpec": null, - "fetchSpec": "0.4.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "_spec": "0.4.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "currently-unhandled", + "version": "0.4.1", + "description": "Track the list of currently unhandled promise rejections.", + "license": "MIT", + "repository": "jamestalmage/currently-unhandled", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "ava": { - "files": "test.js" - }, - "browser": { - "./index.js": "./browser.js" + "engines": { + "node": ">=0.10.0" }, - "bugs": { - "url": "https://github.com/jamestalmage/currently-unhandled/issues" + "scripts": { + "test": "xo && nyc ava" }, + "files": [ + "index.js", + "core.js", + "browser.js" + ], + "keywords": [ + "unhandled", + "unhandledRejection", + "rejected", + "promises" + ], "dependencies": { "array-find-index": "^1.0.1" }, - "description": "Track the list of currently unhandled promise rejections.", "devDependencies": { "ava": "^0.15.1", "bluebird": "^3.4.0", @@ -63,37 +46,18 @@ "watchify": "^3.7.0", "xo": "^0.15.0" }, - "engines": { - "node": ">=0.10.0" + "browser": { + "./index.js": "./browser.js" + }, + "ava": { + "files": "test.js" }, - "files": [ - "index.js", - "core.js", - "browser.js" - ], - "homepage": "https://github.com/jamestalmage/currently-unhandled#readme", - "keywords": [ - "unhandled", - "unhandledRejection", - "rejected", - "promises" - ], - "license": "MIT", - "name": "currently-unhandled", "nyc": { "reporter": [ "lcov", "text" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/jamestalmage/currently-unhandled.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "0.4.1", "xo": { "ignores": [ "browser-bluebird-test.js" @@ -104,4 +68,8 @@ "node" ] } -} + +,"_resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz" +,"_integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" +,"_from": "currently-unhandled@0.4.1" +} \ No newline at end of file diff --git a/node_modules/date-time/package.json b/node_modules/date-time/package.json index 04218d6be..941e5ee31 100644 --- a/node_modules/date-time/package.json +++ b/node_modules/date-time/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "date-time@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "date-time@2.1.0", - "_id": "date-time@2.1.0", - "_inBundle": false, - "_integrity": "sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==", - "_location": "/date-time", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "date-time@2.1.0", - "name": "date-time", - "escapedName": "date-time", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "date-time", + "version": "2.1.0", + "description": "Pretty datetime: `2014-01-09 06:46:01`", + "license": "MIT", + "repository": "sindresorhus/date-time", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/date-time/issues" - }, - "dependencies": { - "time-zone": "^1.0.0" - }, - "description": "Pretty datetime: `2014-01-09 06:46:01`", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/date-time#readme", "keywords": [ "datetime", "date-time", @@ -62,14 +29,15 @@ "zone", "timestamp" ], - "license": "MIT", - "name": "date-time", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/date-time.git" - }, - "scripts": { - "test": "xo && ava" + "dependencies": { + "time-zone": "^1.0.0" }, - "version": "2.1.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz" +,"_integrity": "sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==" +,"_from": "date-time@2.1.0" +} \ No newline at end of file diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json index 03f0ee06e..c8c751660 100644 --- a/node_modules/debug/package.json +++ b/node_modules/debug/package.json @@ -1,56 +1,44 @@ { - "_args": [ - [ - "debug@4.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "debug@4.1.1", - "_id": "debug@4.1.1", - "_inBundle": false, - "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "_location": "/debug", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "debug@4.1.1", - "name": "debug", - "escapedName": "debug", - "rawSpec": "4.1.1", - "saveSpec": null, - "fetchSpec": "4.1.1" + "name": "debug", + "version": "4.1.1", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" }, - "_requiredBy": [ - "/ava" + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "_spec": "4.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" - }, + "files": [ + "src", + "dist/debug.js", + "LICENSE", + "README.md" + ], + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", + "scripts": { + "lint": "xo", + "test": "npm run test:node && npm run test:browser", + "test:node": "istanbul cover _mocha -- test.js", + "pretest:browser": "npm run build", + "test:browser": "karma start --single-run", + "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", + "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", + "build:test": "babel -d dist test.js", + "build": "npm run build:debug && npm run build:test", + "clean": "rimraf dist coverage", + "test:coverage": "cat ./coverage/lcov.info | coveralls" + }, "dependencies": { "ms": "^2.1.1" }, - "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", @@ -69,38 +57,11 @@ "rimraf": "^2.5.4", "xo": "^0.23.0" }, - "files": [ - "src", - "dist/debug.js", - "LICENSE", - "README.md" - ], - "homepage": "https://github.com/visionmedia/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", "main": "./src/index.js", - "name": "debug", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "scripts": { - "build": "npm run build:debug && npm run build:test", - "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", - "build:test": "babel -d dist test.js", - "clean": "rimraf dist coverage", - "lint": "xo", - "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", - "pretest:browser": "npm run build", - "test": "npm run test:node && npm run test:browser", - "test:browser": "karma start --single-run", - "test:coverage": "cat ./coverage/lcov.info | coveralls", - "test:node": "istanbul cover _mocha -- test.js" - }, - "unpkg": "./dist/debug.js", - "version": "4.1.1" -} + "browser": "./src/browser.js", + "unpkg": "./dist/debug.js" + +,"_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" +,"_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" +,"_from": "debug@4.1.1" +} \ No newline at end of file diff --git a/node_modules/decamelize/package.json b/node_modules/decamelize/package.json index 161489823..5e14849d9 100644 --- a/node_modules/decamelize/package.json +++ b/node_modules/decamelize/package.json @@ -1,54 +1,23 @@ { - "_args": [ - [ - "decamelize@1.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "decamelize@1.2.0", - "_id": "decamelize@1.2.0", - "_inBundle": false, - "_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "_location": "/decamelize", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "decamelize@1.2.0", - "name": "decamelize", - "escapedName": "decamelize", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/yargs", - "/yargs-parser" - ], - "_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "decamelize", + "version": "1.2.0", + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "license": "MIT", + "repository": "sindresorhus/decamelize", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/decamelize/issues" - }, - "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/decamelize#readme", "keywords": [ "decamelize", "decamelcase", @@ -62,14 +31,12 @@ "text", "convert" ], - "license": "MIT", - "name": "decamelize", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/decamelize.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.2.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" +,"_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" +,"_from": "decamelize@1.2.0" +} \ No newline at end of file diff --git a/node_modules/decompress-response/package.json b/node_modules/decompress-response/package.json index fc26c7d8d..85552180c 100644 --- a/node_modules/decompress-response/package.json +++ b/node_modules/decompress-response/package.json @@ -1,53 +1,30 @@ { - "_args": [ - [ - "decompress-response@3.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "decompress-response@3.3.0", - "_id": "decompress-response@3.3.0", - "_inBundle": false, - "_integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "_location": "/decompress-response", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "decompress-response@3.3.0", - "name": "decompress-response", - "escapedName": "decompress-response", - "rawSpec": "3.3.0", - "saveSpec": null, - "fetchSpec": "3.3.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "_spec": "3.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/sindresorhus/decompress-response/issues" - }, - "dependencies": { - "mimic-response": "^1.0.0" - }, + "name": "decompress-response", + "version": "3.3.0", "description": "Decompress a HTTP response if needed", - "devDependencies": { - "ava": "*", - "get-stream": "^3.0.0", - "pify": "^3.0.0", - "xo": "*" - }, + "license": "MIT", + "repository": "sindresorhus/decompress-response", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Vsevolod Strukchinsky", + "email": "floatdrop@gmail.com", + "url": "github.com/floatdrop" + } + ], "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/decompress-response#readme", "keywords": [ "decompress", "response", @@ -64,26 +41,17 @@ "stream", "compressed" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Vsevolod Strukchinsky", - "email": "floatdrop@gmail.com", - "url": "github.com/floatdrop" - } - ], - "name": "decompress-response", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/decompress-response.git" - }, - "scripts": { - "test": "xo && ava" + "dependencies": { + "mimic-response": "^1.0.0" }, - "version": "3.3.0" -} + "devDependencies": { + "ava": "*", + "get-stream": "^3.0.0", + "pify": "^3.0.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" +,"_integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" +,"_from": "decompress-response@3.3.0" +} \ No newline at end of file diff --git a/node_modules/deep-extend/package.json b/node_modules/deep-extend/package.json index 2b5c1ee35..3aca83419 100644 --- a/node_modules/deep-extend/package.json +++ b/node_modules/deep-extend/package.json @@ -1,40 +1,31 @@ { - "_args": [ - [ - "deep-extend@0.6.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "deep-extend", + "description": "Recursive object extending", + "license": "MIT", + "version": "0.6.0", + "homepage": "https://github.com/unclechu/node-deep-extend", + "keywords": [ + "deep-extend", + "extend", + "deep", + "recursive", + "xtend", + "clone", + "merge", + "json" ], - "_development": true, - "_from": "deep-extend@0.6.0", - "_id": "deep-extend@0.6.0", - "_inBundle": false, - "_integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "_location": "/deep-extend", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "deep-extend@0.6.0", - "name": "deep-extend", - "escapedName": "deep-extend", - "rawSpec": "0.6.0", - "saveSpec": null, - "fetchSpec": "0.6.0" - }, - "_requiredBy": [ - "/rc" + "licenses": [ + { + "type": "MIT", + "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" + } ], - "_resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "_spec": "0.6.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Viacheslav Lotsmanov", - "email": "lotsmanov89@gmail.com" - }, - "bugs": { - "url": "https://github.com/unclechu/node-deep-extend/issues" + "repository": { + "type": "git", + "url": "git://github.com/unclechu/node-deep-extend.git" }, + "author": "Viacheslav Lotsmanov ", + "bugs": "https://github.com/unclechu/node-deep-extend/issues", "contributors": [ { "name": "Romain Prieto", @@ -53,44 +44,23 @@ "url": "https://github.com/mwakerman" } ], - "description": "Recursive object extending", + "main": "lib/deep-extend.js", + "engines": { + "node": ">=4.0.0" + }, + "scripts": { + "test": "./node_modules/.bin/mocha" + }, "devDependencies": { "mocha": "5.2.0", "should": "13.2.1" }, - "engines": { - "node": ">=4.0.0" - }, "files": [ "index.js", "lib/" - ], - "homepage": "https://github.com/unclechu/node-deep-extend", - "keywords": [ - "deep-extend", - "extend", - "deep", - "recursive", - "xtend", - "clone", - "merge", - "json" - ], - "license": "MIT", - "licenses": [ - { - "type": "MIT", - "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" - } - ], - "main": "lib/deep-extend.js", - "name": "deep-extend", - "repository": { - "type": "git", - "url": "git://github.com/unclechu/node-deep-extend.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "0.6.0" -} + ] + +,"_resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" +,"_integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" +,"_from": "deep-extend@0.6.0" +} \ No newline at end of file diff --git a/node_modules/defaults/package.json b/node_modules/defaults/package.json index 7cb07115f..218c9d9f0 100644 --- a/node_modules/defaults/package.json +++ b/node_modules/defaults/package.json @@ -1,61 +1,30 @@ { - "_args": [ - [ - "defaults@1.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "defaults@1.0.3", - "_id": "defaults@1.0.3", - "_inBundle": false, - "_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", - "_location": "/defaults", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "defaults@1.0.3", - "name": "defaults", - "escapedName": "defaults", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/wcwidth" - ], - "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Elijah Insua", - "email": "tmpvar@gmail.com" - }, - "bugs": { - "url": "https://github.com/tmpvar/defaults/issues" - }, - "dependencies": { - "clone": "^1.0.2" - }, + "name": "defaults", + "version": "1.0.3", "description": "merge single level defaults over a config object", - "devDependencies": { - "tap": "^2.0.0" + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/defaults.git" }, - "homepage": "https://github.com/tmpvar/defaults#readme", "keywords": [ "config", "defaults" ], + "author": "Elijah Insua ", "license": "MIT", - "main": "index.js", - "name": "defaults", - "repository": { - "type": "git", - "url": "git://github.com/tmpvar/defaults.git" - }, - "scripts": { - "test": "node test.js" + "readmeFilename": "README.md", + "dependencies": { + "clone": "^1.0.2" }, - "version": "1.0.3" -} + "devDependencies": { + "tap": "^2.0.0" + } + +,"_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz" +,"_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" +,"_from": "defaults@1.0.3" +} \ No newline at end of file diff --git a/node_modules/defer-to-connect/package.json b/node_modules/defer-to-connect/package.json index 35164f30e..7a083be4c 100644 --- a/node_modules/defer-to-connect/package.json +++ b/node_modules/defer-to-connect/package.json @@ -1,53 +1,41 @@ { - "_args": [ - [ - "defer-to-connect@1.1.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "defer-to-connect", + "version": "1.1.3", + "description": "The safe way to handle the `connect` socket event", + "main": "dist", + "files": [ + "dist" ], - "_development": true, - "_from": "defer-to-connect@1.1.3", - "_id": "defer-to-connect@1.1.3", - "_inBundle": false, - "_integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "_location": "/defer-to-connect", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "defer-to-connect@1.1.3", - "name": "defer-to-connect", - "escapedName": "defer-to-connect", - "rawSpec": "1.1.3", - "saveSpec": null, - "fetchSpec": "1.1.3" + "scripts": { + "build": "del-cli dist && tsc", + "prepublishOnly": "npm run build", + "test": "xo && nyc ava", + "coveralls": "nyc report --reporter=text-lcov | coveralls" }, - "_requiredBy": [ - "/@szmarczak/http-timer" + "keywords": [ + "socket", + "connect", + "event" ], - "_resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "_spec": "1.1.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Szymon Marczak" + "author": "Szymon Marczak", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/szmarczak/defer-to-connect.git" }, - "ava": { - "babel": false, - "compileEnhancements": false, + "bugs": { + "url": "https://github.com/szmarczak/defer-to-connect/issues" + }, + "homepage": "https://github.com/szmarczak/defer-to-connect#readme", + "xo": { + "extends": "xo-typescript", "extensions": [ "ts" ], - "require": [ - "ts-node/register" - ], - "files": [ - "!dist/tests/test.d.ts" - ] - }, - "bugs": { - "url": "https://github.com/szmarczak/defer-to-connect/issues" + "rules": { + "ava/no-ignored-test-files": "off" + } }, - "description": "The safe way to handle the `connect` socket event", "devDependencies": { "@sindresorhus/tsconfig": "^0.5.0", "@types/node": "^12.12.4", @@ -64,42 +52,27 @@ "typescript": "^3.6.4", "xo": "^0.25.3" }, - "files": [ - "dist" - ], - "homepage": "https://github.com/szmarczak/defer-to-connect#readme", - "keywords": [ - "socket", - "connect", - "event" - ], - "license": "MIT", - "main": "dist", - "name": "defer-to-connect", "nyc": { "extension": [ ".ts" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/szmarczak/defer-to-connect.git" - }, - "scripts": { - "build": "del-cli dist && tsc", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "prepublishOnly": "npm run build", - "test": "xo && nyc ava" - }, - "types": "dist", - "version": "1.1.3", - "xo": { - "extends": "xo-typescript", + "ava": { + "babel": false, + "compileEnhancements": false, "extensions": [ "ts" ], - "rules": { - "ava/no-ignored-test-files": "off" - } - } -} + "require": [ + "ts-node/register" + ], + "files": [ + "!dist/tests/test.d.ts" + ] + }, + "types": "dist" + +,"_resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz" +,"_integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" +,"_from": "defer-to-connect@1.1.3" +} \ No newline at end of file diff --git a/node_modules/del/node_modules/globby/package.json b/node_modules/del/node_modules/globby/package.json index 104b34fe2..16a8110db 100644 --- a/node_modules/del/node_modules/globby/package.json +++ b/node_modules/del/node_modules/globby/package.json @@ -1,119 +1,87 @@ { - "_args": [ - [ - "globby@10.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "globby@10.0.2", - "_id": "globby@10.0.2", - "_inBundle": false, - "_integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", - "_location": "/del/globby", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "globby@10.0.2", - "name": "globby", - "escapedName": "globby", - "rawSpec": "10.0.2", - "saveSpec": null, - "fetchSpec": "10.0.2" - }, - "_requiredBy": [ - "/del" - ], - "_resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "_spec": "10.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "gitignore.js", - "index.d.ts", - "stream-utils.js" - ], - "homepage": "https://github.com/sindresorhus/globby#readme", - "keywords": [ - "all", - "array", - "directories", - "expand", - "files", - "filesystem", - "filter", - "find", - "fnmatch", - "folders", - "fs", - "glob", - "globbing", - "globs", - "gulpfriendly", - "match", - "matcher", - "minimatch", - "multi", - "multiple", - "paths", - "pattern", - "patterns", - "traverse", - "util", - "utility", - "wildcard", - "wildcards", - "promise", - "gitignore", - "git" - ], - "license": "MIT", - "name": "globby", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, - "version": "10.0.2", - "xo": { - "ignores": [ - "fixtures" - ] - } -} + "name": "globby", + "version": "10.0.2", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "license": "MIT", + "repository": "sindresorhus/globby", + "author": { + "email": "sindresorhus@gmail.com", + "name": "Sindre Sorhus", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "gitignore.js", + "index.d.ts", + "stream-utils.js" + ], + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } + +,"_resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz" +,"_integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" +,"_from": "globby@10.0.2" +} \ No newline at end of file diff --git a/node_modules/del/node_modules/p-map/package.json b/node_modules/del/node_modules/p-map/package.json index 710614d19..72331066c 100644 --- a/node_modules/del/node_modules/p-map/package.json +++ b/node_modules/del/node_modules/p-map/package.json @@ -1,88 +1,56 @@ { - "_args": [ - [ - "p-map@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-map@3.0.0", - "_id": "p-map@3.0.0", - "_inBundle": false, - "_integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "_location": "/del/p-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-map@3.0.0", - "name": "p-map", - "escapedName": "p-map", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/del" - ], - "_resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-map/issues" - }, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "description": "Map over promises concurrently", - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/p-map#readme", - "keywords": [ - "promise", - "map", - "resolved", - "wait", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "async", - "await", - "promises", - "concurrently", - "concurrency", - "parallel", - "bluebird" - ], - "license": "MIT", - "name": "p-map", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-map.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "p-map", + "version": "3.0.0", + "description": "Map over promises concurrently", + "license": "MIT", + "repository": "sindresorhus/p-map", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "map", + "resolved", + "wait", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "async", + "await", + "promises", + "concurrently", + "concurrency", + "parallel", + "bluebird" + ], + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz" +,"_integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" +,"_from": "p-map@3.0.0" +} \ No newline at end of file diff --git a/node_modules/del/package.json b/node_modules/del/package.json index 6446e6336..9d3e2a7af 100644 --- a/node_modules/del/package.json +++ b/node_modules/del/package.json @@ -1,111 +1,69 @@ { - "_args": [ - [ - "del@5.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "del@5.1.0", - "_id": "del@5.1.0", - "_inBundle": false, - "_integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", - "_location": "/del", - "_phantomChildren": { - "@types/glob": "7.1.1", - "aggregate-error": "3.0.1", - "array-union": "2.1.0", - "dir-glob": "3.0.1", - "fast-glob": "3.2.2", - "glob": "7.1.6", - "ignore": "5.1.4", - "merge2": "1.3.0", - "slash": "3.0.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "del@5.1.0", - "name": "del", - "escapedName": "del", - "rawSpec": "5.1.0", - "saveSpec": null, - "fetchSpec": "5.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", - "_spec": "5.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/del/issues" - }, - "dependencies": { - "globby": "^10.0.1", - "graceful-fs": "^4.2.2", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.1", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0" - }, - "description": "Delete files and directories", - "devDependencies": { - "ava": "^2.3.0", - "benchmark": "^2.1.4", - "make-dir": "^3.0.0", - "tempy": "^0.3.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/del#readme", - "keywords": [ - "delete", - "files", - "folders", - "directories", - "remove", - "destroy", - "trash", - "unlink", - "clean", - "cleaning", - "cleanup", - "rm", - "rmrf", - "rimraf", - "rmdir", - "glob", - "gulpfriendly", - "file", - "folder", - "directory", - "fs", - "filesystem" - ], - "license": "MIT", - "name": "del", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/del.git" - }, - "scripts": { - "bench": "node benchmark.js", - "test": "xo && ava && tsd" - }, - "version": "5.1.0" -} + "name": "del", + "version": "5.1.0", + "description": "Delete files and directories", + "license": "MIT", + "repository": "sindresorhus/del", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "node benchmark.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "delete", + "files", + "folders", + "directories", + "remove", + "destroy", + "trash", + "unlink", + "clean", + "cleaning", + "cleanup", + "rm", + "rmrf", + "rimraf", + "rmdir", + "glob", + "gulpfriendly", + "file", + "folder", + "directory", + "fs", + "filesystem" + ], + "dependencies": { + "globby": "^10.0.1", + "graceful-fs": "^4.2.2", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.1", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.3.0", + "benchmark": "^2.1.4", + "make-dir": "^3.0.0", + "tempy": "^0.3.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz" +,"_integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" +,"_from": "del@5.1.0" +} \ No newline at end of file diff --git a/node_modules/deprecation/package.json b/node_modules/deprecation/package.json index 3fd0f110a..bdbdea7e7 100644 --- a/node_modules/deprecation/package.json +++ b/node_modules/deprecation/package.json @@ -1,68 +1,38 @@ { - "_args": [ - [ - "deprecation@2.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "deprecation@2.3.1", - "_id": "deprecation@2.3.1", - "_inBundle": false, - "_integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "_location": "/deprecation", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "deprecation@2.3.1", - "name": "deprecation", - "escapedName": "deprecation", - "rawSpec": "2.3.1", - "saveSpec": null, - "fetchSpec": "2.3.1" - }, - "_requiredBy": [ - "/@octokit/plugin-rest-endpoint-methods", - "/@octokit/request", - "/@octokit/request-error" - ], - "_resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "_spec": "2.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/gr2m/deprecation/issues" - }, - "dependencies": {}, + "name": "deprecation", "description": "Log a deprecation message with stack", - "devDependencies": { - "@pika/pack": "^0.3.7", - "@pika/plugin-build-node": "^0.4.0", - "@pika/plugin-build-types": "^0.4.0", - "@pika/plugin-build-web": "^0.4.0", - "@pika/plugin-standard-pkg": "^0.4.0", - "semantic-release": "^15.13.3" - }, - "esnext": "dist-src/index.js", + "version": "2.3.1", + "license": "ISC", "files": [ "dist-*/", "bin/" ], - "homepage": "https://github.com/gr2m/deprecation#readme", + "esnext": "dist-src/index.js", + "main": "dist-node/index.js", + "module": "dist-web/index.js", + "types": "dist-types/index.d.ts", + "pika": true, + "sideEffects": false, "keywords": [ "deprecate", "deprecated", "deprecation" ], - "license": "ISC", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "deprecation", - "pika": true, "repository": { "type": "git", - "url": "git+https://github.com/gr2m/deprecation.git" + "url": "https://github.com/gr2m/deprecation.git" }, - "sideEffects": false, - "types": "dist-types/index.d.ts", - "version": "2.3.1" -} + "dependencies": {}, + "devDependencies": { + "@pika/pack": "^0.3.7", + "@pika/plugin-build-node": "^0.4.0", + "@pika/plugin-build-types": "^0.4.0", + "@pika/plugin-build-web": "^0.4.0", + "@pika/plugin-standard-pkg": "^0.4.0", + "semantic-release": "^15.13.3" + } + +,"_resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" +,"_integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" +,"_from": "deprecation@2.3.1" +} \ No newline at end of file diff --git a/node_modules/diff/package.json b/node_modules/diff/package.json index 1b86ef40f..1c2f99fd6 100644 --- a/node_modules/diff/package.json +++ b/node_modules/diff/package.json @@ -1,40 +1,34 @@ { - "_args": [ - [ - "diff@4.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "diff", + "version": "4.0.2", + "description": "A javascript text diff implementation.", + "keywords": [ + "diff", + "javascript" ], - "_development": true, - "_from": "diff@4.0.2", - "_id": "diff@4.0.2", - "_inBundle": false, - "_integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "_location": "/diff", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "diff@4.0.2", - "name": "diff", - "escapedName": "diff", - "rawSpec": "4.0.2", - "saveSpec": null, - "fetchSpec": "4.0.2" - }, - "_requiredBy": [ - "/tslint" + "maintainers": [ + "Kevin Decker (http://incaseofstairs.com)" ], - "_resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "_spec": "4.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "browser": "./dist/diff.js", "bugs": { - "url": "http://github.com/kpdecker/jsdiff/issues", - "email": "kpdecker@gmail.com" + "email": "kpdecker@gmail.com", + "url": "http://github.com/kpdecker/jsdiff/issues" + }, + "license": "BSD-3-Clause", + "repository": { + "type": "git", + "url": "git://github.com/kpdecker/jsdiff.git" + }, + "engines": { + "node": ">=0.3.1" + }, + "main": "./lib/index.js", + "module": "./lib/index.es6.js", + "browser": "./dist/diff.js", + "scripts": { + "clean": "rm -rf lib/ dist/", + "build:node": "yarn babel --out-dir lib --source-maps=inline src", + "test": "grunt" }, - "dependencies": {}, - "description": "A javascript text diff implementation.", "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", @@ -75,34 +69,9 @@ "webpack": "^4.28.3", "webpack-dev-server": "^3.1.14" }, - "engines": { - "node": ">=0.3.1" - }, - "homepage": "https://github.com/kpdecker/jsdiff#readme", - "keywords": [ - "diff", - "javascript" - ], - "license": "BSD-3-Clause", - "main": "./lib/index.js", - "maintainers": [ - { - "name": "Kevin Decker", - "email": "kpdecker@gmail.com", - "url": "http://incaseofstairs.com" - } - ], - "module": "./lib/index.es6.js", - "name": "diff", - "optionalDependencies": {}, - "repository": { - "type": "git", - "url": "git://github.com/kpdecker/jsdiff.git" - }, - "scripts": { - "build:node": "yarn babel --out-dir lib --source-maps=inline src", - "clean": "rm -rf lib/ dist/", - "test": "grunt" - }, - "version": "4.0.2" -} + "optionalDependencies": {} + +,"_resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" +,"_integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" +,"_from": "diff@4.0.2" +} \ No newline at end of file diff --git a/node_modules/dir-glob/package.json b/node_modules/dir-glob/package.json index 26eec7189..e71af2f29 100644 --- a/node_modules/dir-glob/package.json +++ b/node_modules/dir-glob/package.json @@ -1,75 +1,42 @@ { - "_args": [ - [ - "dir-glob@3.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "dir-glob@3.0.1", - "_id": "dir-glob@3.0.1", - "_inBundle": false, - "_integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "_location": "/dir-glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "dir-glob@3.0.1", - "name": "dir-glob", - "escapedName": "dir-glob", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/del/globby", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kevin Mårtensson", - "email": "kevinmartensson@gmail.com", - "url": "github.com/kevva" - }, - "bugs": { - "url": "https://github.com/kevva/dir-glob/issues" - }, - "dependencies": { - "path-type": "^4.0.0" - }, - "description": "Convert directories to glob compatible strings", - "devDependencies": { - "ava": "^2.1.0", - "del": "^4.1.1", - "make-dir": "^3.0.0", - "rimraf": "^2.5.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/kevva/dir-glob#readme", - "keywords": [ - "convert", - "directory", - "extensions", - "files", - "glob" - ], - "license": "MIT", - "name": "dir-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/kevva/dir-glob.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.1" -} + "name": "dir-glob", + "version": "3.0.1", + "description": "Convert directories to glob compatible strings", + "license": "MIT", + "repository": "kevva/dir-glob", + "author": { + "name": "Kevin Mårtensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "convert", + "directory", + "extensions", + "files", + "glob" + ], + "dependencies": { + "path-type": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "del": "^4.1.1", + "make-dir": "^3.0.0", + "rimraf": "^2.5.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" +,"_integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" +,"_from": "dir-glob@3.0.1" +} \ No newline at end of file diff --git a/node_modules/dot-prop/package.json b/node_modules/dot-prop/package.json index b6a81b730..c242c18ce 100644 --- a/node_modules/dot-prop/package.json +++ b/node_modules/dot-prop/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "dot-prop@5.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "dot-prop@5.2.0", - "_id": "dot-prop@5.2.0", - "_inBundle": false, - "_integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==", - "_location": "/dot-prop", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "dot-prop@5.2.0", - "name": "dot-prop", - "escapedName": "dot-prop", - "rawSpec": "5.2.0", - "saveSpec": null, - "fetchSpec": "5.2.0" - }, - "_requiredBy": [ - "/configstore" - ], - "_resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz", - "_spec": "5.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/dot-prop/issues" - }, - "dependencies": { - "is-obj": "^2.0.0" - }, - "description": "Get, set, or delete a property from a nested object using a dot path", - "devDependencies": { - "ava": "^2.1.0", - "benchmark": "^2.1.4", - "tsd": "^0.7.2", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/dot-prop#readme", - "keywords": [ - "object", - "prop", - "property", - "dot", - "path", - "get", - "set", - "delete", - "access", - "notation", - "dotty" - ], - "license": "MIT", - "name": "dot-prop", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/dot-prop.git" - }, - "scripts": { - "bench": "node bench.js", - "test": "xo && ava && tsd" - }, - "version": "5.2.0" -} + "name": "dot-prop", + "version": "5.2.0", + "description": "Get, set, or delete a property from a nested object using a dot path", + "license": "MIT", + "repository": "sindresorhus/dot-prop", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "node bench.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "prop", + "property", + "dot", + "path", + "get", + "set", + "delete", + "access", + "notation", + "dotty" + ], + "dependencies": { + "is-obj": "^2.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "benchmark": "^2.1.4", + "tsd": "^0.7.2", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz" +,"_integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==" +,"_from": "dot-prop@5.2.0" +} \ No newline at end of file diff --git a/node_modules/duplexer3/package.json b/node_modules/duplexer3/package.json index bd9979d01..5b2c79aba 100644 --- a/node_modules/duplexer3/package.json +++ b/node_modules/duplexer3/package.json @@ -1,52 +1,17 @@ { - "_args": [ - [ - "duplexer3@0.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "duplexer3@0.1.4", - "_id": "duplexer3@0.1.4", - "_inBundle": false, - "_integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "_location": "/duplexer3", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "duplexer3@0.1.4", - "name": "duplexer3", - "escapedName": "duplexer3", - "rawSpec": "0.1.4", - "saveSpec": null, - "fetchSpec": "0.1.4" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "_spec": "0.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Conrad Pankoff", - "email": "deoxxa@fknsrs.biz", - "url": "http://www.fknsrs.biz/" - }, - "bugs": { - "url": "https://github.com/floatdrop/duplexer3/issues" - }, + "name": "duplexer3", + "version": "0.1.4", "description": "Like duplexer but using streams3", - "devDependencies": { - "mocha": "^2.2.5" - }, "engine": { - "node": ">=4" + "node": ">=4" }, "files": [ "index.js" ], - "homepage": "https://github.com/floatdrop/duplexer3#readme", + "scripts": { + "test": "mocha -R tap" + }, + "repository": "floatdrop/duplexer3", "keywords": [ "duplex", "duplexer", @@ -55,14 +20,13 @@ "join", "combine" ], + "author": "Conrad Pankoff (http://www.fknsrs.biz/)", "license": "BSD-3-Clause", - "name": "duplexer3", - "repository": { - "type": "git", - "url": "git+https://github.com/floatdrop/duplexer3.git" - }, - "scripts": { - "test": "mocha -R tap" - }, - "version": "0.1.4" -} + "devDependencies": { + "mocha": "^2.2.5" + } + +,"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" +,"_integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" +,"_from": "duplexer3@0.1.4" +} \ No newline at end of file diff --git a/node_modules/emittery/package.json b/node_modules/emittery/package.json index 220a30d55..b6d92c0fb 100644 --- a/node_modules/emittery/package.json +++ b/node_modules/emittery/package.json @@ -1,103 +1,71 @@ { - "_args": [ - [ - "emittery@0.6.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "emittery@0.6.0", - "_id": "emittery@0.6.0", - "_inBundle": false, - "_integrity": "sha512-6EMRGr9KzYWp8DzHFZsKVZBsMO6QhAeHMeHND8rhyBNCHKMLpgW9tZv40bwN3rAIKRS5CxcK8oLRKUJSB9h7yQ==", - "_location": "/emittery", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "emittery@0.6.0", - "name": "emittery", - "escapedName": "emittery", - "rawSpec": "0.6.0", - "saveSpec": null, - "fetchSpec": "0.6.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/emittery/-/emittery-0.6.0.tgz", - "_spec": "0.6.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/emittery/issues" - }, - "description": "Simple and modern async event emitter", - "devDependencies": { - "@types/node": "^13.7.5", - "ava": "^2.4.0", - "codecov": "^3.1.0", - "delay": "^4.3.0", - "nyc": "^15.0.0", - "p-event": "^4.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.4" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sindresorhus/emittery?sponsor=1", - "homepage": "https://github.com/sindresorhus/emittery#readme", - "keywords": [ - "event", - "emitter", - "eventemitter", - "events", - "async", - "emit", - "on", - "once", - "off", - "listener", - "subscribe", - "unsubscribe", - "pubsub", - "tiny", - "addlistener", - "addeventlistener", - "dispatch", - "dispatcher", - "observer", - "trigger", - "await", - "promise", - "typescript", - "ts", - "typed" - ], - "license": "MIT", - "name": "emittery", - "nyc": { - "reporter": [ - "html", - "lcov", - "text" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/emittery.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "version": "0.6.0" -} + "name": "emittery", + "version": "0.6.0", + "description": "Simple and modern async event emitter", + "license": "MIT", + "repository": "sindresorhus/emittery", + "funding": "https://github.com/sindresorhus/emittery?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "event", + "emitter", + "eventemitter", + "events", + "async", + "emit", + "on", + "once", + "off", + "listener", + "subscribe", + "unsubscribe", + "pubsub", + "tiny", + "addlistener", + "addeventlistener", + "dispatch", + "dispatcher", + "observer", + "trigger", + "await", + "promise", + "typescript", + "ts", + "typed" + ], + "devDependencies": { + "@types/node": "^13.7.5", + "ava": "^2.4.0", + "codecov": "^3.1.0", + "delay": "^4.3.0", + "nyc": "^15.0.0", + "p-event": "^4.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.4" + }, + "nyc": { + "reporter": [ + "html", + "lcov", + "text" + ] + } + +,"_resolved": "https://registry.npmjs.org/emittery/-/emittery-0.6.0.tgz" +,"_integrity": "sha512-6EMRGr9KzYWp8DzHFZsKVZBsMO6QhAeHMeHND8rhyBNCHKMLpgW9tZv40bwN3rAIKRS5CxcK8oLRKUJSB9h7yQ==" +,"_from": "emittery@0.6.0" +} \ No newline at end of file diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json index 8c77ca600..2b0473ab8 100644 --- a/node_modules/emoji-regex/package.json +++ b/node_modules/emoji-regex/package.json @@ -1,59 +1,10 @@ { - "_args": [ - [ - "emoji-regex@8.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "emoji-regex@8.0.0", - "_id": "emoji-regex@8.0.0", - "_inBundle": false, - "_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "_location": "/emoji-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "emoji-regex@8.0.0", - "name": "emoji-regex", - "escapedName": "emoji-regex", - "rawSpec": "8.0.0", - "saveSpec": null, - "fetchSpec": "8.0.0" - }, - "_requiredBy": [ - "/string-width" - ], - "_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "_spec": "8.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/emoji-regex/issues" - }, + "name": "emoji-regex", + "version": "8.0.0", "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", - "devDependencies": { - "@babel/cli": "^7.2.3", - "@babel/core": "^7.3.4", - "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", - "@babel/preset-env": "^7.3.4", - "mocha": "^6.0.2", - "regexgen": "^1.3.0", - "unicode-12.0.0": "^0.7.9" - }, - "files": [ - "LICENSE-MIT.txt", - "index.js", - "index.d.ts", - "text.js", - "es2015/index.js", - "es2015/text.js" - ], "homepage": "https://mths.be/emoji-regex", + "main": "index.js", + "types": "index.d.ts", "keywords": [ "unicode", "regex", @@ -65,17 +16,39 @@ "emoji" ], "license": "MIT", - "main": "index.js", - "name": "emoji-regex", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, "repository": { "type": "git", - "url": "git+https://github.com/mathiasbynens/emoji-regex.git" + "url": "https://github.com/mathiasbynens/emoji-regex.git" }, + "bugs": "https://github.com/mathiasbynens/emoji-regex/issues", + "files": [ + "LICENSE-MIT.txt", + "index.js", + "index.d.ts", + "text.js", + "es2015/index.js", + "es2015/text.js" + ], "scripts": { "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js", "test": "mocha", "test:watch": "npm run test -- --watch" }, - "types": "index.d.ts", - "version": "8.0.0" -} + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.3.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", + "@babel/preset-env": "^7.3.4", + "mocha": "^6.0.2", + "regexgen": "^1.3.0", + "unicode-12.0.0": "^0.7.9" + } + +,"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" +,"_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" +,"_from": "emoji-regex@8.0.0" +} \ No newline at end of file diff --git a/node_modules/end-of-stream/package.json b/node_modules/end-of-stream/package.json index 7e5b8ddb7..f723fae9d 100644 --- a/node_modules/end-of-stream/package.json +++ b/node_modules/end-of-stream/package.json @@ -1,50 +1,20 @@ { - "_args": [ - [ - "end-of-stream@1.4.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "end-of-stream@1.4.4", - "_id": "end-of-stream@1.4.4", - "_inBundle": false, - "_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "_location": "/end-of-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "end-of-stream@1.4.4", - "name": "end-of-stream", - "escapedName": "end-of-stream", - "rawSpec": "1.4.4", - "saveSpec": null, - "fetchSpec": "1.4.4" - }, - "_requiredBy": [ - "/pump" - ], - "_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "_spec": "1.4.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mathias Buus", - "email": "mathiasbuus@gmail.com" - }, - "bugs": { - "url": "https://github.com/mafintosh/end-of-stream/issues" + "name": "end-of-stream", + "version": "1.4.4", + "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", + "repository": { + "type": "git", + "url": "git://github.com/mafintosh/end-of-stream.git" }, "dependencies": { "once": "^1.4.0" }, - "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", - "devDependencies": { - "tape": "^4.11.0" + "scripts": { + "test": "node test.js" }, "files": [ "index.js" ], - "homepage": "https://github.com/mafintosh/end-of-stream", "keywords": [ "stream", "streams", @@ -54,15 +24,18 @@ "end", "wait" ], - "license": "MIT", - "main": "index.js", - "name": "end-of-stream", - "repository": { - "type": "git", - "url": "git://github.com/mafintosh/end-of-stream.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/mafintosh/end-of-stream/issues" }, - "version": "1.4.4" -} + "homepage": "https://github.com/mafintosh/end-of-stream", + "main": "index.js", + "author": "Mathias Buus ", + "license": "MIT", + "devDependencies": { + "tape": "^4.11.0" + } + +,"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" +,"_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" +,"_from": "end-of-stream@1.4.4" +} \ No newline at end of file diff --git a/node_modules/equal-length/package.json b/node_modules/equal-length/package.json index 15e1d1eae..96cef9188 100644 --- a/node_modules/equal-length/package.json +++ b/node_modules/equal-length/package.json @@ -1,68 +1,36 @@ { - "_args": [ - [ - "equal-length@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "equal-length@1.0.1", - "_id": "equal-length@1.0.1", - "_inBundle": false, - "_integrity": "sha1-IcoRLUirJLTh5//A5TOdMf38J0w=", - "_location": "/equal-length", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "equal-length@1.0.1", - "name": "equal-length", - "escapedName": "equal-length", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "equal-length", + "version": "1.0.1", + "description": "Extend lines to equal length", + "license": "MIT", + "repository": "vadimdemedes/equal-length", "author": { "name": "vdemedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, - "bugs": { - "url": "https://github.com/vadimdemedes/equal-length/issues" - }, - "description": "Extend lines to equal length", - "devDependencies": { - "ava": "^0.17.0", - "xo": "^0.17.1" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/vadimdemedes/equal-length#readme", "keywords": [ "equal", "line" ], - "license": "MIT", - "name": "equal-length", - "repository": { - "type": "git", - "url": "git+https://github.com/vadimdemedes/equal-length.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^0.17.0", + "xo": "^0.17.1" }, - "version": "1.0.1", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz" +,"_integrity": "sha1-IcoRLUirJLTh5//A5TOdMf38J0w=" +,"_from": "equal-length@1.0.1" +} \ No newline at end of file diff --git a/node_modules/error-ex/package.json b/node_modules/error-ex/package.json index ef0961c7d..172d854f7 100644 --- a/node_modules/error-ex/package.json +++ b/node_modules/error-ex/package.json @@ -1,53 +1,11 @@ { - "_args": [ - [ - "error-ex@1.3.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "error-ex@1.3.2", - "_id": "error-ex@1.3.2", - "_inBundle": false, - "_integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "_location": "/error-ex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "error-ex@1.3.2", - "name": "error-ex", - "escapedName": "error-ex", - "rawSpec": "1.3.2", - "saveSpec": null, - "fetchSpec": "1.3.2" - }, - "_requiredBy": [ - "/parse-json", - "/read-pkg/parse-json" - ], - "_resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "_spec": "1.3.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/qix-/node-error-ex/issues" - }, - "dependencies": { - "is-arrayish": "^0.2.1" - }, + "name": "error-ex", "description": "Easy error subclassing and stack customization", - "devDependencies": { - "coffee-script": "^1.9.3", - "coveralls": "^2.11.2", - "istanbul": "^0.3.17", - "mocha": "^2.2.5", - "should": "^7.0.1", - "xo": "^0.7.1" - }, - "files": [ - "index.js" + "version": "1.3.2", + "maintainers": [ + "Josh Junon (github.com/qix-)", + "Sindre Sorhus (sindresorhus.com)" ], - "homepage": "https://github.com/qix-/node-error-ex#readme", "keywords": [ "error", "errors", @@ -59,33 +17,34 @@ "custom" ], "license": "MIT", - "maintainers": [ - { - "name": "Josh Junon", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - }, - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - } - ], - "name": "error-ex", - "repository": { - "type": "git", - "url": "git+https://github.com/qix-/node-error-ex.git" - }, "scripts": { "pretest": "xo", "test": "mocha --compilers coffee:coffee-script/register" }, - "version": "1.3.2", "xo": { "rules": { "operator-linebreak": [ 0 ] } + }, + "repository": "qix-/node-error-ex", + "files": [ + "index.js" + ], + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.7.1" + }, + "dependencies": { + "is-arrayish": "^0.2.1" } -} + +,"_resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" +,"_integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" +,"_from": "error-ex@1.3.2" +} \ No newline at end of file diff --git a/node_modules/escape-goat/package.json b/node_modules/escape-goat/package.json index 501598ab7..02ce3264c 100644 --- a/node_modules/escape-goat/package.json +++ b/node_modules/escape-goat/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "escape-goat@2.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "escape-goat@2.1.1", - "_id": "escape-goat@2.1.1", - "_inBundle": false, - "_integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", - "_location": "/escape-goat", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "escape-goat@2.1.1", - "name": "escape-goat", - "escapedName": "escape-goat", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" - }, - "_requiredBy": [ - "/pupa" - ], - "_resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-goat/issues" - }, - "description": "Escape a string for use in HTML or the inverse", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/escape-goat#readme", - "keywords": [ - "escape", - "unescape", - "html", - "entity", - "entities", - "escaping", - "sanitize", - "sanitization", - "utility", - "template", - "attribute", - "value", - "interpolate", - "xss", - "goat", - "🐐" - ], - "license": "MIT", - "name": "escape-goat", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-goat.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.1" -} + "name": "escape-goat", + "version": "2.1.1", + "description": "Escape a string for use in HTML or the inverse", + "license": "MIT", + "repository": "sindresorhus/escape-goat", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "unescape", + "html", + "entity", + "entities", + "escaping", + "sanitize", + "sanitization", + "utility", + "template", + "attribute", + "value", + "interpolate", + "xss", + "goat", + "🐐" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz" +,"_integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" +,"_from": "escape-goat@2.1.1" +} \ No newline at end of file diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json index ecc7c7172..8b63190fe 100644 --- a/node_modules/escape-string-regexp/package.json +++ b/node_modules/escape-string-regexp/package.json @@ -1,54 +1,27 @@ { - "_args": [ - [ - "escape-string-regexp@1.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "escape-string-regexp@1.0.5", - "_id": "escape-string-regexp@1.0.5", - "_inBundle": false, - "_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "_location": "/escape-string-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "escape-string-regexp@1.0.5", - "name": "escape-string-regexp", - "escapedName": "escape-string-regexp", - "rawSpec": "1.0.5", - "saveSpec": null, - "fetchSpec": "1.0.5" - }, - "_requiredBy": [ - "/chalk", - "/figures" - ], - "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "_spec": "1.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -61,26 +34,12 @@ "special", "characters" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Boy Nicolai Appelman", - "email": "joshua@jbna.nl", - "url": "jbna.nl" - } - ], - "name": "escape-string-regexp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.5" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" +,"_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" +,"_from": "escape-string-regexp@1.0.5" +} \ No newline at end of file diff --git a/node_modules/esutils/package.json b/node_modules/esutils/package.json index d55053791..6446b57f2 100644 --- a/node_modules/esutils/package.json +++ b/node_modules/esutils/package.json @@ -1,77 +1,48 @@ { - "_args": [ - [ - "esutils@2.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "esutils@2.0.3", - "_id": "esutils@2.0.3", - "_inBundle": false, - "_integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "_location": "/esutils", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "esutils@2.0.3", - "name": "esutils", - "escapedName": "esutils", - "rawSpec": "2.0.3", - "saveSpec": null, - "fetchSpec": "2.0.3" - }, - "_requiredBy": [ - "/@babel/highlight", - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "_spec": "2.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/estools/esutils/issues" - }, + "name": "esutils", "description": "utility box for ECMAScript language tools", - "devDependencies": { - "chai": "~1.7.2", - "coffee-script": "~1.6.3", - "jshint": "2.6.3", - "mocha": "~2.2.1", - "regenerate": "~1.3.1", - "unicode-9.0.0": "~0.7.0" + "homepage": "https://github.com/estools/esutils", + "main": "lib/utils.js", + "version": "2.0.3", + "engines": { + "node": ">=0.10.0" }, "directories": { "lib": "./lib" }, - "engines": { - "node": ">=0.10.0" - }, "files": [ "LICENSE.BSD", "README.md", "lib" ], - "homepage": "https://github.com/estools/esutils", - "license": "BSD-2-Clause", - "main": "lib/utils.js", "maintainers": [ { "name": "Yusuke Suzuki", "email": "utatane.tea@gmail.com", - "url": "http://github.com/Constellation" + "web": "http://github.com/Constellation" } ], - "name": "esutils", "repository": { "type": "git", - "url": "git+ssh://git@github.com/estools/esutils.git" + "url": "http://github.com/estools/esutils.git" }, + "devDependencies": { + "chai": "~1.7.2", + "coffee-script": "~1.6.3", + "jshint": "2.6.3", + "mocha": "~2.2.1", + "regenerate": "~1.3.1", + "unicode-9.0.0": "~0.7.0" + }, + "license": "BSD-2-Clause", "scripts": { - "generate-regex": "node tools/generate-identifier-regex.js", - "lint": "jshint lib/*.js", "test": "npm run-script lint && npm run-script unit-test", - "unit-test": "mocha --compilers coffee:coffee-script -R spec" - }, - "version": "2.0.3" -} + "lint": "jshint lib/*.js", + "unit-test": "mocha --compilers coffee:coffee-script -R spec", + "generate-regex": "node tools/generate-identifier-regex.js" + } + +,"_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" +,"_integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" +,"_from": "esutils@2.0.3" +} \ No newline at end of file diff --git a/node_modules/execa/package.json b/node_modules/execa/package.json index 974a5681b..4e33f47e5 100644 --- a/node_modules/execa/package.json +++ b/node_modules/execa/package.json @@ -1,104 +1,73 @@ { - "_args": [ - [ - "execa@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "execa@1.0.0", - "_id": "execa@1.0.0", - "_inBundle": false, - "_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "_location": "/execa", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "execa@1.0.0", - "name": "execa", - "escapedName": "execa", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/windows-release" - ], - "_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/execa/issues" - }, - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "description": "A better `child_process`", - "devDependencies": { - "ava": "*", - "cat-names": "^1.0.2", - "coveralls": "^3.0.1", - "delay": "^3.0.0", - "is-running": "^2.0.0", - "nyc": "^13.0.1", - "tempfile": "^2.0.0", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "lib" - ], - "homepage": "https://github.com/sindresorhus/execa#readme", - "keywords": [ - "exec", - "child", - "process", - "execute", - "fork", - "execfile", - "spawn", - "file", - "shell", - "bin", - "binary", - "binaries", - "npm", - "path", - "local" - ], - "license": "MIT", - "name": "execa", - "nyc": { - "reporter": [ - "text", - "lcov" - ], - "exclude": [ - "**/fixtures/**", - "**/test.js", - "**/test/**" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/execa.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "1.0.0" -} + "name": "execa", + "version": "1.0.0", + "description": "A better `child_process`", + "license": "MIT", + "repository": "sindresorhus/execa", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js", + "lib" + ], + "keywords": [ + "exec", + "child", + "process", + "execute", + "fork", + "execfile", + "spawn", + "file", + "shell", + "bin", + "binary", + "binaries", + "npm", + "path", + "local" + ], + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "devDependencies": { + "ava": "*", + "cat-names": "^1.0.2", + "coveralls": "^3.0.1", + "delay": "^3.0.0", + "is-running": "^2.0.0", + "nyc": "^13.0.1", + "tempfile": "^2.0.0", + "xo": "*" + }, + "nyc": { + "reporter": [ + "text", + "lcov" + ], + "exclude": [ + "**/fixtures/**", + "**/test.js", + "**/test/**" + ] + } + +,"_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" +,"_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" +,"_from": "execa@1.0.0" +} \ No newline at end of file diff --git a/node_modules/fast-diff/package.json b/node_modules/fast-diff/package.json index 2011937a9..7c8b5e107 100644 --- a/node_modules/fast-diff/package.json +++ b/node_modules/fast-diff/package.json @@ -1,59 +1,30 @@ { - "_args": [ - [ - "fast-diff@1.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "fast-diff@1.2.0", - "_id": "fast-diff@1.2.0", - "_inBundle": false, - "_integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "_location": "/fast-diff", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fast-diff@1.2.0", - "name": "fast-diff", - "escapedName": "fast-diff", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jason Chen", - "email": "jhchen7@gmail.com" - }, - "bugs": { - "url": "https://github.com/jhchen/fast-diff/issues" - }, + "name": "fast-diff", + "version": "1.2.0", "description": "Fast Javascript text diff", + "author": "Jason Chen ", + "main": "diff.js", + "types": "diff.d.ts", "devDependencies": { "lodash": "~3.9.3", "seedrandom": "~2.4.0" }, - "homepage": "https://github.com/jhchen/fast-diff#readme", - "keywords": [ - "diff" - ], - "license": "Apache-2.0", - "main": "diff.js", - "name": "fast-diff", "repository": { "type": "git", - "url": "git+https://github.com/jhchen/fast-diff.git" + "url": "https://github.com/jhchen/fast-diff" + }, + "bugs": { + "url": "https://github.com/jhchen/fast-diff/issues" }, "scripts": { "test": "node test.js" }, - "types": "diff.d.ts", - "version": "1.2.0" -} + "license": "Apache-2.0", + "keywords": [ + "diff" + ] + +,"_resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz" +,"_integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==" +,"_from": "fast-diff@1.2.0" +} \ No newline at end of file diff --git a/node_modules/fast-glob/package.json b/node_modules/fast-glob/package.json index 18e1dc777..05a520e06 100644 --- a/node_modules/fast-glob/package.json +++ b/node_modules/fast-glob/package.json @@ -1,50 +1,24 @@ { - "_args": [ - [ - "fast-glob@3.2.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "fast-glob@3.2.2", - "_id": "fast-glob@3.2.2", - "_inBundle": false, - "_integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==", - "_location": "/fast-glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fast-glob@3.2.2", - "name": "fast-glob", - "escapedName": "fast-glob", - "rawSpec": "3.2.2", - "saveSpec": null, - "fetchSpec": "3.2.2" - }, - "_requiredBy": [ - "/del/globby", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz", - "_spec": "3.2.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "fast-glob", + "version": "3.2.2", + "description": "It's a very fast and efficient glob library for Node.js", + "license": "MIT", + "repository": "mrmlnc/fast-glob", "author": { "name": "Denis Malinochkin", "url": "https://mrmlnc.com" }, - "bugs": { - "url": "https://github.com/mrmlnc/fast-glob/issues" - }, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "engines": { + "node": ">=8" }, - "description": "It's a very fast and efficient glob library for Node.js", + "main": "out/index.js", + "typings": "out/index.d.ts", + "keywords": [ + "glob", + "patterns", + "fast", + "implementation" + ], "devDependencies": { "@nodelib/fs.macchiato": "^1.0.1", "@types/compute-stdev": "^1.0.0", @@ -72,51 +46,44 @@ "tiny-glob": "^0.2.6", "typescript": "^3.6.3" }, - "engines": { - "node": ">=8" - }, - "homepage": "https://github.com/mrmlnc/fast-glob#readme", - "keywords": [ - "glob", - "patterns", - "fast", - "implementation" - ], - "license": "MIT", - "main": "out/index.js", - "name": "fast-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/mrmlnc/fast-glob.git" + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" }, "scripts": { + "clean": "rimraf out", + "lint": "eslint \"src/**/*.ts\" --cache", + "compile": "tsc", + "test": "mocha \"out/**/*.spec.js\" -s 0", + "smoke": "mocha \"out/**/*.smoke.js\" -s 0", + "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"", + "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"", + "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"", + "build": "npm run clean && npm run compile && npm run lint && npm test", + "watch": "npm run clean && npm run compile -- --sourceMap --watch", "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync", "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep", - "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"", + "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep", + "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep", "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"", - "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"", + "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"", "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"", - "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep", - "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"", + "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"", "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"", - "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"", + "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"", "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"", - "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep", - "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"", + "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"", "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"", - "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"", + "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"", "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"", - "build": "npm run clean && npm run compile && npm run lint && npm test", - "clean": "rimraf out", - "compile": "tsc", - "lint": "eslint \"src/**/*.ts\" --cache", - "smoke": "mocha \"out/**/*.smoke.js\" -s 0", - "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"", - "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"", - "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"", - "test": "mocha \"out/**/*.spec.js\" -s 0", - "watch": "npm run clean && npm run compile -- --sourceMap --watch" - }, - "typings": "out/index.d.ts", - "version": "3.2.2" -} + "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"" + } + +,"_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz" +,"_integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==" +,"_from": "fast-glob@3.2.2" +} \ No newline at end of file diff --git a/node_modules/fastq/package.json b/node_modules/fastq/package.json index 7b14a6912..c5cf9e6ca 100644 --- a/node_modules/fastq/package.json +++ b/node_modules/fastq/package.json @@ -1,44 +1,36 @@ { - "_args": [ - [ - "fastq@1.8.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "fastq@1.8.0", - "_id": "fastq@1.8.0", - "_inBundle": false, - "_integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==", - "_location": "/fastq", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fastq@1.8.0", - "name": "fastq", - "escapedName": "fastq", - "rawSpec": "1.8.0", - "saveSpec": null, - "fetchSpec": "1.8.0" + "name": "fastq", + "version": "1.8.0", + "description": "Fast, in memory work queue", + "main": "queue.js", + "scripts": { + "lint": "standard --verbose | snazzy", + "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js", + "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js", + "test:report": "npm run lint && npm run unit:report", + "test": "npm run lint && npm run unit && npm run typescript", + "typescript": "tsc --project ./test/tsconfig.json", + "legacy": "tape test/test.js" }, - "_requiredBy": [ - "/@nodelib/fs.walk" + "pre-commit": [ + "test" ], - "_resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz", - "_spec": "1.8.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Matteo Collina", - "email": "hello@matteocollina.com" + "repository": { + "type": "git", + "url": "git+https://github.com/mcollina/fastq.git" }, + "keywords": [ + "fast", + "queue", + "async", + "worker" + ], + "author": "Matteo Collina ", + "license": "ISC", "bugs": { "url": "https://github.com/mcollina/fastq/issues" }, - "dependencies": { - "reusify": "^1.0.4" - }, - "description": "Fast, in memory work queue", + "homepage": "https://github.com/mcollina/fastq#readme", "devDependencies": { "async": "^3.1.0", "neo-async": "^2.6.1", @@ -49,31 +41,11 @@ "tape": "^4.13.2", "typescript": "^3.8.3" }, - "homepage": "https://github.com/mcollina/fastq#readme", - "keywords": [ - "fast", - "queue", - "async", - "worker" - ], - "license": "ISC", - "main": "queue.js", - "name": "fastq", - "pre-commit": [ - "test" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/mcollina/fastq.git" - }, - "scripts": { - "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js", - "legacy": "tape test/test.js", - "lint": "standard --verbose | snazzy", - "test": "npm run lint && npm run unit && npm run typescript", - "test:report": "npm run lint && npm run unit:report", - "typescript": "tsc --project ./test/tsconfig.json", - "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js" - }, - "version": "1.8.0" -} + "dependencies": { + "reusify": "^1.0.4" + } + +,"_resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz" +,"_integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==" +,"_from": "fastq@1.8.0" +} \ No newline at end of file diff --git a/node_modules/figures/package.json b/node_modules/figures/package.json index 35a71ba5e..41dea9e9b 100644 --- a/node_modules/figures/package.json +++ b/node_modules/figures/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "figures@3.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "figures@3.2.0", - "_id": "figures@3.2.0", - "_inBundle": false, - "_integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "_location": "/figures", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "figures@3.2.0", - "name": "figures", - "escapedName": "figures", - "rawSpec": "3.2.0", - "saveSpec": null, - "fetchSpec": "3.2.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "_spec": "3.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/figures/issues" - }, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "description": "Unicode symbols with Windows CMD fallbacks", - "devDependencies": { - "ava": "^1.4.1", - "markdown-table": "^1.1.2", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/figures#readme", - "keywords": [ - "unicode", - "cli", - "cmd", - "command-line", - "characters", - "symbol", - "symbols", - "figure", - "figures", - "fallback" - ], - "license": "MIT", - "name": "figures", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/figures.git" - }, - "scripts": { - "make": "./makefile.js", - "test": "xo && ava && tsd" - }, - "version": "3.2.0" -} + "name": "figures", + "version": "3.2.0", + "description": "Unicode symbols with Windows CMD fallbacks", + "license": "MIT", + "repository": "sindresorhus/figures", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "make": "./makefile.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "unicode", + "cli", + "cmd", + "command-line", + "characters", + "symbol", + "symbols", + "figure", + "figures", + "fallback" + ], + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "devDependencies": { + "ava": "^1.4.1", + "markdown-table": "^1.1.2", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" +,"_integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" +,"_from": "figures@3.2.0" +} \ No newline at end of file diff --git a/node_modules/file-url/package.json b/node_modules/file-url/package.json index 93b2c006d..70261a027 100644 --- a/node_modules/file-url/package.json +++ b/node_modules/file-url/package.json @@ -1,70 +1,39 @@ { - "_args": [ - [ - "file-url@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "file-url@3.0.0", - "_id": "file-url@3.0.0", - "_inBundle": false, - "_integrity": "sha512-g872QGsHexznxkIAdK8UiZRe7SkE6kvylShU4Nsj8NvfvZag7S0QuQ4IgvPDkk75HxgjIVDwycFTDAgIiO4nDA==", - "_location": "/file-url", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "file-url@3.0.0", - "name": "file-url", - "escapedName": "file-url", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/file-url/-/file-url-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/file-url/issues" - }, - "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/file-url#readme", - "keywords": [ - "file", - "url", - "uri", - "path", - "scheme", - "slash" - ], - "license": "MIT", - "name": "file-url", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/file-url.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "file-url", + "version": "3.0.0", + "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", + "license": "MIT", + "repository": "sindresorhus/file-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "file", + "url", + "uri", + "path", + "scheme", + "slash" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/file-url/-/file-url-3.0.0.tgz" +,"_integrity": "sha512-g872QGsHexznxkIAdK8UiZRe7SkE6kvylShU4Nsj8NvfvZag7S0QuQ4IgvPDkk75HxgjIVDwycFTDAgIiO4nDA==" +,"_from": "file-url@3.0.0" +} \ No newline at end of file diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json index 101b21973..6aeb617db 100644 --- a/node_modules/fill-range/package.json +++ b/node_modules/fill-range/package.json @@ -1,76 +1,38 @@ { - "_args": [ - [ - "fill-range@7.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "fill-range@7.0.1", - "_id": "fill-range@7.0.1", - "_inBundle": false, - "_integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "_location": "/fill-range", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fill-range@7.0.1", - "name": "fill-range", - "escapedName": "fill-range", - "rawSpec": "7.0.1", - "saveSpec": null, - "fetchSpec": "7.0.1" - }, - "_requiredBy": [ - "/braces" + "name": "fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "version": "7.0.1", + "homepage": "https://github.com/jonschlinkert/fill-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Edo Rivai (edo.rivai.nl)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Paul Miller (paulmillr.com)", + "Rouven Weßling (www.rouvenwessling.de)", + "(https://github.com/wtgtybhertgeghgtwtg)" ], - "_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "_spec": "7.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "contributors": [ - { - "name": "Edo Rivai", - "url": "edo.rivai.nl" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - }, - { - "url": "https://github.com/wtgtybhertgeghgtwtg" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "to-regex-range": "^5.0.1" }, - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", "devDependencies": { "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/fill-range", "keywords": [ "alpha", "alphabetical", @@ -91,16 +53,6 @@ "regex", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "fill-range", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/fill-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -113,6 +65,9 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" -} + } + +,"_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" +,"_integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" +,"_from": "fill-range@7.0.1" +} \ No newline at end of file diff --git a/node_modules/find-up/package.json b/node_modules/find-up/package.json index a32b21cff..60f289df4 100644 --- a/node_modules/find-up/package.json +++ b/node_modules/find-up/package.json @@ -1,90 +1,57 @@ { - "_args": [ - [ - "find-up@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "find-up@4.1.0", - "_id": "find-up@4.1.0", - "_inBundle": false, - "_integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "_location": "/find-up", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "find-up@4.1.0", - "name": "find-up", - "escapedName": "find-up", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/pkg-dir", - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "description": "Find a file or directory by walking up parent directories", - "devDependencies": { - "ava": "^2.1.0", - "is-path-inside": "^2.1.0", - "tempy": "^0.3.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/find-up#readme", - "keywords": [ - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "package", - "resolve", - "parent", - "parents", - "folder", - "directory", - "walk", - "walking", - "path" - ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.1.0" -} + "name": "find-up", + "version": "4.1.0", + "description": "Find a file or directory by walking up parent directories", + "license": "MIT", + "repository": "sindresorhus/find-up", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "walk", + "walking", + "path" + ], + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "is-path-inside": "^2.1.0", + "tempy": "^0.3.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" +,"_integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" +,"_from": "find-up@4.1.0" +} \ No newline at end of file diff --git a/node_modules/fs.realpath/package.json b/node_modules/fs.realpath/package.json index 59cc57eb5..fba1ff9a4 100644 --- a/node_modules/fs.realpath/package.json +++ b/node_modules/fs.realpath/package.json @@ -1,63 +1,30 @@ { - "_args": [ - [ - "fs.realpath@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "fs.realpath@1.0.0", - "_id": "fs.realpath@1.0.0", - "_inBundle": false, - "_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "_location": "/fs.realpath", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fs.realpath@1.0.0", - "name": "fs.realpath", - "escapedName": "fs.realpath", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/glob" - ], - "_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/fs.realpath/issues" - }, - "dependencies": {}, + "name": "fs.realpath", + "version": "1.0.0", "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "main": "index.js", + "dependencies": {}, "devDependencies": {}, - "files": [ - "old.js", - "index.js" - ], - "homepage": "https://github.com/isaacs/fs.realpath#readme", + "scripts": { + "test": "tap test/*.js --cov" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/fs.realpath.git" + }, "keywords": [ "realpath", "fs", "polyfill" ], + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC", - "main": "index.js", - "name": "fs.realpath", - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/fs.realpath.git" - }, - "scripts": { - "test": "tap test/*.js --cov" - }, - "version": "1.0.0" -} + "files": [ + "old.js", + "index.js" + ] + +,"_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" +,"_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" +,"_from": "fs.realpath@1.0.0" +} \ No newline at end of file diff --git a/node_modules/fs/package.json b/node_modules/fs/package.json index dca03fe57..819721e5b 100644 --- a/node_modules/fs/package.json +++ b/node_modules/fs/package.json @@ -1,48 +1,24 @@ { - "_args": [ - [ - "fs@0.0.1-security", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "fs@0.0.1-security", - "_id": "fs@0.0.1-security", - "_inBundle": false, - "_integrity": "sha1-invTcYa23d84E/I4WLV+yq9eQdQ=", - "_location": "/fs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fs@0.0.1-security", - "name": "fs", - "escapedName": "fs", - "rawSpec": "0.0.1-security", - "saveSpec": null, - "fetchSpec": "0.0.1-security" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", - "_spec": "0.0.1-security", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": "", - "bugs": { - "url": "https://github.com/npm/security-holder/issues" - }, - "description": "This package name is not currently in use, but was formerly occupied by another package. To avoid malicious use, npm is hanging on to the package name, but loosely, and we'll probably give it to you if you want it.", - "homepage": "https://github.com/npm/security-holder#readme", - "keywords": [], - "license": "ISC", - "main": "index.js", "name": "fs", + "version": "0.0.1-security", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, "repository": { "type": "git", "url": "git+https://github.com/npm/security-holder.git" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "keywords": [], + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/npm/security-holder/issues" }, - "version": "0.0.1-security" -} + "homepage": "https://github.com/npm/security-holder#readme" + +,"_resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz" +,"_integrity": "sha1-invTcYa23d84E/I4WLV+yq9eQdQ=" +,"_from": "fs@0.0.1-security" +} \ No newline at end of file diff --git a/node_modules/fsevents/package.json b/node_modules/fsevents/package.json index 8038c5f50..814b8eb48 100644 --- a/node_modules/fsevents/package.json +++ b/node_modules/fsevents/package.json @@ -1,37 +1,34 @@ { - "_args": [ - [ - "fsevents@2.1.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "fsevents", + "version": "2.1.2", + "description": "Native Access to MacOS FSEvents", + "main": "fsevents.js", + "types": "fsevents.d.ts", + "os": [ + "darwin" ], - "_development": true, - "_from": "fsevents@2.1.2", - "_id": "fsevents@2.1.2", - "_inBundle": false, - "_integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", - "_location": "/fsevents", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fsevents@2.1.2", - "name": "fsevents", - "escapedName": "fsevents", - "rawSpec": "2.1.2", - "saveSpec": null, - "fetchSpec": "2.1.2" - }, - "_requiredBy": [ - "/chokidar" + "files": [ + "fsevents.d.ts", + "fsevents.js", + "fsevents.node" ], - "_resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", - "_spec": "2.1.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/fsevents/fsevents/issues" + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" }, + "scripts": { + "clean": "node-gyp clean && rm -f fsevents.node", + "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean", + "test": "/bin/bash ./test.sh 2>/dev/null", + "prepublishOnly": "npm run build" + }, + "repository": { + "type": "git", + "url": "https://github.com/fsevents/fsevents.git" + }, + "keywords": [ + "fsevents", + "mac" + ], "contributors": [ { "name": "Philipp Dunkel", @@ -54,36 +51,13 @@ "url": "https://paulmillr.com" } ], - "description": "Native Access to MacOS FSEvents", - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - }, - "files": [ - "fsevents.d.ts", - "fsevents.js", - "fsevents.node" - ], - "homepage": "https://github.com/fsevents/fsevents", - "keywords": [ - "fsevents", - "mac" - ], "license": "MIT", - "main": "fsevents.js", - "name": "fsevents", - "os": [ - "darwin" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/fsevents/fsevents.git" - }, - "scripts": { - "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean", - "clean": "node-gyp clean && rm -f fsevents.node", - "prepublishOnly": "npm run build", - "test": "/bin/bash ./test.sh 2>/dev/null" + "bugs": { + "url": "https://github.com/fsevents/fsevents/issues" }, - "types": "fsevents.d.ts", - "version": "2.1.2" -} + "homepage": "https://github.com/fsevents/fsevents" + +,"_resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz" +,"_integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==" +,"_from": "fsevents@2.1.2" +} \ No newline at end of file diff --git a/node_modules/get-caller-file/package.json b/node_modules/get-caller-file/package.json index 1dbe62f64..acf38f618 100644 --- a/node_modules/get-caller-file/package.json +++ b/node_modules/get-caller-file/package.json @@ -1,40 +1,31 @@ { - "_args": [ - [ - "get-caller-file@2.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "get-caller-file@2.0.5", - "_id": "get-caller-file@2.0.5", - "_inBundle": false, - "_integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "_location": "/get-caller-file", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "get-caller-file@2.0.5", - "name": "get-caller-file", - "escapedName": "get-caller-file", - "rawSpec": "2.0.5", - "saveSpec": null, - "fetchSpec": "2.0.5" + "name": "get-caller-file", + "version": "2.0.5", + "description": "", + "main": "index.js", + "directories": { + "test": "tests" }, - "_requiredBy": [ - "/yargs" + "files": [ + "index.js", + "index.js.map", + "index.d.ts" ], - "_resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "_spec": "2.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Stefan Penner" + "scripts": { + "prepare": "tsc", + "test": "mocha test", + "test:debug": "mocha test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/stefanpenner/get-caller-file.git" }, + "author": "Stefan Penner", + "license": "ISC", "bugs": { "url": "https://github.com/stefanpenner/get-caller-file/issues" }, - "description": "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "homepage": "https://github.com/stefanpenner/get-caller-file#readme", "devDependencies": { "@types/chai": "^4.1.7", "@types/ensure-posix-path": "^1.0.0", @@ -45,29 +36,11 @@ "mocha": "^5.2.0", "typescript": "^3.3.3333" }, - "directories": { - "test": "tests" - }, "engines": { "node": "6.* || 8.* || >= 10.*" - }, - "files": [ - "index.js", - "index.js.map", - "index.d.ts" - ], - "homepage": "https://github.com/stefanpenner/get-caller-file#readme", - "license": "ISC", - "main": "index.js", - "name": "get-caller-file", - "repository": { - "type": "git", - "url": "git+https://github.com/stefanpenner/get-caller-file.git" - }, - "scripts": { - "prepare": "tsc", - "test": "mocha test", - "test:debug": "mocha test" - }, - "version": "2.0.5" -} + } + +,"_resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" +,"_integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" +,"_from": "get-caller-file@2.0.5" +} \ No newline at end of file diff --git a/node_modules/get-stream/package.json b/node_modules/get-stream/package.json index 6e5e7cdf8..0f66e7b31 100644 --- a/node_modules/get-stream/package.json +++ b/node_modules/get-stream/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "get-stream@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "get-stream@4.1.0", - "_id": "get-stream@4.1.0", - "_inBundle": false, - "_integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "_location": "/get-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "get-stream@4.1.0", - "name": "get-stream", - "escapedName": "get-stream", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/execa", - "/got" - ], - "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/get-stream/issues" - }, - "dependencies": { - "pump": "^3.0.0" - }, - "description": "Get a stream as a string, buffer, or array", - "devDependencies": { - "ava": "*", - "into-stream": "^3.0.0", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "buffer-stream.js" - ], - "homepage": "https://github.com/sindresorhus/get-stream#readme", - "keywords": [ - "get", - "stream", - "promise", - "concat", - "string", - "text", - "buffer", - "read", - "data", - "consume", - "readable", - "readablestream", - "array", - "object" - ], - "license": "MIT", - "name": "get-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/get-stream.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "4.1.0" -} + "name": "get-stream", + "version": "4.1.0", + "description": "Get a stream as a string, buffer, or array", + "license": "MIT", + "repository": "sindresorhus/get-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "buffer-stream.js" + ], + "keywords": [ + "get", + "stream", + "promise", + "concat", + "string", + "text", + "buffer", + "read", + "data", + "consume", + "readable", + "readablestream", + "array", + "object" + ], + "dependencies": { + "pump": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "into-stream": "^3.0.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" +,"_integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" +,"_from": "get-stream@4.1.0" +} \ No newline at end of file diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json index f7547c5a9..e5f8484d4 100644 --- a/node_modules/glob-parent/package.json +++ b/node_modules/glob-parent/package.json @@ -1,56 +1,32 @@ { - "_args": [ - [ - "glob-parent@5.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "glob-parent", + "version": "5.1.1", + "description": "Extract the non-magic parent path from a glob string.", + "author": "Gulp Team (https://gulpjs.com/)", + "contributors": [ + "Elan Shanker (https://github.com/es128)", + "Blaine Bublitz " ], - "_development": true, - "_from": "glob-parent@5.1.1", - "_id": "glob-parent@5.1.1", - "_inBundle": false, - "_integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "_location": "/glob-parent", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "glob-parent@5.1.1", - "name": "glob-parent", - "escapedName": "glob-parent", - "rawSpec": "5.1.1", - "saveSpec": null, - "fetchSpec": "5.1.1" + "repository": "gulpjs/glob-parent", + "license": "ISC", + "engines": { + "node": ">= 6" }, - "_requiredBy": [ - "/chokidar", - "/fast-glob" + "main": "index.js", + "files": [ + "LICENSE", + "index.js" ], - "_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "_spec": "5.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Gulp Team", - "email": "team@gulpjs.com", - "url": "https://gulpjs.com/" - }, - "bugs": { - "url": "https://github.com/gulpjs/glob-parent/issues" + "scripts": { + "lint": "eslint .", + "pretest": "npm run lint", + "test": "nyc mocha --async-only", + "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", + "coveralls": "nyc report --reporter=text-lcov | coveralls" }, - "contributors": [ - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Blaine Bublitz", - "email": "blaine.bublitz@gmail.com" - } - ], "dependencies": { "is-glob": "^4.0.1" }, - "description": "Extract the non-magic parent path from a glob string.", "devDependencies": { "coveralls": "^3.0.11", "eslint": "^2.13.1", @@ -59,14 +35,6 @@ "mocha": "^6.0.2", "nyc": "^13.3.0" }, - "engines": { - "node": ">= 6" - }, - "files": [ - "LICENSE", - "index.js" - ], - "homepage": "https://github.com/gulpjs/glob-parent#readme", "keywords": [ "glob", "parent", @@ -76,20 +44,9 @@ "directory", "base", "wildcard" - ], - "license": "ISC", - "main": "index.js", - "name": "glob-parent", - "repository": { - "type": "git", - "url": "git+https://github.com/gulpjs/glob-parent.git" - }, - "scripts": { - "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "lint": "eslint .", - "pretest": "npm run lint", - "test": "nyc mocha --async-only" - }, - "version": "5.1.1" -} + ] + +,"_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz" +,"_integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==" +,"_from": "glob-parent@5.1.1" +} \ No newline at end of file diff --git a/node_modules/glob/package.json b/node_modules/glob/package.json index ffaad2383..715f73a54 100644 --- a/node_modules/glob/package.json +++ b/node_modules/glob/package.json @@ -1,42 +1,20 @@ { - "_args": [ - [ - "glob@7.1.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "glob@7.1.6", - "_id": "glob@7.1.6", - "_inBundle": false, - "_integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "_location": "/glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "glob@7.1.6", - "name": "glob", - "escapedName": "glob", - "rawSpec": "7.1.6", - "saveSpec": null, - "fetchSpec": "7.1.6" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "name": "glob", + "description": "a little globber", + "version": "7.1.6", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-glob.git" }, - "_requiredBy": [ - "/del/globby", - "/rimraf", - "/tslint" + "main": "glob.js", + "files": [ + "glob.js", + "sync.js", + "common.js" ], - "_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "_spec": "7.1.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "engines": { + "node": "*" }, "dependencies": { "fs.realpath": "^1.0.0", @@ -46,40 +24,27 @@ "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, - "description": "a little globber", "devDependencies": { "mkdirp": "0", "rimraf": "^2.2.8", "tap": "^12.0.1", "tick": "0.0.6" }, - "engines": { - "node": "*" - }, - "files": [ - "glob.js", - "sync.js", - "common.js" - ], - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "license": "ISC", - "main": "glob.js", - "name": "glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, "scripts": { - "bench": "bash benchmark.sh", - "benchclean": "node benchclean.js", "prepublish": "npm run benchclean", - "prof": "bash prof.sh && cat profile.txt", "profclean": "rm -f v8.log profile.txt", "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", + "bench": "bash benchmark.sh", + "prof": "bash prof.sh && cat profile.txt", + "benchclean": "node benchclean.js" }, - "version": "7.1.6" -} + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + +,"_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" +,"_integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" +,"_from": "glob@7.1.6" +} \ No newline at end of file diff --git a/node_modules/global-dirs/package.json b/node_modules/global-dirs/package.json index 100085ab3..5b0b40cb8 100644 --- a/node_modules/global-dirs/package.json +++ b/node_modules/global-dirs/package.json @@ -1,91 +1,59 @@ { - "_args": [ - [ - "global-dirs@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "global-dirs@2.0.1", - "_id": "global-dirs@2.0.1", - "_inBundle": false, - "_integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", - "_location": "/global-dirs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "global-dirs@2.0.1", - "name": "global-dirs", - "escapedName": "global-dirs", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/is-installed-globally" - ], - "_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/global-dirs/issues" - }, - "dependencies": { - "ini": "^1.3.5" - }, - "description": "Get the directory of globally installed packages and binaries", - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/global-dirs#readme", - "keywords": [ - "global", - "prefix", - "path", - "paths", - "npm", - "yarn", - "node", - "modules", - "node-modules", - "package", - "packages", - "binary", - "binaries", - "bin", - "directory", - "directories", - "npmrc", - "rc", - "config", - "root", - "resolve" - ], - "license": "MIT", - "name": "global-dirs", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/global-dirs.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.1" -} + "name": "global-dirs", + "version": "2.0.1", + "description": "Get the directory of globally installed packages and binaries", + "license": "MIT", + "repository": "sindresorhus/global-dirs", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "global", + "prefix", + "path", + "paths", + "npm", + "yarn", + "node", + "modules", + "node-modules", + "package", + "packages", + "binary", + "binaries", + "bin", + "directory", + "directories", + "npmrc", + "rc", + "config", + "root", + "resolve" + ], + "dependencies": { + "ini": "^1.3.5" + }, + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz" +,"_integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==" +,"_from": "global-dirs@2.0.1" +} \ No newline at end of file diff --git a/node_modules/globby/package.json b/node_modules/globby/package.json index 3adc9e4b6..ea35313ac 100644 --- a/node_modules/globby/package.json +++ b/node_modules/globby/package.json @@ -1,118 +1,86 @@ { - "_args": [ - [ - "globby@11.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "globby@11.0.0", - "_id": "globby@11.0.0", - "_inBundle": false, - "_integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", - "_location": "/globby", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "globby@11.0.0", - "name": "globby", - "escapedName": "globby", - "rawSpec": "11.0.0", - "saveSpec": null, - "fetchSpec": "11.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz", - "_spec": "11.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "description": "User-friendly glob matching", - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts", - "gitignore.js", - "stream-utils.js" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/globby#readme", - "keywords": [ - "all", - "array", - "directories", - "expand", - "files", - "filesystem", - "filter", - "find", - "fnmatch", - "folders", - "fs", - "glob", - "globbing", - "globs", - "gulpfriendly", - "match", - "matcher", - "minimatch", - "multi", - "multiple", - "paths", - "pattern", - "patterns", - "traverse", - "util", - "utility", - "wildcard", - "wildcards", - "promise", - "gitignore", - "git" - ], - "license": "MIT", - "name": "globby", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, - "version": "11.0.0", - "xo": { - "ignores": [ - "fixtures" - ] - } -} + "name": "globby", + "version": "11.0.0", + "description": "User-friendly glob matching", + "license": "MIT", + "repository": "sindresorhus/globby", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "email": "sindresorhus@gmail.com", + "name": "Sindre Sorhus", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "gitignore.js", + "stream-utils.js" + ], + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } + +,"_resolved": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz" +,"_integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==" +,"_from": "globby@11.0.0" +} \ No newline at end of file diff --git a/node_modules/got/package.json b/node_modules/got/package.json index 1d2586677..bd81ae543 100644 --- a/node_modules/got/package.json +++ b/node_modules/got/package.json @@ -1,110 +1,78 @@ { - "_args": [ - [ - "got@9.6.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "got@9.6.0", - "_id": "got@9.6.0", - "_inBundle": false, - "_integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "_location": "/got", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "got@9.6.0", - "name": "got", - "escapedName": "got", - "rawSpec": "9.6.0", - "saveSpec": null, - "fetchSpec": "9.6.0" - }, - "_requiredBy": [ - "/package-json" - ], - "_resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "_spec": "9.6.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "ava": { - "concurrency": 4 - }, - "browser": { - "decompress-response": false, - "electron": false - }, - "bugs": { - "url": "https://github.com/sindresorhus/got/issues" - }, - "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "description": "Simplified HTTP requests", - "devDependencies": { - "ava": "^1.1.0", - "coveralls": "^3.0.0", - "delay": "^4.1.0", - "form-data": "^2.3.3", - "get-port": "^4.0.0", - "np": "^3.1.0", - "nyc": "^13.1.0", - "p-event": "^2.1.0", - "pem": "^1.13.2", - "proxyquire": "^2.0.1", - "sinon": "^7.2.2", - "slow-stream": "0.0.4", - "tempfile": "^2.0.0", - "tempy": "^0.2.1", - "tough-cookie": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8.6" - }, - "files": [ - "source" - ], - "homepage": "https://github.com/sindresorhus/got#readme", - "keywords": [ - "http", - "https", - "get", - "got", - "url", - "uri", - "request", - "util", - "utility", - "simple", - "curl", - "wget", - "fetch", - "net", - "network", - "electron" - ], - "license": "MIT", - "main": "source", - "name": "got", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/got.git" - }, - "scripts": { - "release": "np", - "test": "xo && nyc ava" - }, - "version": "9.6.0" -} + "name": "got", + "version": "9.6.0", + "description": "Simplified HTTP requests", + "license": "MIT", + "repository": "sindresorhus/got", + "main": "source", + "engines": { + "node": ">=8.6" + }, + "scripts": { + "test": "xo && nyc ava", + "release": "np" + }, + "files": [ + "source" + ], + "keywords": [ + "http", + "https", + "get", + "got", + "url", + "uri", + "request", + "util", + "utility", + "simple", + "curl", + "wget", + "fetch", + "net", + "network", + "electron" + ], + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "devDependencies": { + "ava": "^1.1.0", + "coveralls": "^3.0.0", + "delay": "^4.1.0", + "form-data": "^2.3.3", + "get-port": "^4.0.0", + "np": "^3.1.0", + "nyc": "^13.1.0", + "p-event": "^2.1.0", + "pem": "^1.13.2", + "proxyquire": "^2.0.1", + "sinon": "^7.2.2", + "slow-stream": "0.0.4", + "tempfile": "^2.0.0", + "tempy": "^0.2.1", + "tough-cookie": "^3.0.0", + "xo": "^0.24.0" + }, + "ava": { + "concurrency": 4 + }, + "browser": { + "decompress-response": false, + "electron": false + } + +,"_resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz" +,"_integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" +,"_from": "got@9.6.0" +} \ No newline at end of file diff --git a/node_modules/graceful-fs/package.json b/node_modules/graceful-fs/package.json index f2516af82..73bb9f911 100644 --- a/node_modules/graceful-fs/package.json +++ b/node_modules/graceful-fs/package.json @@ -1,57 +1,21 @@ { - "_args": [ - [ - "graceful-fs@4.2.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "graceful-fs@4.2.3", - "_id": "graceful-fs@4.2.3", - "_inBundle": false, - "_integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==", - "_location": "/graceful-fs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "graceful-fs@4.2.3", - "name": "graceful-fs", - "escapedName": "graceful-fs", - "rawSpec": "4.2.3", - "saveSpec": null, - "fetchSpec": "4.2.3" - }, - "_requiredBy": [ - "/configstore", - "/del", - "/load-json-file" - ], - "_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", - "_spec": "4.2.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/isaacs/node-graceful-fs/issues" - }, - "dependencies": {}, + "name": "graceful-fs", "description": "A drop-in replacement for fs, making various improvements.", - "devDependencies": { - "import-fresh": "^2.0.0", - "mkdirp": "^0.5.0", - "rimraf": "^2.2.8", - "tap": "^12.7.0" + "version": "4.2.3", + "repository": { + "type": "git", + "url": "https://github.com/isaacs/node-graceful-fs" }, + "main": "graceful-fs.js", "directories": { "test": "test" }, - "files": [ - "fs.js", - "graceful-fs.js", - "legacy-streams.js", - "polyfills.js", - "clone.js" - ], - "homepage": "https://github.com/isaacs/node-graceful-fs#readme", + "scripts": { + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "test": "node test.js | tap -" + }, "keywords": [ "fs", "module", @@ -69,17 +33,22 @@ "EACCESS" ], "license": "ISC", - "main": "graceful-fs.js", - "name": "graceful-fs", - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/node-graceful-fs.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "node test.js | tap -" + "devDependencies": { + "import-fresh": "^2.0.0", + "mkdirp": "^0.5.0", + "rimraf": "^2.2.8", + "tap": "^12.7.0" }, - "version": "4.2.3" -} + "files": [ + "fs.js", + "graceful-fs.js", + "legacy-streams.js", + "polyfills.js", + "clone.js" + ], + "dependencies": {} + +,"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz" +,"_integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" +,"_from": "graceful-fs@4.2.3" +} \ No newline at end of file diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json index 02e396308..b07fbde41 100644 --- a/node_modules/has-flag/package.json +++ b/node_modules/has-flag/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "has-flag@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-flag@3.0.0", - "_id": "has-flag@3.0.0", - "_inBundle": false, - "_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "_location": "/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-flag@3.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "has-flag", + "version": "3.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -67,14 +37,12 @@ "minimist", "optimist" ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" +,"_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" +,"_from": "has-flag@3.0.0" +} \ No newline at end of file diff --git a/node_modules/has-yarn/package.json b/node_modules/has-yarn/package.json index 431bdc196..0bbf4473c 100644 --- a/node_modules/has-yarn/package.json +++ b/node_modules/has-yarn/package.json @@ -1,75 +1,43 @@ { - "_args": [ - [ - "has-yarn@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-yarn@2.1.0", - "_id": "has-yarn@2.1.0", - "_inBundle": false, - "_integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "_location": "/has-yarn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-yarn@2.1.0", - "name": "has-yarn", - "escapedName": "has-yarn", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-yarn/issues" - }, - "description": "Check if a project is using Yarn", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-yarn#readme", - "keywords": [ - "yarn", - "has", - "detect", - "is", - "project", - "app", - "module", - "package", - "manager", - "npm" - ], - "license": "MIT", - "name": "has-yarn", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-yarn.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "has-yarn", + "version": "2.1.0", + "description": "Check if a project is using Yarn", + "license": "MIT", + "repository": "sindresorhus/has-yarn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "yarn", + "has", + "detect", + "is", + "project", + "app", + "module", + "package", + "manager", + "npm" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz" +,"_integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" +,"_from": "has-yarn@2.1.0" +} \ No newline at end of file diff --git a/node_modules/hosted-git-info/package.json b/node_modules/hosted-git-info/package.json index 0e9a023d2..1dc8e6464 100644 --- a/node_modules/hosted-git-info/package.json +++ b/node_modules/hosted-git-info/package.json @@ -1,73 +1,44 @@ { - "_args": [ - [ - "hosted-git-info@2.8.8", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "hosted-git-info@2.8.8", - "_id": "hosted-git-info@2.8.8", - "_inBundle": false, - "_integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", - "_location": "/hosted-git-info", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "hosted-git-info@2.8.8", - "name": "hosted-git-info", - "escapedName": "hosted-git-info", - "rawSpec": "2.8.8", - "saveSpec": null, - "fetchSpec": "2.8.8" - }, - "_requiredBy": [ - "/normalize-package-data" - ], - "_resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "_spec": "2.8.8", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org" - }, - "bugs": { - "url": "https://github.com/npm/hosted-git-info/issues" - }, + "name": "hosted-git-info", + "version": "2.8.8", "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", - "devDependencies": { - "standard": "^11.0.1", - "standard-version": "^4.4.0", - "tap": "^12.7.0" + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/hosted-git-info.git" }, - "files": [ - "index.js", - "git-host.js", - "git-host-info.js" - ], - "homepage": "https://github.com/npm/hosted-git-info", "keywords": [ "git", "github", "bitbucket", "gitlab" ], + "author": "Rebecca Turner (http://re-becca.org)", "license": "ISC", - "main": "index.js", - "name": "hosted-git-info", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/hosted-git-info.git" + "bugs": { + "url": "https://github.com/npm/hosted-git-info/issues" }, + "homepage": "https://github.com/npm/hosted-git-info", "scripts": { + "prerelease": "npm t", "postrelease": "npm publish --tag=ancient-legacy-fixes && git push --follow-tags", "posttest": "standard", - "prerelease": "npm t", "release": "standard-version -s", - "test": "tap -J --coverage=90 --no-esm test/*.js", - "test:coverage": "tap --coverage-report=html -J --coverage=90 --no-esm test/*.js" + "test:coverage": "tap --coverage-report=html -J --coverage=90 --no-esm test/*.js", + "test": "tap -J --coverage=90 --no-esm test/*.js" + }, + "devDependencies": { + "standard": "^11.0.1", + "standard-version": "^4.4.0", + "tap": "^12.7.0" }, - "version": "2.8.8" -} + "files": [ + "index.js", + "git-host.js", + "git-host-info.js" + ] + +,"_resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" +,"_integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" +,"_from": "hosted-git-info@2.8.8" +} \ No newline at end of file diff --git a/node_modules/http-cache-semantics/package.json b/node_modules/http-cache-semantics/package.json index bb0651cfb..baf02e311 100644 --- a/node_modules/http-cache-semantics/package.json +++ b/node_modules/http-cache-semantics/package.json @@ -1,64 +1,28 @@ { - "_args": [ - [ - "http-cache-semantics@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "http-cache-semantics@4.1.0", - "_id": "http-cache-semantics@4.1.0", - "_inBundle": false, - "_integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "_location": "/http-cache-semantics", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "http-cache-semantics@4.1.0", "name": "http-cache-semantics", - "escapedName": "http-cache-semantics", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kornel Lesiński", - "email": "kornel@geekhood.net", - "url": "https://kornel.ski/" - }, - "bugs": { - "url": "https://github.com/kornelski/http-cache-semantics/issues" - }, - "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", - "devDependencies": { - "eslint": "^5.13.0", - "eslint-plugin-prettier": "^3.0.1", - "husky": "^0.14.3", - "lint-staged": "^8.1.3", - "mocha": "^5.1.0", - "prettier": "^1.14.3", - "prettier-eslint-cli": "^4.7.1" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/kornelski/http-cache-semantics#readme", - "license": "BSD-2-Clause", - "main": "index.js", - "name": "http-cache-semantics", - "repository": { - "type": "git", - "url": "git+https://github.com/kornelski/http-cache-semantics.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "4.1.0" -} + "version": "4.1.0", + "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", + "repository": "https://github.com/kornelski/http-cache-semantics.git", + "main": "index.js", + "scripts": { + "test": "mocha" + }, + "files": [ + "index.js" + ], + "author": "Kornel Lesiński (https://kornel.ski/)", + "license": "BSD-2-Clause", + "devDependencies": { + "eslint": "^5.13.0", + "eslint-plugin-prettier": "^3.0.1", + "husky": "^0.14.3", + "lint-staged": "^8.1.3", + "mocha": "^5.1.0", + "prettier": "^1.14.3", + "prettier-eslint-cli": "^4.7.1" + } + +,"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" +,"_integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" +,"_from": "http-cache-semantics@4.1.0" +} \ No newline at end of file diff --git a/node_modules/ignore-by-default/package.json b/node_modules/ignore-by-default/package.json index 6928da3f3..c705e1523 100644 --- a/node_modules/ignore-by-default/package.json +++ b/node_modules/ignore-by-default/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "ignore-by-default@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ignore-by-default@1.0.1", - "_id": "ignore-by-default@1.0.1", - "_inBundle": false, - "_integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", - "_location": "/ignore-by-default", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ignore-by-default@1.0.1", - "name": "ignore-by-default", - "escapedName": "ignore-by-default", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" - }, - "bugs": { - "url": "https://github.com/novemberborn/ignore-by-default/issues" - }, + "name": "ignore-by-default", + "version": "1.0.1", "description": "A list of directories you should ignore by default", - "devDependencies": { - "figures": "^1.4.0", - "standard": "^6.0.4" - }, + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/novemberborn/ignore-by-default#readme", + "scripts": { + "test": "standard && node test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/ignore-by-default.git" + }, "keywords": [ "ignore", "chokidar", @@ -52,15 +21,18 @@ "glob", "pattern" ], + "author": "Mark Wubben (https://novemberborn.net/)", "license": "ISC", - "main": "index.js", - "name": "ignore-by-default", - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/ignore-by-default.git" - }, - "scripts": { - "test": "standard && node test.js" + "bugs": { + "url": "https://github.com/novemberborn/ignore-by-default/issues" }, - "version": "1.0.1" -} + "homepage": "https://github.com/novemberborn/ignore-by-default#readme", + "devDependencies": { + "figures": "^1.4.0", + "standard": "^6.0.4" + } + +,"_resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz" +,"_integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" +,"_from": "ignore-by-default@1.0.1" +} \ No newline at end of file diff --git a/node_modules/ignore/package.json b/node_modules/ignore/package.json index 20ce4c3be..d101f0e82 100644 --- a/node_modules/ignore/package.json +++ b/node_modules/ignore/package.json @@ -1,68 +1,32 @@ { - "_args": [ - [ - "ignore@5.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ignore@5.1.4", - "_id": "ignore@5.1.4", - "_inBundle": false, - "_integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==", - "_location": "/ignore", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ignore@5.1.4", - "name": "ignore", - "escapedName": "ignore", - "rawSpec": "5.1.4", - "saveSpec": null, - "fetchSpec": "5.1.4" - }, - "_requiredBy": [ - "/del/globby", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz", - "_spec": "5.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "kael" - }, - "bugs": { - "url": "https://github.com/kaelzhang/node-ignore/issues" - }, + "name": "ignore", + "version": "5.1.4", "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.", - "devDependencies": { - "@babel/cli": "^7.5.5", - "@babel/core": "^7.5.5", - "@babel/preset-env": "^7.5.5", - "codecov": "^3.5.0", - "debug": "^4.1.1", - "eslint": "^6.1.0", - "eslint-config-ostai": "^3.0.0", - "eslint-plugin-import": "^2.18.2", - "mkdirp": "^0.5.1", - "pre-suf": "^1.1.1", - "rimraf": "^2.7.0", - "spawn-sync": "^2.0.0", - "tap": "^14.6.1", - "tmp": "0.1.0", - "typescript": "^3.5.3" - }, - "engines": { - "node": ">= 4" - }, "files": [ "legacy.js", "index.js", "index.d.ts", "LICENSE-MIT" ], - "homepage": "https://github.com/kaelzhang/node-ignore#readme", + "scripts": { + "prepublishOnly": "npm run build", + "build": "babel -o legacy.js index.js", + "test:lint": "eslint .", + "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", + "test:ts": "node ./test/ts/simple.js", + "test:git": "tap test/git-check-ignore.js", + "test:ignore": "tap test/ignore.js", + "test:others": "tap test/others.js", + "test:cases": "tap test/*.js --coverage", + "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", + "test": "npm run test:only", + "test:win32": "IGNORE_TEST_WIN32=1 npm run test", + "posttest": "tap --coverage-report=html && codecov" + }, + "repository": { + "type": "git", + "url": "git@github.com:kaelzhang/node-ignore.git" + }, "keywords": [ "ignore", ".gitignore", @@ -78,26 +42,33 @@ "asterisks", "regular-expression" ], + "author": "kael", "license": "MIT", - "name": "ignore", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git" + "bugs": { + "url": "https://github.com/kaelzhang/node-ignore/issues" }, - "scripts": { - "build": "babel -o legacy.js index.js", - "posttest": "tap --coverage-report=html && codecov", - "prepublishOnly": "npm run build", - "test": "npm run test:only", - "test:cases": "tap test/*.js --coverage", - "test:git": "tap test/git-check-ignore.js", - "test:ignore": "tap test/ignore.js", - "test:lint": "eslint .", - "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", - "test:others": "tap test/others.js", - "test:ts": "node ./test/ts/simple.js", - "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", - "test:win32": "IGNORE_TEST_WIN32=1 npm run test" + "devDependencies": { + "@babel/cli": "^7.5.5", + "@babel/core": "^7.5.5", + "@babel/preset-env": "^7.5.5", + "codecov": "^3.5.0", + "debug": "^4.1.1", + "eslint": "^6.1.0", + "eslint-config-ostai": "^3.0.0", + "eslint-plugin-import": "^2.18.2", + "mkdirp": "^0.5.1", + "pre-suf": "^1.1.1", + "rimraf": "^2.7.0", + "spawn-sync": "^2.0.0", + "tap": "^14.6.1", + "tmp": "0.1.0", + "typescript": "^3.5.3" }, - "version": "5.1.4" -} + "engines": { + "node": ">= 4" + } + +,"_resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz" +,"_integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==" +,"_from": "ignore@5.1.4" +} \ No newline at end of file diff --git a/node_modules/import-lazy/package.json b/node_modules/import-lazy/package.json index 6b07dc9a4..db9a3a407 100644 --- a/node_modules/import-lazy/package.json +++ b/node_modules/import-lazy/package.json @@ -1,59 +1,29 @@ { - "_args": [ - [ - "import-lazy@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "import-lazy@2.1.0", - "_id": "import-lazy@2.1.0", - "_inBundle": false, - "_integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", - "_location": "/import-lazy", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "import-lazy@2.1.0", - "name": "import-lazy", - "escapedName": "import-lazy", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "import-lazy", + "version": "2.1.0", + "description": "Import modules lazily", + "license": "MIT", + "repository": "sindresorhus/import-lazy", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/import-lazy/issues" - }, "contributors": [ { "name": "Jorge Bucaran", "email": "jbucaran@me.com" } ], - "description": "Import modules lazily", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/import-lazy#readme", "keywords": [ "import", "require", @@ -67,14 +37,12 @@ "proxy", "proxies" ], - "license": "MIT", - "name": "import-lazy", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/import-lazy.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.1.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz" +,"_integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" +,"_from": "import-lazy@2.1.0" +} \ No newline at end of file diff --git a/node_modules/import-local/package.json b/node_modules/import-local/package.json index ab36ddeca..96f445b3b 100644 --- a/node_modules/import-local/package.json +++ b/node_modules/import-local/package.json @@ -1,87 +1,55 @@ { - "_args": [ - [ - "import-local@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "import-local@3.0.2", - "_id": "import-local@3.0.2", - "_inBundle": false, - "_integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", - "_location": "/import-local", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "import-local@3.0.2", - "name": "import-local", - "escapedName": "import-local", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "bugs": { - "url": "https://github.com/sindresorhus/import-local/issues" - }, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "description": "Let a globally installed package use a locally installed version of itself if available", - "devDependencies": { - "ava": "2.1.0", - "cpy": "^7.0.1", - "del": "^4.1.1", - "execa": "^2.0.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "fixtures/cli.js" - ], - "homepage": "https://github.com/sindresorhus/import-local#readme", - "keywords": [ - "import", - "local", - "require", - "resolve", - "global", - "version", - "prefer", - "cli" - ], - "license": "MIT", - "name": "import-local", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/import-local.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.2", - "xo": { - "ignores": [ - "fixtures" - ] - } -} + "name": "import-local", + "version": "3.0.2", + "description": "Let a globally installed package use a locally installed version of itself if available", + "license": "MIT", + "repository": "sindresorhus/import-local", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "fixtures/cli.js" + ], + "keywords": [ + "import", + "local", + "require", + "resolve", + "global", + "version", + "prefer", + "cli" + ], + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "devDependencies": { + "ava": "2.1.0", + "cpy": "^7.0.1", + "del": "^4.1.1", + "execa": "^2.0.1", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } + +,"_resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz" +,"_integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==" +,"_from": "import-local@3.0.2" +} \ No newline at end of file diff --git a/node_modules/imurmurhash/package.json b/node_modules/imurmurhash/package.json index c4654ae67..129286ed0 100644 --- a/node_modules/imurmurhash/package.json +++ b/node_modules/imurmurhash/package.json @@ -1,54 +1,22 @@ { - "_args": [ - [ - "imurmurhash@0.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "imurmurhash@0.1.4", - "_id": "imurmurhash@0.1.4", - "_inBundle": false, - "_integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "_location": "/imurmurhash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "imurmurhash@0.1.4", - "name": "imurmurhash", - "escapedName": "imurmurhash", - "rawSpec": "0.1.4", - "saveSpec": null, - "fetchSpec": "0.1.4" - }, - "_requiredBy": [ - "/write-file-atomic" - ], - "_resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "_spec": "0.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jens Taylor", - "email": "jensyt@gmail.com", - "url": "https://github.com/homebrewing" - }, - "bugs": { - "url": "https://github.com/jensyt/imurmurhash-js/issues" - }, - "dependencies": {}, + "name": "imurmurhash", + "version": "0.1.4", "description": "An incremental implementation of MurmurHash3", - "devDependencies": {}, - "engines": { - "node": ">=0.8.19" - }, + "homepage": "https://github.com/jensyt/imurmurhash-js", + "main": "imurmurhash.js", "files": [ "imurmurhash.js", "imurmurhash.min.js", "package.json", "README.md" ], - "homepage": "https://github.com/jensyt/imurmurhash-js", + "repository": { + "type": "git", + "url": "https://github.com/jensyt/imurmurhash-js" + }, + "bugs": { + "url": "https://github.com/jensyt/imurmurhash-js/issues" + }, "keywords": [ "murmur", "murmurhash", @@ -56,12 +24,21 @@ "hash", "incremental" ], + "author": { + "name": "Jens Taylor", + "email": "jensyt@gmail.com", + "url": "https://github.com/homebrewing" + }, "license": "MIT", - "main": "imurmurhash.js", - "name": "imurmurhash", - "repository": { - "type": "git", - "url": "git+https://github.com/jensyt/imurmurhash-js.git" + "dependencies": { + }, + "devDependencies": { }, - "version": "0.1.4" -} + "engines": { + "node": ">=0.8.19" + } + +,"_resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" +,"_integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" +,"_from": "imurmurhash@0.1.4" +} \ No newline at end of file diff --git a/node_modules/indent-string/package.json b/node_modules/indent-string/package.json index d57b127c3..2254e46cf 100644 --- a/node_modules/indent-string/package.json +++ b/node_modules/indent-string/package.json @@ -1,74 +1,41 @@ { - "_args": [ - [ - "indent-string@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "indent-string@4.0.0", - "_id": "indent-string@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "_location": "/indent-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "indent-string@4.0.0", - "name": "indent-string", - "escapedName": "indent-string", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/aggregate-error", - "/ava" - ], - "_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/indent-string/issues" - }, - "description": "Indent each line in a string", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/indent-string#readme", - "keywords": [ - "indent", - "string", - "pad", - "align", - "line", - "text", - "each", - "every" - ], - "license": "MIT", - "name": "indent-string", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/indent-string.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "indent-string", + "version": "4.0.0", + "description": "Indent each line in a string", + "license": "MIT", + "repository": "sindresorhus/indent-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "indent", + "string", + "pad", + "align", + "line", + "text", + "each", + "every" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" +,"_integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" +,"_from": "indent-string@4.0.0" +} \ No newline at end of file diff --git a/node_modules/inflight/package.json b/node_modules/inflight/package.json index 2ae6b5f1d..102b3be3a 100644 --- a/node_modules/inflight/package.json +++ b/node_modules/inflight/package.json @@ -1,62 +1,33 @@ { - "_args": [ - [ - "inflight@1.0.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "inflight@1.0.6", - "_id": "inflight@1.0.6", - "_inBundle": false, - "_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "_location": "/inflight", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "inflight@1.0.6", - "name": "inflight", - "escapedName": "inflight", - "rawSpec": "1.0.6", - "saveSpec": null, - "fetchSpec": "1.0.6" - }, - "_requiredBy": [ - "/glob" + "name": "inflight", + "version": "1.0.6", + "description": "Add callbacks to requests in flight to avoid async duplication", + "main": "inflight.js", + "files": [ + "inflight.js" ], - "_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "_spec": "1.0.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/inflight/issues" - }, "dependencies": { "once": "^1.3.0", "wrappy": "1" }, - "description": "Add callbacks to requests in flight to avoid async duplication", "devDependencies": { "tap": "^7.1.2" }, - "files": [ - "inflight.js" - ], - "homepage": "https://github.com/isaacs/inflight", - "license": "ISC", - "main": "inflight.js", - "name": "inflight", + "scripts": { + "test": "tap test.js --100" + }, "repository": { "type": "git", - "url": "git+https://github.com/npm/inflight.git" + "url": "https://github.com/npm/inflight.git" }, - "scripts": { - "test": "tap test.js --100" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "bugs": { + "url": "https://github.com/isaacs/inflight/issues" }, - "version": "1.0.6" -} + "homepage": "https://github.com/isaacs/inflight", + "license": "ISC" + +,"_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" +,"_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" +,"_from": "inflight@1.0.6" +} \ No newline at end of file diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json index af3a72d04..48b9816a5 100644 --- a/node_modules/inherits/package.json +++ b/node_modules/inherits/package.json @@ -1,46 +1,7 @@ { - "_args": [ - [ - "inherits@2.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "inherits@2.0.3", - "_id": "inherits@2.0.3", - "_inBundle": false, - "_integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "_location": "/inherits", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "inherits@2.0.3", - "name": "inherits", - "escapedName": "inherits", - "rawSpec": "2.0.3", - "saveSpec": null, - "fetchSpec": "2.0.3" - }, - "_requiredBy": [ - "/glob", - "/util" - ], - "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "_spec": "2.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "browser": "./inherits_browser.js", - "bugs": { - "url": "https://github.com/isaacs/inherits/issues" - }, + "name": "inherits", "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "devDependencies": { - "tap": "^7.1.0" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ], - "homepage": "https://github.com/isaacs/inherits#readme", + "version": "2.0.3", "keywords": [ "inheritance", "class", @@ -51,15 +12,22 @@ "browser", "browserify" ], - "license": "ISC", "main": "./inherits.js", - "name": "inherits", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/inherits.git" - }, + "browser": "./inherits_browser.js", + "repository": "git://github.com/isaacs/inherits", + "license": "ISC", "scripts": { "test": "node test" }, - "version": "2.0.3" -} + "devDependencies": { + "tap": "^7.1.0" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ] + +,"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" +,"_integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" +,"_from": "inherits@2.0.3" +} \ No newline at end of file diff --git a/node_modules/ini/package.json b/node_modules/ini/package.json index 9d111a1d1..85f8b965a 100644 --- a/node_modules/ini/package.json +++ b/node_modules/ini/package.json @@ -1,68 +1,34 @@ { - "_args": [ - [ - "ini@1.3.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ini@1.3.5", - "_id": "ini@1.3.5", - "_inBundle": false, - "_integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "_location": "/ini", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ini@1.3.5", - "name": "ini", - "escapedName": "ini", - "rawSpec": "1.3.5", - "saveSpec": null, - "fetchSpec": "1.3.5" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "name": "ini", + "description": "An ini encoder/decoder for node", + "version": "1.3.5", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/ini.git" }, - "_requiredBy": [ - "/global-dirs", - "/rc" - ], - "_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "_spec": "1.3.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "main": "ini.js", + "scripts": { + "pretest": "standard ini.js", + "test": "tap test/*.js --100 -J", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, - "bugs": { - "url": "https://github.com/isaacs/ini/issues" + "engines": { + "node": "*" }, "dependencies": {}, - "description": "An ini encoder/decoder for node", "devDependencies": { "standard": "^10.0.3", "tap": "^10.7.3 || 11" }, - "engines": { - "node": "*" - }, + "license": "ISC", "files": [ "ini.js" - ], - "homepage": "https://github.com/isaacs/ini#readme", - "license": "ISC", - "main": "ini.js", - "name": "ini", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/ini.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "pretest": "standard ini.js", - "preversion": "npm test", - "test": "tap test/*.js --100 -J" - }, - "version": "1.3.5" -} + ] + +,"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz" +,"_integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" +,"_from": "ini@1.3.5" +} \ No newline at end of file diff --git a/node_modules/irregular-plurals/package.json b/node_modules/irregular-plurals/package.json index ad2a44055..7da904bbd 100644 --- a/node_modules/irregular-plurals/package.json +++ b/node_modules/irregular-plurals/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "irregular-plurals@3.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "irregular-plurals@3.2.0", - "_id": "irregular-plurals@3.2.0", - "_inBundle": false, - "_integrity": "sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==", - "_location": "/irregular-plurals", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "irregular-plurals@3.2.0", - "name": "irregular-plurals", - "escapedName": "irregular-plurals", - "rawSpec": "3.2.0", - "saveSpec": null, - "fetchSpec": "3.2.0" - }, - "_requiredBy": [ - "/plur" - ], - "_resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.2.0.tgz", - "_spec": "3.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/irregular-plurals/issues" - }, - "description": "Map of nouns to their irregular plural form", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "irregular-plurals.json" - ], - "homepage": "https://github.com/sindresorhus/irregular-plurals#readme", - "keywords": [ - "word", - "words", - "list", - "map", - "hash", - "json", - "irregular", - "plural", - "plurals", - "noun", - "nouns" - ], - "license": "MIT", - "name": "irregular-plurals", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/irregular-plurals.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "tsd": { - "compilerOptions": { - "resolveJsonModule": true - } - }, - "version": "3.2.0" -} + "name": "irregular-plurals", + "version": "3.2.0", + "description": "Map of nouns to their irregular plural form", + "license": "MIT", + "repository": "sindresorhus/irregular-plurals", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "irregular-plurals.json" + ], + "keywords": [ + "word", + "words", + "list", + "map", + "hash", + "json", + "irregular", + "plural", + "plurals", + "noun", + "nouns" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "tsd": { + "compilerOptions": { + "resolveJsonModule": true + } + } + +,"_resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.2.0.tgz" +,"_integrity": "sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==" +,"_from": "irregular-plurals@3.2.0" +} \ No newline at end of file diff --git a/node_modules/is-arrayish/package.json b/node_modules/is-arrayish/package.json index 60cb79d52..91f64fee4 100644 --- a/node_modules/is-arrayish/package.json +++ b/node_modules/is-arrayish/package.json @@ -1,50 +1,8 @@ { - "_args": [ - [ - "is-arrayish@0.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-arrayish@0.2.1", - "_id": "is-arrayish@0.2.1", - "_inBundle": false, - "_integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "_location": "/is-arrayish", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-arrayish@0.2.1", - "name": "is-arrayish", - "escapedName": "is-arrayish", - "rawSpec": "0.2.1", - "saveSpec": null, - "fetchSpec": "0.2.1" - }, - "_requiredBy": [ - "/error-ex" - ], - "_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "_spec": "0.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Qix", - "url": "http://github.com/qix-" - }, - "bugs": { - "url": "https://github.com/qix-/node-is-arrayish/issues" - }, + "name": "is-arrayish", "description": "Determines if an object can be used as an array", - "devDependencies": { - "coffee-script": "^1.9.3", - "coveralls": "^2.11.2", - "istanbul": "^0.3.17", - "mocha": "^2.2.5", - "should": "^7.0.1", - "xo": "^0.6.1" - }, - "homepage": "https://github.com/qix-/node-is-arrayish#readme", + "version": "0.2.1", + "author": "Qix (http://github.com/qix-)", "keywords": [ "is", "array", @@ -57,14 +15,24 @@ "type" ], "license": "MIT", - "name": "is-arrayish", - "repository": { - "type": "git", - "url": "git+https://github.com/qix-/node-is-arrayish.git" - }, "scripts": { "pretest": "xo", "test": "mocha --compilers coffee:coffee-script/register" }, - "version": "0.2.1" -} + "repository": { + "type": "git", + "url": "https://github.com/qix-/node-is-arrayish.git" + }, + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.6.1" + } + +,"_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" +,"_integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" +,"_from": "is-arrayish@0.2.1" +} \ No newline at end of file diff --git a/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json index 8974dcdbc..4998949a8 100644 --- a/node_modules/is-binary-path/package.json +++ b/node_modules/is-binary-path/package.json @@ -1,76 +1,44 @@ { - "_args": [ - [ - "is-binary-path@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-binary-path@2.1.0", - "_id": "is-binary-path@2.1.0", - "_inBundle": false, - "_integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "_location": "/is-binary-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-binary-path@2.1.0", - "name": "is-binary-path", - "escapedName": "is-binary-path", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-binary-path/issues" - }, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "description": "Check if a file path is a binary file", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-binary-path#readme", - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "path", - "check", - "detect", - "is" - ], - "license": "MIT", - "name": "is-binary-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-binary-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "is-binary-path", + "version": "2.1.0", + "description": "Check if a file path is a binary file", + "license": "MIT", + "repository": "sindresorhus/is-binary-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "path", + "check", + "detect", + "is" + ], + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" +,"_integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" +,"_from": "is-binary-path@2.1.0" +} \ No newline at end of file diff --git a/node_modules/is-buffer/package.json b/node_modules/is-buffer/package.json index c8be297ec..79d8ab75b 100644 --- a/node_modules/is-buffer/package.json +++ b/node_modules/is-buffer/package.json @@ -1,32 +1,7 @@ { - "_args": [ - [ - "is-buffer@1.1.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "is-buffer@1.1.6", - "_id": "is-buffer@1.1.6", - "_inBundle": false, - "_integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "_location": "/is-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-buffer@1.1.6", - "name": "is-buffer", - "escapedName": "is-buffer", - "rawSpec": "1.1.6", - "saveSpec": null, - "fetchSpec": "1.1.6" - }, - "_requiredBy": [ - "/md5" - ], - "_resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "_spec": "1.1.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "is-buffer", + "description": "Determine if an object is a Buffer", + "version": "1.1.6", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -36,13 +11,11 @@ "url": "https://github.com/feross/is-buffer/issues" }, "dependencies": {}, - "description": "Determine if an object is a Buffer", "devDependencies": { "standard": "*", "tape": "^4.0.0", "zuul": "^3.0.0" }, - "homepage": "https://github.com/feross/is-buffer#readme", "keywords": [ "buffer", "buffers", @@ -62,7 +35,6 @@ ], "license": "MIT", "main": "index.js", - "name": "is-buffer", "repository": { "type": "git", "url": "git://github.com/feross/is-buffer.git" @@ -75,6 +47,9 @@ }, "testling": { "files": "test/*.js" - }, - "version": "1.1.6" -} + } + +,"_resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" +,"_integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" +,"_from": "is-buffer@1.1.6" +} \ No newline at end of file diff --git a/node_modules/is-ci/package.json b/node_modules/is-ci/package.json index 40b048db5..7ce825a5f 100644 --- a/node_modules/is-ci/package.json +++ b/node_modules/is-ci/package.json @@ -1,57 +1,23 @@ { - "_args": [ - [ - "is-ci@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-ci@2.0.0", - "_id": "is-ci@2.0.0", - "_inBundle": false, - "_integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "_location": "/is-ci", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-ci@2.0.0", - "name": "is-ci", - "escapedName": "is-ci", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Thomas Watson Steen", - "email": "w@tson.dk", - "url": "https://twitter.com/wa7son" - }, - "bin": { - "is-ci": "bin.js" - }, - "bugs": { - "url": "https://github.com/watson/is-ci/issues" - }, - "coordinates": [ - 55.778272, - 12.593116 - ], + "name": "is-ci", + "version": "2.0.0", + "description": "Detect if the current environment is a CI server", + "bin": "bin.js", + "main": "index.js", "dependencies": { "ci-info": "^2.0.0" }, - "description": "Detect if the current environment is a CI server", "devDependencies": { "clear-module": "^3.0.0", "standard": "^12.0.1" }, - "homepage": "https://github.com/watson/is-ci", + "scripts": { + "test": "standard && node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/watson/is-ci.git" + }, "keywords": [ "ci", "continuous", @@ -59,15 +25,18 @@ "test", "detect" ], + "author": "Thomas Watson Steen (https://twitter.com/wa7son)", "license": "MIT", - "main": "index.js", - "name": "is-ci", - "repository": { - "type": "git", - "url": "git+https://github.com/watson/is-ci.git" - }, - "scripts": { - "test": "standard && node test.js" + "bugs": { + "url": "https://github.com/watson/is-ci/issues" }, - "version": "2.0.0" -} + "homepage": "https://github.com/watson/is-ci", + "coordinates": [ + 55.778272, + 12.593116 + ] + +,"_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" +,"_integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" +,"_from": "is-ci@2.0.0" +} \ No newline at end of file diff --git a/node_modules/is-error/package.json b/node_modules/is-error/package.json index f0b1b14ba..94d4817e8 100644 --- a/node_modules/is-error/package.json +++ b/node_modules/is-error/package.json @@ -1,51 +1,19 @@ -{ - "_args": [ - [ - "is-error@2.2.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-error@2.2.2", - "_id": "is-error@2.2.2", - "_inBundle": false, - "_integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", - "_location": "/is-error", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-error@2.2.2", - "name": "is-error", - "escapedName": "is-error", - "rawSpec": "2.2.2", - "saveSpec": null, - "fetchSpec": "2.2.2" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", - "_spec": "2.2.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Raynos", - "email": "raynos2@gmail.com" - }, +{ "name": "is-error", + "version": "2.2.2", + "description": "Detect whether a value is an error", + "keywords": [], + "author": "Raynos ", + "repository": "git://github.com/mk-pmb/is-error-js.git", + "main": "index", + "homepage": "https://github.com/mk-pmb/is-error-js", "bugs": { "url": "https://github.com/mk-pmb/is-error-js/issues" }, "contributors": [ - { - "name": "Raynos" - }, - { - "name": "M.K.", - "url": "https://github.com/mk-pmb" - } + "Raynos", + "M.K. (https://github.com/mk-pmb)" ], "dependencies": {}, - "description": "Detect whether a value is an error", "devDependencies": { "coveralls": "^2.10.0", "istanbul": "^0.3.5", @@ -55,31 +23,26 @@ "tap-spec": "^2.1.1", "tape": "^3.4.0" }, + "license": "MIT", + "scripts": { + "test": "npm run jshint -s && npm run cover -s", + "unit-test": "node test/index.js | tap-spec", + "jshint": "lint-trap .", + "cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s", + "check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100", + "view-cover": "opn ./coverage/index.html", + "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || true)" + }, "engine": { "node": ">= 0.8.x" }, - "homepage": "https://github.com/mk-pmb/is-error-js", - "keywords": [], - "license": "MIT", - "main": "index", - "name": "is-error", - "ngen-version": "5.1.0", "pre-commit": [ "test" ], "pre-commit.silent": true, - "repository": { - "type": "git", - "url": "git://github.com/mk-pmb/is-error-js.git" - }, - "scripts": { - "check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100", - "cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s", - "jshint": "lint-trap .", - "test": "npm run jshint -s && npm run cover -s", - "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || true)", - "unit-test": "node test/index.js | tap-spec", - "view-cover": "opn ./coverage/index.html" - }, - "version": "2.2.2" -} + "ngen-version": "5.1.0" + +,"_resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz" +,"_integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==" +,"_from": "is-error@2.2.2" +} \ No newline at end of file diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index 9a03199fa..956af5894 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -1,52 +1,28 @@ { - "_args": [ - [ - "is-extglob@2.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-extglob@2.1.1", - "_id": "is-extglob@2.1.1", - "_inBundle": false, - "_integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "_location": "/is-extglob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-extglob@2.1.1", - "name": "is-extglob", - "escapedName": "is-extglob", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" + "name": "is-extglob", + "description": "Returns true if a string has an extglob.", + "version": "2.1.1", + "homepage": "https://github.com/jonschlinkert/is-extglob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/is-extglob", + "bugs": { + "url": "https://github.com/jonschlinkert/is-extglob/issues" }, - "_requiredBy": [ - "/is-glob" + "license": "MIT", + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" + "main": "index.js", + "engines": { + "node": ">=0.10.0" }, - "bugs": { - "url": "https://github.com/jonschlinkert/is-extglob/issues" + "scripts": { + "test": "mocha" }, - "description": "Returns true if a string has an extglob.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-extglob", "keywords": [ "bash", "braces", @@ -66,16 +42,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-extglob", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-extglob.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -99,6 +65,9 @@ "lint": { "reflinks": true } - }, - "version": "2.1.1" -} + } + +,"_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" +,"_integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" +,"_from": "is-extglob@2.1.1" +} \ No newline at end of file diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json index d89b5c41e..3122d9996 100644 --- a/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/is-fullwidth-code-point/package.json @@ -1,79 +1,46 @@ { - "_args": [ - [ - "is-fullwidth-code-point@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-fullwidth-code-point@3.0.0", - "_id": "is-fullwidth-code-point@3.0.0", - "_inBundle": false, - "_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "_location": "/is-fullwidth-code-point", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-fullwidth-code-point@3.0.0", - "name": "is-fullwidth-code-point", - "escapedName": "is-fullwidth-code-point", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/slice-ansi", - "/string-width" - ], - "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" - }, - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", - "keywords": [ - "fullwidth", - "full-width", - "full", - "width", - "unicode", - "character", - "string", - "codepoint", - "code", - "point", - "is", - "detect", - "check" - ], - "license": "MIT", - "name": "is-fullwidth-code-point", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "version": "3.0.0" -} + "name": "is-fullwidth-code-point", + "version": "3.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "license": "MIT", + "repository": "sindresorhus/is-fullwidth-code-point", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "fullwidth", + "full-width", + "full", + "width", + "unicode", + "character", + "string", + "codepoint", + "code", + "point", + "is", + "detect", + "check" + ], + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" +,"_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" +,"_from": "is-fullwidth-code-point@3.0.0" +} \ No newline at end of file diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index e9de016fd..2ca9e34d6 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -1,71 +1,36 @@ { - "_args": [ - [ - "is-glob@4.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-glob@4.0.1", - "_id": "is-glob@4.0.1", - "_inBundle": false, - "_integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "_location": "/is-glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-glob@4.0.1", - "name": "is-glob", - "escapedName": "is-glob", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" - }, - "_requiredBy": [ - "/chokidar", - "/del", - "/glob-parent" + "name": "is-glob", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "version": "4.0.1", + "homepage": "https://github.com/micromatch/is-glob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Daniel Perez (https://tuvistavie.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/is-glob", "bugs": { "url": "https://github.com/micromatch/is-glob/issues" }, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Daniel Perez", - "url": "https://tuvistavie.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-extglob": "^2.1.1" }, - "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/is-glob", "keywords": [ "bash", "braces", @@ -85,16 +50,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/is-glob.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "layout": "default", "plugins": [ @@ -122,6 +77,9 @@ "verb", "vinyl" ] - }, - "version": "4.0.1" -} + } + +,"_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" +,"_integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==" +,"_from": "is-glob@4.0.1" +} \ No newline at end of file diff --git a/node_modules/is-installed-globally/package.json b/node_modules/is-installed-globally/package.json index 6d1ade7df..40100962f 100644 --- a/node_modules/is-installed-globally/package.json +++ b/node_modules/is-installed-globally/package.json @@ -1,90 +1,58 @@ { - "_args": [ - [ - "is-installed-globally@0.3.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-installed-globally@0.3.2", - "_id": "is-installed-globally@0.3.2", - "_inBundle": false, - "_integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", - "_location": "/is-installed-globally", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-installed-globally@0.3.2", - "name": "is-installed-globally", - "escapedName": "is-installed-globally", - "rawSpec": "0.3.2", - "saveSpec": null, - "fetchSpec": "0.3.2" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", - "_spec": "0.3.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-installed-globally/issues" - }, - "dependencies": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" - }, - "description": "Check if your package was installed globally", - "devDependencies": { - "ava": "^2.4.0", - "cpy": "^7.3.0", - "del": "^5.1.0", - "execa": "^2.0.4", - "make-dir": "^3.0.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/is-installed-globally#readme", - "keywords": [ - "global", - "package", - "globally", - "module", - "install", - "installed", - "npm", - "yarn", - "is", - "check", - "detect", - "local", - "locally", - "cli", - "bin", - "binary" - ], - "license": "MIT", - "name": "is-installed-globally", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-installed-globally.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "0.3.2" -} + "name": "is-installed-globally", + "version": "0.3.2", + "description": "Check if your package was installed globally", + "license": "MIT", + "repository": "sindresorhus/is-installed-globally", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "global", + "package", + "globally", + "module", + "install", + "installed", + "npm", + "yarn", + "is", + "check", + "detect", + "local", + "locally", + "cli", + "bin", + "binary" + ], + "dependencies": { + "global-dirs": "^2.0.1", + "is-path-inside": "^3.0.1" + }, + "devDependencies": { + "ava": "^2.4.0", + "cpy": "^7.3.0", + "del": "^5.1.0", + "execa": "^2.0.4", + "make-dir": "^3.0.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz" +,"_integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==" +,"_from": "is-installed-globally@0.3.2" +} \ No newline at end of file diff --git a/node_modules/is-interactive/package.json b/node_modules/is-interactive/package.json index 4ee031fcc..c23793c1e 100644 --- a/node_modules/is-interactive/package.json +++ b/node_modules/is-interactive/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "is-interactive@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-interactive@1.0.0", - "_id": "is-interactive@1.0.0", - "_inBundle": false, - "_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "_location": "/is-interactive", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-interactive@1.0.0", - "name": "is-interactive", - "escapedName": "is-interactive", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-interactive/issues" - }, - "description": "Check if stdout or stderr is interactive", - "devDependencies": { - "@types/node": "^12.0.12", - "ava": "^2.1.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-interactive#readme", - "keywords": [ - "interactive", - "stdout", - "stderr", - "detect", - "is", - "terminal", - "shell", - "tty" - ], - "license": "MIT", - "name": "is-interactive", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-interactive.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "1.0.0" -} + "name": "is-interactive", + "version": "1.0.0", + "description": "Check if stdout or stderr is interactive", + "license": "MIT", + "repository": "sindresorhus/is-interactive", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "interactive", + "stdout", + "stderr", + "detect", + "is", + "terminal", + "shell", + "tty" + ], + "devDependencies": { + "@types/node": "^12.0.12", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" +,"_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" +,"_from": "is-interactive@1.0.0" +} \ No newline at end of file diff --git a/node_modules/is-npm/package.json b/node_modules/is-npm/package.json index 59f4370e5..a405f9f87 100644 --- a/node_modules/is-npm/package.json +++ b/node_modules/is-npm/package.json @@ -1,73 +1,41 @@ { - "_args": [ - [ - "is-npm@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-npm@4.0.0", - "_id": "is-npm@4.0.0", - "_inBundle": false, - "_integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", - "_location": "/is-npm", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-npm@4.0.0", - "name": "is-npm", - "escapedName": "is-npm", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-npm/issues" - }, - "description": "Check if your code is running as an npm script", - "devDependencies": { - "ava": "^2.4.0", - "tsd-check": "^0.6.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-npm#readme", - "keywords": [ - "npm", - "is", - "check", - "detect", - "env", - "environment", - "run", - "script" - ], - "license": "MIT", - "name": "is-npm", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-npm.git" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "version": "4.0.0" -} + "name": "is-npm", + "version": "4.0.0", + "description": "Check if your code is running as an npm script", + "license": "MIT", + "repository": "sindresorhus/is-npm", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "is", + "check", + "detect", + "env", + "environment", + "run", + "script" + ], + "devDependencies": { + "ava": "^2.4.0", + "tsd-check": "^0.6.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz" +,"_integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==" +,"_from": "is-npm@4.0.0" +} \ No newline at end of file diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json index 8d583721b..002361756 100644 --- a/node_modules/is-number/package.json +++ b/node_modules/is-number/package.json @@ -1,68 +1,35 @@ { - "_args": [ - [ - "is-number@7.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-number@7.0.0", - "_id": "is-number@7.0.0", - "_inBundle": false, - "_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "_location": "/is-number", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-number@7.0.0", - "name": "is-number", - "escapedName": "is-number", - "rawSpec": "7.0.0", - "saveSpec": null, - "fetchSpec": "7.0.0" - }, - "_requiredBy": [ - "/to-regex-range" + "name": "is-number", + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "version": "7.0.0", + "homepage": "https://github.com/jonschlinkert/is-number", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Olsten Larck (https://i.am.charlike.online)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "_spec": "7.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Olsten Larck", - "url": "https://i.am.charlike.online" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], - "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "main": "index.js", + "engines": { + "node": ">=0.12.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", "gulp-format-md": "^1.0.0", "mocha": "^3.5.3" }, - "engines": { - "node": ">=0.12.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-number", "keywords": [ "cast", "check", @@ -91,16 +58,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "is-number", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-number.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -121,6 +78,9 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" +,"_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" +,"_from": "is-number@7.0.0" +} \ No newline at end of file diff --git a/node_modules/is-obj/package.json b/node_modules/is-obj/package.json index 89d4072d8..0db846586 100644 --- a/node_modules/is-obj/package.json +++ b/node_modules/is-obj/package.json @@ -1,70 +1,38 @@ { - "_args": [ - [ - "is-obj@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-obj@2.0.0", - "_id": "is-obj@2.0.0", - "_inBundle": false, - "_integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "_location": "/is-obj", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-obj@2.0.0", - "name": "is-obj", - "escapedName": "is-obj", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/dot-prop" - ], - "_resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-obj/issues" - }, - "description": "Check if a value is an object", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-obj#readme", - "keywords": [ - "object", - "is", - "check", - "test", - "type" - ], - "license": "MIT", - "name": "is-obj", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-obj.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "is-obj", + "version": "2.0.0", + "description": "Check if a value is an object", + "license": "MIT", + "repository": "sindresorhus/is-obj", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "is", + "check", + "test", + "type" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" +,"_integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" +,"_from": "is-obj@2.0.0" +} \ No newline at end of file diff --git a/node_modules/is-path-cwd/package.json b/node_modules/is-path-cwd/package.json index ebba8d352..55ea5ecb4 100644 --- a/node_modules/is-path-cwd/package.json +++ b/node_modules/is-path-cwd/package.json @@ -1,72 +1,40 @@ { - "_args": [ - [ - "is-path-cwd@2.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-path-cwd@2.2.0", - "_id": "is-path-cwd@2.2.0", - "_inBundle": false, - "_integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "_location": "/is-path-cwd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-path-cwd@2.2.0", - "name": "is-path-cwd", - "escapedName": "is-path-cwd", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/del" - ], - "_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "_spec": "2.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-path-cwd/issues" - }, - "description": "Check if a path is the current working directory", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-path-cwd#readme", - "keywords": [ - "path", - "cwd", - "pwd", - "check", - "filepath", - "file", - "folder" - ], - "license": "MIT", - "name": "is-path-cwd", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-path-cwd.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" -} + "name": "is-path-cwd", + "version": "2.2.0", + "description": "Check if a path is the current working directory", + "license": "MIT", + "repository": "sindresorhus/is-path-cwd", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "cwd", + "pwd", + "check", + "filepath", + "file", + "folder" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" +,"_integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" +,"_from": "is-path-cwd@2.2.0" +} \ No newline at end of file diff --git a/node_modules/is-path-inside/package.json b/node_modules/is-path-inside/package.json index 620915278..a6e54a227 100644 --- a/node_modules/is-path-inside/package.json +++ b/node_modules/is-path-inside/package.json @@ -1,73 +1,40 @@ { - "_args": [ - [ - "is-path-inside@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-path-inside@3.0.2", - "_id": "is-path-inside@3.0.2", - "_inBundle": false, - "_integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", - "_location": "/is-path-inside", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-path-inside@3.0.2", - "name": "is-path-inside", - "escapedName": "is-path-inside", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" - }, - "_requiredBy": [ - "/del", - "/is-installed-globally" - ], - "_resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/is-path-inside/issues" - }, - "description": "Check if a path is inside another path", - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/is-path-inside#readme", - "keywords": [ - "path", - "inside", - "folder", - "directory", - "dir", - "file", - "resolve" - ], - "license": "MIT", - "name": "is-path-inside", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-path-inside.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.2" -} + "name": "is-path-inside", + "version": "3.0.2", + "description": "Check if a path is inside another path", + "license": "MIT", + "repository": "sindresorhus/is-path-inside", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "inside", + "folder", + "directory", + "dir", + "file", + "resolve" + ], + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz" +,"_integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" +,"_from": "is-path-inside@3.0.2" +} \ No newline at end of file diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json index a705b5eae..300c45203 100644 --- a/node_modules/is-plain-object/package.json +++ b/node_modules/is-plain-object/package.json @@ -1,62 +1,41 @@ { - "_args": [ - [ - "is-plain-object@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "is-plain-object@3.0.0", - "_id": "is-plain-object@3.0.0", - "_inBundle": false, - "_integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==", - "_location": "/is-plain-object", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-plain-object@3.0.0", - "name": "is-plain-object", - "escapedName": "is-plain-object", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/@octokit/endpoint", - "/@octokit/request", - "/ava" + "name": "is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor.", + "version": "3.0.0", + "homepage": "https://github.com/jonschlinkert/is-plain-object", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Osman Nuri Okumuş (http://onokumus.com)", + "Steven Vachon (https://svachon.com)", + "(https://github.com/wtgtybhertgeghgtwtg)" ], - "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-plain-object", "bugs": { "url": "https://github.com/jonschlinkert/is-plain-object/issues" }, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Osman Nuri Okumuş", - "url": "http://onokumus.com" - }, - { - "name": "Steven Vachon", - "url": "https://svachon.com" - }, - { - "url": "https://github.com/wtgtybhertgeghgtwtg" - } + "license": "MIT", + "main": "index.cjs.js", + "module": "index.js", + "types": "index.d.ts", + "files": [ + "index.d.ts", + "index.js", + "index.cjs.js" ], + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "build": "rollup -c", + "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html", + "test_node": "mocha -r esm", + "test": "npm run test_node && npm run build && npm run test_browser", + "prepare": "rollup -c" + }, "dependencies": { "isobject": "^4.0.0" }, - "description": "Returns true if an object was created by the `Object` constructor.", "devDependencies": { "chai": "^4.2.0", "esm": "^3.2.22", @@ -66,15 +45,6 @@ "rollup": "^1.10.1", "rollup-plugin-node-resolve": "^4.2.3" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.d.ts", - "index.js", - "index.cjs.js" - ], - "homepage": "https://github.com/jonschlinkert/is-plain-object", "keywords": [ "check", "is", @@ -89,22 +59,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.cjs.js", - "module": "index.js", - "name": "is-plain-object", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-plain-object.git" - }, - "scripts": { - "build": "rollup -c", - "prepare": "rollup -c", - "test": "npm run test_node && npm run build && npm run test_browser", - "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html", - "test_node": "mocha -r esm" - }, - "types": "index.d.ts", "verb": { "toc": false, "layout": "default", @@ -124,6 +78,9 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz" +,"_integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==" +,"_from": "is-plain-object@3.0.0" +} \ No newline at end of file diff --git a/node_modules/is-promise/package.json b/node_modules/is-promise/package.json index ab6b282f5..ee9c0f64f 100644 --- a/node_modules/is-promise/package.json +++ b/node_modules/is-promise/package.json @@ -1,40 +1,16 @@ { - "_args": [ - [ - "is-promise@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-promise@3.0.0", - "_id": "is-promise@3.0.0", - "_inBundle": false, - "_integrity": "sha512-aTHJ4BvETyySzLhguH+7sL4b8765eecqq7ZrHVuhZr3FjCL/IV+LsvisEeH+9d0AkChYny3ad1KEL+mKy4ot7A==", - "_location": "/is-promise", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-promise@3.0.0", - "name": "is-promise", - "escapedName": "is-promise", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" + "name": "is-promise", + "version": "3.0.0", + "description": "Test whether an object looks like a promises-a+ promise", + "main": "./index.js", + "scripts": { + "test": "node test" }, - "_requiredBy": [ - "/ava" + "files": [ + "index.js", + "index.mjs", + "index.d.ts" ], - "_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "ForbesLindesay" - }, - "bugs": { - "url": "https://github.com/then/is-promise/issues" - }, - "description": "Test whether an object looks like a promises-a+ promise", "exports": { ".": [ { @@ -45,21 +21,14 @@ "./index.js" ] }, - "files": [ - "index.js", - "index.mjs", - "index.d.ts" - ], - "homepage": "https://github.com/then/is-promise#readme", - "license": "MIT", - "main": "./index.js", - "name": "is-promise", "repository": { "type": "git", - "url": "git+https://github.com/then/is-promise.git" - }, - "scripts": { - "test": "node test" + "url": "https://github.com/then/is-promise.git" }, - "version": "3.0.0" -} + "author": "ForbesLindesay", + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-3.0.0.tgz" +,"_integrity": "sha512-aTHJ4BvETyySzLhguH+7sL4b8765eecqq7ZrHVuhZr3FjCL/IV+LsvisEeH+9d0AkChYny3ad1KEL+mKy4ot7A==" +,"_from": "is-promise@3.0.0" +} \ No newline at end of file diff --git a/node_modules/is-stream/package.json b/node_modules/is-stream/package.json index dc56d757c..0f50caac8 100644 --- a/node_modules/is-stream/package.json +++ b/node_modules/is-stream/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "is-stream@1.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "is-stream@1.1.0", - "_id": "is-stream@1.1.0", - "_inBundle": false, - "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "_location": "/is-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-stream@1.1.0", - "name": "is-stream", - "escapedName": "is-stream", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/execa" - ], - "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "is-stream", + "version": "1.1.0", + "description": "Check if something is a Node.js stream", + "license": "MIT", + "repository": "sindresorhus/is-stream", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-stream/issues" - }, - "description": "Check if something is a Node.js stream", - "devDependencies": { - "ava": "*", - "tempfile": "^1.1.0", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/is-stream#readme", "keywords": [ "stream", "type", @@ -60,14 +30,13 @@ "detect", "is" ], - "license": "MIT", - "name": "is-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-stream.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.1.0" -} + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" +,"_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" +,"_from": "is-stream@1.1.0" +} \ No newline at end of file diff --git a/node_modules/is-typedarray/package.json b/node_modules/is-typedarray/package.json index 4d66cc415..73e4061e0 100644 --- a/node_modules/is-typedarray/package.json +++ b/node_modules/is-typedarray/package.json @@ -1,48 +1,21 @@ { - "_args": [ - [ - "is-typedarray@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-typedarray@1.0.0", - "_id": "is-typedarray@1.0.0", - "_inBundle": false, - "_integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "_location": "/is-typedarray", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-typedarray@1.0.0", - "name": "is-typedarray", - "escapedName": "is-typedarray", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/typedarray-to-buffer", - "/write-file-atomic" - ], - "_resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Hugh Kennedy", - "email": "hughskennedy@gmail.com", - "url": "http://hughsk.io/" - }, - "bugs": { - "url": "https://github.com/hughsk/is-typedarray/issues" + "name": "is-typedarray", + "version": "1.0.0", + "description": "Detect whether or not an object is a Typed Array", + "main": "index.js", + "scripts": { + "test": "node test" }, + "author": "Hugh Kennedy (http://hughsk.io/)", + "license": "MIT", "dependencies": {}, - "description": "Detect whether or not an object is a Typed Array", "devDependencies": { "tape": "^2.13.1" }, - "homepage": "https://github.com/hughsk/is-typedarray", + "repository": { + "type": "git", + "url": "git://github.com/hughsk/is-typedarray.git" + }, "keywords": [ "typed", "array", @@ -50,15 +23,12 @@ "is", "util" ], - "license": "MIT", - "main": "index.js", - "name": "is-typedarray", - "repository": { - "type": "git", - "url": "git://github.com/hughsk/is-typedarray.git" - }, - "scripts": { - "test": "node test" + "bugs": { + "url": "https://github.com/hughsk/is-typedarray/issues" }, - "version": "1.0.0" -} + "homepage": "https://github.com/hughsk/is-typedarray" + +,"_resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" +,"_integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" +,"_from": "is-typedarray@1.0.0" +} \ No newline at end of file diff --git a/node_modules/is-yarn-global/package.json b/node_modules/is-yarn-global/package.json index 8e4fcdb4c..63bc4b8d4 100644 --- a/node_modules/is-yarn-global/package.json +++ b/node_modules/is-yarn-global/package.json @@ -1,54 +1,19 @@ { - "_args": [ - [ - "is-yarn-global@0.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "is-yarn-global@0.3.0", - "_id": "is-yarn-global@0.3.0", - "_inBundle": false, - "_integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", - "_location": "/is-yarn-global", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-yarn-global@0.3.0", - "name": "is-yarn-global", - "escapedName": "is-yarn-global", - "rawSpec": "0.3.0", - "saveSpec": null, - "fetchSpec": "0.3.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", - "_spec": "0.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "LitoMore", - "url": "litomore@gmail.com" - }, - "bugs": { - "url": "https://github.com/LitoMore/is-yarn-global/issues" - }, + "name": "is-yarn-global", + "version": "0.3.0", "description": "Check if installed by yarn globally without any `fs` calls", - "devDependencies": { - "ava": "^0.24.0", - "xo": "^0.18.2" - }, - "homepage": "https://github.com/LitoMore/is-yarn-global#readme", + "repository": "git@github.com:LitoMore/is-yarn-global.git", + "author": "LitoMore (litomore@gmail.com)", "license": "MIT", - "name": "is-yarn-global", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/LitoMore/is-yarn-global.git" - }, "scripts": { "test": "xo" }, - "version": "0.3.0" -} + "devDependencies": { + "ava": "^0.24.0", + "xo": "^0.18.2" + } + +,"_resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" +,"_integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" +,"_from": "is-yarn-global@0.3.0" +} \ No newline at end of file diff --git a/node_modules/isexe/package.json b/node_modules/isexe/package.json index 233694ec4..4ae1ed4ce 100644 --- a/node_modules/isexe/package.json +++ b/node_modules/isexe/package.json @@ -1,63 +1,35 @@ { - "_args": [ - [ - "isexe@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "isexe@2.0.0", - "_id": "isexe@2.0.0", - "_inBundle": false, - "_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "_location": "/isexe", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "isexe@2.0.0", - "name": "isexe", - "escapedName": "isexe", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/which" - ], - "_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/isexe/issues" - }, + "name": "isexe", + "version": "2.0.0", "description": "Minimal module to check if a file is executable.", + "main": "index.js", + "directories": { + "test": "test" + }, "devDependencies": { "mkdirp": "^0.5.1", "rimraf": "^2.5.0", "tap": "^10.3.0" }, - "directories": { - "test": "test" + "scripts": { + "test": "tap test/*.js --100", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, - "homepage": "https://github.com/isaacs/isexe#readme", - "keywords": [], + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC", - "main": "index.js", - "name": "isexe", "repository": { "type": "git", "url": "git+https://github.com/isaacs/isexe.git" }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js --100" + "keywords": [], + "bugs": { + "url": "https://github.com/isaacs/isexe/issues" }, - "version": "2.0.0" -} + "homepage": "https://github.com/isaacs/isexe#readme" + +,"_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" +,"_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" +,"_from": "isexe@2.0.0" +} \ No newline at end of file diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json index a8ef6318f..8ddad953f 100644 --- a/node_modules/isobject/package.json +++ b/node_modules/isobject/package.json @@ -1,77 +1,43 @@ { - "_args": [ - [ - "isobject@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "isobject@4.0.0", - "_id": "isobject@4.0.0", - "_inBundle": false, - "_integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==", - "_location": "/isobject", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "isobject@4.0.0", - "name": "isobject", - "escapedName": "isobject", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/is-plain-object" + "name": "isobject", + "description": "Returns true if the value is an object and not an array or null.", + "version": "4.0.0", + "homepage": "https://github.com/jonschlinkert/isobject", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "(https://github.com/LeSuisse)", + "Brian Woodward (https://twitter.com/doowb)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Magnús Dæhlen (https://github.com/magnudae)", + "Tom MacWright (https://macwright.org)" ], - "_resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/isobject", "bugs": { "url": "https://github.com/jonschlinkert/isobject/issues" }, - "contributors": [ - { - "url": "https://github.com/LeSuisse" - }, - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Magnús Dæhlen", - "url": "https://github.com/magnudae" - }, - { - "name": "Tom MacWright", - "url": "https://macwright.org" - } + "license": "MIT", + "files": [ + "index.d.ts", + "index.cjs.js", + "index.js" ], + "main": "index.cjs.js", + "module": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "build": "rollup -i index.js -o index.cjs.js -f cjs", + "test": "mocha -r esm", + "prepublish": "npm run build" + }, "dependencies": {}, - "description": "Returns true if the value is an object and not an array or null.", "devDependencies": { "esm": "^3.2.22", "gulp-format-md": "^0.1.9", "mocha": "^2.4.5", "rollup": "^1.10.1" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.d.ts", - "index.cjs.js", - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/isobject", "keywords": [ "check", "is", @@ -86,19 +52,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.cjs.js", - "module": "index.js", - "name": "isobject", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/isobject.git" - }, - "scripts": { - "build": "rollup -i index.js -o index.cjs.js -f cjs", - "prepublish": "npm run build", - "test": "mocha -r esm" - }, "types": "index.d.ts", "verb": { "related": { @@ -123,6 +76,9 @@ "reflinks": [ "verb" ] - }, - "version": "4.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz" +,"_integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" +,"_from": "isobject@4.0.0" +} \ No newline at end of file diff --git a/node_modules/js-string-escape/package.json b/node_modules/js-string-escape/package.json index 6c7ec9338..2bb2f6640 100644 --- a/node_modules/js-string-escape/package.json +++ b/node_modules/js-string-escape/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "js-string-escape@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "js-string-escape@1.0.1", - "_id": "js-string-escape@1.0.1", - "_inBundle": false, - "_integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", - "_location": "/js-string-escape", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "js-string-escape@1.0.1", - "name": "js-string-escape", - "escapedName": "js-string-escape", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jo Liss", - "email": "joliss42@gmail.com" + "name": "js-string-escape", + "version": "1.0.1", + "description": "Escape strings for use as JavaScript string literals", + "main": "index.js", + "scripts": { + "test": "tap test" }, - "bugs": { - "url": "https://github.com/joliss/js-string-escape/issues" + "repository": { + "type": "git", + "url": "https://github.com/joliss/js-string-escape" }, + "keywords": [ + "string", + "escape", + "backslash", + "javascript", + "ecmascript" + ], + "author": "Jo Liss ", "contributors": [ { "name": "Mathias Bynens", "url": "http://mathiasbynens.be/" } ], - "description": "Escape strings for use as JavaScript string literals", - "devDependencies": { - "punycode": "~> 1.2.1", - "tap": "~> 0.4.2" + "license": "MIT", + "devDependencies" : { + "tap": "~> 0.4.2", + "punycode": "~> 1.2.1" }, "engines": { "node": ">= 0.8" }, "files": [ "index.js" - ], - "homepage": "https://github.com/joliss/js-string-escape#readme", - "keywords": [ - "string", - "escape", - "backslash", - "javascript", - "ecmascript" - ], - "license": "MIT", - "main": "index.js", - "name": "js-string-escape", - "repository": { - "type": "git", - "url": "git+https://github.com/joliss/js-string-escape.git" - }, - "scripts": { - "test": "tap test" - }, - "version": "1.0.1" -} + ] + +,"_resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz" +,"_integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" +,"_from": "js-string-escape@1.0.1" +} \ No newline at end of file diff --git a/node_modules/js-tokens/package.json b/node_modules/js-tokens/package.json index 5130aa96d..368221c86 100644 --- a/node_modules/js-tokens/package.json +++ b/node_modules/js-tokens/package.json @@ -1,50 +1,9 @@ { - "_args": [ - [ - "js-tokens@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "js-tokens@4.0.0", - "_id": "js-tokens@4.0.0", - "_inBundle": false, - "_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "_location": "/js-tokens", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "js-tokens@4.0.0", - "name": "js-tokens", - "escapedName": "js-tokens", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/@babel/highlight" - ], - "_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Simon Lydell" - }, - "bugs": { - "url": "https://github.com/lydell/js-tokens/issues" - }, + "name": "js-tokens", + "version": "4.0.0", + "author": "Simon Lydell", + "license": "MIT", "description": "A regex that tokenizes JavaScript.", - "devDependencies": { - "coffeescript": "2.1.1", - "esprima": "4.0.0", - "everything.js": "1.0.3", - "mocha": "5.0.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/lydell/js-tokens#readme", "keywords": [ "JavaScript", "js", @@ -52,17 +11,24 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "4.0.0" -} + "devDependencies": { + "coffeescript": "2.1.1", + "esprima": "4.0.0", + "everything.js": "1.0.3", + "mocha": "5.0.0" + } + +,"_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" +,"_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" +,"_from": "js-tokens@4.0.0" +} \ No newline at end of file diff --git a/node_modules/js-yaml/node_modules/esprima/package.json b/node_modules/js-yaml/node_modules/esprima/package.json index 2a42c0bef..942d939a5 100644 --- a/node_modules/js-yaml/node_modules/esprima/package.json +++ b/node_modules/js-yaml/node_modules/esprima/package.json @@ -1,44 +1,39 @@ { - "_args": [ - [ - "esprima@4.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "esprima@4.0.1", - "_id": "esprima@4.0.1", - "_inBundle": false, - "_integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "_location": "/js-yaml/esprima", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "esprima@4.0.1", - "name": "esprima", - "escapedName": "esprima", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" + "name": "esprima", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "homepage": "http://esprima.org", + "main": "dist/esprima.js", + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js" }, - "_requiredBy": [ - "/js-yaml" + "version": "4.0.1", + "files": [ + "bin", + "dist/esprima.js" ], - "_resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "engines": { + "node": ">=4" + }, "author": { "name": "Ariya Hidayat", "email": "ariya.hidayat@gmail.com" }, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "maintainers": [ + { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com", + "web": "http://ariya.ofilabs.com" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/jquery/esprima.git" }, "bugs": { "url": "https://github.com/jquery/esprima/issues" }, - "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "license": "BSD-2-Clause", "devDependencies": { "codecov.io": "~0.1.6", "escomplex-js": "1.2.0", @@ -67,14 +62,6 @@ "unicode-8.0.0": "~0.7.0", "webpack": "~1.14.0" }, - "engines": { - "node": ">=4" - }, - "files": [ - "bin", - "dist/esprima.js" - ], - "homepage": "http://esprima.org", "keywords": [ "ast", "ecmascript", @@ -83,58 +70,47 @@ "parser", "syntax" ], - "license": "BSD-2-Clause", - "main": "dist/esprima.js", - "maintainers": [ - { - "name": "Ariya Hidayat", - "email": "ariya.hidayat@gmail.com", - "url": "http://ariya.ofilabs.com" - } - ], - "name": "esprima", - "repository": { - "type": "git", - "url": "git+https://github.com/jquery/esprima.git" - }, "scripts": { - "all-tests": "npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", - "analyze-coverage": "istanbul cover test/unit-tests.js", - "api-tests": "mocha -R dot test/api-tests.js", - "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", - "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", - "benchmark-parser": "node -expose_gc test/benchmark-parser.js", - "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", - "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", - "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", "check-version": "node test/check-version.js", - "circleci": "npm test && npm run codecov && npm run downstream", + "tslint": "tslint src/*.ts", "code-style": "tsfmt --verify src/*.ts && tsfmt --verify test/*.js", - "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", - "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", - "complexity": "node test/check-complexity.js", - "downstream": "node test/downstream.js", - "droneio": "npm run compile && npm run all-tests && npm run saucelabs", - "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js", - "generate-fixtures": "node tools/generate-fixtures.js", - "generate-regex": "node tools/generate-identifier-regex.js", - "generate-xhtml-entities": "node tools/generate-xhtml-entities.js", - "grammar-tests": "node test/grammar-tests.js", + "complexity": "node test/check-complexity.js", + "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", "hostile-env-tests": "node test/hostile-environment-tests.js", - "prepublish": "npm run compile", - "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", + "unit-tests": "node test/unit-tests.js", + "api-tests": "mocha -R dot test/api-tests.js", + "grammar-tests": "node test/grammar-tests.js", "regression-tests": "node test/regression-tests.js", - "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", + "all-tests": "npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", + "verify-line-ending": "node test/verify-line-ending.js", + "generate-fixtures": "node tools/generate-fixtures.js", + "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js", - "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js", "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js", - "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", + "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js", + "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", + "analyze-coverage": "istanbul cover test/unit-tests.js", + "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", + "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", + "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", "test": "npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis", + "prepublish": "npm run compile", + "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", + "benchmark-parser": "node -expose_gc test/benchmark-parser.js", + "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", + "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", + "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", + "downstream": "node test/downstream.js", "travis": "npm test", - "tslint": "tslint src/*.ts", - "unit-tests": "node test/unit-tests.js", - "verify-line-ending": "node test/verify-line-ending.js" - }, - "version": "4.0.1" -} + "circleci": "npm test && npm run codecov && npm run downstream", + "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", + "droneio": "npm run compile && npm run all-tests && npm run saucelabs", + "generate-regex": "node tools/generate-identifier-regex.js", + "generate-xhtml-entities": "node tools/generate-xhtml-entities.js" + } + +,"_resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" +,"_integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" +,"_from": "esprima@4.0.1" +} \ No newline at end of file diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json index 689482230..dd41f7f11 100644 --- a/node_modules/js-yaml/package.json +++ b/node_modules/js-yaml/package.json @@ -1,66 +1,35 @@ { - "_args": [ - [ - "js-yaml@3.13.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "js-yaml", + "version": "3.13.1", + "description": "YAML 1.2 parser and serializer", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" ], - "_from": "js-yaml@3.13.1", - "_id": "js-yaml@3.13.1", - "_inBundle": false, - "_integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "_location": "/js-yaml", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "js-yaml@3.13.1", - "name": "js-yaml", - "escapedName": "js-yaml", - "rawSpec": "3.13.1", - "saveSpec": null, - "fetchSpec": "3.13.1" - }, - "_requiredBy": [ - "/", - "/supertap", - "/tslint" + "homepage": "https://github.com/nodeca/js-yaml", + "author": "Vladimir Zapparov ", + "contributors": [ + "Aleksey V Zapparov (http://www.ixti.net/)", + "Vitaly Puzrin (https://github.com/puzrin)", + "Martin Grenfell (http://got-ravings.blogspot.com)" + ], + "license": "MIT", + "repository": "nodeca/js-yaml", + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" ], - "_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "_spec": "3.13.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Vladimir Zapparov", - "email": "dervus.grim@gmail.com" - }, "bin": { "js-yaml": "bin/js-yaml.js" }, - "bugs": { - "url": "https://github.com/nodeca/js-yaml/issues" - }, - "contributors": [ - { - "name": "Aleksey V Zapparov", - "email": "ixti@member.fsf.org", - "url": "http://www.ixti.net/" - }, - { - "name": "Vitaly Puzrin", - "email": "vitaly@rcdesign.ru", - "url": "https://github.com/puzrin" - }, - { - "name": "Martin Grenfell", - "email": "martin.grenfell@gmail.com", - "url": "http://got-ravings.blogspot.com" - } - ], "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, - "description": "YAML 1.2 parser and serializer", "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", @@ -72,27 +41,11 @@ "mocha": "^5.2.0", "uglify-js": "^3.0.1" }, - "files": [ - "index.js", - "lib/", - "bin/", - "dist/" - ], - "homepage": "https://github.com/nodeca/js-yaml", - "keywords": [ - "yaml", - "parser", - "serializer", - "pyyaml" - ], - "license": "MIT", - "name": "js-yaml", - "repository": { - "type": "git", - "url": "git+https://github.com/nodeca/js-yaml.git" - }, "scripts": { "test": "make test" - }, - "version": "3.13.1" -} + } + +,"_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz" +,"_integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" +,"_from": "js-yaml@3.13.1" +} \ No newline at end of file diff --git a/node_modules/json-buffer/package.json b/node_modules/json-buffer/package.json index b8567c2d6..003343ae6 100644 --- a/node_modules/json-buffer/package.json +++ b/node_modules/json-buffer/package.json @@ -1,55 +1,20 @@ { - "_args": [ - [ - "json-buffer@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "json-buffer@3.0.0", - "_id": "json-buffer@3.0.0", - "_inBundle": false, - "_integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", - "_location": "/json-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "json-buffer@3.0.0", - "name": "json-buffer", - "escapedName": "json-buffer", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/keyv" - ], - "_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Dominic Tarr", - "email": "dominic.tarr@gmail.com", - "url": "http://dominictarr.com" - }, - "bugs": { - "url": "https://github.com/dominictarr/json-buffer/issues" - }, + "name": "json-buffer", "description": "JSON parse & stringify that supports binary via bops & base64", - "devDependencies": { - "tape": "^4.6.3" - }, + "version": "3.0.0", "homepage": "https://github.com/dominictarr/json-buffer", - "license": "MIT", - "name": "json-buffer", "repository": { "type": "git", "url": "git://github.com/dominictarr/json-buffer.git" }, + "devDependencies": { + "tape": "^4.6.3" + }, "scripts": { "test": "set -e; for t in test/*.js; do node $t; done" }, + "author": "Dominic Tarr (http://dominictarr.com)", + "license": "MIT", "testling": { "files": "test/*.js", "browsers": [ @@ -65,6 +30,9 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "3.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" +,"_integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" +,"_from": "json-buffer@3.0.0" +} \ No newline at end of file diff --git a/node_modules/json-parse-better-errors/package.json b/node_modules/json-parse-better-errors/package.json index 39c7bd462..2d2d208c3 100644 --- a/node_modules/json-parse-better-errors/package.json +++ b/node_modules/json-parse-better-errors/package.json @@ -1,50 +1,31 @@ { - "_args": [ - [ - "json-parse-better-errors@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "json-parse-better-errors", + "version": "1.0.2", + "description": "JSON.parse with context information on error", + "main": "index.js", + "files": [ + "*.js" ], - "_development": true, - "_from": "json-parse-better-errors@1.0.2", - "_id": "json-parse-better-errors@1.0.2", - "_inBundle": false, - "_integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "_location": "/json-parse-better-errors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "json-parse-better-errors@1.0.2", - "name": "json-parse-better-errors", - "escapedName": "json-parse-better-errors", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" + "scripts": { + "prerelease": "npm t", + "postrelease": "npm publish && git push --follow-tags", + "pretest": "standard", + "release": "standard-version -s", + "test": "tap -J --coverage test/*.js", + "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", + "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" }, - "_requiredBy": [ - "/parse-json", - "/read-pkg/parse-json" + "repository": "https://github.com/zkat/json-parse-better-errors", + "keywords": [ + "JSON", + "parser" ], - "_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Kat Marchán", - "email": "kzm@zkat.tech" + "email": "kzm@zkat.tech", + "twitter": "maybekatz" }, - "bugs": { - "url": "https://github.com/zkat/json-parse-better-errors/issues" - }, - "config": { - "nyc": { - "exclude": [ - "node_modules/**", - "test/**" - ] - } - }, - "description": "JSON.parse with context information on error", + "license": "MIT", "devDependencies": { "nyc": "^10.3.2", "standard": "^9.0.2", @@ -53,29 +34,16 @@ "weallbehave": "^1.2.0", "weallcontribute": "^1.0.8" }, - "files": [ - "*.js" - ], - "homepage": "https://github.com/zkat/json-parse-better-errors#readme", - "keywords": [ - "JSON", - "parser" - ], - "license": "MIT", - "main": "index.js", - "name": "json-parse-better-errors", - "repository": { - "type": "git", - "url": "git+https://github.com/zkat/json-parse-better-errors.git" - }, - "scripts": { - "postrelease": "npm publish && git push --follow-tags", - "prerelease": "npm t", - "pretest": "standard", - "release": "standard-version -s", - "test": "tap -J --coverage test/*.js", - "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", - "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" - }, - "version": "1.0.2" -} + "config": { + "nyc": { + "exclude": [ + "node_modules/**", + "test/**" + ] + } + } + +,"_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" +,"_integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" +,"_from": "json-parse-better-errors@1.0.2" +} \ No newline at end of file diff --git a/node_modules/json-stringify-safe/package.json b/node_modules/json-stringify-safe/package.json index b8cbef8dd..5d5488725 100644 --- a/node_modules/json-stringify-safe/package.json +++ b/node_modules/json-stringify-safe/package.json @@ -1,66 +1,35 @@ { - "_from": "json-stringify-safe@^5.0.1", - "_id": "json-stringify-safe@5.0.1", - "_inBundle": false, - "_integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "_location": "/json-stringify-safe", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "json-stringify-safe@^5.0.1", - "name": "json-stringify-safe", - "escapedName": "json-stringify-safe", - "rawSpec": "^5.0.1", - "saveSpec": null, - "fetchSpec": "^5.0.1" - }, - "_requiredBy": [ - "/nock" - ], - "_resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "_shasum": "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb", - "_spec": "json-stringify-safe@^5.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/nock", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "bugs": { - "url": "https://github.com/isaacs/json-stringify-safe/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Andri Möll", - "email": "andri@dot.ee", - "url": "http://themoll.com" - } - ], - "deprecated": false, + "name": "json-stringify-safe", + "version": "5.0.1", "description": "Like JSON.stringify, but doesn't blow up on circular refs.", - "devDependencies": { - "mocha": ">= 2.1.0 < 3", - "must": ">= 0.12 < 0.13", - "sinon": ">= 1.12.2 < 2" - }, - "homepage": "https://github.com/isaacs/json-stringify-safe", "keywords": [ "json", "stringify", "circular", "safe" ], + "homepage": "https://github.com/isaacs/json-stringify-safe", + "bugs": "https://github.com/isaacs/json-stringify-safe/issues", + "author": "Isaac Z. Schlueter (http://blog.izs.me)", + "contributors": [ + "Andri Möll (http://themoll.com)" + ], "license": "ISC", - "main": "stringify.js", - "name": "json-stringify-safe", "repository": { "type": "git", - "url": "git://github.com/isaacs/json-stringify-safe.git" + "url": "git://github.com/isaacs/json-stringify-safe" }, + "main": "stringify.js", "scripts": { "test": "node test.js" }, - "version": "5.0.1" -} + "devDependencies": { + "mocha": ">= 2.1.0 < 3", + "must": ">= 0.12 < 0.13", + "sinon": ">= 1.12.2 < 2" + } + +,"_resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" +,"_integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" +,"_from": "json-stringify-safe@5.0.1" +} \ No newline at end of file diff --git a/node_modules/jsonschema/package.json b/node_modules/jsonschema/package.json index 6207cbd89..a0f4e3e2c 100644 --- a/node_modules/jsonschema/package.json +++ b/node_modules/jsonschema/package.json @@ -1,55 +1,25 @@ { - "_args": [ - [ - "jsonschema@1.2.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "jsonschema@1.2.6", - "_id": "jsonschema@1.2.6", - "_inBundle": false, - "_integrity": "sha512-SqhURKZG07JyKKeo/ir24QnS4/BV7a6gQy93bUSe4lUdNp0QNpIz2c9elWJQ9dpc5cQYY6cvCzgRwy0MQCLyqA==", - "_location": "/jsonschema", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jsonschema@1.2.6", - "name": "jsonschema", - "escapedName": "jsonschema", - "rawSpec": "1.2.6", - "saveSpec": null, - "fetchSpec": "1.2.6" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz", - "_spec": "1.2.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Tom de Grunt", - "email": "tom@degrunt.nl" - }, - "bugs": { - "url": "https://github.com/tdegrunt/jsonschema/issues" - }, + "author": "Tom de Grunt ", + "name": "jsonschema", + "version": "1.2.6", + "license": "MIT", + "dependencies": {}, "contributors": [ { "name": "Austin Wright" } ], - "dependencies": {}, - "description": "A fast and easy to use JSON Schema validator", + "main": "./lib", + "typings": "./lib/index.d.ts", "devDependencies": { - "chai": "~1.5.0", "json-metaschema": "^1.2.0", - "mocha": "~3" + "mocha": "~3", + "chai": "~1.5.0" }, + "optionalDependencies": {}, "engines": { "node": "*" }, - "homepage": "https://github.com/tdegrunt/jsonschema#readme", "keywords": [ "json", "schema", @@ -57,17 +27,16 @@ "validator", "validation" ], - "license": "MIT", - "main": "./lib", - "name": "jsonschema", - "optionalDependencies": {}, "repository": { "type": "git", "url": "git://github.com/tdegrunt/jsonschema.git" }, + "description": "A fast and easy to use JSON Schema validator", "scripts": { - "test": "mocha -R spec" - }, - "typings": "./lib/index.d.ts", - "version": "1.2.6" -} + "test": "./node_modules/.bin/mocha -R spec" + } + +,"_resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz" +,"_integrity": "sha512-SqhURKZG07JyKKeo/ir24QnS4/BV7a6gQy93bUSe4lUdNp0QNpIz2c9elWJQ9dpc5cQYY6cvCzgRwy0MQCLyqA==" +,"_from": "jsonschema@1.2.6" +} \ No newline at end of file diff --git a/node_modules/keyv/package.json b/node_modules/keyv/package.json index 47fe00d3b..22585d90b 100644 --- a/node_modules/keyv/package.json +++ b/node_modules/keyv/package.json @@ -1,82 +1,53 @@ { - "_args": [ - [ - "keyv@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "keyv@3.1.0", - "_id": "keyv@3.1.0", - "_inBundle": false, - "_integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "_location": "/keyv", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "keyv@3.1.0", - "name": "keyv", - "escapedName": "keyv", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" + "name": "keyv", + "version": "3.1.0", + "description": "Simple key-value storage with support for multiple backends", + "main": "src/index.js", + "scripts": { + "test": "xo && nyc ava test/keyv.js", + "test:full": "xo && nyc ava --serial", + "coverage": "nyc report --reporter=text-lcov | coveralls" }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Luke Childs", - "email": "lukechilds123@gmail.com", - "url": "http://lukechilds.co.uk" + "xo": { + "extends": "xo-lukechilds" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/lukechilds/keyv.git" }, + "keywords": [ + "key", + "value", + "store", + "cache", + "ttl" + ], + "author": "Luke Childs (http://lukechilds.co.uk)", + "license": "MIT", "bugs": { "url": "https://github.com/lukechilds/keyv/issues" }, + "homepage": "https://github.com/lukechilds/keyv", "dependencies": { "json-buffer": "3.0.0" }, - "description": "Simple key-value storage with support for multiple backends", "devDependencies": { + "ava": "^0.25.0", + "coveralls": "^3.0.0", + "eslint-config-xo-lukechilds": "^1.0.0", "@keyv/mongo": "*", "@keyv/mysql": "*", "@keyv/postgres": "*", "@keyv/redis": "*", "@keyv/sqlite": "*", "@keyv/test-suite": "*", - "ava": "^0.25.0", - "coveralls": "^3.0.0", - "eslint-config-xo-lukechilds": "^1.0.0", "nyc": "^11.0.3", "this": "^1.0.2", "timekeeper": "^2.0.0", "xo": "^0.20.1" - }, - "homepage": "https://github.com/lukechilds/keyv", - "keywords": [ - "key", - "value", - "store", - "cache", - "ttl" - ], - "license": "MIT", - "main": "src/index.js", - "name": "keyv", - "repository": { - "type": "git", - "url": "git+https://github.com/lukechilds/keyv.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && nyc ava test/keyv.js", - "test:full": "xo && nyc ava --serial" - }, - "version": "3.1.0", - "xo": { - "extends": "xo-lukechilds" } -} + +,"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" +,"_integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" +,"_from": "keyv@3.1.0" +} \ No newline at end of file diff --git a/node_modules/latest-version/package.json b/node_modules/latest-version/package.json index fe7f56779..48621639f 100644 --- a/node_modules/latest-version/package.json +++ b/node_modules/latest-version/package.json @@ -1,78 +1,46 @@ { - "_args": [ - [ - "latest-version@5.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "latest-version@5.1.0", - "_id": "latest-version@5.1.0", - "_inBundle": false, - "_integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", - "_location": "/latest-version", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "latest-version@5.1.0", - "name": "latest-version", - "escapedName": "latest-version", - "rawSpec": "5.1.0", - "saveSpec": null, - "fetchSpec": "5.1.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", - "_spec": "5.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/latest-version/issues" - }, - "dependencies": { - "package-json": "^6.3.0" - }, - "description": "Get the latest version of an npm package", - "devDependencies": { - "ava": "^1.4.1", - "semver": "^6.0.0", - "semver-regex": "^2.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/latest-version#readme", - "keywords": [ - "latest", - "version", - "npm", - "pkg", - "package", - "package.json", - "current", - "module" - ], - "license": "MIT", - "name": "latest-version", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/latest-version.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.1.0" -} + "name": "latest-version", + "version": "5.1.0", + "description": "Get the latest version of an npm package", + "license": "MIT", + "repository": "sindresorhus/latest-version", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "latest", + "version", + "npm", + "pkg", + "package", + "package.json", + "current", + "module" + ], + "dependencies": { + "package-json": "^6.3.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "semver": "^6.0.0", + "semver-regex": "^2.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" +,"_integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" +,"_from": "latest-version@5.1.0" +} \ No newline at end of file diff --git a/node_modules/lines-and-columns/package.json b/node_modules/lines-and-columns/package.json index 6a73016c9..0ac37ec31 100644 --- a/node_modules/lines-and-columns/package.json +++ b/node_modules/lines-and-columns/package.json @@ -1,41 +1,37 @@ { - "_args": [ - [ - "lines-and-columns@1.1.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lines-and-columns@1.1.6", - "_id": "lines-and-columns@1.1.6", - "_inBundle": false, - "_integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "_location": "/lines-and-columns", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lines-and-columns@1.1.6", - "name": "lines-and-columns", - "escapedName": "lines-and-columns", - "rawSpec": "1.1.6", - "saveSpec": null, - "fetchSpec": "1.1.6" + "name": "lines-and-columns", + "description": "Maps lines and columns to character offsets and back.", + "main": "dist/index.js", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "scripts": { + "lint": "tslint --config tslint.json --project tsconfig.json --type-check", + "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", + "prebuild": "rm -rf dist", + "build": "./script/build", + "pretest": "npm run build", + "test": "mocha", + "prepublish": "npm run lint && npm run build", + "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, - "_requiredBy": [ - "/read-pkg/parse-json" + "files": [ + "dist" ], - "_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "_spec": "1.1.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Brian Donovan", - "email": "me@brian-donovan.com" + "repository": { + "type": "git", + "url": "https://github.com/eventualbuddha/lines-and-columns.git" }, + "keywords": [ + "lines", + "columns", + "parser" + ], + "author": "Brian Donovan ", + "license": "MIT", "bugs": { "url": "https://github.com/eventualbuddha/lines-and-columns/issues" }, - "description": "Maps lines and columns to character offsets and back.", + "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", "devDependencies": { "@types/mocha": "^2.2.34", "@types/node": "^6.0.52", @@ -45,33 +41,9 @@ "tslint": "^4.1.1", "typescript": "^2.1.4" }, - "files": [ - "dist" - ], - "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", - "keywords": [ - "lines", - "columns", - "parser" - ], - "license": "MIT", - "main": "dist/index.js", - "module": "dist/index.mjs", - "name": "lines-and-columns", - "repository": { - "type": "git", - "url": "git+https://github.com/eventualbuddha/lines-and-columns.git" - }, - "scripts": { - "build": "./script/build", - "lint": "tslint --config tslint.json --project tsconfig.json --type-check", - "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", - "prebuild": "rm -rf dist", - "prepublish": "npm run lint && npm run build", - "pretest": "npm run build", - "semantic-release": "semantic-release pre && npm publish && semantic-release post", - "test": "mocha" - }, - "types": "dist/index.d.ts", "version": "1.1.6" -} + +,"_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" +,"_integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" +,"_from": "lines-and-columns@1.1.6" +} \ No newline at end of file diff --git a/node_modules/load-json-file/node_modules/strip-bom/package.json b/node_modules/load-json-file/node_modules/strip-bom/package.json index f29cc62a1..a2e66c154 100644 --- a/node_modules/load-json-file/node_modules/strip-bom/package.json +++ b/node_modules/load-json-file/node_modules/strip-bom/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "strip-bom@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "strip-bom@3.0.0", - "_id": "strip-bom@3.0.0", - "_inBundle": false, - "_integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "_location": "/load-json-file/strip-bom", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-bom@3.0.0", - "name": "strip-bom", - "escapedName": "strip-bom", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/load-json-file" - ], - "_resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "strip-bom", + "version": "3.0.0", + "description": "Strip UTF-8 byte order mark (BOM) from a string", + "license": "MIT", + "repository": "sindresorhus/strip-bom", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/strip-bom/issues" - }, - "description": "Strip UTF-8 byte order mark (BOM) from a string", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/strip-bom#readme", "keywords": [ "strip", "bom", @@ -63,14 +33,12 @@ "text", "string" ], - "license": "MIT", - "name": "strip-bom", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-bom.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" +,"_integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" +,"_from": "strip-bom@3.0.0" +} \ No newline at end of file diff --git a/node_modules/load-json-file/node_modules/type-fest/package.json b/node_modules/load-json-file/node_modules/type-fest/package.json index 78aeba518..3661ed5f9 100644 --- a/node_modules/load-json-file/node_modules/type-fest/package.json +++ b/node_modules/load-json-file/node_modules/type-fest/package.json @@ -1,85 +1,53 @@ { - "_args": [ - [ - "type-fest@0.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "type-fest@0.3.1", - "_id": "type-fest@0.3.1", - "_inBundle": false, - "_integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", - "_location": "/load-json-file/type-fest", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "type-fest@0.3.1", - "name": "type-fest", - "escapedName": "type-fest", - "rawSpec": "0.3.1", - "saveSpec": null, - "fetchSpec": "0.3.1" - }, - "_requiredBy": [ - "/load-json-file" - ], - "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "_spec": "0.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/type-fest/issues" - }, - "description": "A collection of essential TypeScript types", - "devDependencies": { - "@sindresorhus/tsconfig": "^0.3.0", - "@typescript-eslint/eslint-plugin": "^1.5.0", - "eslint-config-xo-typescript": "^0.9.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.d.ts", - "source" - ], - "homepage": "https://github.com/sindresorhus/type-fest#readme", - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "license": "(MIT OR CC0-1.0)", - "name": "type-fest", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/type-fest.git" - }, - "scripts": { - "test": "xo && tsd" - }, - "version": "0.3.1", - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off" - } - } -} + "name": "type-fest", + "version": "0.3.1", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.3.0", + "@typescript-eslint/eslint-plugin": "^1.5.0", + "eslint-config-xo-typescript": "^0.9.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" +,"_integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" +,"_from": "type-fest@0.3.1" +} \ No newline at end of file diff --git a/node_modules/load-json-file/package.json b/node_modules/load-json-file/package.json index 5b4b29965..16da414d5 100644 --- a/node_modules/load-json-file/package.json +++ b/node_modules/load-json-file/package.json @@ -1,79 +1,47 @@ { - "_args": [ - [ - "load-json-file@5.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "load-json-file@5.3.0", - "_id": "load-json-file@5.3.0", - "_inBundle": false, - "_integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", - "_location": "/load-json-file", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "load-json-file@5.3.0", - "name": "load-json-file", - "escapedName": "load-json-file", - "rawSpec": "5.3.0", - "saveSpec": null, - "fetchSpec": "5.3.0" - }, - "_requiredBy": [ - "/pkg-conf" - ], - "_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", - "_spec": "5.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/load-json-file/issues" - }, - "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" - }, - "description": "Read and parse a JSON file", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/load-json-file#readme", - "keywords": [ - "read", - "json", - "parse", - "file", - "fs", - "graceful", - "load" - ], - "license": "MIT", - "name": "load-json-file", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/load-json-file.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.3.0" -} + "name": "load-json-file", + "version": "5.3.0", + "description": "Read and parse a JSON file", + "license": "MIT", + "repository": "sindresorhus/load-json-file", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "read", + "json", + "parse", + "file", + "fs", + "graceful", + "load" + ], + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz" +,"_integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==" +,"_from": "load-json-file@5.3.0" +} \ No newline at end of file diff --git a/node_modules/locate-path/package.json b/node_modules/locate-path/package.json index d72ad1653..a73101f8e 100644 --- a/node_modules/locate-path/package.json +++ b/node_modules/locate-path/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "locate-path@5.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "locate-path@5.0.0", - "_id": "locate-path@5.0.0", - "_inBundle": false, - "_integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "_location": "/locate-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "locate-path@5.0.0", - "name": "locate-path", - "escapedName": "locate-path", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/find-up" - ], - "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "dependencies": { - "p-locate": "^4.1.0" - }, - "description": "Get the first path that exists on disk of multiple paths", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/locate-path#readme", - "keywords": [ - "locate", - "path", - "paths", - "file", - "files", - "exists", - "find", - "finder", - "search", - "searcher", - "array", - "iterable", - "iterator" - ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.0.0" -} + "name": "locate-path", + "version": "5.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "license": "MIT", + "repository": "sindresorhus/locate-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "dependencies": { + "p-locate": "^4.1.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" +,"_integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" +,"_from": "locate-path@5.0.0" +} \ No newline at end of file diff --git a/node_modules/lodash.clonedeep/package.json b/node_modules/lodash.clonedeep/package.json index 1efa8c642..63593f28b 100644 --- a/node_modules/lodash.clonedeep/package.json +++ b/node_modules/lodash.clonedeep/package.json @@ -1,73 +1,21 @@ { - "_args": [ - [ - "lodash.clonedeep@4.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lodash.clonedeep@4.5.0", - "_id": "lodash.clonedeep@4.5.0", - "_inBundle": false, - "_integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", - "_location": "/lodash.clonedeep", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash.clonedeep@4.5.0", - "name": "lodash.clonedeep", - "escapedName": "lodash.clonedeep", - "rawSpec": "4.5.0", - "saveSpec": null, - "fetchSpec": "4.5.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "_spec": "4.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - { - "name": "Blaine Bublitz", - "email": "blaine.bublitz@gmail.com", - "url": "https://github.com/phated" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash.clonedeep", + "version": "4.5.0", "description": "The lodash method `_.cloneDeep` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "clonedeep" - ], "license": "MIT", - "name": "lodash.clonedeep", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - }, - "version": "4.5.0" -} + "keywords": "lodash-modularized, clonedeep", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } + +,"_resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz" +,"_integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" +,"_from": "lodash.clonedeep@4.5.0" +} \ No newline at end of file diff --git a/node_modules/lodash.flattendeep/package.json b/node_modules/lodash.flattendeep/package.json index b1a70d2aa..d70de5dc8 100644 --- a/node_modules/lodash.flattendeep/package.json +++ b/node_modules/lodash.flattendeep/package.json @@ -1,73 +1,21 @@ { - "_args": [ - [ - "lodash.flattendeep@4.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lodash.flattendeep@4.4.0", - "_id": "lodash.flattendeep@4.4.0", - "_inBundle": false, - "_integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", - "_location": "/lodash.flattendeep", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash.flattendeep@4.4.0", - "name": "lodash.flattendeep", - "escapedName": "lodash.flattendeep", - "rawSpec": "4.4.0", - "saveSpec": null, - "fetchSpec": "4.4.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "_spec": "4.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - { - "name": "Blaine Bublitz", - "email": "blaine.bublitz@gmail.com", - "url": "https://github.com/phated" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash.flattendeep", + "version": "4.4.0", "description": "The lodash method `_.flattenDeep` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "flattendeep" - ], "license": "MIT", - "name": "lodash.flattendeep", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - }, - "version": "4.4.0" -} + "keywords": "lodash-modularized, flattendeep", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } + +,"_resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz" +,"_integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" +,"_from": "lodash.flattendeep@4.4.0" +} \ No newline at end of file diff --git a/node_modules/lodash.islength/package.json b/node_modules/lodash.islength/package.json index 8cef9497d..dfda9a8e9 100644 --- a/node_modules/lodash.islength/package.json +++ b/node_modules/lodash.islength/package.json @@ -1,73 +1,21 @@ { - "_args": [ - [ - "lodash.islength@4.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lodash.islength@4.0.1", - "_id": "lodash.islength@4.0.1", - "_inBundle": false, - "_integrity": "sha1-Tpho1FJXXXUK/9NYyXlUPcIO1Xc=", - "_location": "/lodash.islength", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash.islength@4.0.1", - "name": "lodash.islength", - "escapedName": "lodash.islength", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/lodash.islength/-/lodash.islength-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com", - "url": "http://allyoucanleet.com/" - }, - { - "name": "Blaine Bublitz", - "email": "blaine@iceddev.com", - "url": "https://github.com/phated" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash.islength", + "version": "4.0.1", "description": "The lodash method `_.isLength` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "islength" - ], "license": "MIT", - "name": "lodash.islength", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - }, - "version": "4.0.1" -} + "keywords": "lodash-modularized, islength", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } + +,"_resolved": "https://registry.npmjs.org/lodash.islength/-/lodash.islength-4.0.1.tgz" +,"_integrity": "sha1-Tpho1FJXXXUK/9NYyXlUPcIO1Xc=" +,"_from": "lodash.islength@4.0.1" +} \ No newline at end of file diff --git a/node_modules/lodash.merge/package.json b/node_modules/lodash.merge/package.json index 86a612915..64c7bcf4c 100644 --- a/node_modules/lodash.merge/package.json +++ b/node_modules/lodash.merge/package.json @@ -1,65 +1,20 @@ { - "_args": [ - [ - "lodash.merge@4.6.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lodash.merge@4.6.2", - "_id": "lodash.merge@4.6.2", - "_inBundle": false, - "_integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "_location": "/lodash.merge", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash.merge@4.6.2", - "name": "lodash.merge", - "escapedName": "lodash.merge", - "rawSpec": "4.6.2", - "saveSpec": null, - "fetchSpec": "4.6.2" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "_spec": "4.6.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be" - } - ], + "name": "lodash.merge", + "version": "4.6.2", "description": "The Lodash method `_.merge` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "merge" - ], "license": "MIT", - "name": "lodash.merge", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" - }, - "version": "4.6.2" -} + "keywords": "lodash-modularized, merge", + "author": "John-David Dalton ", + "contributors": [ + "John-David Dalton ", + "Mathias Bynens " + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } + +,"_resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" +,"_integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" +,"_from": "lodash.merge@4.6.2" +} \ No newline at end of file diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json index bcc59ebbf..205e9bb0a 100644 --- a/node_modules/lodash/package.json +++ b/node_modules/lodash/package.json @@ -1,67 +1,21 @@ { - "_args": [ - [ - "lodash@4.17.15", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lodash@4.17.15", - "_id": "lodash@4.17.15", - "_inBundle": false, - "_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", - "_location": "/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash@4.17.15", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "4.17.15", - "saveSpec": null, - "fetchSpec": "4.17.15" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "_spec": "4.17.15", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - "bugs": { - "url": "https://github.com/lodash/lodash/issues" - }, - "contributors": [ - { - "name": "John-David Dalton", - "email": "john.david.dalton@gmail.com" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be" - } - ], + "name": "lodash", + "version": "4.17.15", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "repository": { - "type": "git", - "url": "git+https://github.com/lodash/lodash.git" - }, - "scripts": { - "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" - }, - "version": "4.17.15" -} + "author": "John-David Dalton ", + "contributors": [ + "John-David Dalton ", + "Mathias Bynens " + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" } + +,"_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz" +,"_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" +,"_from": "lodash@4.17.15" +} \ No newline at end of file diff --git a/node_modules/log-symbols/package.json b/node_modules/log-symbols/package.json index b6e69a97e..fe17beec9 100644 --- a/node_modules/log-symbols/package.json +++ b/node_modules/log-symbols/package.json @@ -1,86 +1,54 @@ { - "_args": [ - [ - "log-symbols@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "log-symbols@3.0.0", - "_id": "log-symbols@3.0.0", - "_inBundle": false, - "_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", - "_location": "/log-symbols", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "log-symbols@3.0.0", - "name": "log-symbols", - "escapedName": "log-symbols", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/sindresorhus/log-symbols/issues" - }, - "dependencies": { - "chalk": "^2.4.2" - }, - "description": "Colored symbols for various log levels. Example: `✔︎ Success`", - "devDependencies": { - "ava": "^1.4.1", - "strip-ansi": "^5.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "browser.js" - ], - "homepage": "https://github.com/sindresorhus/log-symbols#readme", - "keywords": [ - "unicode", - "cli", - "cmd", - "command-line", - "characters", - "symbol", - "symbols", - "figure", - "figures", - "fallback", - "windows", - "log", - "logging", - "terminal", - "stdout" - ], - "license": "MIT", - "name": "log-symbols", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/log-symbols.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "log-symbols", + "version": "3.0.0", + "description": "Colored symbols for various log levels. Example: `✔︎ Success`", + "license": "MIT", + "repository": "sindresorhus/log-symbols", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "browser.js" + ], + "keywords": [ + "unicode", + "cli", + "cmd", + "command-line", + "characters", + "symbol", + "symbols", + "figure", + "figures", + "fallback", + "windows", + "log", + "logging", + "terminal", + "stdout" + ], + "dependencies": { + "chalk": "^2.4.2" + }, + "devDependencies": { + "ava": "^1.4.1", + "strip-ansi": "^5.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz" +,"_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" +,"_from": "log-symbols@3.0.0" +} \ No newline at end of file diff --git a/node_modules/long/package.json b/node_modules/long/package.json index 4929d50da..3be939df4 100644 --- a/node_modules/long/package.json +++ b/node_modules/long/package.json @@ -1,66 +1,38 @@ { - "_args": [ - [ - "long@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "long@4.0.0", - "_id": "long@4.0.0", - "_inBundle": false, - "_integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", - "_location": "/long", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "long@4.0.0", "name": "long", - "escapedName": "long", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Daniel Wirtz", - "email": "dcode@dcode.io" - }, - "bugs": { - "url": "https://github.com/dcodeIO/long.js/issues" - }, - "dependencies": {}, - "description": "A Long class for representing a 64-bit two's-complement integer value.", - "devDependencies": { - "webpack": "^3.10.0" - }, - "files": [ - "index.js", - "LICENSE", - "README.md", - "src/long.js", - "dist/long.js", - "dist/long.js.map" - ], - "homepage": "https://github.com/dcodeIO/long.js#readme", - "keywords": [ - "math" - ], - "license": "Apache-2.0", - "main": "src/long.js", - "name": "long", - "repository": { - "type": "git", - "url": "git+https://github.com/dcodeIO/long.js.git" - }, - "scripts": { - "build": "webpack", - "test": "node tests" - }, - "version": "4.0.0" -} + "version": "4.0.0", + "author": "Daniel Wirtz ", + "description": "A Long class for representing a 64-bit two's-complement integer value.", + "main": "src/long.js", + "repository": { + "type": "git", + "url": "https://github.com/dcodeIO/long.js.git" + }, + "bugs": { + "url": "https://github.com/dcodeIO/long.js/issues" + }, + "keywords": [ + "math" + ], + "dependencies": {}, + "devDependencies": { + "webpack": "^3.10.0" + }, + "license": "Apache-2.0", + "scripts": { + "build": "webpack", + "test": "node tests" + }, + "files": [ + "index.js", + "LICENSE", + "README.md", + "src/long.js", + "dist/long.js", + "dist/long.js.map" + ] + +,"_resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz" +,"_integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" +,"_from": "long@4.0.0" +} \ No newline at end of file diff --git a/node_modules/lowercase-keys/package.json b/node_modules/lowercase-keys/package.json index 5df288e98..9723e2602 100644 --- a/node_modules/lowercase-keys/package.json +++ b/node_modules/lowercase-keys/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "lowercase-keys@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "lowercase-keys@1.0.1", - "_id": "lowercase-keys@1.0.1", - "_inBundle": false, - "_integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "_location": "/lowercase-keys", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lowercase-keys@1.0.1", - "name": "lowercase-keys", - "escapedName": "lowercase-keys", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/got", - "/responselike" - ], - "_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "lowercase-keys", + "version": "1.0.1", + "description": "Lowercase the keys of an object", + "license": "MIT", + "repository": "sindresorhus/lowercase-keys", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/lowercase-keys/issues" - }, - "description": "Lowercase the keys of an object", - "devDependencies": { - "ava": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/lowercase-keys#readme", "keywords": [ "object", "assign", @@ -59,14 +29,11 @@ "keys", "key" ], - "license": "MIT", - "name": "lowercase-keys", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/lowercase-keys.git" - }, - "scripts": { - "test": "ava" - }, - "version": "1.0.1" -} + "devDependencies": { + "ava": "*" + } + +,"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" +,"_integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" +,"_from": "lowercase-keys@1.0.1" +} \ No newline at end of file diff --git a/node_modules/macos-release/package.json b/node_modules/macos-release/package.json index 4aa91c6fa..870c40cb0 100644 --- a/node_modules/macos-release/package.json +++ b/node_modules/macos-release/package.json @@ -1,74 +1,43 @@ { - "_args": [ - [ - "macos-release@2.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "macos-release@2.3.0", - "_id": "macos-release@2.3.0", - "_inBundle": false, - "_integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==", - "_location": "/macos-release", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "macos-release@2.3.0", - "name": "macos-release", - "escapedName": "macos-release", - "rawSpec": "2.3.0", - "saveSpec": null, - "fetchSpec": "2.3.0" - }, - "_requiredBy": [ - "/os-name" - ], - "_resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz", - "_spec": "2.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/macos-release/issues" - }, - "description": "Get the name and version of a macOS release from the Darwin version", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/macos-release#readme", - "keywords": [ - "macos", - "os", - "darwin", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version" - ], - "license": "MIT", - "name": "macos-release", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/macos-release.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.3.0" -} + "name": "macos-release", + "version": "2.3.0", + "description": "Get the name and version of a macOS release from the Darwin version", + "license": "MIT", + "repository": "sindresorhus/macos-release", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "macos", + "os", + "darwin", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz" +,"_integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==" +,"_from": "macos-release@2.3.0" +} \ No newline at end of file diff --git a/node_modules/make-dir/node_modules/semver/package.json b/node_modules/make-dir/node_modules/semver/package.json index 6c361e171..13030769c 100644 --- a/node_modules/make-dir/node_modules/semver/package.json +++ b/node_modules/make-dir/node_modules/semver/package.json @@ -1,64 +1,32 @@ { - "_args": [ - [ - "semver@6.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "semver@6.3.0", - "_id": "semver@6.3.0", - "_inBundle": false, - "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "_location": "/make-dir/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@6.3.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "6.3.0", - "saveSpec": null, - "fetchSpec": "6.3.0" - }, - "_requiredBy": [ - "/make-dir" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "_spec": "6.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, + "name": "semver", + "version": "6.3.0", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" + }, "devDependencies": { "tap": "^14.3.1" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver.js" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "6.3.0" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" +,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" +,"_from": "semver@6.3.0" +} \ No newline at end of file diff --git a/node_modules/make-dir/package.json b/node_modules/make-dir/package.json index 5ec2887d0..27e91efaf 100644 --- a/node_modules/make-dir/package.json +++ b/node_modules/make-dir/package.json @@ -1,95 +1,63 @@ { - "_args": [ - [ - "make-dir@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "make-dir@3.0.2", - "_id": "make-dir@3.0.2", - "_inBundle": false, - "_integrity": "sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==", - "_location": "/make-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "make-dir@3.0.2", - "name": "make-dir", - "escapedName": "make-dir", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" - }, - "_requiredBy": [ - "/configstore" - ], - "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/make-dir/issues" - }, - "dependencies": { - "semver": "^6.0.0" - }, - "description": "Make a directory and its parents if needed - Think `mkdir -p`", - "devDependencies": { - "@types/graceful-fs": "^4.1.3", - "@types/node": "^13.7.1", - "ava": "^1.4.0", - "codecov": "^3.2.0", - "graceful-fs": "^4.1.15", - "nyc": "^15.0.0", - "path-type": "^4.0.0", - "tempy": "^0.2.1", - "tsd": "^0.11.0", - "xo": "^0.25.4" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/make-dir#readme", - "keywords": [ - "mkdir", - "mkdirp", - "make", - "directories", - "dir", - "dirs", - "folders", - "directory", - "folder", - "path", - "parent", - "parents", - "intermediate", - "recursively", - "recursive", - "create", - "fs", - "filesystem", - "file-system" - ], - "license": "MIT", - "name": "make-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/make-dir.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "version": "3.0.2" -} + "name": "make-dir", + "version": "3.0.2", + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "license": "MIT", + "repository": "sindresorhus/make-dir", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "mkdir", + "mkdirp", + "make", + "directories", + "dir", + "dirs", + "folders", + "directory", + "folder", + "path", + "parent", + "parents", + "intermediate", + "recursively", + "recursive", + "create", + "fs", + "filesystem", + "file-system" + ], + "dependencies": { + "semver": "^6.0.0" + }, + "devDependencies": { + "@types/graceful-fs": "^4.1.3", + "@types/node": "^13.7.1", + "ava": "^1.4.0", + "codecov": "^3.2.0", + "graceful-fs": "^4.1.15", + "nyc": "^15.0.0", + "path-type": "^4.0.0", + "tempy": "^0.2.1", + "tsd": "^0.11.0", + "xo": "^0.25.4" + } + +,"_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz" +,"_integrity": "sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==" +,"_from": "make-dir@3.0.2" +} \ No newline at end of file diff --git a/node_modules/map-age-cleaner/package.json b/node_modules/map-age-cleaner/package.json index 9473ad055..2ce35979d 100644 --- a/node_modules/map-age-cleaner/package.json +++ b/node_modules/map-age-cleaner/package.json @@ -1,95 +1,63 @@ { - "_args": [ - [ - "map-age-cleaner@0.1.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "map-age-cleaner@0.1.3", - "_id": "map-age-cleaner@0.1.3", - "_inBundle": false, - "_integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", - "_location": "/map-age-cleaner", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "map-age-cleaner@0.1.3", - "name": "map-age-cleaner", - "escapedName": "map-age-cleaner", - "rawSpec": "0.1.3", - "saveSpec": null, - "fetchSpec": "0.1.3" - }, - "_requiredBy": [ - "/mem" - ], - "_resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "_spec": "0.1.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sam Verschueren", - "email": "sam.verschueren@gmail.com", - "url": "github.com/SamVerschueren" - }, - "bugs": { - "url": "https://github.com/SamVerschueren/map-age-cleaner/issues" - }, - "dependencies": { - "p-defer": "^1.0.0" - }, - "description": "Automatically cleanup expired items in a Map", - "devDependencies": { - "@types/delay": "^2.0.1", - "@types/node": "^10.7.1", - "ava": "^0.25.0", - "codecov": "^3.0.0", - "del-cli": "^1.1.0", - "delay": "^3.0.0", - "nyc": "^12.0.0", - "tslint": "^5.11.0", - "tslint-xo": "^0.9.0", - "typescript": "^3.0.1" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "dist/index.js", - "dist/index.d.ts" - ], - "homepage": "https://github.com/SamVerschueren/map-age-cleaner#readme", - "keywords": [ - "map", - "age", - "cleaner", - "maxage", - "expire", - "expiration", - "expiring" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "map-age-cleaner", - "nyc": { - "exclude": [ - "dist/test.js" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/SamVerschueren/map-age-cleaner.git" - }, - "scripts": { - "build": "npm run clean && tsc", - "clean": "del-cli dist", - "lint": "tslint --format stylish --project .", - "prepublishOnly": "npm run build", - "pretest": "npm run build -- --sourceMap", - "test": "npm run lint && nyc ava dist/test.js" - }, - "sideEffects": false, - "typings": "dist/index.d.ts", - "version": "0.1.3" -} + "name": "map-age-cleaner", + "version": "0.1.3", + "description": "Automatically cleanup expired items in a Map", + "license": "MIT", + "repository": "SamVerschueren/map-age-cleaner", + "author": { + "name": "Sam Verschueren", + "email": "sam.verschueren@gmail.com", + "url": "github.com/SamVerschueren" + }, + "main": "dist/index.js", + "engines": { + "node": ">=6" + }, + "scripts": { + "prepublishOnly": "npm run build", + "pretest": "npm run build -- --sourceMap", + "test": "npm run lint && nyc ava dist/test.js", + "lint": "tslint --format stylish --project .", + "build": "npm run clean && tsc", + "clean": "del-cli dist" + }, + "files": [ + "dist/index.js", + "dist/index.d.ts" + ], + "keywords": [ + "map", + "age", + "cleaner", + "maxage", + "expire", + "expiration", + "expiring" + ], + "dependencies": { + "p-defer": "^1.0.0" + }, + "devDependencies": { + "@types/delay": "^2.0.1", + "@types/node": "^10.7.1", + "ava": "^0.25.0", + "codecov": "^3.0.0", + "del-cli": "^1.1.0", + "delay": "^3.0.0", + "nyc": "^12.0.0", + "tslint": "^5.11.0", + "tslint-xo": "^0.9.0", + "typescript": "^3.0.1" + }, + "typings": "dist/index.d.ts", + "sideEffects": false, + "nyc": { + "exclude": [ + "dist/test.js" + ] + } + +,"_resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz" +,"_integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" +,"_from": "map-age-cleaner@0.1.3" +} \ No newline at end of file diff --git a/node_modules/matcher/node_modules/escape-string-regexp/package.json b/node_modules/matcher/node_modules/escape-string-regexp/package.json index 1f4a964bd..29a6312fd 100644 --- a/node_modules/matcher/node_modules/escape-string-regexp/package.json +++ b/node_modules/matcher/node_modules/escape-string-regexp/package.json @@ -1,74 +1,42 @@ { - "_args": [ - [ - "escape-string-regexp@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "escape-string-regexp@4.0.0", - "_id": "escape-string-regexp@4.0.0", - "_inBundle": false, - "_integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "_location": "/matcher/escape-string-regexp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "escape-string-regexp@4.0.0", - "name": "escape-string-regexp", - "escapedName": "escape-string-regexp", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/matcher" - ], - "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.28.3" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", - "keywords": [ - "escape", - "regex", - "regexp", - "regular", - "expression", - "string", - "special", - "characters" - ], - "license": "MIT", - "name": "escape-string-regexp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "escape-string-regexp", + "version": "4.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "regular", + "expression", + "string", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.28.3" + } + +,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" +,"_integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" +,"_from": "escape-string-regexp@4.0.0" +} \ No newline at end of file diff --git a/node_modules/matcher/package.json b/node_modules/matcher/package.json index 299855d07..bae54d9ae 100644 --- a/node_modules/matcher/package.json +++ b/node_modules/matcher/package.json @@ -1,90 +1,58 @@ { - "_args": [ - [ - "matcher@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "matcher@3.0.0", - "_id": "matcher@3.0.0", - "_inBundle": false, - "_integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", - "_location": "/matcher", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "matcher@3.0.0", - "name": "matcher", - "escapedName": "matcher", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/matcher/issues" - }, - "dependencies": { - "escape-string-regexp": "^4.0.0" - }, - "description": "Simple wildcard matching", - "devDependencies": { - "ava": "^2.4.0", - "matcha": "^0.7.0", - "tsd": "^0.11.0", - "xo": "^0.30.0" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/matcher#readme", - "keywords": [ - "matcher", - "matching", - "match", - "regex", - "regexp", - "regular", - "expression", - "wildcard", - "pattern", - "string", - "filter", - "glob", - "globber", - "globbing", - "minimatch" - ], - "license": "MIT", - "name": "matcher", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/matcher.git" - }, - "scripts": { - "bench": "matcha bench.js", - "test": "xo && ava && tsd" - }, - "version": "3.0.0", - "xo": { - "rules": { - "@typescript-eslint/member-ordering": "off" - } - } -} + "name": "matcher", + "version": "3.0.0", + "description": "Simple wildcard matching", + "license": "MIT", + "repository": "sindresorhus/matcher", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "matcha bench.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "matcher", + "matching", + "match", + "regex", + "regexp", + "regular", + "expression", + "wildcard", + "pattern", + "string", + "filter", + "glob", + "globber", + "globbing", + "minimatch" + ], + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "matcha": "^0.7.0", + "tsd": "^0.11.0", + "xo": "^0.30.0" + }, + "xo": { + "rules": { + "@typescript-eslint/member-ordering": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz" +,"_integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==" +,"_from": "matcher@3.0.0" +} \ No newline at end of file diff --git a/node_modules/md5-hex/package.json b/node_modules/md5-hex/package.json index f04251101..63e1c3de6 100644 --- a/node_modules/md5-hex/package.json +++ b/node_modules/md5-hex/package.json @@ -1,77 +1,45 @@ { - "_args": [ - [ - "md5-hex@3.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "md5-hex@3.0.1", - "_id": "md5-hex@3.0.1", - "_inBundle": false, - "_integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", - "_location": "/md5-hex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "md5-hex@3.0.1", - "name": "md5-hex", - "escapedName": "md5-hex", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/sindresorhus/md5-hex/issues" - }, - "dependencies": { - "blueimp-md5": "^2.10.0" - }, - "description": "Create a MD5 hash with hex encoding", - "devDependencies": { - "@types/node": "^12.6.2", - "ava": "^2.2.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "browser.js" - ], - "homepage": "https://github.com/sindresorhus/md5-hex#readme", - "keywords": [ - "hash", - "crypto", - "md5", - "hex", - "buffer", - "browser" - ], - "license": "MIT", - "name": "md5-hex", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/md5-hex.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.1" -} + "name": "md5-hex", + "version": "3.0.1", + "description": "Create a MD5 hash with hex encoding", + "license": "MIT", + "repository": "sindresorhus/md5-hex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "browser.js" + ], + "keywords": [ + "hash", + "crypto", + "md5", + "hex", + "buffer", + "browser" + ], + "dependencies": { + "blueimp-md5": "^2.10.0" + }, + "devDependencies": { + "@types/node": "^12.6.2", + "ava": "^2.2.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz" +,"_integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==" +,"_from": "md5-hex@3.0.1" +} \ No newline at end of file diff --git a/node_modules/md5-o-matic/package.json b/node_modules/md5-o-matic/package.json index 3e350f1ca..d5aeffd9f 100644 --- a/node_modules/md5-o-matic/package.json +++ b/node_modules/md5-o-matic/package.json @@ -1,48 +1,18 @@ { - "_args": [ - [ - "md5-o-matic@0.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "md5-o-matic@0.1.1", - "_id": "md5-o-matic@0.1.1", - "_inBundle": false, - "_integrity": "sha1-givM1l4RfFFPqxdrJZRdVBAKA8M=", - "_location": "/md5-o-matic", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "md5-o-matic@0.1.1", - "name": "md5-o-matic", - "escapedName": "md5-o-matic", - "rawSpec": "0.1.1", - "saveSpec": null, - "fetchSpec": "0.1.1" - }, - "_requiredBy": [ - "/concordance/md5-hex" - ], - "_resolved": "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz", - "_spec": "0.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Trent Millar" - }, - "bugs": { - "url": "https://github.com/trentmillar/md5-o-matic/issues" - }, + "name": "md5-o-matic", + "version": "0.1.1", "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", - "devDependencies": { - "mocha": "", - "should": "" - }, + "main": "lib/md5omatic.js", "directories": { "test": "test" }, - "homepage": "https://github.com/trentmillar/md5-o-matic", + "scripts": { + "test": "mocha test/*.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/trentmillar/md5-o-matic.git" + }, "keywords": [ "md5", "hashing", @@ -52,20 +22,27 @@ "fast", "md5-o-matic" ], + "readmeFilename": "README.md", + "author": { + "name": "Trent Millar" + }, "licenses": [ { - "type": "MIT", - "url": "https://github.com/trentmillar/md5-o-matic/blob/master/LICENSE" - } + "type": "MIT", + "url": "https://github.com/trentmillar/md5-o-matic/blob/master/LICENSE" + } ], - "main": "lib/md5omatic.js", - "name": "md5-o-matic", - "repository": { - "type": "git", - "url": "git://github.com/trentmillar/md5-o-matic.git" + "devDependencies": { + "mocha": "", + "should": "" }, - "scripts": { - "test": "mocha test/*.js" + "readme": "# md5-o-matic\n\nMD5 Shootout and how it stacks up - http://jsperf.com/md5-shootout/39\nMD5-o-matic provides simple & fast MD5 hashing for Node.js that requires no other module dependencies.\n", + "bugs": { + "url": "https://github.com/trentmillar/md5-o-matic/issues" }, - "version": "0.1.1" -} + "homepage": "https://github.com/trentmillar/md5-o-matic" + +,"_resolved": "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz" +,"_integrity": "sha1-givM1l4RfFFPqxdrJZRdVBAKA8M=" +,"_from": "md5-o-matic@0.1.1" +} \ No newline at end of file diff --git a/node_modules/md5/package.json b/node_modules/md5/package.json index bfa3d4751..644e305f0 100644 --- a/node_modules/md5/package.json +++ b/node_modules/md5/package.json @@ -1,71 +1,40 @@ { - "_args": [ - [ - "md5@2.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "md5", + "description": "js function for hashing messages with MD5", + "version": "2.2.1", + "author": "Paul Vorbach (http://paul.vorba.ch)", + "contributors": [ + "salba" ], - "_from": "md5@2.2.1", - "_id": "md5@2.2.1", - "_inBundle": false, - "_integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=", - "_location": "/md5", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "md5@2.2.1", - "name": "md5", - "escapedName": "md5", - "rawSpec": "2.2.1", - "saveSpec": null, - "fetchSpec": "2.2.1" - }, - "_requiredBy": [ - "/" + "tags": [ + "md5", + "hash", + "encryption", + "message digest" ], - "_resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", - "_spec": "2.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Paul Vorbach", - "email": "paul@vorba.ch", - "url": "http://paul.vorba.ch" + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-md5.git" }, "bugs": { "url": "https://github.com/pvorb/node-md5/issues" }, - "contributors": [ - { - "name": "salba" - } - ], + "main": "md5.js", + "scripts": { + "test": "mocha" + }, "dependencies": { "charenc": "~0.0.1", "crypt": "~0.0.1", "is-buffer": "~1.1.1" }, - "description": "js function for hashing messages with MD5", "devDependencies": { "mocha": "~2.3.4" }, - "homepage": "https://github.com/pvorb/node-md5#readme", - "license": "BSD-3-Clause", - "main": "md5.js", - "name": "md5", "optionalDependencies": {}, - "repository": { - "type": "git", - "url": "git://github.com/pvorb/node-md5.git" - }, - "scripts": { - "test": "mocha" - }, - "tags": [ - "md5", - "hash", - "encryption", - "message digest" - ], - "version": "2.2.1" -} + "license": "BSD-3-Clause" + +,"_resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz" +,"_integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=" +,"_from": "md5@2.2.1" +} \ No newline at end of file diff --git a/node_modules/mem/node_modules/mimic-fn/package.json b/node_modules/mem/node_modules/mimic-fn/package.json index 194101173..ae102f417 100644 --- a/node_modules/mem/node_modules/mimic-fn/package.json +++ b/node_modules/mem/node_modules/mimic-fn/package.json @@ -1,78 +1,46 @@ { - "_args": [ - [ - "mimic-fn@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mimic-fn@3.0.0", - "_id": "mimic-fn@3.0.0", - "_inBundle": false, - "_integrity": "sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==", - "_location": "/mem/mimic-fn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mimic-fn@3.0.0", - "name": "mimic-fn", - "escapedName": "mimic-fn", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/mem" - ], - "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/mimic-fn/issues" - }, - "description": "Make a function mimic another one", - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/mimic-fn#readme", - "keywords": [ - "function", - "mimic", - "imitate", - "rename", - "copy", - "inherit", - "properties", - "name", - "func", - "fn", - "set", - "infer", - "change" - ], - "license": "MIT", - "name": "mimic-fn", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/mimic-fn.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "mimic-fn", + "version": "3.0.0", + "description": "Make a function mimic another one", + "license": "MIT", + "repository": "sindresorhus/mimic-fn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "function", + "mimic", + "imitate", + "rename", + "copy", + "inherit", + "properties", + "name", + "func", + "fn", + "set", + "infer", + "change" + ], + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.0.0.tgz" +,"_integrity": "sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==" +,"_from": "mimic-fn@3.0.0" +} \ No newline at end of file diff --git a/node_modules/mem/package.json b/node_modules/mem/package.json index 746a60d7c..645ec3287 100644 --- a/node_modules/mem/package.json +++ b/node_modules/mem/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "mem@6.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mem@6.1.0", - "_id": "mem@6.1.0", - "_inBundle": false, - "_integrity": "sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg==", - "_location": "/mem", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mem@6.1.0", - "name": "mem", - "escapedName": "mem", - "rawSpec": "6.1.0", - "saveSpec": null, - "fetchSpec": "6.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/mem/-/mem-6.1.0.tgz", - "_spec": "6.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/mem/issues" - }, - "dependencies": { - "map-age-cleaner": "^0.1.3", - "mimic-fn": "^3.0.0" - }, - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "devDependencies": { - "ava": "^2.4.0", - "delay": "^4.1.0", - "serialize-javascript": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/mem#readme", - "keywords": [ - "memoize", - "function", - "mem", - "memoization", - "cache", - "caching", - "optimize", - "performance", - "ttl", - "expire", - "promise" - ], - "license": "MIT", - "name": "mem", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/mem.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "6.1.0" -} + "name": "mem", + "version": "6.1.0", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "license": "MIT", + "repository": "sindresorhus/mem", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "memoize", + "function", + "mem", + "memoization", + "cache", + "caching", + "optimize", + "performance", + "ttl", + "expire", + "promise" + ], + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "delay": "^4.1.0", + "serialize-javascript": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/mem/-/mem-6.1.0.tgz" +,"_integrity": "sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg==" +,"_from": "mem@6.1.0" +} \ No newline at end of file diff --git a/node_modules/merge2/package.json b/node_modules/merge2/package.json index fc17d94c5..972cfb99e 100644 --- a/node_modules/merge2/package.json +++ b/node_modules/merge2/package.json @@ -1,77 +1,47 @@ -{ - "_args": [ - [ - "merge2@1.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "merge2@1.3.0", - "_id": "merge2@1.3.0", - "_inBundle": false, - "_integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==", - "_location": "/merge2", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "merge2@1.3.0", - "name": "merge2", - "escapedName": "merge2", - "rawSpec": "1.3.0", - "saveSpec": null, - "fetchSpec": "1.3.0" - }, - "_requiredBy": [ - "/del/globby", - "/fast-glob", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz", - "_spec": "1.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "authors": [ - "Yan Qing " - ], - "bugs": { - "url": "https://github.com/teambition/merge2/issues" - }, - "dependencies": {}, - "description": "Merge multiple streams into one stream in sequence or parallel.", - "devDependencies": { - "standard": "^14.2.0", - "through2": "^3.0.1", - "thunks": "^4.9.5", - "tman": "^1.9.0", - "to-through": "^2.0.0" - }, - "engines": { - "node": ">= 6" - }, - "files": [ - "README.md", - "index.js" - ], - "homepage": "https://github.com/teambition/merge2", - "keywords": [ - "merge2", - "multiple", - "sequence", - "parallel", - "merge", - "stream", - "merge stream", - "sync" - ], - "license": "MIT", - "main": "./index.js", - "name": "merge2", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/teambition/merge2.git" - }, - "scripts": { - "test": "standard && tman" - }, - "version": "1.3.0" -} +{ + "name": "merge2", + "description": "Merge multiple streams into one stream in sequence or parallel.", + "authors": [ + "Yan Qing " + ], + "license": "MIT", + "version": "1.3.0", + "main": "./index.js", + "repository": { + "type": "git", + "url": "git@github.com:teambition/merge2.git" + }, + "homepage": "https://github.com/teambition/merge2", + "keywords": [ + "merge2", + "multiple", + "sequence", + "parallel", + "merge", + "stream", + "merge stream", + "sync" + ], + "engines": { + "node": ">= 6" + }, + "dependencies": {}, + "devDependencies": { + "standard": "^14.2.0", + "through2": "^3.0.1", + "thunks": "^4.9.5", + "tman": "^1.9.0", + "to-through": "^2.0.0" + }, + "scripts": { + "test": "standard && tman" + }, + "files": [ + "README.md", + "index.js" + ] + +,"_resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz" +,"_integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==" +,"_from": "merge2@1.3.0" +} \ No newline at end of file diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json index 6ee61e825..5fbff1a64 100644 --- a/node_modules/micromatch/package.json +++ b/node_modules/micromatch/package.json @@ -1,104 +1,44 @@ { - "_args": [ - [ - "micromatch@4.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "micromatch@4.0.2", - "_id": "micromatch@4.0.2", - "_inBundle": false, - "_integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "_location": "/micromatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "micromatch@4.0.2", - "name": "micromatch", - "escapedName": "micromatch", - "rawSpec": "4.0.2", - "saveSpec": null, - "fetchSpec": "4.0.2" - }, - "_requiredBy": [ - "#DEV:/", - "/fast-glob" + "name": "micromatch", + "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", + "version": "4.0.2", + "homepage": "https://github.com/micromatch/micromatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "(https://github.com/DianeLooney)", + "Amila Welihinda (amilajack.com)", + "Bogdan Chadkin (https://github.com/TrySound)", + "Brian Woodward (https://twitter.com/doowb)", + "Devon Govett (http://badassjs.com)", + "Elan Shanker (https://github.com/es128)", + "Fabrício Matté (https://ultcombo.js.org)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Martin Kolárik (https://kolarik.sk)", + "Olsten Larck (https://i.am.charlike.online)", + "Paul Miller (paulmillr.com)", + "Tom Byrer (https://github.com/tomByrer)", + "Tyler Akins (http://rumkin.com)", + "Peter Bright (https://github.com/drpizza)" ], - "_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "_spec": "4.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "contributors": [ - { - "url": "https://github.com/DianeLooney" - }, - { - "name": "Amila Welihinda", - "url": "amilajack.com" - }, - { - "name": "Bogdan Chadkin", - "url": "https://github.com/TrySound" - }, - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Devon Govett", - "url": "http://badassjs.com" - }, - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Fabrício Matté", - "url": "https://ultcombo.js.org" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Martin Kolárik", - "url": "https://kolarik.sk" - }, - { - "name": "Olsten Larck", - "url": "https://i.am.charlike.online" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Tom Byrer", - "url": "https://github.com/tomByrer" - }, - { - "name": "Tyler Akins", - "url": "http://rumkin.com" - }, - { - "name": "Peter Bright", - "email": "drpizza@quiscalusmexicanus.org", - "url": "https://github.com/drpizza" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "braces": "^3.0.1", "picomatch": "^2.0.5" }, - "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", "devDependencies": { "fill-range": "^7.0.1", "gulp-format-md": "^2.0.0", @@ -106,13 +46,6 @@ "mocha": "^5.2.0", "time-require": "github:jonschlinkert/time-require" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/micromatch", "keywords": [ "bash", "bracket", @@ -153,16 +86,6 @@ "star", "wildcard" ], - "license": "MIT", - "main": "index.js", - "name": "micromatch", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/micromatch.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": "collapsible", "layout": "default", @@ -191,6 +114,9 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" +,"_integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==" +,"_from": "micromatch@4.0.2" +} \ No newline at end of file diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json index 20b88ddf2..0ed35fde3 100644 --- a/node_modules/mimic-fn/package.json +++ b/node_modules/mimic-fn/package.json @@ -1,78 +1,46 @@ { - "_args": [ - [ - "mimic-fn@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mimic-fn@2.1.0", - "_id": "mimic-fn@2.1.0", - "_inBundle": false, - "_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "_location": "/mimic-fn", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mimic-fn@2.1.0", - "name": "mimic-fn", - "escapedName": "mimic-fn", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/onetime" - ], - "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/mimic-fn/issues" - }, - "description": "Make a function mimic another one", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/mimic-fn#readme", - "keywords": [ - "function", - "mimic", - "imitate", - "rename", - "copy", - "inherit", - "properties", - "name", - "func", - "fn", - "set", - "infer", - "change" - ], - "license": "MIT", - "name": "mimic-fn", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/mimic-fn.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "mimic-fn", + "version": "2.1.0", + "description": "Make a function mimic another one", + "license": "MIT", + "repository": "sindresorhus/mimic-fn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "function", + "mimic", + "imitate", + "rename", + "copy", + "inherit", + "properties", + "name", + "func", + "fn", + "set", + "infer", + "change" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" +,"_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" +,"_from": "mimic-fn@2.1.0" +} \ No newline at end of file diff --git a/node_modules/mimic-response/package.json b/node_modules/mimic-response/package.json index 9b07ba119..f491ccda6 100644 --- a/node_modules/mimic-response/package.json +++ b/node_modules/mimic-response/package.json @@ -1,57 +1,23 @@ { - "_args": [ - [ - "mimic-response@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mimic-response@1.0.1", - "_id": "mimic-response@1.0.1", - "_inBundle": false, - "_integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "_location": "/mimic-response", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mimic-response@1.0.1", - "name": "mimic-response", - "escapedName": "mimic-response", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/clone-response", - "/decompress-response", - "/got" - ], - "_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "mimic-response", + "version": "1.0.1", + "description": "Mimic a Node.js HTTP response stream", + "license": "MIT", + "repository": "sindresorhus/mimic-response", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/mimic-response/issues" - }, - "description": "Mimic a Node.js HTTP response stream", - "devDependencies": { - "ava": "*", - "create-test-server": "^0.1.0", - "pify": "^3.0.0", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/mimic-response#readme", "keywords": [ "mimic", "response", @@ -62,14 +28,14 @@ "get", "core" ], - "license": "MIT", - "name": "mimic-response", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/mimic-response.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.1" -} + "devDependencies": { + "ava": "*", + "create-test-server": "^0.1.0", + "pify": "^3.0.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" +,"_integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" +,"_from": "mimic-response@1.0.1" +} \ No newline at end of file diff --git a/node_modules/minimatch/package.json b/node_modules/minimatch/package.json index ada0a21fe..243f26056 100644 --- a/node_modules/minimatch/package.json +++ b/node_modules/minimatch/package.json @@ -1,68 +1,34 @@ { - "_args": [ - [ - "minimatch@3.0.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "minimatch@3.0.4", - "_id": "minimatch@3.0.4", - "_inBundle": false, - "_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "_location": "/minimatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "minimatch@3.0.4", - "name": "minimatch", - "escapedName": "minimatch", - "rawSpec": "3.0.4", - "saveSpec": null, - "fetchSpec": "3.0.4" + "author": "Isaac Z. Schlueter (http://blog.izs.me)", + "name": "minimatch", + "description": "a glob matcher in javascript", + "version": "3.0.4", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/minimatch.git" }, - "_requiredBy": [ - "/glob", - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "_spec": "3.0.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "main": "minimatch.js", + "scripts": { + "test": "tap test/*.js --cov", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "engines": { + "node": "*" }, "dependencies": { "brace-expansion": "^1.1.7" }, - "description": "a glob matcher in javascript", "devDependencies": { "tap": "^10.3.2" }, - "engines": { - "node": "*" - }, + "license": "ISC", "files": [ "minimatch.js" - ], - "homepage": "https://github.com/isaacs/minimatch#readme", - "license": "ISC", - "main": "minimatch.js", - "name": "minimatch", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js --cov" - }, - "version": "3.0.4" -} + ] + +,"_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" +,"_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" +,"_from": "minimatch@3.0.4" +} \ No newline at end of file diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json index 44b3bc47c..71b4f816e 100644 --- a/node_modules/minimist/package.json +++ b/node_modules/minimist/package.json @@ -1,65 +1,16 @@ { - "_args": [ - [ - "minimist@1.2.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "minimist@1.2.5", - "_id": "minimist@1.2.5", - "_inBundle": false, - "_integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "_location": "/minimist", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "minimist@1.2.5", - "name": "minimist", - "escapedName": "minimist", - "rawSpec": "1.2.5", - "saveSpec": null, - "fetchSpec": "1.2.5" - }, - "_requiredBy": [ - "/mkdirp", - "/rc" - ], - "_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "_spec": "1.2.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/substack/minimist/issues" - }, + "name": "minimist", + "version": "1.2.5", "description": "parse argument options", + "main": "index.js", "devDependencies": { "covert": "^1.0.0", "tap": "~0.4.0", "tape": "^3.5.0" }, - "homepage": "https://github.com/substack/minimist", - "keywords": [ - "argv", - "getopt", - "parser", - "optimist" - ], - "license": "MIT", - "main": "index.js", - "name": "minimist", - "repository": { - "type": "git", - "url": "git://github.com/substack/minimist.git" - }, "scripts": { - "coverage": "covert test/*.js", - "test": "tap test/*.js" + "test": "tap test/*.js", + "coverage": "covert test/*.js" }, "testling": { "files": "test/*.js", @@ -74,5 +25,25 @@ "opera/12" ] }, - "version": "1.2.5" -} + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" +,"_integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" +,"_from": "minimist@1.2.5" +} \ No newline at end of file diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json index f882ed23b..8f5b167f8 100644 --- a/node_modules/mkdirp/package.json +++ b/node_modules/mkdirp/package.json @@ -1,73 +1,38 @@ { - "_args": [ - [ - "mkdirp@0.5.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mkdirp@0.5.4", - "_id": "mkdirp@0.5.4", - "_inBundle": false, - "_integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", - "_location": "/mkdirp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mkdirp@0.5.4", - "name": "mkdirp", - "escapedName": "mkdirp", - "rawSpec": "0.5.4", - "saveSpec": null, - "fetchSpec": "0.5.4" + "name": "mkdirp", + "description": "Recursively mkdir, like `mkdir -p`", + "version": "0.5.4", + "publishConfig": { + "tag": "legacy" }, - "_requiredBy": [ - "/tslint" + "author": "James Halliday (http://substack.net)", + "main": "index.js", + "keywords": [ + "mkdir", + "directory" ], - "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", - "_spec": "0.5.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bin": { - "mkdirp": "bin/cmd.js" + "repository": { + "type": "git", + "url": "https://github.com/substack/node-mkdirp.git" }, - "bugs": { - "url": "https://github.com/substack/node-mkdirp/issues" + "scripts": { + "test": "tap test/*.js" }, "dependencies": { "minimist": "^1.2.5" }, - "description": "Recursively mkdir, like `mkdir -p`", "devDependencies": { "mock-fs": "^3.7.0", "tap": "^5.4.2" }, + "bin": "bin/cmd.js", + "license": "MIT", "files": [ "bin", "index.js" - ], - "homepage": "https://github.com/substack/node-mkdirp#readme", - "keywords": [ - "mkdir", - "directory" - ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", - "publishConfig": { - "tag": "legacy" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/substack/node-mkdirp.git" - }, - "scripts": { - "test": "tap test/*.js" - }, - "version": "0.5.4" -} + ] + +,"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz" +,"_integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==" +,"_from": "mkdirp@0.5.4" +} \ No newline at end of file diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json index 2a3430d0c..e286ef2be 100644 --- a/node_modules/ms/package.json +++ b/node_modules/ms/package.json @@ -1,44 +1,16 @@ { - "_args": [ - [ - "ms@2.1.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ms@2.1.2", - "_id": "ms@2.1.2", - "_inBundle": false, - "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "_location": "/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.1.2", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.1.2", - "saveSpec": null, - "fetchSpec": "2.1.2" - }, - "_requiredBy": [ - "/ava", - "/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "_spec": "2.1.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, + "name": "ms", + "version": "2.1.2", "description": "Tiny millisecond conversion utility", - "devDependencies": { - "eslint": "4.12.1", - "expect.js": "0.3.1", - "husky": "0.14.3", - "lint-staged": "5.0.0", - "mocha": "4.0.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -47,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -59,16 +26,16 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.1.2" -} + "license": "MIT", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + } + +,"_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" +,"_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" +,"_from": "ms@2.1.2" +} \ No newline at end of file diff --git a/node_modules/mute-stream/package.json b/node_modules/mute-stream/package.json index 3744f7df6..92cedb79a 100644 --- a/node_modules/mute-stream/package.json +++ b/node_modules/mute-stream/package.json @@ -1,66 +1,33 @@ { - "_args": [ - [ - "mute-stream@0.0.8", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "mute-stream@0.0.8", - "_id": "mute-stream@0.0.8", - "_inBundle": false, - "_integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "_location": "/mute-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "mute-stream@0.0.8", - "name": "mute-stream", - "escapedName": "mute-stream", - "rawSpec": "0.0.8", - "saveSpec": null, - "fetchSpec": "0.0.8" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "_spec": "0.0.8", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/mute-stream/issues" + "name": "mute-stream", + "version": "0.0.8", + "main": "mute.js", + "directories": { + "test": "test" }, - "description": "Bytes go in, but they don't come out (when muted).", "devDependencies": { "tap": "^12.1.1" }, - "directories": { - "test": "test" + "scripts": { + "test": "tap test/*.js --cov" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/mute-stream" }, - "files": [ - "mute.js" - ], - "homepage": "https://github.com/isaacs/mute-stream#readme", "keywords": [ "mute", "stream", "pipe" ], + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC", - "main": "mute.js", - "name": "mute-stream", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/mute-stream.git" - }, - "scripts": { - "test": "tap test/*.js --cov" - }, - "version": "0.0.8" -} + "description": "Bytes go in, but they don't come out (when muted).", + "files": [ + "mute.js" + ] + +,"_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" +,"_integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" +,"_from": "mute-stream@0.0.8" +} \ No newline at end of file diff --git a/node_modules/nice-try/package.json b/node_modules/nice-try/package.json index a55d496ef..c118b5728 100644 --- a/node_modules/nice-try/package.json +++ b/node_modules/nice-try/package.json @@ -1,64 +1,37 @@ { - "_args": [ - [ - "nice-try@1.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "nice-try@1.0.5", - "_id": "nice-try@1.0.5", - "_inBundle": false, - "_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "_location": "/nice-try", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "nice-try@1.0.5", - "name": "nice-try", - "escapedName": "nice-try", - "rawSpec": "1.0.5", - "saveSpec": null, - "fetchSpec": "1.0.5" - }, - "_requiredBy": [ - "/cross-spawn" - ], - "_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "_spec": "1.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "nice-try", + "version": "1.0.5", "authors": [ "Tobias Reich " ], - "bugs": { - "url": "https://github.com/electerious/nice-try/issues" - }, "description": "Tries to execute a function and discards any error that occurs", - "devDependencies": { - "chai": "^4.1.2", - "coveralls": "^3.0.0", - "mocha": "^5.1.1", - "nyc": "^12.0.1" - }, - "files": [ - "src" - ], - "homepage": "https://github.com/electerious/nice-try", + "main": "src/index.js", "keywords": [ "try", "catch", "error" ], "license": "MIT", - "main": "src/index.js", - "name": "nice-try", + "homepage": "https://github.com/electerious/nice-try", "repository": { "type": "git", - "url": "git+https://github.com/electerious/nice-try.git" + "url": "https://github.com/electerious/nice-try.git" }, + "files": [ + "src" + ], "scripts": { "coveralls": "nyc report --reporter=text-lcov | coveralls", "test": "nyc node_modules/mocha/bin/_mocha" }, - "version": "1.0.5" -} + "devDependencies": { + "chai": "^4.1.2", + "coveralls": "^3.0.0", + "nyc": "^12.0.1", + "mocha": "^5.1.1" + } + +,"_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" +,"_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" +,"_from": "nice-try@1.0.5" +} \ No newline at end of file diff --git a/node_modules/nock/package.json b/node_modules/nock/package.json index 2f2ee7d72..ff6dddc87 100644 --- a/node_modules/nock/package.json +++ b/node_modules/nock/package.json @@ -1,47 +1,33 @@ { - "_from": "nock", - "_id": "nock@12.0.3", - "_inBundle": false, - "_integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==", - "_location": "/nock", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "nock", - "name": "nock", - "escapedName": "nock", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER", - "/@types/nock" + "name": "nock", + "description": "HTTP server mocking and expectations library for Node.js", + "tags": [ + "Mock", + "HTTP", + "testing", + "isolation" ], - "_resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz", - "_shasum": "83f25076dbc4c9aa82b5cdf54c9604c7a778d1c9", - "_spec": "nock", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Pedro Teixeira", - "email": "pedro.teixeira@gmail.com" + "version": "12.0.3", + "author": "Pedro Teixeira ", + "repository": { + "type": "git", + "url": "https://github.com/nock/nock.git" }, "bugs": { "url": "http://github.com/nock/nock/issues" }, - "bundleDependencies": false, + "engines": { + "node": ">= 10.13" + }, + "main": "./index.js", + "types": "types", "dependencies": { "debug": "^4.1.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.13", "propagate": "^2.0.0" }, - "deprecated": false, - "description": "HTTP server mocking and expectations library for Node.js", "devDependencies": { - "@sinonjs/fake-timers": "^6.0.0", "assert-rejects": "^1.0.0", "chai": "^4.1.2", "dirty-chai": "^2.0.1", @@ -55,6 +41,7 @@ "eslint-plugin-promise": "^4.1.1", "eslint-plugin-standard": "^4.0.0", "got": "^10.5.2", + "@sinonjs/fake-timers": "^6.0.0", "mocha": "^7.0.1", "npm-run-all": "^4.1.5", "nyc": "^15.0.0", @@ -68,34 +55,9 @@ "superagent": "^5.0.2", "tap": "14.6.1" }, - "engines": { - "node": ">= 10.13" - }, - "files": [ - "index.js", - "lib", - "types/index.d.ts" - ], - "homepage": "https://github.com/nock/nock#readme", - "license": "MIT", - "main": "./index.js", - "name": "nock", - "nyc": { - "reporter": [ - "lcov", - "text-summary" - ], - "exclude": [ - "tests/" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/nock/nock.git" - }, "scripts": { - "format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'", "format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'", + "format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'", "lint": "run-p lint:js lint:ts", "lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'", "lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'", @@ -106,12 +68,23 @@ "test:mocha": "nyc mocha $(grep -lr '^\\s*it(' tests)", "test:tap": "tap --100 --coverage --coverage-report=text ./tests/test_*.js" }, - "tags": [ - "Mock", - "HTTP", - "testing", - "isolation" - ], - "types": "types", - "version": "12.0.3" -} + "nyc": { + "reporter": [ + "lcov", + "text-summary" + ], + "exclude": [ + "tests/" + ] + }, + "license": "MIT", + "files": [ + "index.js", + "lib", + "types/index.d.ts" + ] + +,"_resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz" +,"_integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==" +,"_from": "nock@12.0.3" +} \ No newline at end of file diff --git a/node_modules/node-fetch/package.json b/node_modules/node-fetch/package.json index 2a6b2f547..d9dc1c211 100644 --- a/node_modules/node-fetch/package.json +++ b/node_modules/node-fetch/package.json @@ -1,41 +1,41 @@ { - "_args": [ - [ - "node-fetch@2.6.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] + "name": "node-fetch", + "version": "2.6.0", + "description": "A light-weight module that brings window.fetch to node.js", + "main": "lib/index", + "browser": "./browser.js", + "module": "lib/index.mjs", + "files": [ + "lib/index.js", + "lib/index.mjs", + "lib/index.es.js", + "browser.js" ], - "_from": "node-fetch@2.6.0", - "_id": "node-fetch@2.6.0", - "_inBundle": false, - "_integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==", - "_location": "/node-fetch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "node-fetch@2.6.0", - "name": "node-fetch", - "escapedName": "node-fetch", - "rawSpec": "2.6.0", - "saveSpec": null, - "fetchSpec": "2.6.0" + "engines": { + "node": "4.x || >=6.0.0" }, - "_requiredBy": [ - "/@octokit/request" - ], - "_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", - "_spec": "2.6.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "David Frank" + "scripts": { + "build": "cross-env BABEL_ENV=rollup rollup -c", + "prepare": "npm run build", + "test": "cross-env BABEL_ENV=test mocha --require babel-register --throw-deprecation test/test.js", + "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js", + "coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json" }, - "browser": "./browser.js", + "repository": { + "type": "git", + "url": "https://github.com/bitinn/node-fetch.git" + }, + "keywords": [ + "fetch", + "http", + "promise" + ], + "author": "David Frank", + "license": "MIT", "bugs": { "url": "https://github.com/bitinn/node-fetch/issues" }, - "dependencies": {}, - "description": "A light-weight module that brings window.fetch to node.js", + "homepage": "https://github.com/bitinn/node-fetch", "devDependencies": { "@ungap/url-search-params": "^0.1.2", "abort-controller": "^1.1.0", @@ -62,35 +62,9 @@ "string-to-arraybuffer": "^1.0.2", "whatwg-url": "^5.0.0" }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "files": [ - "lib/index.js", - "lib/index.mjs", - "lib/index.es.js", - "browser.js" - ], - "homepage": "https://github.com/bitinn/node-fetch", - "keywords": [ - "fetch", - "http", - "promise" - ], - "license": "MIT", - "main": "lib/index", - "module": "lib/index.mjs", - "name": "node-fetch", - "repository": { - "type": "git", - "url": "git+https://github.com/bitinn/node-fetch.git" - }, - "scripts": { - "build": "cross-env BABEL_ENV=rollup rollup -c", - "coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json", - "prepare": "npm run build", - "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js", - "test": "cross-env BABEL_ENV=test mocha --require babel-register --throw-deprecation test/test.js" - }, - "version": "2.6.0" -} + "dependencies": {} + +,"_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz" +,"_integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" +,"_from": "node-fetch@2.6.0" +} \ No newline at end of file diff --git a/node_modules/normalize-package-data/node_modules/semver/package.json b/node_modules/normalize-package-data/node_modules/semver/package.json index c3111c358..31e12dde0 100644 --- a/node_modules/normalize-package-data/node_modules/semver/package.json +++ b/node_modules/normalize-package-data/node_modules/semver/package.json @@ -1,60 +1,32 @@ { - "_from": "semver@2 || 3 || 4 || 5", - "_id": "semver@5.7.1", - "_inBundle": false, - "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "_location": "/normalize-package-data/semver", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "semver@2 || 3 || 4 || 5", - "name": "semver", - "escapedName": "semver", - "rawSpec": "2 || 3 || 4 || 5", - "saveSpec": null, - "fetchSpec": "2 || 3 || 4 || 5" - }, - "_requiredBy": [ - "/normalize-package-data" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", - "_spec": "semver@2 || 3 || 4 || 5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/normalize-package-data", - "bin": { - "semver": "bin/semver" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "semver", + "version": "5.7.1", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "devDependencies": { "tap": "^13.0.0-rc.18" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "5.7.1" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" +,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" +,"_from": "semver@5.7.1" +} \ No newline at end of file diff --git a/node_modules/normalize-package-data/package.json b/node_modules/normalize-package-data/package.json index 8fa546d11..c73c60bb1 100644 --- a/node_modules/normalize-package-data/package.json +++ b/node_modules/normalize-package-data/package.json @@ -1,61 +1,23 @@ { - "_args": [ - [ - "normalize-package-data@2.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "normalize-package-data@2.5.0", - "_id": "normalize-package-data@2.5.0", - "_inBundle": false, - "_integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "_location": "/normalize-package-data", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "normalize-package-data@2.5.0", - "name": "normalize-package-data", - "escapedName": "normalize-package-data", - "rawSpec": "2.5.0", - "saveSpec": null, - "fetchSpec": "2.5.0" - }, - "_requiredBy": [ - "/read-pkg" - ], - "_resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "_spec": "2.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Meryn Stol", - "email": "merynstol@gmail.com" + "name": "normalize-package-data", + "version": "2.5.0", + "author": "Meryn Stol ", + "description": "Normalizes data that can be found in package.json files.", + "license": "BSD-2-Clause", + "repository": { + "type": "git", + "url": "git://github.com/npm/normalize-package-data.git" }, - "bugs": { - "url": "https://github.com/npm/normalize-package-data/issues" + "main": "lib/normalize.js", + "scripts": { + "test": "tap test/*.js" }, - "contributors": [ - { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me" - }, - { - "name": "Meryn Stol", - "email": "merynstol@gmail.com" - }, - { - "name": "Robert Kowalski", - "email": "rok@kowalski.gd" - } - ], "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" }, - "description": "Normalizes data that can be found in package.json files.", "devDependencies": { "async": "^2.6.1", "tap": "^12.4.0", @@ -65,17 +27,9 @@ "lib/*.js", "lib/*.json", "AUTHORS" - ], - "homepage": "https://github.com/npm/normalize-package-data#readme", - "license": "BSD-2-Clause", - "main": "lib/normalize.js", - "name": "normalize-package-data", - "repository": { - "type": "git", - "url": "git://github.com/npm/normalize-package-data.git" - }, - "scripts": { - "test": "tap test/*.js" - }, - "version": "2.5.0" -} + ] + +,"_resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" +,"_integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" +,"_from": "normalize-package-data@2.5.0" +} \ No newline at end of file diff --git a/node_modules/normalize-url/package.json b/node_modules/normalize-url/package.json index a18f55b61..6d81b2f93 100644 --- a/node_modules/normalize-url/package.json +++ b/node_modules/normalize-url/package.json @@ -1,80 +1,48 @@ { - "_args": [ - [ - "normalize-url@4.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "normalize-url@4.5.0", - "_id": "normalize-url@4.5.0", - "_inBundle": false, - "_integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", - "_location": "/normalize-url", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "normalize-url@4.5.0", - "name": "normalize-url", - "escapedName": "normalize-url", - "rawSpec": "4.5.0", - "saveSpec": null, - "fetchSpec": "4.5.0" - }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "_spec": "4.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/normalize-url/issues" - }, - "description": "Normalize a URL", - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.6", - "nyc": "^14.1.1", - "tsd": "^0.8.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/normalize-url#readme", - "keywords": [ - "normalize", - "url", - "uri", - "address", - "string", - "normalization", - "normalisation", - "query", - "querystring", - "simplify", - "strip", - "trim", - "canonical" - ], - "license": "MIT", - "name": "normalize-url", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/normalize-url.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "version": "4.5.0" -} + "name": "normalize-url", + "version": "4.5.0", + "description": "Normalize a URL", + "license": "MIT", + "repository": "sindresorhus/normalize-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "normalize", + "url", + "uri", + "address", + "string", + "normalization", + "normalisation", + "query", + "querystring", + "simplify", + "strip", + "trim", + "canonical" + ], + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.6", + "nyc": "^14.1.1", + "tsd": "^0.8.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" +,"_integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" +,"_from": "normalize-url@4.5.0" +} \ No newline at end of file diff --git a/node_modules/npm-run-path/package.json b/node_modules/npm-run-path/package.json index d09ec041c..557c23e7b 100644 --- a/node_modules/npm-run-path/package.json +++ b/node_modules/npm-run-path/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "npm-run-path@2.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "npm-run-path@2.0.2", - "_id": "npm-run-path@2.0.2", - "_inBundle": false, - "_integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "_location": "/npm-run-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "npm-run-path@2.0.2", - "name": "npm-run-path", - "escapedName": "npm-run-path", - "rawSpec": "2.0.2", - "saveSpec": null, - "fetchSpec": "2.0.2" - }, - "_requiredBy": [ - "/execa" - ], - "_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "_spec": "2.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "npm-run-path", + "version": "2.0.2", + "description": "Get your PATH prepended with locally installed binaries", + "license": "MIT", + "repository": "sindresorhus/npm-run-path", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/npm-run-path/issues" - }, - "dependencies": { - "path-key": "^2.0.0" - }, - "description": "Get your PATH prepended with locally installed binaries", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/npm-run-path#readme", "keywords": [ "npm", "run", @@ -64,17 +32,18 @@ "execute", "executable" ], - "license": "MIT", - "name": "npm-run-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/npm-run-path.git" + "dependencies": { + "path-key": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.0.2", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" +,"_integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" +,"_from": "npm-run-path@2.0.2" +} \ No newline at end of file diff --git a/node_modules/once/package.json b/node_modules/once/package.json index 80b98b97b..a498f74fd 100644 --- a/node_modules/once/package.json +++ b/node_modules/once/package.json @@ -1,74 +1,37 @@ { - "_args": [ - [ - "once@1.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "once@1.4.0", - "_id": "once@1.4.0", - "_inBundle": false, - "_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "_location": "/once", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "once@1.4.0", - "name": "once", - "escapedName": "once", - "rawSpec": "1.4.0", - "saveSpec": null, - "fetchSpec": "1.4.0" - }, - "_requiredBy": [ - "/@octokit/request", - "/@octokit/request-error", - "/end-of-stream", - "/glob", - "/inflight", - "/pump" - ], - "_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "_spec": "1.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/once/issues" + "name": "once", + "version": "1.4.0", + "description": "Run a function exactly one time", + "main": "once.js", + "directories": { + "test": "test" }, "dependencies": { "wrappy": "1" }, - "description": "Run a function exactly one time", "devDependencies": { "tap": "^7.0.1" }, - "directories": { - "test": "test" + "scripts": { + "test": "tap test/*.js" }, "files": [ "once.js" ], - "homepage": "https://github.com/isaacs/once#readme", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/once" + }, "keywords": [ "once", "function", "one", "single" ], - "license": "ISC", - "main": "once.js", - "name": "once", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/once.git" - }, - "scripts": { - "test": "tap test/*.js" - }, - "version": "1.4.0" -} + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC" + +,"_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz" +,"_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" +,"_from": "once@1.4.0" +} \ No newline at end of file diff --git a/node_modules/onetime/package.json b/node_modules/onetime/package.json index 4032fb353..93be75fae 100644 --- a/node_modules/onetime/package.json +++ b/node_modules/onetime/package.json @@ -1,78 +1,46 @@ { - "_args": [ - [ - "onetime@5.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "onetime@5.1.0", - "_id": "onetime@5.1.0", - "_inBundle": false, - "_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", - "_location": "/onetime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "onetime@5.1.0", - "name": "onetime", - "escapedName": "onetime", - "rawSpec": "5.1.0", - "saveSpec": null, - "fetchSpec": "5.1.0" - }, - "_requiredBy": [ - "/restore-cursor" - ], - "_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", - "_spec": "5.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/onetime/issues" - }, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "description": "Ensure a function is only called once", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/onetime#readme", - "keywords": [ - "once", - "function", - "one", - "onetime", - "func", - "fn", - "single", - "call", - "called", - "prevent" - ], - "license": "MIT", - "name": "onetime", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/onetime.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.1.0" -} + "name": "onetime", + "version": "5.1.0", + "description": "Ensure a function is only called once", + "license": "MIT", + "repository": "sindresorhus/onetime", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "once", + "function", + "one", + "onetime", + "func", + "fn", + "single", + "call", + "called", + "prevent" + ], + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz" +,"_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==" +,"_from": "onetime@5.1.0" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/ansi-styles/package.json b/node_modules/ora/node_modules/ansi-styles/package.json index 2c9819234..f970a55ac 100644 --- a/node_modules/ora/node_modules/ansi-styles/package.json +++ b/node_modules/ora/node_modules/ansi-styles/package.json @@ -1,93 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/ora/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/ora/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/chalk/package.json b/node_modules/ora/node_modules/chalk/package.json index 481a79dfb..c75d30e94 100644 --- a/node_modules/ora/node_modules/chalk/package.json +++ b/node_modules/ora/node_modules/chalk/package.json @@ -1,99 +1,67 @@ { - "_args": [ - [ - "chalk@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chalk@3.0.0", - "_id": "chalk@3.0.0", - "_inBundle": false, - "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "_location": "/ora/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chalk@3.0.0", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "source", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" - }, - "version": "3.0.0", - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } -} + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" +,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" +,"_from": "chalk@3.0.0" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/color-convert/package.json b/node_modules/ora/node_modules/color-convert/package.json index bc8eeba39..26354b46e 100644 --- a/node_modules/ora/node_modules/color-convert/package.json +++ b/node_modules/ora/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/ora/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/ora/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/color-name/package.json b/node_modules/ora/node_modules/color-name/package.json index f85a98024..14739f13f 100644 --- a/node_modules/ora/node_modules/color-name/package.json +++ b/node_modules/ora/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/ora/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/ora/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/has-flag/package.json b/node_modules/ora/node_modules/has-flag/package.json index 49ea1d8ca..5b10a2844 100644 --- a/node_modules/ora/node_modules/has-flag/package.json +++ b/node_modules/ora/node_modules/has-flag/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "has-flag@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-flag@4.0.0", - "_id": "has-flag@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "_location": "/ora/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-flag@4.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/ora/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" +,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" +,"_from": "has-flag@4.0.0" +} \ No newline at end of file diff --git a/node_modules/ora/node_modules/supports-color/package.json b/node_modules/ora/node_modules/supports-color/package.json index 1dc423da7..f0982eb21 100644 --- a/node_modules/ora/node_modules/supports-color/package.json +++ b/node_modules/ora/node_modules/supports-color/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "supports-color@7.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supports-color@7.1.0", - "_id": "supports-color@7.1.0", - "_inBundle": false, - "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "_location": "/ora/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@7.1.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "7.1.0", - "saveSpec": null, - "fetchSpec": "7.1.0" - }, - "_requiredBy": [ - "/ora/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "_spec": "7.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^4.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "7.1.0" -} + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" +,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" +,"_from": "supports-color@7.1.0" +} \ No newline at end of file diff --git a/node_modules/ora/package.json b/node_modules/ora/package.json index 9c8147276..29fd1e344 100644 --- a/node_modules/ora/package.json +++ b/node_modules/ora/package.json @@ -1,94 +1,60 @@ { - "_args": [ - [ - "ora@4.0.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ora@4.0.4", - "_id": "ora@4.0.4", - "_inBundle": false, - "_integrity": "sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==", - "_location": "/ora", - "_phantomChildren": { - "@types/color-name": "1.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "ora@4.0.4", - "name": "ora", - "escapedName": "ora", - "rawSpec": "4.0.4", - "saveSpec": null, - "fetchSpec": "4.0.4" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.4.tgz", - "_spec": "4.0.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/ora/issues" - }, - "dependencies": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "description": "Elegant terminal spinner", - "devDependencies": { - "@types/node": "^12.7.5", - "ava": "^2.4.0", - "get-stream": "^5.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/ora#readme", - "keywords": [ - "cli", - "spinner", - "spinners", - "terminal", - "term", - "console", - "ascii", - "unicode", - "loading", - "indicator", - "progress", - "busy", - "wait", - "idle" - ], - "license": "MIT", - "name": "ora", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/ora.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.4" -} + "name": "ora", + "version": "4.0.4", + "description": "Elegant terminal spinner", + "license": "MIT", + "repository": "sindresorhus/ora", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "spinner", + "spinners", + "terminal", + "term", + "console", + "ascii", + "unicode", + "loading", + "indicator", + "progress", + "busy", + "wait", + "idle" + ], + "dependencies": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "devDependencies": { + "@types/node": "^12.7.5", + "ava": "^2.4.0", + "get-stream": "^5.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.4.tgz" +,"_integrity": "sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==" +,"_from": "ora@4.0.4" +} \ No newline at end of file diff --git a/node_modules/os-name/package.json b/node_modules/os-name/package.json index 23ada222c..2ce367f0e 100644 --- a/node_modules/os-name/package.json +++ b/node_modules/os-name/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "os-name@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "os-name@3.1.0", - "_id": "os-name@3.1.0", - "_inBundle": false, - "_integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", - "_location": "/os-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "os-name@3.1.0", - "name": "os-name", - "escapedName": "os-name", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/@octokit/graphql/universal-user-agent", - "/universal-user-agent" - ], - "_resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/os-name/issues" - }, - "dependencies": { - "macos-release": "^2.2.0", - "windows-release": "^3.1.0" - }, - "description": "Get the name of the current operating system. Example: macOS Sierra", - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/os-name#readme", - "keywords": [ - "os", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version", - "macos", - "windows", - "linux" - ], - "license": "MIT", - "name": "os-name", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/os-name.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.0" -} + "name": "os-name", + "version": "3.1.0", + "description": "Get the name of the current operating system. Example: macOS Sierra", + "license": "MIT", + "repository": "sindresorhus/os-name", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "os", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version", + "macos", + "windows", + "linux" + ], + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + }, + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz" +,"_integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==" +,"_from": "os-name@3.1.0" +} \ No newline at end of file diff --git a/node_modules/p-cancelable/package.json b/node_modules/p-cancelable/package.json index f7b1e1bb9..7ffb5608e 100644 --- a/node_modules/p-cancelable/package.json +++ b/node_modules/p-cancelable/package.json @@ -1,85 +1,53 @@ { - "_args": [ - [ - "p-cancelable@1.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-cancelable@1.1.0", - "_id": "p-cancelable@1.1.0", - "_inBundle": false, - "_integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "_location": "/p-cancelable", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-cancelable@1.1.0", - "name": "p-cancelable", - "escapedName": "p-cancelable", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-cancelable/issues" - }, - "description": "Create a promise that can be canceled", - "devDependencies": { - "ava": "^1.3.1", - "delay": "^4.1.0", - "promise.prototype.finally": "^3.1.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/p-cancelable#readme", - "keywords": [ - "promise", - "cancelable", - "cancel", - "canceled", - "canceling", - "cancellable", - "cancellation", - "abort", - "abortable", - "aborting", - "cleanup", - "task", - "token", - "async", - "function", - "await", - "promises", - "bluebird" - ], - "license": "MIT", - "name": "p-cancelable", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-cancelable.git" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "version": "1.1.0" -} + "name": "p-cancelable", + "version": "1.1.0", + "description": "Create a promise that can be canceled", + "license": "MIT", + "repository": "sindresorhus/p-cancelable", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "cancelable", + "cancel", + "canceled", + "canceling", + "cancellable", + "cancellation", + "abort", + "abortable", + "aborting", + "cleanup", + "task", + "token", + "async", + "function", + "await", + "promises", + "bluebird" + ], + "devDependencies": { + "ava": "^1.3.1", + "delay": "^4.1.0", + "promise.prototype.finally": "^3.1.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" +,"_integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" +,"_from": "p-cancelable@1.1.0" +} \ No newline at end of file diff --git a/node_modules/p-defer/package.json b/node_modules/p-defer/package.json index 3bdce9252..5b8a525ca 100644 --- a/node_modules/p-defer/package.json +++ b/node_modules/p-defer/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "p-defer@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-defer@1.0.0", - "_id": "p-defer@1.0.0", - "_inBundle": false, - "_integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "_location": "/p-defer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-defer@1.0.0", - "name": "p-defer", - "escapedName": "p-defer", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/map-age-cleaner" - ], - "_resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "p-defer", + "version": "1.0.0", + "description": "Create a deferred promise", + "license": "MIT", + "repository": "sindresorhus/p-defer", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-defer/issues" - }, - "description": "Create a deferred promise", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/p-defer#readme", "keywords": [ "promise", "defer", @@ -61,17 +31,15 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-defer", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-defer.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "1.0.0", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz" +,"_integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" +,"_from": "p-defer@1.0.0" +} \ No newline at end of file diff --git a/node_modules/p-finally/package.json b/node_modules/p-finally/package.json index b178c9b27..719d847cf 100644 --- a/node_modules/p-finally/package.json +++ b/node_modules/p-finally/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "p-finally@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "p-finally@1.0.0", - "_id": "p-finally@1.0.0", - "_inBundle": false, - "_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "_location": "/p-finally", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-finally@1.0.0", - "name": "p-finally", - "escapedName": "p-finally", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/execa" - ], - "_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "p-finally", + "version": "1.0.0", + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "license": "MIT", + "repository": "sindresorhus/p-finally", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-finally/issues" - }, - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/p-finally#readme", "keywords": [ "promise", "finally", @@ -61,17 +32,15 @@ "shim", "bluebird" ], - "license": "MIT", - "name": "p-finally", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-finally.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "1.0.0", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" +,"_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" +,"_from": "p-finally@1.0.0" +} \ No newline at end of file diff --git a/node_modules/p-limit/package.json b/node_modules/p-limit/package.json index df7673f56..256a22233 100644 --- a/node_modules/p-limit/package.json +++ b/node_modules/p-limit/package.json @@ -1,88 +1,55 @@ { - "_args": [ - [ - "p-limit@2.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-limit@2.2.1", - "_id": "p-limit@2.2.1", - "_inBundle": false, - "_integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", - "_location": "/p-limit", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-limit@2.2.1", - "name": "p-limit", - "escapedName": "p-limit", - "rawSpec": "2.2.1", - "saveSpec": null, - "fetchSpec": "2.2.1" - }, - "_requiredBy": [ - "/p-locate", - "/pkg-conf/p-locate" - ], - "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", - "_spec": "2.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-limit/issues" - }, - "dependencies": { - "p-try": "^2.0.0" - }, - "description": "Run multiple promise-returning & async functions with limited concurrency", - "devDependencies": { - "ava": "^1.2.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "random-int": "^1.0.0", - "time-span": "^2.0.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/p-limit#readme", - "keywords": [ - "promise", - "limit", - "limited", - "concurrency", - "throttle", - "throat", - "rate", - "batch", - "ratelimit", - "task", - "queue", - "async", - "await", - "promises", - "bluebird" - ], - "license": "MIT", - "name": "p-limit", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-limit.git" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "version": "2.2.1" -} + "name": "p-limit", + "version": "2.2.1", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "license": "MIT", + "repository": "sindresorhus/p-limit", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "limit", + "limited", + "concurrency", + "throttle", + "throat", + "rate", + "batch", + "ratelimit", + "task", + "queue", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-try": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.2.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "random-int": "^1.0.0", + "time-span": "^2.0.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz" +,"_integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==" +,"_from": "p-limit@2.2.1" +} \ No newline at end of file diff --git a/node_modules/p-locate/package.json b/node_modules/p-locate/package.json index 1e9629e69..d2e602eee 100644 --- a/node_modules/p-locate/package.json +++ b/node_modules/p-locate/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "p-locate@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-locate@4.1.0", - "_id": "p-locate@4.1.0", - "_inBundle": false, - "_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "_location": "/p-locate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-locate@4.1.0", - "name": "p-locate", - "escapedName": "p-locate", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/locate-path" - ], - "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "dependencies": { - "p-limit": "^2.2.0" - }, - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "devDependencies": { - "ava": "^1.4.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "time-span": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/p-locate#readme", - "keywords": [ - "promise", - "locate", - "find", - "finder", - "search", - "searcher", - "test", - "array", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "fastest", - "async", - "await", - "promises", - "bluebird" - ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.1.0" -} + "name": "p-locate", + "version": "4.1.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "license": "MIT", + "repository": "sindresorhus/p-locate", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-limit": "^2.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "time-span": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" +,"_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" +,"_from": "p-locate@4.1.0" +} \ No newline at end of file diff --git a/node_modules/p-map/package.json b/node_modules/p-map/package.json index df3a1e6a5..0292392d0 100644 --- a/node_modules/p-map/package.json +++ b/node_modules/p-map/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "p-map@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-map@4.0.0", - "_id": "p-map@4.0.0", - "_inBundle": false, - "_integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "_location": "/p-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-map@4.0.0", - "name": "p-map", - "escapedName": "p-map", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-map/issues" - }, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "description": "Map over promises concurrently", - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.4", - "xo": "^0.27.2" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/p-map#readme", - "keywords": [ - "promise", - "map", - "resolved", - "wait", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "async", - "await", - "promises", - "concurrently", - "concurrency", - "parallel", - "bluebird" - ], - "license": "MIT", - "name": "p-map", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-map.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "p-map", + "version": "4.0.0", + "description": "Map over promises concurrently", + "license": "MIT", + "repository": "sindresorhus/p-map", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "map", + "resolved", + "wait", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "async", + "await", + "promises", + "concurrently", + "concurrency", + "parallel", + "bluebird" + ], + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.4", + "xo": "^0.27.2" + } + +,"_resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" +,"_integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" +,"_from": "p-map@4.0.0" +} \ No newline at end of file diff --git a/node_modules/p-try/package.json b/node_modules/p-try/package.json index 22bdaae21..640f8f8d2 100644 --- a/node_modules/p-try/package.json +++ b/node_modules/p-try/package.json @@ -1,78 +1,46 @@ { - "_args": [ - [ - "p-try@2.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-try@2.2.0", - "_id": "p-try@2.2.0", - "_inBundle": false, - "_integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "_location": "/p-try", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-try@2.2.0", - "name": "p-try", - "escapedName": "p-try", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/p-limit" - ], - "_resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "_spec": "2.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-try/issues" - }, - "description": "`Start a promise chain", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/p-try#readme", - "keywords": [ - "promise", - "try", - "resolve", - "function", - "catch", - "async", - "await", - "promises", - "settled", - "ponyfill", - "polyfill", - "shim", - "bluebird" - ], - "license": "MIT", - "name": "p-try", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-try.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" -} + "name": "p-try", + "version": "2.2.0", + "description": "`Start a promise chain", + "license": "MIT", + "repository": "sindresorhus/p-try", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "try", + "resolve", + "function", + "catch", + "async", + "await", + "promises", + "settled", + "ponyfill", + "polyfill", + "shim", + "bluebird" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" +,"_integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" +,"_from": "p-try@2.2.0" +} \ No newline at end of file diff --git a/node_modules/package-json/node_modules/semver/package.json b/node_modules/package-json/node_modules/semver/package.json index bd437ad63..13030769c 100644 --- a/node_modules/package-json/node_modules/semver/package.json +++ b/node_modules/package-json/node_modules/semver/package.json @@ -1,64 +1,32 @@ { - "_args": [ - [ - "semver@6.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "semver@6.3.0", - "_id": "semver@6.3.0", - "_inBundle": false, - "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "_location": "/package-json/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@6.3.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "6.3.0", - "saveSpec": null, - "fetchSpec": "6.3.0" - }, - "_requiredBy": [ - "/package-json" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "_spec": "6.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, + "name": "semver", + "version": "6.3.0", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" + }, "devDependencies": { "tap": "^14.3.1" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver.js" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "6.3.0" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" +,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" +,"_from": "semver@6.3.0" +} \ No newline at end of file diff --git a/node_modules/package-json/package.json b/node_modules/package-json/package.json index aeb6ceb28..03db7a062 100644 --- a/node_modules/package-json/package.json +++ b/node_modules/package-json/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "package-json@6.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "package-json@6.5.0", - "_id": "package-json@6.5.0", - "_inBundle": false, - "_integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", - "_location": "/package-json", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "package-json@6.5.0", - "name": "package-json", - "escapedName": "package-json", - "rawSpec": "6.5.0", - "saveSpec": null, - "fetchSpec": "6.5.0" - }, - "_requiredBy": [ - "/latest-version" - ], - "_resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", - "_spec": "6.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/package-json/issues" - }, - "dependencies": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "description": "Get metadata of a package from the npm registry", - "devDependencies": { - "@types/node": "^12.6.8", - "ava": "^2.2.0", - "mock-private-registry": "^1.1.2", - "tsd": "^0.7.4", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/package-json#readme", - "keywords": [ - "npm", - "registry", - "package", - "pkg", - "package.json", - "json", - "module", - "scope", - "scoped" - ], - "license": "MIT", - "name": "package-json", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/package-json.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "6.5.0" -} + "name": "package-json", + "version": "6.5.0", + "description": "Get metadata of a package from the npm registry", + "license": "MIT", + "repository": "sindresorhus/package-json", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "registry", + "package", + "pkg", + "package.json", + "json", + "module", + "scope", + "scoped" + ], + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "devDependencies": { + "@types/node": "^12.6.8", + "ava": "^2.2.0", + "mock-private-registry": "^1.1.2", + "tsd": "^0.7.4", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz" +,"_integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" +,"_from": "package-json@6.5.0" +} \ No newline at end of file diff --git a/node_modules/parse-json/package.json b/node_modules/parse-json/package.json index 09e9fa54b..feb71a05a 100644 --- a/node_modules/parse-json/package.json +++ b/node_modules/parse-json/package.json @@ -1,59 +1,24 @@ { - "_args": [ - [ - "parse-json@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "parse-json@4.0.0", - "_id": "parse-json@4.0.0", - "_inBundle": false, - "_integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "_location": "/parse-json", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "parse-json@4.0.0", - "name": "parse-json", - "escapedName": "parse-json", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/load-json-file" - ], - "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "parse-json", + "version": "4.0.0", + "description": "Parse JSON with more helpful errors", + "license": "MIT", + "repository": "sindresorhus/parse-json", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/parse-json/issues" - }, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "description": "Parse JSON with more helpful errors", - "devDependencies": { - "ava": "*", - "nyc": "^11.2.1", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && nyc ava" + }, "files": [ "index.js", "vendor" ], - "homepage": "https://github.com/sindresorhus/parse-json#readme", "keywords": [ "parse", "json", @@ -66,14 +31,17 @@ "string", "str" ], - "license": "MIT", - "name": "parse-json", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/parse-json.git" - }, - "scripts": { - "test": "xo && nyc ava" + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, - "version": "4.0.0" -} + "devDependencies": { + "ava": "*", + "nyc": "^11.2.1", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" +,"_integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" +,"_from": "parse-json@4.0.0" +} \ No newline at end of file diff --git a/node_modules/parse-ms/package.json b/node_modules/parse-ms/package.json index d933a1193..e1671d4de 100644 --- a/node_modules/parse-ms/package.json +++ b/node_modules/parse-ms/package.json @@ -1,76 +1,44 @@ { - "_args": [ - [ - "parse-ms@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "parse-ms@2.1.0", - "_id": "parse-ms@2.1.0", - "_inBundle": false, - "_integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", - "_location": "/parse-ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "parse-ms@2.1.0", - "name": "parse-ms", - "escapedName": "parse-ms", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/pretty-ms" - ], - "_resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/parse-ms/issues" - }, - "description": "Parse milliseconds into an object", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/parse-ms#readme", - "keywords": [ - "browser", - "parse", - "time", - "ms", - "milliseconds", - "microseconds", - "nanoseconds", - "duration", - "period", - "range", - "interval" - ], - "license": "MIT", - "name": "parse-ms", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/parse-ms.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" -} + "name": "parse-ms", + "version": "2.1.0", + "description": "Parse milliseconds into an object", + "license": "MIT", + "repository": "sindresorhus/parse-ms", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "browser", + "parse", + "time", + "ms", + "milliseconds", + "microseconds", + "nanoseconds", + "duration", + "period", + "range", + "interval" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz" +,"_integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" +,"_from": "parse-ms@2.1.0" +} \ No newline at end of file diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json index 32a34c509..60c6b6518 100644 --- a/node_modules/path-exists/package.json +++ b/node_modules/path-exists/package.json @@ -1,75 +1,43 @@ { - "_args": [ - [ - "path-exists@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "path-exists@4.0.0", - "_id": "path-exists@4.0.0", - "_inBundle": false, - "_integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "_location": "/path-exists", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-exists@4.0.0", - "name": "path-exists", - "escapedName": "path-exists", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/find-up" - ], - "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "description": "Check if a path exists", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/path-exists#readme", - "keywords": [ - "path", - "exists", - "exist", - "file", - "filepath", - "fs", - "filesystem", - "file-system", - "access", - "stat" - ], - "license": "MIT", - "name": "path-exists", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-exists.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "path-exists", + "version": "4.0.0", + "description": "Check if a path exists", + "license": "MIT", + "repository": "sindresorhus/path-exists", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" +,"_integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" +,"_from": "path-exists@4.0.0" +} \ No newline at end of file diff --git a/node_modules/path-is-absolute/package.json b/node_modules/path-is-absolute/package.json index f9172fabb..a29658e3f 100644 --- a/node_modules/path-is-absolute/package.json +++ b/node_modules/path-is-absolute/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "path-is-absolute@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "path-is-absolute@1.0.1", - "_id": "path-is-absolute@1.0.1", - "_inBundle": false, - "_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "_location": "/path-is-absolute", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-is-absolute@1.0.1", - "name": "path-is-absolute", - "escapedName": "path-is-absolute", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/glob" - ], - "_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "path-is-absolute", + "version": "1.0.1", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "license": "MIT", + "repository": "sindresorhus/path-is-absolute", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-is-absolute/issues" - }, - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "devDependencies": { - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/path-is-absolute#readme", "keywords": [ "path", "paths", @@ -66,14 +37,11 @@ "detect", "check" ], - "license": "MIT", - "name": "path-is-absolute", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-is-absolute.git" - }, - "scripts": { - "test": "xo && node test.js" - }, - "version": "1.0.1" -} + "devDependencies": { + "xo": "^0.16.0" + } + +,"_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" +,"_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" +,"_from": "path-is-absolute@1.0.1" +} \ No newline at end of file diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json index 1b6a424a3..d9d275133 100644 --- a/node_modules/path-key/package.json +++ b/node_modules/path-key/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "path-key@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "path-key@2.0.1", - "_id": "path-key@2.0.1", - "_inBundle": false, - "_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "_location": "/path-key", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-key@2.0.1", - "name": "path-key", - "escapedName": "path-key", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/cross-spawn", - "/npm-run-path" - ], - "_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "path-key", + "version": "2.0.1", + "description": "Get the PATH environment variable key cross-platform", + "license": "MIT", + "repository": "sindresorhus/path-key", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-key/issues" - }, - "description": "Get the PATH environment variable key cross-platform", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/path-key#readme", "keywords": [ "path", "key", @@ -59,17 +29,15 @@ "cross-platform", "windows" ], - "license": "MIT", - "name": "path-key", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-key.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.0.1", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" +,"_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" +,"_from": "path-key@2.0.1" +} \ No newline at end of file diff --git a/node_modules/path-parse/package.json b/node_modules/path-parse/package.json index c89648063..0d977469c 100644 --- a/node_modules/path-parse/package.json +++ b/node_modules/path-parse/package.json @@ -1,42 +1,15 @@ { - "_args": [ - [ - "path-parse@1.0.6", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "path-parse@1.0.6", - "_id": "path-parse@1.0.6", - "_inBundle": false, - "_integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "_location": "/path-parse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-parse@1.0.6", - "name": "path-parse", - "escapedName": "path-parse", - "rawSpec": "1.0.6", - "saveSpec": null, - "fetchSpec": "1.0.6" - }, - "_requiredBy": [ - "/resolve" - ], - "_resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "_spec": "1.0.6", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Javier Blanco", - "email": "http://jbgutierrez.info" + "name": "path-parse", + "version": "1.0.6", + "description": "Node.js path.parse() ponyfill", + "main": "index.js", + "scripts": { + "test": "node test.js" }, - "bugs": { - "url": "https://github.com/jbgutierrez/path-parse/issues" + "repository": { + "type": "git", + "url": "https://github.com/jbgutierrez/path-parse.git" }, - "description": "Node.js path.parse() ponyfill", - "homepage": "https://github.com/jbgutierrez/path-parse#readme", "keywords": [ "path", "paths", @@ -51,15 +24,14 @@ "polyfill", "shim" ], + "author": "Javier Blanco ", "license": "MIT", - "main": "index.js", - "name": "path-parse", - "repository": { - "type": "git", - "url": "git+https://github.com/jbgutierrez/path-parse.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/jbgutierrez/path-parse/issues" }, - "version": "1.0.6" -} + "homepage": "https://github.com/jbgutierrez/path-parse#readme" + +,"_resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" +,"_integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" +,"_from": "path-parse@1.0.6" +} \ No newline at end of file diff --git a/node_modules/path-type/package.json b/node_modules/path-type/package.json index 0c3631c64..d23031a1c 100644 --- a/node_modules/path-type/package.json +++ b/node_modules/path-type/package.json @@ -1,81 +1,49 @@ { - "_args": [ - [ - "path-type@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "path-type@4.0.0", - "_id": "path-type@4.0.0", - "_inBundle": false, - "_integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "_location": "/path-type", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-type@4.0.0", - "name": "path-type", - "escapedName": "path-type", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/dir-glob" - ], - "_resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/path-type/issues" - }, - "description": "Check if a path is a file, directory, or symlink", - "devDependencies": { - "ava": "^1.3.1", - "nyc": "^13.3.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/path-type#readme", - "keywords": [ - "path", - "fs", - "type", - "is", - "check", - "directory", - "dir", - "file", - "filepath", - "symlink", - "symbolic", - "link", - "stat", - "stats", - "filesystem" - ], - "license": "MIT", - "name": "path-type", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-type.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd-check" - }, - "version": "4.0.0" -} + "name": "path-type", + "version": "4.0.0", + "description": "Check if a path is a file, directory, or symlink", + "license": "MIT", + "repository": "sindresorhus/path-type", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "fs", + "type", + "is", + "check", + "directory", + "dir", + "file", + "filepath", + "symlink", + "symbolic", + "link", + "stat", + "stats", + "filesystem" + ], + "devDependencies": { + "ava": "^1.3.1", + "nyc": "^13.3.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" +,"_integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" +,"_from": "path-type@4.0.0" +} \ No newline at end of file diff --git a/node_modules/path/package.json b/node_modules/path/package.json index 9c9867386..db81af50e 100644 --- a/node_modules/path/package.json +++ b/node_modules/path/package.json @@ -1,55 +1,28 @@ -{ - "_args": [ - [ - "path@0.12.7", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "path@0.12.7", - "_id": "path@0.12.7", - "_inBundle": false, - "_integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", - "_location": "/path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path@0.12.7", - "name": "path", - "escapedName": "path", - "rawSpec": "0.12.7", - "saveSpec": null, - "fetchSpec": "0.12.7" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "_spec": "0.12.7", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Joyent", - "url": "http://www.joyent.com" - }, - "bugs": { - "url": "https://github.com/jinder/path/issues" - }, - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - }, - "description": "Node.JS path module", - "homepage": "http://nodejs.org/docs/latest/api/path.html", - "keywords": [ - "ender", - "path" - ], - "license": "MIT", - "main": "./path.js", - "name": "path", - "repository": { - "type": "git", - "url": "git://github.com/jinder/path.git" - }, - "version": "0.12.7" -} +{ + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "name": "path", + "description": "Node.JS path module", + "keywords": [ + "ender", + "path" + ], + "license": "MIT", + "version": "0.12.7", + "homepage": "http://nodejs.org/docs/latest/api/path.html", + "repository": { + "type": "git", + "url": "git://github.com/jinder/path.git" + }, + "main": "./path.js", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } + +,"_resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz" +,"_integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=" +,"_from": "path@0.12.7" +} \ No newline at end of file diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 7b2cbeb21..4353f3b7a 100755 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,45 +1,30 @@ { - "_args": [ - [ - "picomatch@2.2.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "picomatch@2.2.2", - "_id": "picomatch@2.2.2", - "_inBundle": false, - "_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "_location": "/picomatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "picomatch@2.2.2", - "name": "picomatch", - "escapedName": "picomatch", - "rawSpec": "2.2.2", - "saveSpec": null, - "fetchSpec": "2.2.2" + "name": "picomatch", + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "version": "2.2.2", + "homepage": "https://github.com/micromatch/picomatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "funding": "https://github.com/sponsors/jonschlinkert", + "repository": "micromatch/picomatch", + "bugs": { + "url": "https://github.com/micromatch/picomatch/issues" }, - "_requiredBy": [ - "/ava", - "/chokidar/anymatch", - "/fast-glob", - "/micromatch", - "/readdirp" + "license": "MIT", + "files": [ + "index.js", + "lib" ], - "_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "_spec": "2.2.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" + "main": "index.js", + "engines": { + "node": ">=8.6" }, - "bugs": { - "url": "https://github.com/micromatch/picomatch/issues" + "scripts": { + "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --reporter dot", + "test": "npm run lint && npm run mocha", + "test:ci": "npm run test:cover", + "test:cover": "nyc npm run mocha" }, - "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", "devDependencies": { "eslint": "^6.8.0", "fill-range": "^7.0.1", @@ -48,23 +33,11 @@ "nyc": "^15.0.0", "time-require": "github:jonschlinkert/time-require" }, - "engines": { - "node": ">=8.6" - }, - "files": [ - "index.js", - "lib" - ], - "funding": "https://github.com/sponsors/jonschlinkert", - "homepage": "https://github.com/micromatch/picomatch", "keywords": [ "glob", "match", "picomatch" ], - "license": "MIT", - "main": "index.js", - "name": "picomatch", "nyc": { "reporter": [ "html", @@ -72,17 +45,6 @@ "text-summary" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/picomatch.git" - }, - "scripts": { - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --reporter dot", - "test": "npm run lint && npm run mocha", - "test:ci": "npm run test:cover", - "test:cover": "nyc npm run mocha" - }, "verb": { "toc": { "render": true, @@ -115,6 +77,9 @@ "nanomatch", "picomatch" ] - }, - "version": "2.2.2" -} + } + +,"_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" +,"_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" +,"_from": "picomatch@2.2.2" +} \ No newline at end of file diff --git a/node_modules/pify/package.json b/node_modules/pify/package.json index 08edc44d3..472c0913a 100644 --- a/node_modules/pify/package.json +++ b/node_modules/pify/package.json @@ -1,87 +1,55 @@ { - "_args": [ - [ - "pify@4.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "pify@4.0.1", - "_id": "pify@4.0.1", - "_inBundle": false, - "_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "_location": "/pify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pify@4.0.1", - "name": "pify", - "escapedName": "pify", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" - }, - "_requiredBy": [ - "/load-json-file" - ], - "_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/pify/issues" - }, - "description": "Promisify a callback-style function", - "devDependencies": { - "ava": "^0.25.0", - "pinkie-promise": "^2.0.0", - "v8-natives": "^1.1.0", - "xo": "^0.23.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/pify#readme", - "keywords": [ - "promise", - "promises", - "promisify", - "all", - "denodify", - "denodeify", - "callback", - "cb", - "node", - "then", - "thenify", - "convert", - "transform", - "wrap", - "wrapper", - "bind", - "to", - "async", - "await", - "es2015", - "bluebird" - ], - "license": "MIT", - "name": "pify", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pify.git" - }, - "scripts": { - "optimization-test": "node --allow-natives-syntax optimization-test.js", - "test": "xo && ava" - }, - "version": "4.0.1" -} + "name": "pify", + "version": "4.0.1", + "description": "Promisify a callback-style function", + "license": "MIT", + "repository": "sindresorhus/pify", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava", + "optimization-test": "node --allow-natives-syntax optimization-test.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "promise", + "promises", + "promisify", + "all", + "denodify", + "denodeify", + "callback", + "cb", + "node", + "then", + "thenify", + "convert", + "transform", + "wrap", + "wrapper", + "bind", + "to", + "async", + "await", + "es2015", + "bluebird" + ], + "devDependencies": { + "ava": "^0.25.0", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.1.0", + "xo": "^0.23.0" + } + +,"_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" +,"_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" +,"_from": "pify@4.0.1" +} \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/find-up/package.json b/node_modules/pkg-conf/node_modules/find-up/package.json index 8fe905601..95f70cb5b 100644 --- a/node_modules/pkg-conf/node_modules/find-up/package.json +++ b/node_modules/pkg-conf/node_modules/find-up/package.json @@ -1,86 +1,54 @@ { - "_args": [ - [ - "find-up@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "find-up@3.0.0", - "_id": "find-up@3.0.0", - "_inBundle": false, - "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "_location": "/pkg-conf/find-up", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "find-up@3.0.0", - "name": "find-up", - "escapedName": "find-up", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/pkg-conf" - ], - "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "dependencies": { - "locate-path": "^3.0.0" - }, - "description": "Find a file or directory by walking up parent directories", - "devDependencies": { - "ava": "*", - "tempy": "^0.2.1", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/find-up#readme", - "keywords": [ - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "package", - "resolve", - "parent", - "parents", - "folder", - "directory", - "dir", - "walk", - "walking", - "path" - ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "name": "find-up", + "version": "3.0.0", + "description": "Find a file or directory by walking up parent directories", + "license": "MIT", + "repository": "sindresorhus/find-up", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "dependencies": { + "locate-path": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" +,"_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" +,"_from": "find-up@3.0.0" +} \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/locate-path/package.json b/node_modules/pkg-conf/node_modules/locate-path/package.json index c9cc8c272..f6ac4647d 100644 --- a/node_modules/pkg-conf/node_modules/locate-path/package.json +++ b/node_modules/pkg-conf/node_modules/locate-path/package.json @@ -1,80 +1,48 @@ { - "_args": [ - [ - "locate-path@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "locate-path@3.0.0", - "_id": "locate-path@3.0.0", - "_inBundle": false, - "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "_location": "/pkg-conf/locate-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "locate-path@3.0.0", - "name": "locate-path", - "escapedName": "locate-path", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/pkg-conf/find-up" - ], - "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "description": "Get the first path that exists on disk of multiple paths", - "devDependencies": { - "ava": "*", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/locate-path#readme", - "keywords": [ - "locate", - "path", - "paths", - "file", - "files", - "exists", - "find", - "finder", - "search", - "searcher", - "array", - "iterable", - "iterator" - ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "name": "locate-path", + "version": "3.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "license": "MIT", + "repository": "sindresorhus/locate-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" +,"_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" +,"_from": "locate-path@3.0.0" +} \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/p-locate/package.json b/node_modules/pkg-conf/node_modules/p-locate/package.json index 6d8907ada..4e4995c8a 100644 --- a/node_modules/pkg-conf/node_modules/p-locate/package.json +++ b/node_modules/pkg-conf/node_modules/p-locate/package.json @@ -1,87 +1,55 @@ { - "_args": [ - [ - "p-locate@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "p-locate@3.0.0", - "_id": "p-locate@3.0.0", - "_inBundle": false, - "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "_location": "/pkg-conf/p-locate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-locate@3.0.0", - "name": "p-locate", - "escapedName": "p-locate", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/pkg-conf/locate-path" - ], - "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "dependencies": { - "p-limit": "^2.0.0" - }, - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "devDependencies": { - "ava": "*", - "delay": "^3.0.0", - "in-range": "^1.0.0", - "time-span": "^2.0.0", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/p-locate#readme", - "keywords": [ - "promise", - "locate", - "find", - "finder", - "search", - "searcher", - "test", - "array", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "fastest", - "async", - "await", - "promises", - "bluebird" - ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "name": "p-locate", + "version": "3.0.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "license": "MIT", + "repository": "sindresorhus/p-locate", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-limit": "^2.0.0" + }, + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" +,"_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" +,"_from": "p-locate@3.0.0" +} \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/path-exists/package.json b/node_modules/pkg-conf/node_modules/path-exists/package.json index 7cbb24ef9..5492ad2c0 100644 --- a/node_modules/pkg-conf/node_modules/path-exists/package.json +++ b/node_modules/pkg-conf/node_modules/path-exists/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "path-exists@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "path-exists@3.0.0", - "_id": "path-exists@3.0.0", - "_inBundle": false, - "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "_location": "/pkg-conf/path-exists", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-exists@3.0.0", - "name": "path-exists", - "escapedName": "path-exists", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/pkg-conf/locate-path" - ], - "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "path-exists", + "version": "3.0.0", + "description": "Check if a path exists", + "license": "MIT", + "repository": "sindresorhus/path-exists", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "description": "Check if a path exists", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/path-exists#readme", "keywords": [ "path", "exists", @@ -60,17 +30,15 @@ "access", "stat" ], - "license": "MIT", - "name": "path-exists", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-exists.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "3.0.0", "xo": { "esnext": true } -} + +,"_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" +,"_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" +,"_from": "path-exists@3.0.0" +} \ No newline at end of file diff --git a/node_modules/pkg-conf/package.json b/node_modules/pkg-conf/package.json index d2d9a4f94..79ff89c59 100644 --- a/node_modules/pkg-conf/package.json +++ b/node_modules/pkg-conf/package.json @@ -1,89 +1,55 @@ { - "_args": [ - [ - "pkg-conf@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "pkg-conf@3.1.0", - "_id": "pkg-conf@3.1.0", - "_inBundle": false, - "_integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", - "_location": "/pkg-conf", - "_phantomChildren": { - "p-limit": "2.2.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "pkg-conf@3.1.0", - "name": "pkg-conf", - "escapedName": "pkg-conf", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/pkg-conf/issues" - }, - "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" - }, - "description": "Get namespaced config from the closest package.json", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "fixture": { - "foo": true - }, - "homepage": "https://github.com/sindresorhus/pkg-conf#readme", - "keywords": [ - "json", - "read", - "parse", - "file", - "fs", - "graceful", - "load", - "pkg", - "package", - "config", - "conf", - "configuration", - "object", - "namespace", - "namespaced" - ], - "license": "MIT", - "name": "pkg-conf", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pkg-conf.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.0" -} + "name": "pkg-conf", + "version": "3.1.0", + "description": "Get namespaced config from the closest package.json", + "license": "MIT", + "repository": "sindresorhus/pkg-conf", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "pkg", + "package", + "config", + "conf", + "configuration", + "object", + "namespace", + "namespaced" + ], + "dependencies": { + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "fixture": { + "foo": true + } + +,"_resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz" +,"_integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==" +,"_from": "pkg-conf@3.1.0" +} \ No newline at end of file diff --git a/node_modules/pkg-dir/package.json b/node_modules/pkg-dir/package.json index 147379fdf..b3e8f03d6 100644 --- a/node_modules/pkg-dir/package.json +++ b/node_modules/pkg-dir/package.json @@ -1,92 +1,60 @@ { - "_args": [ - [ - "pkg-dir@4.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "pkg-dir@4.2.0", - "_id": "pkg-dir@4.2.0", - "_inBundle": false, - "_integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "_location": "/pkg-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pkg-dir@4.2.0", - "name": "pkg-dir", - "escapedName": "pkg-dir", - "rawSpec": "4.2.0", - "saveSpec": null, - "fetchSpec": "4.2.0" - }, - "_requiredBy": [ - "/import-local" - ], - "_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "_spec": "4.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/pkg-dir/issues" - }, - "dependencies": { - "find-up": "^4.0.0" - }, - "description": "Find the root directory of a Node.js project or npm package", - "devDependencies": { - "ava": "^1.4.1", - "tempy": "^0.3.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/pkg-dir#readme", - "keywords": [ - "package", - "json", - "root", - "npm", - "entry", - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "resolve", - "parent", - "parents", - "folder", - "directory", - "dir", - "walk", - "walking", - "path" - ], - "license": "MIT", - "name": "pkg-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pkg-dir.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.2.0" -} + "name": "pkg-dir", + "version": "4.2.0", + "description": "Find the root directory of a Node.js project or npm package", + "license": "MIT", + "repository": "sindresorhus/pkg-dir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "package", + "json", + "root", + "npm", + "entry", + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "dependencies": { + "find-up": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tempy": "^0.3.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" +,"_integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" +,"_from": "pkg-dir@4.2.0" +} \ No newline at end of file diff --git a/node_modules/plur/package.json b/node_modules/plur/package.json index 29738915f..45f858310 100644 --- a/node_modules/plur/package.json +++ b/node_modules/plur/package.json @@ -1,79 +1,47 @@ { - "_args": [ - [ - "plur@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "plur@4.0.0", - "_id": "plur@4.0.0", - "_inBundle": false, - "_integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==", - "_location": "/plur", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "plur@4.0.0", - "name": "plur", - "escapedName": "plur", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/plur/issues" - }, - "dependencies": { - "irregular-plurals": "^3.2.0" - }, - "description": "Pluralize a word", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.26.1" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/plur#readme", - "keywords": [ - "plural", - "plurals", - "pluralize", - "singular", - "count", - "word", - "string", - "irregular", - "noun", - "nouns" - ], - "license": "MIT", - "name": "plur", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/plur.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "plur", + "version": "4.0.0", + "description": "Pluralize a word", + "license": "MIT", + "repository": "sindresorhus/plur", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "plural", + "plurals", + "pluralize", + "singular", + "count", + "word", + "string", + "irregular", + "noun", + "nouns" + ], + "dependencies": { + "irregular-plurals": "^3.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.26.1" + } + +,"_resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz" +,"_integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==" +,"_from": "plur@4.0.0" +} \ No newline at end of file diff --git a/node_modules/prepend-http/package.json b/node_modules/prepend-http/package.json index 7d9dae5ee..70c7570b1 100644 --- a/node_modules/prepend-http/package.json +++ b/node_modules/prepend-http/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "prepend-http@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "prepend-http@2.0.0", - "_id": "prepend-http@2.0.0", - "_inBundle": false, - "_integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", - "_location": "/prepend-http", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "prepend-http@2.0.0", - "name": "prepend-http", - "escapedName": "prepend-http", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/url-parse-lax" - ], - "_resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "prepend-http", + "version": "2.0.0", + "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", + "license": "MIT", + "repository": "sindresorhus/prepend-http", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/prepend-http/issues" - }, - "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/prepend-http#readme", "keywords": [ "prepend", "protocol", @@ -58,14 +28,12 @@ "https", "humanized" ], - "license": "MIT", - "name": "prepend-http", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/prepend-http.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" +,"_integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" +,"_from": "prepend-http@2.0.0" +} \ No newline at end of file diff --git a/node_modules/pretty-ms/package.json b/node_modules/pretty-ms/package.json index 2e2631f56..6525d591a 100644 --- a/node_modules/pretty-ms/package.json +++ b/node_modules/pretty-ms/package.json @@ -1,85 +1,53 @@ { - "_args": [ - [ - "pretty-ms@6.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "pretty-ms@6.0.1", - "_id": "pretty-ms@6.0.1", - "_inBundle": false, - "_integrity": "sha512-ke4njoVmlotekHlHyCZ3wI/c5AMT8peuHs8rKJqekj/oR5G8lND2dVpicFlUz5cbZgE290vvkMuDwfj/OcW1kw==", - "_location": "/pretty-ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pretty-ms@6.0.1", - "name": "pretty-ms", - "escapedName": "pretty-ms", - "rawSpec": "6.0.1", - "saveSpec": null, - "fetchSpec": "6.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-6.0.1.tgz", - "_spec": "6.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/pretty-ms/issues" - }, - "dependencies": { - "parse-ms": "^2.1.0" - }, - "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/pretty-ms#readme", - "keywords": [ - "pretty", - "prettify", - "human", - "humanize", - "humanized", - "readable", - "time", - "ms", - "milliseconds", - "duration", - "period", - "range", - "text", - "string", - "number", - "hrtime" - ], - "license": "MIT", - "name": "pretty-ms", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pretty-ms.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "6.0.1" -} + "name": "pretty-ms", + "version": "6.0.1", + "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", + "license": "MIT", + "repository": "sindresorhus/pretty-ms", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "pretty", + "prettify", + "human", + "humanize", + "humanized", + "readable", + "time", + "ms", + "milliseconds", + "duration", + "period", + "range", + "text", + "string", + "number", + "hrtime" + ], + "dependencies": { + "parse-ms": "^2.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-6.0.1.tgz" +,"_integrity": "sha512-ke4njoVmlotekHlHyCZ3wI/c5AMT8peuHs8rKJqekj/oR5G8lND2dVpicFlUz5cbZgE290vvkMuDwfj/OcW1kw==" +,"_from": "pretty-ms@6.0.1" +} \ No newline at end of file diff --git a/node_modules/process/package.json b/node_modules/process/package.json index caad8b826..234b66489 100644 --- a/node_modules/process/package.json +++ b/node_modules/process/package.json @@ -1,62 +1,31 @@ { - "_args": [ - [ - "process@0.11.10", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "process@0.11.10", - "_id": "process@0.11.10", - "_inBundle": false, - "_integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "_location": "/process", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "process@0.11.10", - "name": "process", - "escapedName": "process", - "rawSpec": "0.11.10", - "saveSpec": null, - "fetchSpec": "0.11.10" - }, - "_requiredBy": [ - "/path" - ], - "_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "_spec": "0.11.10", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Roman Shtylman", - "email": "shtylman@gmail.com" - }, - "browser": "./browser.js", - "bugs": { - "url": "https://github.com/shtylman/node-process/issues" - }, + "author": "Roman Shtylman ", + "name": "process", "description": "process information for node.js and browsers", - "devDependencies": { - "mocha": "2.2.1", - "zuul": "^3.10.3" - }, - "engines": { - "node": ">= 0.6.0" - }, - "homepage": "https://github.com/shtylman/node-process#readme", "keywords": [ "process" ], - "license": "MIT", - "main": "./index.js", - "name": "process", + "scripts": { + "test": "mocha test.js", + "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js" + }, + "version": "0.11.10", "repository": { "type": "git", "url": "git://github.com/shtylman/node-process.git" }, - "scripts": { - "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js", - "test": "mocha test.js" + "license": "MIT", + "browser": "./browser.js", + "main": "./index.js", + "engines": { + "node": ">= 0.6.0" }, - "version": "0.11.10" -} + "devDependencies": { + "mocha": "2.2.1", + "zuul": "^3.10.3" + } + +,"_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz" +,"_integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" +,"_from": "process@0.11.10" +} \ No newline at end of file diff --git a/node_modules/propagate/package.json b/node_modules/propagate/package.json index 41277ac2f..10591eeb1 100644 --- a/node_modules/propagate/package.json +++ b/node_modules/propagate/package.json @@ -1,43 +1,27 @@ { - "_from": "propagate@^2.0.0", - "_id": "propagate@2.0.1", - "_inBundle": false, - "_integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", - "_location": "/propagate", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "propagate@^2.0.0", - "name": "propagate", - "escapedName": "propagate", - "rawSpec": "^2.0.0", - "saveSpec": null, - "fetchSpec": "^2.0.0" - }, - "_requiredBy": [ - "/nock" + "name": "propagate", + "description": "Propagate events from one event emitter into another", + "keywords": [ + "event", + "events", + "emitter", + "eventemitter", + "propagation" ], - "_resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", - "_shasum": "40cdedab18085c792334e64f0ac17256d38f9a45", - "_spec": "propagate@^2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/nock", - "author": { - "name": "Pedro Teixeira", - "email": "pedro.teixeira@gmail.com" - }, - "bugs": { - "url": "http://github.com/nock/propagate/issues" - }, - "bundleDependencies": false, + "version": "2.0.1", + "author": "Pedro Teixeira ", "contributors": [ { "name": "Pedro Teixeira" } ], + "repository": "nock/propagate", + "homepage": "http://github.com/nock/propagate#readme", + "bugs": "http://github.com/nock/propagate/issues", + "engines": { + "node": ">= 8" + }, "dependencies": {}, - "deprecated": false, - "description": "Propagate events from one event emitter into another", "devDependencies": { "eslint": "^5.16.0", "eslint-config-prettier": "^4.1.0", @@ -50,37 +34,24 @@ "semantic-release": "16.0.0-beta.18", "tap": "^12.6.1" }, - "engines": { - "node": ">= 8" - }, - "homepage": "http://github.com/nock/propagate#readme", - "keywords": [ - "event", - "events", - "emitter", - "eventemitter", - "propagation" - ], - "license": "MIT", - "name": "propagate", - "nyc": { - "exclude": [ - "tests/" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/nock/propagate.git" - }, "scripts": { - "coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html", "lint": "eslint \"**/*.js\"", - "posttest": "npm run -s prettier:check", - "pretest": "npm run lint", + "unit": "tap tests/index.js", + "coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html", "prettier": "prettier --write \"**/*.@(js|md|yml|json)\"", "prettier:check": "prettier --check \"**/*.@(js|md|yml|json)\"", + "pretest": "npm run lint", "test": "npm run -s unit", - "unit": "tap tests/index.js" + "posttest": "npm run -s prettier:check" + }, + "nyc": { + "exclude": [ + "tests/" + ] }, - "version": "2.0.1" -} + "license": "MIT" + +,"_resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz" +,"_integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==" +,"_from": "propagate@2.0.1" +} \ No newline at end of file diff --git a/node_modules/pump/package.json b/node_modules/pump/package.json index ede8507e2..be95fced6 100644 --- a/node_modules/pump/package.json +++ b/node_modules/pump/package.json @@ -1,63 +1,28 @@ { - "_args": [ - [ - "pump@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "pump@3.0.0", - "_id": "pump@3.0.0", - "_inBundle": false, - "_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "_location": "/pump", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pump@3.0.0", - "name": "pump", - "escapedName": "pump", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/cacheable-request/get-stream", - "/get-stream" - ], - "_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mathias Buus Madsen", - "email": "mathiasbuus@gmail.com" - }, + "name": "pump", + "version": "3.0.0", + "repository": "git://github.com/mafintosh/pump.git", + "license": "MIT", + "description": "pipe streams together and close all of them if one of them closes", "browser": { "fs": false }, - "bugs": { - "url": "https://github.com/mafintosh/pump/issues" - }, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - }, - "description": "pipe streams together and close all of them if one of them closes", - "homepage": "https://github.com/mafintosh/pump#readme", "keywords": [ "streams", "pipe", "destroy", "callback" ], - "license": "MIT", - "name": "pump", - "repository": { - "type": "git", - "url": "git://github.com/mafintosh/pump.git" + "author": "Mathias Buus Madsen ", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" }, "scripts": { "test": "node test-browser.js && node test-node.js" - }, - "version": "3.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" +,"_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" +,"_from": "pump@3.0.0" +} \ No newline at end of file diff --git a/node_modules/pupa/package.json b/node_modules/pupa/package.json index 270301f2a..c8d005bd2 100644 --- a/node_modules/pupa/package.json +++ b/node_modules/pupa/package.json @@ -1,83 +1,51 @@ { - "_args": [ - [ - "pupa@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "pupa@2.0.1", - "_id": "pupa@2.0.1", - "_inBundle": false, - "_integrity": "sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==", - "_location": "/pupa", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pupa@2.0.1", - "name": "pupa", - "escapedName": "pupa", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/pupa/-/pupa-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/pupa/issues" - }, - "dependencies": { - "escape-goat": "^2.0.0" - }, - "description": "Simple micro templating", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/pupa#readme", - "keywords": [ - "string", - "formatting", - "template", - "object", - "format", - "interpolate", - "interpolation", - "templating", - "expand", - "simple", - "replace", - "placeholders", - "values", - "transform", - "micro" - ], - "license": "MIT", - "name": "pupa", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pupa.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.1" -} + "name": "pupa", + "version": "2.0.1", + "description": "Simple micro templating", + "license": "MIT", + "repository": "sindresorhus/pupa", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "formatting", + "template", + "object", + "format", + "interpolate", + "interpolation", + "templating", + "expand", + "simple", + "replace", + "placeholders", + "values", + "transform", + "micro" + ], + "dependencies": { + "escape-goat": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/pupa/-/pupa-2.0.1.tgz" +,"_integrity": "sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==" +,"_from": "pupa@2.0.1" +} \ No newline at end of file diff --git a/node_modules/rc/package.json b/node_modules/rc/package.json index 59dc652a3..9076eabc1 100644 --- a/node_modules/rc/package.json +++ b/node_modules/rc/package.json @@ -1,69 +1,33 @@ { - "_args": [ - [ - "rc@1.2.8", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "rc@1.2.8", - "_id": "rc@1.2.8", - "_inBundle": false, - "_integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "_location": "/rc", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "rc@1.2.8", - "name": "rc", - "escapedName": "rc", - "rawSpec": "1.2.8", - "saveSpec": null, - "fetchSpec": "1.2.8" - }, - "_requiredBy": [ - "/registry-auth-token", - "/registry-url" - ], - "_resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "_spec": "1.2.8", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Dominic Tarr", - "email": "dominic.tarr@gmail.com", - "url": "dominictarr.com" - }, - "bin": { - "rc": "cli.js" - }, + "name": "rc", + "version": "1.2.8", + "description": "hardwired configuration loader", + "main": "index.js", "browser": "browser.js", - "bugs": { - "url": "https://github.com/dominictarr/rc/issues" + "scripts": { + "test": "set -e; node test/test.js; node test/ini.js; node test/nested-env-vars.js" }, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "repository": { + "type": "git", + "url": "https://github.com/dominictarr/rc.git" }, - "description": "hardwired configuration loader", - "homepage": "https://github.com/dominictarr/rc#readme", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "keywords": [ "config", "rc", "unix", "defaults" ], - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "main": "index.js", - "name": "rc", - "repository": { - "type": "git", - "url": "git+https://github.com/dominictarr/rc.git" - }, - "scripts": { - "test": "set -e; node test/test.js; node test/ini.js; node test/nested-env-vars.js" - }, - "version": "1.2.8" -} + "bin": "./cli.js", + "author": "Dominic Tarr (dominictarr.com)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + +,"_resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" +,"_integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" +,"_from": "rc@1.2.8" +} \ No newline at end of file diff --git a/node_modules/read-pkg/node_modules/parse-json/package.json b/node_modules/read-pkg/node_modules/parse-json/package.json index 0b7fa2cae..a7d2d869f 100644 --- a/node_modules/read-pkg/node_modules/parse-json/package.json +++ b/node_modules/read-pkg/node_modules/parse-json/package.json @@ -1,80 +1,48 @@ { - "_args": [ - [ - "parse-json@5.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "parse-json@5.0.0", - "_id": "parse-json@5.0.0", - "_inBundle": false, - "_integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", - "_location": "/read-pkg/parse-json", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "parse-json@5.0.0", - "name": "parse-json", - "escapedName": "parse-json", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/read-pkg" - ], - "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/parse-json/issues" - }, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - }, - "description": "Parse JSON with more helpful errors", - "devDependencies": { - "ava": "^1.4.1", - "nyc": "^14.1.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "vendor" - ], - "homepage": "https://github.com/sindresorhus/parse-json#readme", - "keywords": [ - "parse", - "json", - "graceful", - "error", - "message", - "humanize", - "friendly", - "helpful", - "string" - ], - "license": "MIT", - "name": "parse-json", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/parse-json.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "5.0.0" -} + "name": "parse-json", + "version": "5.0.0", + "description": "Parse JSON with more helpful errors", + "license": "MIT", + "repository": "sindresorhus/parse-json", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js", + "vendor" + ], + "keywords": [ + "parse", + "json", + "graceful", + "error", + "message", + "humanize", + "friendly", + "helpful", + "string" + ], + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + }, + "devDependencies": { + "ava": "^1.4.1", + "nyc": "^14.1.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz" +,"_integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==" +,"_from": "parse-json@5.0.0" +} \ No newline at end of file diff --git a/node_modules/read-pkg/node_modules/type-fest/package.json b/node_modules/read-pkg/node_modules/type-fest/package.json index fc8c77b80..53c4885e1 100644 --- a/node_modules/read-pkg/node_modules/type-fest/package.json +++ b/node_modules/read-pkg/node_modules/type-fest/package.json @@ -1,87 +1,55 @@ { - "_args": [ - [ - "type-fest@0.6.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "type-fest@0.6.0", - "_id": "type-fest@0.6.0", - "_inBundle": false, - "_integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "_location": "/read-pkg/type-fest", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "type-fest@0.6.0", - "name": "type-fest", - "escapedName": "type-fest", - "rawSpec": "0.6.0", - "saveSpec": null, - "fetchSpec": "0.6.0" - }, - "_requiredBy": [ - "/read-pkg" - ], - "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "_spec": "0.6.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/type-fest/issues" - }, - "description": "A collection of essential TypeScript types", - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^1.9.0", - "@typescript-eslint/parser": "^1.10.2", - "eslint-config-xo-typescript": "^0.14.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.d.ts", - "source" - ], - "homepage": "https://github.com/sindresorhus/type-fest#readme", - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "license": "(MIT OR CC0-1.0)", - "name": "type-fest", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/type-fest.git" - }, - "scripts": { - "test": "xo && tsd" - }, - "version": "0.6.0", - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off", - "@typescript-eslint/indent": "off" - } - } -} + "name": "type-fest", + "version": "0.6.0", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^1.9.0", + "@typescript-eslint/parser": "^1.10.2", + "eslint-config-xo-typescript": "^0.14.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off", + "@typescript-eslint/indent": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" +,"_integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" +,"_from": "type-fest@0.6.0" +} \ No newline at end of file diff --git a/node_modules/read-pkg/package.json b/node_modules/read-pkg/package.json index f6707bf9c..6e82a6263 100644 --- a/node_modules/read-pkg/package.json +++ b/node_modules/read-pkg/package.json @@ -1,90 +1,53 @@ { - "_args": [ - [ - "read-pkg@5.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "read-pkg@5.2.0", - "_id": "read-pkg@5.2.0", - "_inBundle": false, - "_integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "_location": "/read-pkg", - "_phantomChildren": { - "@babel/code-frame": "7.5.5", - "error-ex": "1.3.2", - "json-parse-better-errors": "1.0.2", - "lines-and-columns": "1.1.6" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "read-pkg@5.2.0", - "name": "read-pkg", - "escapedName": "read-pkg", - "rawSpec": "5.2.0", - "saveSpec": null, - "fetchSpec": "5.2.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "_spec": "5.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/read-pkg/issues" - }, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "description": "Read a package.json file", - "devDependencies": { - "ava": "^2.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/read-pkg#readme", - "keywords": [ - "json", - "read", - "parse", - "file", - "fs", - "graceful", - "load", - "package", - "normalize" - ], - "license": "MIT", - "name": "read-pkg", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/read-pkg.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.2.0", - "xo": { - "ignores": [ - "test/test.js" - ] - } -} + "name": "read-pkg", + "version": "5.2.0", + "description": "Read a package.json file", + "license": "MIT", + "repository": "sindresorhus/read-pkg", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "package", + "normalize" + ], + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "test/test.js" + ] + } + +,"_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" +,"_integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" +,"_from": "read-pkg@5.2.0" +} \ No newline at end of file diff --git a/node_modules/readdirp/package.json b/node_modules/readdirp/package.json index 3ce82c81e..ff5319ec6 100644 --- a/node_modules/readdirp/package.json +++ b/node_modules/readdirp/package.json @@ -1,56 +1,49 @@ { - "_args": [ - [ - "readdirp@3.4.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "readdirp@3.4.0", - "_id": "readdirp@3.4.0", - "_inBundle": false, - "_integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", - "_location": "/readdirp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "readdirp@3.4.0", - "name": "readdirp", - "escapedName": "readdirp", - "rawSpec": "3.4.0", - "saveSpec": null, - "fetchSpec": "3.4.0" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", - "_spec": "3.4.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" + "name": "readdirp", + "description": "Recursive version of fs.readdir with streaming API.", + "version": "3.4.0", + "homepage": "https://github.com/paulmillr/readdirp", + "repository": { + "type": "git", + "url": "git://github.com/paulmillr/readdirp.git" }, + "license": "MIT", "bugs": { "url": "https://github.com/paulmillr/readdirp/issues" }, + "author": "Thorsten Lorenz (thlorenz.com)", "contributors": [ - { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" - }, - { - "name": "Paul Miller", - "url": "https://paulmillr.com" - } + "Thorsten Lorenz (thlorenz.com)", + "Paul Miller (https://paulmillr.com)" + ], + "main": "index.js", + "engines": { + "node": ">=8.10.0" + }, + "files": [ + "index.js", + "index.d.ts" ], + "keywords": [ + "recursive", + "fs", + "stream", + "streams", + "readdir", + "filesystem", + "find", + "filter" + ], + "scripts": { + "dtslint": "dtslint", + "nyc": "nyc", + "mocha": "mocha --exit", + "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", + "test": "npm run lint && nyc npm run mocha" + }, "dependencies": { "picomatch": "^2.2.1" }, - "description": "Recursive version of fs.readdir with streaming API.", "devDependencies": { "@types/node": "^13", "chai": "^4.2", @@ -61,8 +54,11 @@ "nyc": "^15.0.0", "rimraf": "^3.0.0" }, - "engines": { - "node": ">=8.10.0" + "nyc": { + "reporter": [ + "html", + "text" + ] }, "eslintConfig": { "root": true, @@ -121,41 +117,9 @@ "single" ] } - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/paulmillr/readdirp", - "keywords": [ - "recursive", - "fs", - "stream", - "streams", - "readdir", - "filesystem", - "find", - "filter" - ], - "license": "MIT", - "main": "index.js", - "name": "readdirp", - "nyc": { - "reporter": [ - "html", - "text" - ] - }, - "repository": { - "type": "git", - "url": "git://github.com/paulmillr/readdirp.git" - }, - "scripts": { - "dtslint": "dtslint", - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --exit", - "nyc": "nyc", - "test": "npm run lint && nyc npm run mocha" - }, - "version": "3.4.0" -} + } + +,"_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz" +,"_integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==" +,"_from": "readdirp@3.4.0" +} \ No newline at end of file diff --git a/node_modules/registry-auth-token/package.json b/node_modules/registry-auth-token/package.json index 94ebe60ca..34f0388d4 100644 --- a/node_modules/registry-auth-token/package.json +++ b/node_modules/registry-auth-token/package.json @@ -1,54 +1,20 @@ { - "_args": [ - [ - "registry-auth-token@4.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "registry-auth-token@4.1.1", - "_id": "registry-auth-token@4.1.1", - "_inBundle": false, - "_integrity": "sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==", - "_location": "/registry-auth-token", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "registry-auth-token@4.1.1", - "name": "registry-auth-token", - "escapedName": "registry-auth-token", - "rawSpec": "4.1.1", - "saveSpec": null, - "fetchSpec": "4.1.1" - }, - "_requiredBy": [ - "/package-json" - ], - "_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.1.1.tgz", - "_spec": "4.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Espen Hovlandsdal", - "email": "espen@hovlandsdal.com" - }, - "bugs": { - "url": "https://github.com/rexxars/registry-auth-token/issues" - }, - "dependencies": { - "rc": "^1.2.8" - }, + "name": "registry-auth-token", + "version": "4.1.1", "description": "Get the auth token set for an npm registry (if any)", - "devDependencies": { - "istanbul": "^0.4.2", - "mocha": "^6.1.4", - "require-uncached": "^1.0.2", - "standard": "^12.0.1" + "main": "index.js", + "scripts": { + "test": "mocha", + "posttest": "standard", + "coverage": "istanbul cover _mocha" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git" }, "engines": { "node": ">=6.0.0" }, - "homepage": "https://github.com/rexxars/registry-auth-token#readme", "keywords": [ "npm", "conf", @@ -59,22 +25,28 @@ "token", "authtoken" ], + "author": "Espen Hovlandsdal ", "license": "MIT", - "main": "index.js", - "name": "registry-auth-token", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git" + "bugs": { + "url": "https://github.com/rexxars/registry-auth-token/issues" }, - "scripts": { - "coverage": "istanbul cover _mocha", - "posttest": "standard", - "test": "mocha" + "homepage": "https://github.com/rexxars/registry-auth-token#readme", + "dependencies": { + "rc": "^1.2.8" + }, + "devDependencies": { + "istanbul": "^0.4.2", + "mocha": "^6.1.4", + "require-uncached": "^1.0.2", + "standard": "^12.0.1" }, "standard": { "ignore": [ "coverage/**" ] - }, - "version": "4.1.1" -} + } + +,"_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.1.1.tgz" +,"_integrity": "sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==" +,"_from": "registry-auth-token@4.1.1" +} \ No newline at end of file diff --git a/node_modules/registry-url/package.json b/node_modules/registry-url/package.json index 46cf99cb3..6dd01ea86 100644 --- a/node_modules/registry-url/package.json +++ b/node_modules/registry-url/package.json @@ -1,80 +1,48 @@ { - "_args": [ - [ - "registry-url@5.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "registry-url@5.1.0", - "_id": "registry-url@5.1.0", - "_inBundle": false, - "_integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", - "_location": "/registry-url", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "registry-url@5.1.0", - "name": "registry-url", - "escapedName": "registry-url", - "rawSpec": "5.1.0", - "saveSpec": null, - "fetchSpec": "5.1.0" - }, - "_requiredBy": [ - "/package-json" - ], - "_resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", - "_spec": "5.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "ava": { - "serial": true - }, - "bugs": { - "url": "https://github.com/sindresorhus/registry-url/issues" - }, - "dependencies": { - "rc": "^1.2.8" - }, - "description": "Get the set npm registry URL", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/registry-url#readme", - "keywords": [ - "npm", - "conf", - "config", - "npmconf", - "registry", - "url", - "uri", - "scope" - ], - "license": "MIT", - "name": "registry-url", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/registry-url.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.1.0" -} + "name": "registry-url", + "version": "5.1.0", + "description": "Get the set npm registry URL", + "license": "MIT", + "repository": "sindresorhus/registry-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "conf", + "config", + "npmconf", + "registry", + "url", + "uri", + "scope" + ], + "dependencies": { + "rc": "^1.2.8" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "ava": { + "serial": true + } + +,"_resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz" +,"_integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" +,"_from": "registry-url@5.1.0" +} \ No newline at end of file diff --git a/node_modules/removeNPMAbsolutePaths/package.json b/node_modules/removeNPMAbsolutePaths/package.json index 92f4c4b75..d4af1b912 100644 --- a/node_modules/removeNPMAbsolutePaths/package.json +++ b/node_modules/removeNPMAbsolutePaths/package.json @@ -1,45 +1,39 @@ { - "_args": [ - [ - "removeNPMAbsolutePaths@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "removeNPMAbsolutePaths@2.0.0", - "_id": "removeNPMAbsolutePaths@2.0.0", - "_inBundle": false, - "_integrity": "sha512-Hea7U6iJcD0NE/aqBqxBMPKeKaxjqMNyTTajmH2dH9hhafJ9Tem5r4UeJK8+BdE1MK9lqoOYqNM0Sq9rl1OIbQ==", - "_location": "/removeNPMAbsolutePaths", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "removeNPMAbsolutePaths@2.0.0", - "name": "removeNPMAbsolutePaths", - "escapedName": "removeNPMAbsolutePaths", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "#DEV:/" + "name": "removeNPMAbsolutePaths", + "version": "2.0.0", + "description": "Remove the fields containing local aboslute paths created by NPM", + "keywords": [ + "npm", + "modules" ], - "_resolved": "https://registry.npmjs.org/removeNPMAbsolutePaths/-/removeNPMAbsolutePaths-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Juanjo Diaz", - "email": "juanjo.diazmo@gmail.com" + "main": "src/removeNPMAbsolutePaths.js", + "scripts": { + "lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'", + "test": "mocha test", + "test-with-coverage": "nyc --reporter=text mocha test", + "travis": "npm run lint && npm run test-with-coverage", + "coveralls": "nyc report --reporter=text-lcov | coveralls" }, - "bin": { - "removeNPMAbsolutePaths": "bin/removeNPMAbsolutePaths" + "author": "Juanjo Diaz ", + "repository": { + "type": "git", + "url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths" }, "bugs": { "url": "https://github.com/removeNPMAbsolutePaths/issues", "email": "juanjo.diazmo@gmail.com" }, - "description": "Remove the fields containing local aboslute paths created by NPM", + "license": "MIT", + "preferGlobal": true, + "bin": { + "removeNPMAbsolutePaths": "bin/removeNPMAbsolutePaths" + }, + "files": [ + "LICENSE", + "README.md", + "bin/", + "src/" + ], "devDependencies": { "chai": "^4.2.0", "chai-as-promised": "^7.1.1", @@ -54,32 +48,9 @@ }, "engines": { "node": ">=4.0.0" - }, - "files": [ - "LICENSE", - "README.md", - "bin/", - "src/" - ], - "homepage": "https://github.com/juanjoDiaz/removeNPMAbsolutePaths#readme", - "keywords": [ - "npm", - "modules" - ], - "license": "MIT", - "main": "src/removeNPMAbsolutePaths.js", - "name": "removeNPMAbsolutePaths", - "preferGlobal": true, - "repository": { - "type": "git", - "url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths.git" - }, - "scripts": { - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'", - "test": "mocha test", - "test-with-coverage": "nyc --reporter=text mocha test", - "travis": "npm run lint && npm run test-with-coverage" - }, - "version": "2.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/removeNPMAbsolutePaths/-/removeNPMAbsolutePaths-2.0.0.tgz" +,"_integrity": "sha512-Hea7U6iJcD0NE/aqBqxBMPKeKaxjqMNyTTajmH2dH9hhafJ9Tem5r4UeJK8+BdE1MK9lqoOYqNM0Sq9rl1OIbQ==" +,"_from": "removeNPMAbsolutePaths@2.0.0" +} \ No newline at end of file diff --git a/node_modules/require-directory/package.json b/node_modules/require-directory/package.json index dcee541d6..1b68543bd 100644 --- a/node_modules/require-directory/package.json +++ b/node_modules/require-directory/package.json @@ -1,73 +1,44 @@ { - "_args": [ - [ - "require-directory@2.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "require-directory@2.1.1", - "_id": "require-directory@2.1.1", - "_inBundle": false, - "_integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "_location": "/require-directory", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "require-directory@2.1.1", - "name": "require-directory", - "escapedName": "require-directory", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" - }, - "_requiredBy": [ - "/yargs" + "author": "Troy Goode (http://github.com/troygoode/)", + "name": "require-directory", + "version": "2.1.1", + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "keywords": [ + "require", + "directory", + "library", + "recursive" ], - "_resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Troy Goode", - "email": "troygoode@gmail.com", - "url": "http://github.com/troygoode/" - }, - "bugs": { - "url": "http://github.com/troygoode/node-require-directory/issues/" + "homepage": "https://github.com/troygoode/node-require-directory/", + "main": "index.js", + "repository": { + "type": "git", + "url": "git://github.com/troygoode/node-require-directory.git" }, "contributors": [ { "name": "Troy Goode", "email": "troygoode@gmail.com", - "url": "http://github.com/troygoode/" + "web": "http://github.com/troygoode/" } ], - "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", - "devDependencies": { - "jshint": "^2.6.0", - "mocha": "^2.1.0" + "license": "MIT", + "bugs": { + "url": "http://github.com/troygoode/node-require-directory/issues/" }, "engines": { "node": ">=0.10.0" }, - "homepage": "https://github.com/troygoode/node-require-directory/", - "keywords": [ - "require", - "directory", - "library", - "recursive" - ], - "license": "MIT", - "main": "index.js", - "name": "require-directory", - "repository": { - "type": "git", - "url": "git://github.com/troygoode/node-require-directory.git" + "devDependencies": { + "jshint": "^2.6.0", + "mocha": "^2.1.0" }, "scripts": { - "lint": "jshint index.js test/test.js", - "test": "mocha" - }, - "version": "2.1.1" -} + "test": "mocha", + "lint": "jshint index.js test/test.js" + } + +,"_resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" +,"_integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" +,"_from": "require-directory@2.1.1" +} \ No newline at end of file diff --git a/node_modules/require-main-filename/package.json b/node_modules/require-main-filename/package.json index 23597f448..0a3da3583 100644 --- a/node_modules/require-main-filename/package.json +++ b/node_modules/require-main-filename/package.json @@ -1,67 +1,39 @@ { - "_args": [ - [ - "require-main-filename@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "require-main-filename@2.0.0", - "_id": "require-main-filename@2.0.0", - "_inBundle": false, - "_integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "_location": "/require-main-filename", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "require-main-filename@2.0.0", - "name": "require-main-filename", - "escapedName": "require-main-filename", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" + "name": "require-main-filename", + "version": "2.0.0", + "description": "shim for require.main.filename() that works in as many environments as possible", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "tap --coverage test.js", + "release": "standard-version" }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" }, + "keywords": [ + "require", + "shim", + "iisnode" + ], + "files": [ + "index.js" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/yargs/require-main-filename/issues" }, - "description": "shim for require.main.filename() that works in as many environments as possible", + "homepage": "https://github.com/yargs/require-main-filename#readme", "devDependencies": { "chai": "^4.0.0", "standard": "^10.0.3", "standard-version": "^4.0.0", "tap": "^11.0.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/yargs/require-main-filename#readme", - "keywords": [ - "require", - "shim", - "iisnode" - ], - "license": "ISC", - "main": "index.js", - "name": "require-main-filename", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/yargs/require-main-filename.git" - }, - "scripts": { - "pretest": "standard", - "release": "standard-version", - "test": "tap --coverage test.js" - }, - "version": "2.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" +,"_integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" +,"_from": "require-main-filename@2.0.0" +} \ No newline at end of file diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json index f67b07666..12db21aad 100644 --- a/node_modules/resolve-cwd/package.json +++ b/node_modules/resolve-cwd/package.json @@ -1,80 +1,47 @@ { - "_args": [ - [ - "resolve-cwd@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "resolve-cwd@3.0.0", - "_id": "resolve-cwd@3.0.0", - "_inBundle": false, - "_integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "_location": "/resolve-cwd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "resolve-cwd@3.0.0", - "name": "resolve-cwd", - "escapedName": "resolve-cwd", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/ava", - "/import-local" - ], - "_resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/resolve-cwd/issues" - }, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/resolve-cwd#readme", - "keywords": [ - "require", - "resolve", - "path", - "module", - "from", - "like", - "cwd", - "current", - "working", - "directory", - "import" - ], - "license": "MIT", - "name": "resolve-cwd", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/resolve-cwd.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "resolve-cwd", + "version": "3.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", + "license": "MIT", + "repository": "sindresorhus/resolve-cwd", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "cwd", + "current", + "working", + "directory", + "import" + ], + "dependencies": { + "resolve-from": "^5.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" +,"_integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" +,"_from": "resolve-cwd@3.0.0" +} \ No newline at end of file diff --git a/node_modules/resolve-from/package.json b/node_modules/resolve-from/package.json index ca351be02..b2627367a 100644 --- a/node_modules/resolve-from/package.json +++ b/node_modules/resolve-from/package.json @@ -1,72 +1,40 @@ { - "_args": [ - [ - "resolve-from@5.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "resolve-from@5.0.0", - "_id": "resolve-from@5.0.0", - "_inBundle": false, - "_integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "_location": "/resolve-from", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "resolve-from@5.0.0", - "name": "resolve-from", - "escapedName": "resolve-from", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/resolve-cwd" - ], - "_resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/resolve-from/issues" - }, - "description": "Resolve the path of a module like `require.resolve()` but from a given path", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/resolve-from#readme", - "keywords": [ - "require", - "resolve", - "path", - "module", - "from", - "like", - "import" - ], - "license": "MIT", - "name": "resolve-from", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/resolve-from.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "5.0.0" -} + "name": "resolve-from", + "version": "5.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "license": "MIT", + "repository": "sindresorhus/resolve-from", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "import" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" +,"_integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" +,"_from": "resolve-from@5.0.0" +} \ No newline at end of file diff --git a/node_modules/resolve/package.json b/node_modules/resolve/package.json index bc007e0b9..1f3180fee 100644 --- a/node_modules/resolve/package.json +++ b/node_modules/resolve/package.json @@ -1,81 +1,51 @@ { - "_args": [ - [ - "resolve@1.13.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "resolve@1.13.1", - "_id": "resolve@1.13.1", - "_inBundle": false, - "_integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==", - "_location": "/resolve", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "resolve@1.13.1", - "name": "resolve", - "escapedName": "resolve", - "rawSpec": "1.13.1", - "saveSpec": null, - "fetchSpec": "1.13.1" - }, - "_requiredBy": [ - "/normalize-package-data", - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz", - "_spec": "1.13.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/browserify/resolve/issues" - }, - "dependencies": { - "path-parse": "^1.0.6" - }, - "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", - "devDependencies": { - "@ljharb/eslint-config": "^15.0.2", - "array.prototype.map": "^1.0.1", - "eslint": "^6.7.1", - "object-keys": "^1.1.1", - "safe-publish-latest": "^1.1.4", - "tap": "0.4.13", - "tape": "^4.11.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "homepage": "https://github.com/browserify/resolve#readme", - "keywords": [ - "resolve", - "require", - "node", - "module" - ], - "license": "MIT", - "main": "index.js", - "name": "resolve", - "repository": { - "type": "git", - "url": "git://github.com/browserify/resolve.git" - }, - "scripts": { - "lint": "eslint .", - "posttest": "npm run test:multirepo", - "prepublish": "safe-publish-latest", - "pretest": "npm run lint", - "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", - "test": "npm run --silent tests-only", - "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test", - "tests-only": "tape test/*.js" - }, - "version": "1.13.1" -} + "name": "resolve", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "version": "1.13.1", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" + }, + "main": "index.js", + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "scripts": { + "prepublish": "safe-publish-latest", + "lint": "eslint .", + "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", + "tests-only": "tape test/*.js", + "pretest": "npm run lint", + "test": "npm run --silent tests-only", + "posttest": "npm run test:multirepo", + "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" + }, + "devDependencies": { + "@ljharb/eslint-config": "^15.0.2", + "array.prototype.map": "^1.0.1", + "eslint": "^6.7.1", + "object-keys": "^1.1.1", + "safe-publish-latest": "^1.1.4", + "tap": "0.4.13", + "tape": "^4.11.0" + }, + "license": "MIT", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "dependencies": { + "path-parse": "^1.0.6" + } + +,"_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz" +,"_integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==" +,"_from": "resolve@1.13.1" +} \ No newline at end of file diff --git a/node_modules/responselike/package.json b/node_modules/responselike/package.json index 1e6cb6c31..5b53db282 100644 --- a/node_modules/responselike/package.json +++ b/node_modules/responselike/package.json @@ -1,52 +1,15 @@ { - "_args": [ - [ - "responselike@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "responselike@1.0.2", - "_id": "responselike@1.0.2", - "_inBundle": false, - "_integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "_location": "/responselike", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "responselike@1.0.2", - "name": "responselike", - "escapedName": "responselike", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/cacheable-request" - ], - "_resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "lukechilds" - }, - "bugs": { - "url": "https://github.com/lukechilds/responselike/issues" - }, - "dependencies": { - "lowercase-keys": "^1.0.0" - }, + "name": "responselike", + "version": "1.0.2", "description": "A response-like object for mocking a Node.js HTTP response stream", - "devDependencies": { - "ava": "^0.22.0", - "coveralls": "^2.13.1", - "eslint-config-xo-lukechilds": "^1.0.0", - "get-stream": "^3.0.0", - "nyc": "^11.1.0", - "xo": "^0.19.0" + "main": "src/index.js", + "scripts": { + "test": "xo && nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls" + }, + "xo": { + "extends": "xo-lukechilds" }, - "homepage": "https://github.com/lukechilds/responselike#readme", "keywords": [ "http", "https", @@ -55,19 +18,25 @@ "request", "responselike" ], - "license": "MIT", - "main": "src/index.js", - "name": "responselike", "repository": { "type": "git", - "url": "git+https://github.com/lukechilds/responselike.git" + "url": "https://github.com/lukechilds/responselike.git" }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && nyc ava" + "author": "lukechilds", + "license": "MIT", + "devDependencies": { + "ava": "^0.22.0", + "coveralls": "^2.13.1", + "eslint-config-xo-lukechilds": "^1.0.0", + "get-stream": "^3.0.0", + "nyc": "^11.1.0", + "xo": "^0.19.0" }, - "version": "1.0.2", - "xo": { - "extends": "xo-lukechilds" + "dependencies": { + "lowercase-keys": "^1.0.0" } -} + +,"_resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" +,"_integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" +,"_from": "responselike@1.0.2" +} \ No newline at end of file diff --git a/node_modules/restore-cursor/package.json b/node_modules/restore-cursor/package.json index 21bfc4b5c..8e480e1f3 100644 --- a/node_modules/restore-cursor/package.json +++ b/node_modules/restore-cursor/package.json @@ -1,88 +1,56 @@ { - "_args": [ - [ - "restore-cursor@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "restore-cursor@3.1.0", - "_id": "restore-cursor@3.1.0", - "_inBundle": false, - "_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "_location": "/restore-cursor", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "restore-cursor@3.1.0", - "name": "restore-cursor", - "escapedName": "restore-cursor", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/cli-cursor" - ], - "_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/restore-cursor/issues" - }, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "description": "Gracefully restore the CLI cursor on exit", - "devDependencies": { - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/restore-cursor#readme", - "keywords": [ - "exit", - "quit", - "process", - "graceful", - "shutdown", - "sigterm", - "sigint", - "terminate", - "kill", - "stop", - "cli", - "cursor", - "ansi", - "show", - "term", - "terminal", - "console", - "tty", - "shell", - "command-line" - ], - "license": "MIT", - "name": "restore-cursor", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/restore-cursor.git" - }, - "scripts": { - "test": "xo && tsd" - }, - "version": "3.1.0" -} + "name": "restore-cursor", + "version": "3.1.0", + "description": "Gracefully restore the CLI cursor on exit", + "license": "MIT", + "repository": "sindresorhus/restore-cursor", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "exit", + "quit", + "process", + "graceful", + "shutdown", + "sigterm", + "sigint", + "terminate", + "kill", + "stop", + "cli", + "cursor", + "ansi", + "show", + "term", + "terminal", + "console", + "tty", + "shell", + "command-line" + ], + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "devDependencies": { + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" +,"_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" +,"_from": "restore-cursor@3.1.0" +} \ No newline at end of file diff --git a/node_modules/reusify/package.json b/node_modules/reusify/package.json index 14952d153..27f301caa 100644 --- a/node_modules/reusify/package.json +++ b/node_modules/reusify/package.json @@ -1,54 +1,22 @@ { - "_args": [ - [ - "reusify@1.0.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "reusify@1.0.4", - "_id": "reusify@1.0.4", - "_inBundle": false, - "_integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "_location": "/reusify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "reusify@1.0.4", - "name": "reusify", - "escapedName": "reusify", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/fastq" - ], - "_resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "_spec": "1.0.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Matteo Collina", - "email": "hello@matteocollina.com" - }, - "bugs": { - "url": "https://github.com/mcollina/reusify/issues" - }, + "name": "reusify", + "version": "1.0.4", "description": "Reuse objects and functions with style", - "devDependencies": { - "coveralls": "^2.13.3", - "faucet": "0.0.1", - "istanbul": "^0.4.5", - "pre-commit": "^1.2.2", - "standard": "^10.0.3", - "tape": "^4.8.0" + "main": "reusify.js", + "scripts": { + "lint": "standard", + "test": "tape test.js | faucet", + "istanbul": "istanbul cover tape test.js", + "coverage": "npm run istanbul; cat coverage/lcov.info | coveralls" }, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "pre-commit": [ + "lint", + "test" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/mcollina/reusify.git" }, - "homepage": "https://github.com/mcollina/reusify#readme", "keywords": [ "reuse", "object", @@ -56,22 +24,26 @@ "function", "fast" ], + "author": "Matteo Collina ", "license": "MIT", - "main": "reusify.js", - "name": "reusify", - "pre-commit": [ - "lint", - "test" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/mcollina/reusify.git" + "bugs": { + "url": "https://github.com/mcollina/reusify/issues" }, - "scripts": { - "coverage": "npm run istanbul; cat coverage/lcov.info | coveralls", - "istanbul": "istanbul cover tape test.js", - "lint": "standard", - "test": "tape test.js | faucet" + "homepage": "https://github.com/mcollina/reusify#readme", + "engines": { + "node": ">=0.10.0", + "iojs": ">=1.0.0" }, - "version": "1.0.4" -} + "devDependencies": { + "coveralls": "^2.13.3", + "faucet": "0.0.1", + "istanbul": "^0.4.5", + "pre-commit": "^1.2.2", + "standard": "^10.0.3", + "tape": "^4.8.0" + } + +,"_resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" +,"_integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" +,"_from": "reusify@1.0.4" +} \ No newline at end of file diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json index 3c987ded8..2fc16433b 100644 --- a/node_modules/rimraf/package.json +++ b/node_modules/rimraf/package.json @@ -1,74 +1,36 @@ { - "_args": [ - [ - "rimraf@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "rimraf@3.0.2", - "_id": "rimraf@3.0.2", - "_inBundle": false, - "_integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "_location": "/rimraf", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "rimraf@3.0.2", - "name": "rimraf", - "escapedName": "rimraf", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" - }, - "_requiredBy": [ - "/del" - ], - "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bin": { - "rimraf": "bin.js" - }, - "bugs": { - "url": "https://github.com/isaacs/rimraf/issues" + "name": "rimraf", + "version": "3.0.2", + "main": "rimraf.js", + "description": "A deep deletion module for node (like `rm -rf`)", + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC", + "repository": "git://github.com/isaacs/rimraf.git", + "scripts": { + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "test": "tap test/*.js" }, + "bin": "./bin.js", "dependencies": { "glob": "^7.1.3" }, - "description": "A deep deletion module for node (like `rm -rf`)", - "devDependencies": { - "mkdirp": "^0.5.1", - "tap": "^12.1.1" - }, "files": [ "LICENSE", "README.md", "bin.js", "rimraf.js" ], + "devDependencies": { + "mkdirp": "^0.5.1", + "tap": "^12.1.1" + }, "funding": { "url": "https://github.com/sponsors/isaacs" - }, - "homepage": "https://github.com/isaacs/rimraf#readme", - "license": "ISC", - "main": "rimraf.js", - "name": "rimraf", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/rimraf.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js" - }, - "version": "3.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" +,"_integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" +,"_from": "rimraf@3.0.2" +} \ No newline at end of file diff --git a/node_modules/run-parallel/package.json b/node_modules/run-parallel/package.json index 89ae96537..51925c0e7 100644 --- a/node_modules/run-parallel/package.json +++ b/node_modules/run-parallel/package.json @@ -1,33 +1,7 @@ { - "_args": [ - [ - "run-parallel@1.1.9", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "run-parallel@1.1.9", - "_id": "run-parallel@1.1.9", - "_inBundle": false, - "_integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", - "_location": "/run-parallel", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "run-parallel@1.1.9", - "name": "run-parallel", - "escapedName": "run-parallel", - "rawSpec": "1.1.9", - "saveSpec": null, - "fetchSpec": "1.1.9" - }, - "_requiredBy": [ - "/@nodelib/fs.scandir" - ], - "_resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "_spec": "1.1.9", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "run-parallel", + "description": "Run an array of functions in parallel", + "version": "1.1.9", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -37,7 +11,6 @@ "url": "https://github.com/feross/run-parallel/issues" }, "dependencies": {}, - "description": "Run an array of functions in parallel", "devDependencies": { "airtap": "0.0.4", "standard": "*", @@ -56,7 +29,6 @@ ], "license": "MIT", "main": "index.js", - "name": "run-parallel", "repository": { "type": "git", "url": "git://github.com/feross/run-parallel.git" @@ -66,6 +38,9 @@ "test-browser": "airtap -- test/*.js", "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" - }, - "version": "1.1.9" -} + } + +,"_resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz" +,"_integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" +,"_from": "run-parallel@1.1.9" +} \ No newline at end of file diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json index ff3b48781..9c8aef798 100644 --- a/node_modules/safe-buffer/package.json +++ b/node_modules/safe-buffer/package.json @@ -1,33 +1,7 @@ { - "_args": [ - [ - "safe-buffer@5.1.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "safe-buffer@5.1.2", - "_id": "safe-buffer@5.1.2", - "_inBundle": false, - "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "_location": "/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "safe-buffer@5.1.2", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "5.1.2", - "saveSpec": null, - "fetchSpec": "5.1.2" - }, - "_requiredBy": [ - "/convert-source-map" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "_spec": "5.1.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.1.2", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -36,7 +10,6 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^4.0.0" @@ -53,14 +26,16 @@ ], "license": "MIT", "main": "index.js", - "name": "safe-buffer", + "types": "index.d.ts", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" }, "scripts": { "test": "standard && tape test/*.js" - }, - "types": "index.d.ts", - "version": "5.1.2" -} + } + +,"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" +,"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" +,"_from": "safe-buffer@5.1.2" +} \ No newline at end of file diff --git a/node_modules/semver-diff/node_modules/semver/package.json b/node_modules/semver-diff/node_modules/semver/package.json index ad96b485b..13030769c 100644 --- a/node_modules/semver-diff/node_modules/semver/package.json +++ b/node_modules/semver-diff/node_modules/semver/package.json @@ -1,64 +1,32 @@ { - "_args": [ - [ - "semver@6.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "semver@6.3.0", - "_id": "semver@6.3.0", - "_inBundle": false, - "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "_location": "/semver-diff/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@6.3.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "6.3.0", - "saveSpec": null, - "fetchSpec": "6.3.0" - }, - "_requiredBy": [ - "/semver-diff" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "_spec": "6.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, + "name": "semver", + "version": "6.3.0", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" + }, "devDependencies": { "tap": "^14.3.1" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver.js" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "6.3.0" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" +,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" +,"_from": "semver@6.3.0" +} \ No newline at end of file diff --git a/node_modules/semver-diff/package.json b/node_modules/semver-diff/package.json index 527f950df..d32c5a7e9 100644 --- a/node_modules/semver-diff/package.json +++ b/node_modules/semver-diff/package.json @@ -1,73 +1,41 @@ { - "_args": [ - [ - "semver-diff@3.1.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "semver-diff@3.1.1", - "_id": "semver-diff@3.1.1", - "_inBundle": false, - "_integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "_location": "/semver-diff", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver-diff@3.1.1", - "name": "semver-diff", - "escapedName": "semver-diff", - "rawSpec": "3.1.1", - "saveSpec": null, - "fetchSpec": "3.1.1" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "_spec": "3.1.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/semver-diff/issues" - }, - "dependencies": { - "semver": "^6.3.0" - }, - "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/semver-diff#readme", - "keywords": [ - "semver", - "version", - "semantic", - "diff", - "difference" - ], - "license": "MIT", - "name": "semver-diff", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/semver-diff.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.1" -} + "name": "semver-diff", + "version": "3.1.1", + "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", + "license": "MIT", + "repository": "sindresorhus/semver-diff", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "semver", + "version", + "semantic", + "diff", + "difference" + ], + "dependencies": { + "semver": "^6.3.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" +,"_integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" +,"_from": "semver-diff@3.1.1" +} \ No newline at end of file diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json index 4c4cb60d2..9aa9bd2a9 100644 --- a/node_modules/semver/package.json +++ b/node_modules/semver/package.json @@ -1,42 +1,22 @@ { - "_from": "semver", - "_id": "semver@7.3.2", - "_inBundle": false, - "_integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", - "_location": "/semver", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "semver", - "name": "semver", - "escapedName": "semver", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#USER", - "/" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", - "_shasum": "604962b052b81ed0786aae84389ffba70ffd3938", - "_spec": "semver", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "semver", + "version": "7.3.2", "description": "The semantic version parser used by npm.", + "main": "index.js", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" + }, "devDependencies": { "tap": "^14.10.7" }, - "engines": { - "node": ">=10" + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver.js" }, "files": [ "bin/**/*.js", @@ -48,24 +28,15 @@ "index.js", "preload.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "index.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", - "snap": "tap", - "test": "tap" - }, "tap": { "check-coverage": true, "coverage-map": "map.js" }, - "version": "7.3.2" -} + "engines": { + "node": ">=10" + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" +,"_integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" +,"_from": "semver@7.3.2" +} \ No newline at end of file diff --git a/node_modules/serialize-error/package.json b/node_modules/serialize-error/package.json index cf65eba3d..c660f73b3 100644 --- a/node_modules/serialize-error/package.json +++ b/node_modules/serialize-error/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "serialize-error@2.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "serialize-error@2.1.0", - "_id": "serialize-error@2.1.0", - "_inBundle": false, - "_integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=", - "_location": "/serialize-error", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "serialize-error@2.1.0", - "name": "serialize-error", - "escapedName": "serialize-error", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/supertap" - ], - "_resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "serialize-error", + "version": "2.1.0", + "description": "Serialize an error into a plain object", + "license": "MIT", + "repository": "sindresorhus/serialize-error", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/serialize-error/issues" - }, - "description": "Serialize an error into a plain object", - "devDependencies": { - "ava": "*", - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/serialize-error#readme", "keywords": [ "error", "err", @@ -59,14 +29,12 @@ "process", "send" ], - "license": "MIT", - "name": "serialize-error", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/serialize-error.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.1.0" -} + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + } + +,"_resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz" +,"_integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=" +,"_from": "serialize-error@2.1.0" +} \ No newline at end of file diff --git a/node_modules/set-blocking/package.json b/node_modules/set-blocking/package.json index 4df83c7c7..993bdc2f7 100644 --- a/node_modules/set-blocking/package.json +++ b/node_modules/set-blocking/package.json @@ -1,41 +1,32 @@ { - "_args": [ - [ - "set-blocking@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "set-blocking@2.0.0", - "_id": "set-blocking@2.0.0", - "_inBundle": false, - "_integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "_location": "/set-blocking", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "set-blocking@2.0.0", - "name": "set-blocking", - "escapedName": "set-blocking", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" + "name": "set-blocking", + "version": "2.0.0", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "nyc mocha ./test/*.js", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "version": "standard-version" }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/set-blocking.git" }, + "keywords": [ + "flush", + "terminal", + "blocking", + "shim", + "stdio", + "stderr" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/yargs/set-blocking/issues" }, - "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "homepage": "https://github.com/yargs/set-blocking#readme", "devDependencies": { "chai": "^3.5.0", "coveralls": "^2.11.9", @@ -47,28 +38,9 @@ "files": [ "index.js", "LICENSE.txt" - ], - "homepage": "https://github.com/yargs/set-blocking#readme", - "keywords": [ - "flush", - "terminal", - "blocking", - "shim", - "stdio", - "stderr" - ], - "license": "ISC", - "main": "index.js", - "name": "set-blocking", - "repository": { - "type": "git", - "url": "git+https://github.com/yargs/set-blocking.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "pretest": "standard", - "test": "nyc mocha ./test/*.js", - "version": "standard-version" - }, - "version": "2.0.0" -} + ] + +,"_resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" +,"_integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" +,"_from": "set-blocking@2.0.0" +} \ No newline at end of file diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json index 5de9f6497..3009d53eb 100644 --- a/node_modules/shebang-command/package.json +++ b/node_modules/shebang-command/package.json @@ -1,74 +1,43 @@ { - "_args": [ - [ - "shebang-command@1.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "shebang-command@1.2.0", - "_id": "shebang-command@1.2.0", - "_inBundle": false, - "_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "_location": "/shebang-command", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "shebang-command@1.2.0", - "name": "shebang-command", - "escapedName": "shebang-command", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/cross-spawn" - ], - "_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "shebang-command", + "version": "1.2.0", + "description": "Get the command from a shebang", + "license": "MIT", + "repository": "kevva/shebang-command", "author": { "name": "Kevin Martensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, - "bugs": { - "url": "https://github.com/kevva/shebang-command/issues" - }, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "description": "Get the command from a shebang", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/kevva/shebang-command#readme", "keywords": [ "cmd", "command", "parse", "shebang" ], - "license": "MIT", - "name": "shebang-command", - "repository": { - "type": "git", - "url": "git+https://github.com/kevva/shebang-command.git" + "dependencies": { + "shebang-regex": "^1.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "1.2.0", "xo": { "ignores": [ "test.js" ] } -} + +,"_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" +,"_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" +,"_from": "shebang-command@1.2.0" +} \ No newline at end of file diff --git a/node_modules/shebang-regex/package.json b/node_modules/shebang-regex/package.json index 6b160c23d..665793c1d 100644 --- a/node_modules/shebang-regex/package.json +++ b/node_modules/shebang-regex/package.json @@ -1,51 +1,23 @@ { - "_args": [ - [ - "shebang-regex@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "shebang-regex@1.0.0", - "_id": "shebang-regex@1.0.0", - "_inBundle": false, - "_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "_location": "/shebang-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "shebang-regex@1.0.0", - "name": "shebang-regex", - "escapedName": "shebang-regex", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/shebang-command" - ], - "_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "shebang-regex", + "version": "1.0.0", + "description": "Regular expression for matching a shebang", + "license": "MIT", + "repository": "sindresorhus/shebang-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/shebang-regex/issues" - }, - "description": "Regular expression for matching a shebang", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/shebang-regex#readme", "keywords": [ "re", "regex", @@ -54,14 +26,11 @@ "match", "test" ], - "license": "MIT", - "name": "shebang-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/shebang-regex.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.0.0" -} + "devDependencies": { + "ava": "0.0.4" + } + +,"_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" +,"_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" +,"_from": "shebang-regex@1.0.0" +} \ No newline at end of file diff --git a/node_modules/signal-exit/package.json b/node_modules/signal-exit/package.json index 27eccbcb6..c3b2677a9 100644 --- a/node_modules/signal-exit/package.json +++ b/node_modules/signal-exit/package.json @@ -1,42 +1,32 @@ { - "_args": [ - [ - "signal-exit@3.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "signal-exit@3.0.2", - "_id": "signal-exit@3.0.2", - "_inBundle": false, - "_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "_location": "/signal-exit", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "signal-exit@3.0.2", - "name": "signal-exit", - "escapedName": "signal-exit", - "rawSpec": "3.0.2", - "saveSpec": null, - "fetchSpec": "3.0.2" + "name": "signal-exit", + "version": "3.0.2", + "description": "when you want to fire an event no matter how a process exits.", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "tap --timeout=240 ./test/*.js --cov", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "standard-version" }, - "_requiredBy": [ - "/execa", - "/restore-cursor", - "/write-file-atomic" + "files": [ + "index.js", + "signals.js" ], - "_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "_spec": "3.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "repository": { + "type": "git", + "url": "https://github.com/tapjs/signal-exit.git" }, + "keywords": [ + "signal", + "exit" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/tapjs/signal-exit/issues" }, - "description": "when you want to fire an event no matter how a process exits.", + "homepage": "https://github.com/tapjs/signal-exit", "devDependencies": { "chai": "^3.5.0", "coveralls": "^2.11.10", @@ -44,28 +34,9 @@ "standard": "^7.1.2", "standard-version": "^2.3.0", "tap": "^8.0.1" - }, - "files": [ - "index.js", - "signals.js" - ], - "homepage": "https://github.com/tapjs/signal-exit", - "keywords": [ - "signal", - "exit" - ], - "license": "ISC", - "main": "index.js", - "name": "signal-exit", - "repository": { - "type": "git", - "url": "git+https://github.com/tapjs/signal-exit.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "pretest": "standard", - "release": "standard-version", - "test": "tap --timeout=240 ./test/*.js --cov" - }, - "version": "3.0.2" -} + } + +,"_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz" +,"_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" +,"_from": "signal-exit@3.0.2" +} \ No newline at end of file diff --git a/node_modules/slash/package.json b/node_modules/slash/package.json index 91289a909..8100df404 100644 --- a/node_modules/slash/package.json +++ b/node_modules/slash/package.json @@ -1,74 +1,39 @@ { - "_args": [ - [ - "slash@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "slash@3.0.0", - "_id": "slash@3.0.0", - "_inBundle": false, - "_integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "_location": "/slash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "slash@3.0.0", - "name": "slash", - "escapedName": "slash", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/ava", - "/del", - "/del/globby", - "/globby" - ], - "_resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/slash/issues" - }, - "description": "Convert Windows backslash paths to slash paths", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/slash#readme", - "keywords": [ - "path", - "seperator", - "slash", - "backslash", - "windows", - "convert" - ], - "license": "MIT", - "name": "slash", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/slash.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.0.0" -} + "name": "slash", + "version": "3.0.0", + "description": "Convert Windows backslash paths to slash paths", + "license": "MIT", + "repository": "sindresorhus/slash", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "seperator", + "slash", + "backslash", + "windows", + "convert" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" +,"_integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" +,"_from": "slash@3.0.0" +} \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/ansi-styles/package.json b/node_modules/slice-ansi/node_modules/ansi-styles/package.json index d57158236..f970a55ac 100644 --- a/node_modules/slice-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/slice-ansi/node_modules/ansi-styles/package.json @@ -1,93 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/slice-ansi/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/slice-ansi" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/astral-regex/package.json b/node_modules/slice-ansi/node_modules/astral-regex/package.json index 74640f242..e21b198d7 100644 --- a/node_modules/slice-ansi/node_modules/astral-regex/package.json +++ b/node_modules/slice-ansi/node_modules/astral-regex/package.json @@ -1,69 +1,37 @@ { - "_args": [ - [ - "astral-regex@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "astral-regex@2.0.0", - "_id": "astral-regex@2.0.0", - "_inBundle": false, - "_integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "_location": "/slice-ansi/astral-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "astral-regex@2.0.0", - "name": "astral-regex", - "escapedName": "astral-regex", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/slice-ansi" - ], - "_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kevin Mårtensson", - "email": "kevinmartensson@gmail.com", - "url": "github.com/kevva" - }, - "bugs": { - "url": "https://github.com/kevva/astral-regex/issues" - }, - "description": "Regular expression for matching astral symbols", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/kevva/astral-regex#readme", - "keywords": [ - "astral", - "emoji", - "regex", - "surrogate" - ], - "license": "MIT", - "name": "astral-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/kevva/astral-regex.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "astral-regex", + "version": "2.0.0", + "description": "Regular expression for matching astral symbols", + "license": "MIT", + "repository": "kevva/astral-regex", + "author": { + "name": "Kevin Mårtensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "astral", + "emoji", + "regex", + "surrogate" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" +,"_integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" +,"_from": "astral-regex@2.0.0" +} \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/color-convert/package.json b/node_modules/slice-ansi/node_modules/color-convert/package.json index 416a1b37d..26354b46e 100644 --- a/node_modules/slice-ansi/node_modules/color-convert/package.json +++ b/node_modules/slice-ansi/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/slice-ansi/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/slice-ansi/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/color-name/package.json b/node_modules/slice-ansi/node_modules/color-name/package.json index cd924f3bc..14739f13f 100644 --- a/node_modules/slice-ansi/node_modules/color-name/package.json +++ b/node_modules/slice-ansi/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/slice-ansi/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/slice-ansi/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/slice-ansi/package.json b/node_modules/slice-ansi/package.json index e8fcb2ced..9f38fa41f 100644 --- a/node_modules/slice-ansi/package.json +++ b/node_modules/slice-ansi/package.json @@ -1,89 +1,55 @@ { - "_args": [ - [ - "slice-ansi@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "slice-ansi@3.0.0", - "_id": "slice-ansi@3.0.0", - "_inBundle": false, - "_integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "_location": "/slice-ansi", - "_phantomChildren": { - "@types/color-name": "1.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "slice-ansi@3.0.0", - "name": "slice-ansi", - "escapedName": "slice-ansi", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/cli-truncate" - ], - "_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/slice-ansi/issues" - }, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "description": "Slice a string with ANSI escape codes", - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "random-item": "^3.0.0", - "strip-ansi": "^5.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/chalk/slice-ansi#readme", - "keywords": [ - "slice", - "string", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "slice-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/slice-ansi.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0" -} + "name": "slice-ansi", + "version": "3.0.0", + "description": "Slice a string with ANSI escape codes", + "license": "MIT", + "repository": "chalk/slice-ansi", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "slice", + "string", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "random-item": "^3.0.0", + "strip-ansi": "^5.0.0", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz" +,"_integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" +,"_from": "slice-ansi@3.0.0" +} \ No newline at end of file diff --git a/node_modules/source-map/package.json b/node_modules/source-map/package.json index b9ce0dd66..fb225f899 100644 --- a/node_modules/source-map/package.json +++ b/node_modules/source-map/package.json @@ -1,194 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "source-map@0.6.1", - "_id": "source-map@0.6.1", - "_inBundle": false, - "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "_location": "/source-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-map@0.6.1", - "name": "source-map", - "escapedName": "source-map", - "rawSpec": "0.6.1", - "saveSpec": null, - "fetchSpec": "0.6.1" - }, - "_requiredBy": [ - "/ava/source-map-support" - ], - "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "_spec": "0.6.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", "contributors": [ - { - "name": "Tobias Koppers", - "email": "tobias.koppers@googlemail.com" - }, - { - "name": "Duncan Beevers", - "email": "duncan@dweebd.com" - }, - { - "name": "Stephen Crane", - "email": "scrane@mozilla.com" - }, - { - "name": "Ryan Seddon", - "email": "seddon.ryan@gmail.com" - }, - { - "name": "Miles Elam", - "email": "miles.elam@deem.com" - }, - { - "name": "Mihai Bazon", - "email": "mihai.bazon@gmail.com" - }, - { - "name": "Michael Ficarra", - "email": "github.public.email@michael.ficarra.me" - }, - { - "name": "Todd Wolfson", - "email": "todd@twolfson.com" - }, - { - "name": "Alexander Solovyov", - "email": "alexander@solovyov.net" - }, - { - "name": "Felix Gnass", - "email": "fgnass@gmail.com" - }, - { - "name": "Conrad Irwin", - "email": "conrad.irwin@gmail.com" - }, - { - "name": "usrbincc", - "email": "usrbincc@yahoo.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Chase Douglas", - "email": "chase@newrelic.com" - }, - { - "name": "Evan Wallace", - "email": "evan.exe@gmail.com" - }, - { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - { - "name": "Hugh Kennedy", - "email": "hughskennedy@gmail.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Simon Lydell", - "email": "simon.lydell@gmail.com" - }, - { - "name": "Jmeas Smith", - "email": "jellyes2@gmail.com" - }, - { - "name": "Michael Z Goddard", - "email": "mzgoddard@gmail.com" - }, - { - "name": "azu", - "email": "azu@users.noreply.github.com" - }, - { - "name": "John Gozde", - "email": "john@gozde.ca" - }, - { - "name": "Adam Kirkton", - "email": "akirkton@truefitinnovation.com" - }, - { - "name": "Chris Montgomery", - "email": "christopher.montgomery@dowjones.com" - }, - { - "name": "J. Ryan Stinnett", - "email": "jryans@gmail.com" - }, - { - "name": "Jack Herrington", - "email": "jherrington@walmartlabs.com" - }, - { - "name": "Chris Truter", - "email": "jeffpalentine@gmail.com" - }, - { - "name": "Daniel Espeset", - "email": "daniel@danielespeset.com" - }, - { - "name": "Jamie Wong", - "email": "jamie.lf.wong@gmail.com" - }, - { - "name": "Eddy Bruël", - "email": "ejpbruel@mozilla.com" - }, - { - "name": "Hawken Rives", - "email": "hawkrives@gmail.com" - }, - { - "name": "Gilad Peleg", - "email": "giladp007@gmail.com" - }, - { - "name": "djchie", - "email": "djchie.dev@gmail.com" - }, - { - "name": "Gary Ye", - "email": "garysye@gmail.com" - }, - { - "name": "Nicolas Lalevée", - "email": "nicolas.lalevee@hibnet.org" - } + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " ], - "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -198,19 +56,22 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "homepage": "https://github.com/mozilla/source-map", - "license": "BSD-3-Clause", - "main": "./source-map.js", - "name": "source-map", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mozilla/source-map.git" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" -} + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" + +,"_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" +,"_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" +,"_from": "source-map@0.6.1" +} \ No newline at end of file diff --git a/node_modules/spdx-correct/package.json b/node_modules/spdx-correct/package.json index 8e3bff4f9..5fc48f0fd 100644 --- a/node_modules/spdx-correct/package.json +++ b/node_modules/spdx-correct/package.json @@ -1,65 +1,18 @@ { - "_args": [ - [ - "spdx-correct@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "spdx-correct@3.1.0", - "_id": "spdx-correct@3.1.0", - "_inBundle": false, - "_integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "_location": "/spdx-correct", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "spdx-correct@3.1.0", - "name": "spdx-correct", - "escapedName": "spdx-correct", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/validate-npm-package-license" - ], - "_resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "https://kemitchell.com" - }, - "bugs": { - "url": "https://github.com/jslicense/spdx-correct.js/issues" - }, + "name": "spdx-correct", + "description": "correct invalid SPDX expressions", + "version": "3.1.0", + "author": "Kyle E. Mitchell (https://kemitchell.com)", "contributors": [ - { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "https://kemitchell.com" - }, - { - "name": "Christian Zommerfelds", - "email": "aero_super@yahoo.com" - }, - { - "name": "Tal Einat", - "email": "taleinat@gmail.com" - }, - { - "name": "Dan Butvinik", - "email": "butvinik@outlook.com" - } + "Kyle E. Mitchell (https://kemitchell.com)", + "Christian Zommerfelds ", + "Tal Einat ", + "Dan Butvinik " ], "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" }, - "description": "correct invalid SPDX expressions", "devDependencies": { "defence-cli": "^2.0.1", "replace-require-self": "^1.0.0", @@ -70,7 +23,6 @@ "files": [ "index.js" ], - "homepage": "https://github.com/jslicense/spdx-correct.js#readme", "keywords": [ "SPDX", "law", @@ -79,14 +31,13 @@ "metadata" ], "license": "Apache-2.0", - "name": "spdx-correct", - "repository": { - "type": "git", - "url": "git+https://github.com/jslicense/spdx-correct.js.git" - }, + "repository": "jslicense/spdx-correct.js", "scripts": { "lint": "standard && standard-markdown README.md", "test": "defence README.md | replace-require-self | node && node test.js" - }, - "version": "3.1.0" -} + } + +,"_resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz" +,"_integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" +,"_from": "spdx-correct@3.1.0" +} \ No newline at end of file diff --git a/node_modules/spdx-exceptions/package.json b/node_modules/spdx-exceptions/package.json index 859c22ec7..d48a49097 100644 --- a/node_modules/spdx-exceptions/package.json +++ b/node_modules/spdx-exceptions/package.json @@ -1,59 +1,21 @@ { - "_args": [ - [ - "spdx-exceptions@2.3.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "spdx-exceptions@2.3.0", - "_id": "spdx-exceptions@2.3.0", - "_inBundle": false, - "_integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "_location": "/spdx-exceptions", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "spdx-exceptions@2.3.0", - "name": "spdx-exceptions", - "escapedName": "spdx-exceptions", - "rawSpec": "2.3.0", - "saveSpec": null, - "fetchSpec": "2.3.0" - }, - "_requiredBy": [ - "/spdx-expression-parse" - ], - "_resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "_spec": "2.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "The Linux Foundation" - }, - "bugs": { - "url": "https://github.com/kemitchell/spdx-exceptions.json/issues" - }, + "name": "spdx-exceptions", + "description": "list of SPDX standard license exceptions", + "version": "2.3.0", + "author": "The Linux Foundation", "contributors": [ - { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "https://kemitchell.com/" - } + "Kyle E. Mitchell (https://kemitchell.com/)" ], - "description": "list of SPDX standard license exceptions", + "license": "CC-BY-3.0", + "repository": "kemitchell/spdx-exceptions.json", "files": [ "index.json" ], - "homepage": "https://github.com/kemitchell/spdx-exceptions.json#readme", - "license": "CC-BY-3.0", - "name": "spdx-exceptions", - "repository": { - "type": "git", - "url": "git+https://github.com/kemitchell/spdx-exceptions.json.git" - }, "scripts": { "build": "node build.js" - }, - "version": "2.3.0" -} + } + +,"_resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" +,"_integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" +,"_from": "spdx-exceptions@2.3.0" +} \ No newline at end of file diff --git a/node_modules/spdx-expression-parse/package.json b/node_modules/spdx-expression-parse/package.json index 48717f29f..eeb3dd83b 100644 --- a/node_modules/spdx-expression-parse/package.json +++ b/node_modules/spdx-expression-parse/package.json @@ -1,80 +1,24 @@ { - "_args": [ - [ - "spdx-expression-parse@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "spdx-expression-parse@3.0.0", - "_id": "spdx-expression-parse@3.0.0", - "_inBundle": false, - "_integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "_location": "/spdx-expression-parse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "spdx-expression-parse@3.0.0", - "name": "spdx-expression-parse", - "escapedName": "spdx-expression-parse", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/spdx-correct", - "/validate-npm-package-license" - ], - "_resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "http://kemitchell.com" - }, - "bugs": { - "url": "https://github.com/jslicense/spdx-expression-parse.js/issues" - }, - "contributors": [ - { - "name": "C. Scott Ananian", - "email": "cscott@cscott.net", - "url": "http://cscott.net" - }, - { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "https://kemitchell.com" - }, - { - "name": "Shinnosuke Watanabe", - "email": "snnskwtnb@gmail.com" - }, - { - "name": "Antoine Motet", - "email": "antoine.motet@gmail.com" - } + "name": "spdx-expression-parse", + "description": "parse SPDX license expressions", + "version": "3.0.0", + "author": "Kyle E. Mitchell (http://kemitchell.com)", + "files": [ + "AUTHORS", + "index.js", + "parse.js", + "scan.js" ], "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" }, - "description": "parse SPDX license expressions", "devDependencies": { "defence-cli": "^2.0.1", "mocha": "^3.4.2", "replace-require-self": "^1.0.0", "standard": "^10.0.2" }, - "files": [ - "AUTHORS", - "index.js", - "parse.js", - "scan.js" - ], - "homepage": "https://github.com/jslicense/spdx-expression-parse.js#readme", "keywords": [ "SPDX", "law", @@ -86,16 +30,15 @@ "standards" ], "license": "MIT", - "name": "spdx-expression-parse", - "repository": { - "type": "git", - "url": "git+https://github.com/jslicense/spdx-expression-parse.js.git" - }, + "repository": "jslicense/spdx-expression-parse.js", "scripts": { "lint": "standard", - "test": "npm run test:mocha && npm run test:readme", + "test:readme": "defence -i javascript README.md | replace-require-self | node", "test:mocha": "mocha test/index.js", - "test:readme": "defence -i javascript README.md | replace-require-self | node" - }, - "version": "3.0.0" -} + "test": "npm run test:mocha && npm run test:readme" + } + +,"_resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz" +,"_integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==" +,"_from": "spdx-expression-parse@3.0.0" +} \ No newline at end of file diff --git a/node_modules/spdx-license-ids/package.json b/node_modules/spdx-license-ids/package.json index e6419020e..0aff08f25 100644 --- a/node_modules/spdx-license-ids/package.json +++ b/node_modules/spdx-license-ids/package.json @@ -1,79 +1,43 @@ { - "_args": [ - [ - "spdx-license-ids@3.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "spdx-license-ids@3.0.5", - "_id": "spdx-license-ids@3.0.5", - "_inBundle": false, - "_integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", - "_location": "/spdx-license-ids", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "spdx-license-ids@3.0.5", - "name": "spdx-license-ids", - "escapedName": "spdx-license-ids", - "rawSpec": "3.0.5", - "saveSpec": null, - "fetchSpec": "3.0.5" - }, - "_requiredBy": [ - "/spdx-correct", - "/spdx-expression-parse" - ], - "_resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "_spec": "3.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Shinnosuke Watanabe", - "url": "https://github.com/shinnn" - }, - "bugs": { - "url": "https://github.com/shinnn/spdx-license-ids/issues" - }, - "description": "A list of SPDX license identifiers", - "devDependencies": { - "@shinnn/eslint-config": "^6.8.7", - "chalk": "^2.4.1", - "eslint": "^5.10.0", - "get-spdx-license-ids": "^2.1.0", - "rmfr": "^2.0.0", - "tape": "^4.9.1" - }, - "eslintConfig": { - "extends": "@shinnn" - }, - "files": [ - "deprecated.json", - "index.json" - ], - "homepage": "https://github.com/shinnn/spdx-license-ids#readme", - "keywords": [ - "spdx", - "license", - "licenses", - "id", - "identifier", - "identifiers", - "json", - "array", - "oss" - ], - "license": "CC0-1.0", - "name": "spdx-license-ids", - "repository": { - "type": "git", - "url": "git+https://github.com/shinnn/spdx-license-ids.git" - }, - "scripts": { - "build": "node build.js", - "pretest": "eslint .", - "test": "node test.js" - }, - "version": "3.0.5" -} + "name": "spdx-license-ids", + "version": "3.0.5", + "description": "A list of SPDX license identifiers", + "repository": "shinnn/spdx-license-ids", + "author": "Shinnosuke Watanabe (https://github.com/shinnn)", + "license": "CC0-1.0", + "scripts": { + "build": "node build.js", + "pretest": "eslint .", + "test": "node test.js" + }, + "files": [ + "deprecated.json", + "index.json" + ], + "keywords": [ + "spdx", + "license", + "licenses", + "id", + "identifier", + "identifiers", + "json", + "array", + "oss" + ], + "devDependencies": { + "@shinnn/eslint-config": "^6.8.7", + "chalk": "^2.4.1", + "eslint": "^5.10.0", + "get-spdx-license-ids": "^2.1.0", + "rmfr": "^2.0.0", + "tape": "^4.9.1" + }, + "eslintConfig": { + "extends": "@shinnn" + } + +,"_resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz" +,"_integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==" +,"_from": "spdx-license-ids@3.0.5" +} \ No newline at end of file diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json index 76a89f8d1..309df0030 100644 --- a/node_modules/sprintf-js/package.json +++ b/node_modules/sprintf-js/package.json @@ -1,57 +1,26 @@ { - "_args": [ - [ - "sprintf-js@1.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "sprintf-js@1.0.3", - "_id": "sprintf-js@1.0.3", - "_inBundle": false, - "_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "_location": "/sprintf-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "sprintf-js@1.0.3", "name": "sprintf-js", - "escapedName": "sprintf-js", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/argparse" - ], - "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Alexandru Marasteanu", - "email": "hello@alexei.ro", - "url": "http://alexei.ro/" - }, - "bugs": { - "url": "https://github.com/alexei/sprintf.js/issues" - }, - "description": "JavaScript sprintf implementation", - "devDependencies": { - "grunt": "*", - "grunt-contrib-uglify": "*", - "grunt-contrib-watch": "*", - "mocha": "*" - }, - "homepage": "https://github.com/alexei/sprintf.js#readme", - "license": "BSD-3-Clause", - "main": "src/sprintf.js", - "name": "sprintf-js", - "repository": { - "type": "git", - "url": "git+https://github.com/alexei/sprintf.js.git" - }, - "scripts": { - "test": "mocha test/test.js" - }, - "version": "1.0.3" -} + "version": "1.0.3", + "description": "JavaScript sprintf implementation", + "author": "Alexandru Marasteanu (http://alexei.ro/)", + "main": "src/sprintf.js", + "scripts": { + "test": "mocha test/test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/alexei/sprintf.js.git" + }, + "license": "BSD-3-Clause", + "readmeFilename": "README.md", + "devDependencies": { + "mocha": "*", + "grunt": "*", + "grunt-contrib-watch": "*", + "grunt-contrib-uglify": "*" + } + +,"_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" +,"_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" +,"_from": "sprintf-js@1.0.3" +} \ No newline at end of file diff --git a/node_modules/string-width/package.json b/node_modules/string-width/package.json index 244a937b0..c3ea56436 100644 --- a/node_modules/string-width/package.json +++ b/node_modules/string-width/package.json @@ -1,97 +1,60 @@ { - "_args": [ - [ - "string-width@4.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "string-width@4.2.0", - "_id": "string-width@4.2.0", - "_inBundle": false, - "_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "_location": "/string-width", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "string-width@4.2.0", - "name": "string-width", - "escapedName": "string-width", - "rawSpec": "4.2.0", - "saveSpec": null, - "fetchSpec": "4.2.0" - }, - "_requiredBy": [ - "/boxen", - "/cli-truncate", - "/cliui", - "/widest-line", - "/wrap-ansi", - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "_spec": "4.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/string-width/issues" - }, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "description": "Get the visual width of a string - the number of columns required to display it", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/string-width#readme", - "keywords": [ - "string", - "character", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "license": "MIT", - "name": "string-width", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/string-width.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.2.0" -} + "name": "string-width", + "version": "4.2.0", + "description": "Get the visual width of a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/string-width", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "character", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz" +,"_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==" +,"_from": "string-width@4.2.0" +} \ No newline at end of file diff --git a/node_modules/strip-ansi/node_modules/ansi-regex/package.json b/node_modules/strip-ansi/node_modules/ansi-regex/package.json index ba964ed1d..555b26d73 100644 --- a/node_modules/strip-ansi/node_modules/ansi-regex/package.json +++ b/node_modules/strip-ansi/node_modules/ansi-regex/package.json @@ -1,91 +1,59 @@ { - "_args": [ - [ - "ansi-regex@5.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-regex@5.0.0", - "_id": "ansi-regex@5.0.0", - "_inBundle": false, - "_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "_location": "/strip-ansi/ansi-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-regex@5.0.0", - "name": "ansi-regex", - "escapedName": "ansi-regex", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/strip-ansi" - ], - "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "description": "Regular expression for matching ANSI escape codes", - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/ansi-regex#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "text", - "regex", - "regexp", - "re", - "match", - "test", - "find", - "pattern" - ], - "license": "MIT", - "name": "ansi-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-regex.git" - }, - "scripts": { - "test": "xo && ava && tsd", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "5.0.0" -} + "name": "ansi-regex", + "version": "5.0.0", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "view-supported": "node fixtures/view-codes.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" +,"_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" +,"_from": "ansi-regex@5.0.0" +} \ No newline at end of file diff --git a/node_modules/strip-ansi/package.json b/node_modules/strip-ansi/package.json index 35ef03c26..4fca79c1c 100644 --- a/node_modules/strip-ansi/package.json +++ b/node_modules/strip-ansi/package.json @@ -1,94 +1,58 @@ { - "_args": [ - [ - "strip-ansi@6.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "strip-ansi@6.0.0", - "_id": "strip-ansi@6.0.0", - "_inBundle": false, - "_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "_location": "/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@6.0.0", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "6.0.0", - "saveSpec": null, - "fetchSpec": "6.0.0" - }, - "_requiredBy": [ - "/ava", - "/cliui", - "/ora", - "/string-width", - "/wrap-ansi" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "_spec": "6.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "description": "Strip ANSI escape codes from a string", - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/strip-ansi#readme", - "keywords": [ - "strip", - "trim", - "remove", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "6.0.0" -} + "name": "strip-ansi", + "version": "6.0.0", + "description": "Strip ANSI escape codes from a string", + "license": "MIT", + "repository": "chalk/strip-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" +,"_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" +,"_from": "strip-ansi@6.0.0" +} \ No newline at end of file diff --git a/node_modules/strip-eof/package.json b/node_modules/strip-eof/package.json index 38f149527..d054db16c 100644 --- a/node_modules/strip-eof/package.json +++ b/node_modules/strip-eof/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "strip-eof@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "strip-eof@1.0.0", - "_id": "strip-eof@1.0.0", - "_inBundle": false, - "_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "_location": "/strip-eof", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-eof@1.0.0", - "name": "strip-eof", - "escapedName": "strip-eof", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/execa" - ], - "_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "strip-eof", + "version": "1.0.0", + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "license": "MIT", + "repository": "sindresorhus/strip-eof", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/strip-eof/issues" - }, - "description": "Strip the End-Of-File (EOF) character from a string/buffer", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/strip-eof#readme", "keywords": [ "strip", "trim", @@ -61,14 +32,12 @@ "string", "buffer" ], - "license": "MIT", - "name": "strip-eof", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-eof.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" +,"_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" +,"_from": "strip-eof@1.0.0" +} \ No newline at end of file diff --git a/node_modules/strip-json-comments/package.json b/node_modules/strip-json-comments/package.json index 2db7c99ab..19d3a720c 100644 --- a/node_modules/strip-json-comments/package.json +++ b/node_modules/strip-json-comments/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "strip-json-comments@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "strip-json-comments@2.0.1", - "_id": "strip-json-comments@2.0.1", - "_inBundle": false, - "_integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "_location": "/strip-json-comments", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-json-comments@2.0.1", - "name": "strip-json-comments", - "escapedName": "strip-json-comments", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/rc" - ], - "_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "strip-json-comments", + "version": "2.0.1", + "description": "Strip comments from JSON. Lets you use comments in your JSON files!", + "license": "MIT", + "repository": "sindresorhus/strip-json-comments", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/strip-json-comments/issues" - }, - "description": "Strip comments from JSON. Lets you use comments in your JSON files!", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/strip-json-comments#readme", "keywords": [ "json", "strip", @@ -65,14 +35,12 @@ "env", "environment" ], - "license": "MIT", - "name": "strip-json-comments", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-json-comments.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.1" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" +,"_integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" +,"_from": "strip-json-comments@2.0.1" +} \ No newline at end of file diff --git a/node_modules/supertap/node_modules/ansi-regex/package.json b/node_modules/supertap/node_modules/ansi-regex/package.json index 66a301026..c79b39f0a 100644 --- a/node_modules/supertap/node_modules/ansi-regex/package.json +++ b/node_modules/supertap/node_modules/ansi-regex/package.json @@ -1,53 +1,24 @@ { - "_args": [ - [ - "ansi-regex@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-regex@3.0.0", - "_id": "ansi-regex@3.0.0", - "_inBundle": false, - "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "_location": "/supertap/ansi-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-regex@3.0.0", - "name": "ansi-regex", - "escapedName": "ansi-regex", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/supertap/strip-ansi" - ], - "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "ansi-regex", + "version": "3.0.0", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "description": "Regular expression for matching ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/ansi-regex#readme", "keywords": [ "ansi", "styles", @@ -75,15 +46,12 @@ "find", "pattern" ], - "license": "MIT", - "name": "ansi-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-regex.git" - }, - "scripts": { - "test": "xo && ava", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz" +,"_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" +,"_from": "ansi-regex@3.0.0" +} \ No newline at end of file diff --git a/node_modules/supertap/node_modules/arrify/package.json b/node_modules/supertap/node_modules/arrify/package.json index 7208826ac..bfc8621c9 100644 --- a/node_modules/supertap/node_modules/arrify/package.json +++ b/node_modules/supertap/node_modules/arrify/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "arrify@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "arrify@1.0.1", - "_id": "arrify@1.0.1", - "_inBundle": false, - "_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "_location": "/supertap/arrify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "arrify@1.0.1", - "name": "arrify", - "escapedName": "arrify", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/supertap" - ], - "_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "arrify", + "version": "1.0.1", + "description": "Convert a value to an array", + "license": "MIT", + "repository": "sindresorhus/arrify", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/arrify/issues" - }, - "description": "Convert a value to an array", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/arrify#readme", "keywords": [ "array", "arr", @@ -56,14 +26,12 @@ "convert", "value" ], - "license": "MIT", - "name": "arrify", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/arrify.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.1" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" +,"_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" +,"_from": "arrify@1.0.1" +} \ No newline at end of file diff --git a/node_modules/supertap/node_modules/indent-string/package.json b/node_modules/supertap/node_modules/indent-string/package.json index 1ea4ae14c..796eb8ecd 100644 --- a/node_modules/supertap/node_modules/indent-string/package.json +++ b/node_modules/supertap/node_modules/indent-string/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "indent-string@3.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "indent-string@3.2.0", - "_id": "indent-string@3.2.0", - "_inBundle": false, - "_integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "_location": "/supertap/indent-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "indent-string@3.2.0", - "name": "indent-string", - "escapedName": "indent-string", - "rawSpec": "3.2.0", - "saveSpec": null, - "fetchSpec": "3.2.0" - }, - "_requiredBy": [ - "/supertap" - ], - "_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "_spec": "3.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "indent-string", + "version": "3.2.0", + "description": "Indent each line in a string", + "license": "MIT", + "repository": "sindresorhus/indent-string", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/indent-string/issues" - }, - "description": "Indent each line in a string", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/indent-string#readme", "keywords": [ "indent", "string", @@ -59,14 +29,12 @@ "each", "every" ], - "license": "MIT", - "name": "indent-string", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/indent-string.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.2.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz" +,"_integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=" +,"_from": "indent-string@3.2.0" +} \ No newline at end of file diff --git a/node_modules/supertap/node_modules/strip-ansi/package.json b/node_modules/supertap/node_modules/strip-ansi/package.json index 92a89fc54..14a8f1c3a 100644 --- a/node_modules/supertap/node_modules/strip-ansi/package.json +++ b/node_modules/supertap/node_modules/strip-ansi/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "strip-ansi@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "strip-ansi@4.0.0", - "_id": "strip-ansi@4.0.0", - "_inBundle": false, - "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "_location": "/supertap/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@4.0.0", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/supertap" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "strip-ansi", + "version": "4.0.0", + "description": "Strip ANSI escape codes", + "license": "MIT", + "repository": "chalk/strip-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "description": "Strip ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -75,14 +42,15 @@ "command-line", "text" ], - "license": "MIT", - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" - }, - "scripts": { - "test": "xo && ava" + "dependencies": { + "ansi-regex": "^3.0.0" }, - "version": "4.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" +,"_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" +,"_from": "strip-ansi@4.0.0" +} \ No newline at end of file diff --git a/node_modules/supertap/package.json b/node_modules/supertap/package.json index a2763fa08..7e7510710 100644 --- a/node_modules/supertap/package.json +++ b/node_modules/supertap/package.json @@ -1,44 +1,28 @@ { - "_args": [ - [ - "supertap@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supertap@1.0.0", - "_id": "supertap@1.0.0", - "_inBundle": false, - "_integrity": "sha512-HZJ3geIMPgVwKk2VsmO5YHqnnJYl6bV5A9JW2uzqV43WmpgliNEYbuvukfor7URpaqpxuw3CfZ3ONdVbZjCgIA==", - "_location": "/supertap", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supertap@1.0.0", - "name": "supertap", - "escapedName": "supertap", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/supertap/-/supertap-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "supertap", + "version": "1.0.0", + "description": "Generate TAP output", + "license": "MIT", + "repository": "vadimdemedes/supertap", "author": { "name": "Vadim Demedes", "email": "vdemedes@gmail.com", "url": "github.com/vadimdemedes" }, - "ava": { - "serial": true + "engines": { + "node": ">=4" }, - "bugs": { - "url": "https://github.com/vadimdemedes/supertap/issues" + "scripts": { + "test": "xo && ava" }, + "files": [ + "index.js" + ], + "keywords": [ + "tap", + "tape", + "output" + ], "dependencies": { "arrify": "^1.0.1", "indent-string": "^3.2.0", @@ -46,7 +30,6 @@ "serialize-error": "^2.1.0", "strip-ansi": "^4.0.0" }, - "description": "Generate TAP output", "devDependencies": { "ava": "^0.20.0", "ctrlc-exit": "^1.0.0", @@ -64,26 +47,11 @@ "wait-for-enter": "^1.0.0", "xo": "^0.18.2" }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/vadimdemedes/supertap#readme", - "keywords": [ - "tap", - "tape", - "output" - ], - "license": "MIT", - "name": "supertap", - "repository": { - "type": "git", - "url": "git+https://github.com/vadimdemedes/supertap.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.0" -} + "ava": { + "serial": true + } + +,"_resolved": "https://registry.npmjs.org/supertap/-/supertap-1.0.0.tgz" +,"_integrity": "sha512-HZJ3geIMPgVwKk2VsmO5YHqnnJYl6bV5A9JW2uzqV43WmpgliNEYbuvukfor7URpaqpxuw3CfZ3ONdVbZjCgIA==" +,"_from": "supertap@1.0.0" +} \ No newline at end of file diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json index b40f7c47d..c01bdec70 100644 --- a/node_modules/supports-color/package.json +++ b/node_modules/supports-color/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "supports-color@5.5.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supports-color@5.5.0", - "_id": "supports-color@5.5.0", - "_inBundle": false, - "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "_location": "/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@5.5.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "5.5.0", - "saveSpec": null, - "fetchSpec": "5.5.0" - }, - "_requiredBy": [ - "/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "_spec": "5.5.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^3.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^0.25.0", - "import-fresh": "^2.0.0", - "xo": "^0.20.0" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "5.5.0" -} + "name": "supports-color", + "version": "5.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^3.0.0" + }, + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" +,"_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" +,"_from": "supports-color@5.5.0" +} \ No newline at end of file diff --git a/node_modules/temp-dir/package.json b/node_modules/temp-dir/package.json index b7b67c8e5..3fcb881fc 100644 --- a/node_modules/temp-dir/package.json +++ b/node_modules/temp-dir/package.json @@ -1,77 +1,45 @@ { - "_args": [ - [ - "temp-dir@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "temp-dir@2.0.0", - "_id": "temp-dir@2.0.0", - "_inBundle": false, - "_integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "_location": "/temp-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "temp-dir@2.0.0", - "name": "temp-dir", - "escapedName": "temp-dir", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/temp-dir/issues" - }, - "description": "Get the real path of the system temp directory", - "devDependencies": { - "ava": "^1.4.1", - "proxyquire": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/temp-dir#readme", - "keywords": [ - "temp", - "tmpdir", - "os", - "system", - "real", - "path", - "realpath", - "resolved", - "temporary", - "directory", - "folder" - ], - "license": "MIT", - "name": "temp-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/temp-dir.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "temp-dir", + "version": "2.0.0", + "description": "Get the real path of the system temp directory", + "license": "MIT", + "repository": "sindresorhus/temp-dir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "temp", + "tmpdir", + "os", + "system", + "real", + "path", + "realpath", + "resolved", + "temporary", + "directory", + "folder" + ], + "devDependencies": { + "ava": "^1.4.1", + "proxyquire": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz" +,"_integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" +,"_from": "temp-dir@2.0.0" +} \ No newline at end of file diff --git a/node_modules/term-size/package.json b/node_modules/term-size/package.json index dab69a067..d0980deb6 100644 --- a/node_modules/term-size/package.json +++ b/node_modules/term-size/package.json @@ -1,79 +1,47 @@ { - "_args": [ - [ - "term-size@2.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "term-size@2.2.0", - "_id": "term-size@2.2.0", - "_inBundle": false, - "_integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==", - "_location": "/term-size", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "term-size@2.2.0", - "name": "term-size", - "escapedName": "term-size", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/boxen" - ], - "_resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz", - "_spec": "2.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/term-size/issues" - }, - "description": "Reliably get the terminal window size (columns & rows)", - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts", - "vendor" - ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/term-size#readme", - "keywords": [ - "terminal", - "size", - "console", - "window", - "width", - "height", - "columns", - "rows", - "lines", - "tty", - "redirected" - ], - "license": "MIT", - "name": "term-size", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/term-size.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.2.0" -} + "name": "term-size", + "version": "2.2.0", + "description": "Reliably get the terminal window size (columns & rows)", + "license": "MIT", + "repository": "sindresorhus/term-size", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "vendor" + ], + "keywords": [ + "terminal", + "size", + "console", + "window", + "width", + "height", + "columns", + "rows", + "lines", + "tty", + "redirected" + ], + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz" +,"_integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==" +,"_from": "term-size@2.2.0" +} \ No newline at end of file diff --git a/node_modules/time-zone/package.json b/node_modules/time-zone/package.json index 7013adc72..65a9f716a 100644 --- a/node_modules/time-zone/package.json +++ b/node_modules/time-zone/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "time-zone@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "time-zone@1.0.0", - "_id": "time-zone@1.0.0", - "_inBundle": false, - "_integrity": "sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=", - "_location": "/time-zone", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "time-zone@1.0.0", - "name": "time-zone", - "escapedName": "time-zone", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/date-time" - ], - "_resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "time-zone", + "version": "1.0.0", + "description": "Pretty time zone: `+2` or `-9:30`", + "license": "MIT", + "repository": "sindresorhus/time-zone", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/time-zone/issues" - }, - "description": "Pretty time zone: `+2` or `-9:30`", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/time-zone#readme", "keywords": [ "timezone", "utc", @@ -58,14 +28,12 @@ "iso", "zone" ], - "license": "MIT", - "name": "time-zone", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/time-zone.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz" +,"_integrity": "sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=" +,"_from": "time-zone@1.0.0" +} \ No newline at end of file diff --git a/node_modules/to-readable-stream/package.json b/node_modules/to-readable-stream/package.json index 9c15a6107..f1aa3fdf1 100644 --- a/node_modules/to-readable-stream/package.json +++ b/node_modules/to-readable-stream/package.json @@ -1,76 +1,44 @@ { - "_args": [ - [ - "to-readable-stream@1.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "to-readable-stream@1.0.0", - "_id": "to-readable-stream@1.0.0", - "_inBundle": false, - "_integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "_location": "/to-readable-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-readable-stream@1.0.0", - "name": "to-readable-stream", - "escapedName": "to-readable-stream", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/to-readable-stream/issues" - }, - "description": "Convert a string/Buffer/Uint8Array to a readable stream", - "devDependencies": { - "ava": "*", - "get-stream": "^3.0.0", - "xo": "*" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/to-readable-stream#readme", - "keywords": [ - "stream", - "readablestream", - "string", - "buffer", - "uint8array", - "from", - "into", - "to", - "transform", - "convert", - "readable", - "pull" - ], - "license": "MIT", - "name": "to-readable-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/to-readable-stream.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.0" -} + "name": "to-readable-stream", + "version": "1.0.0", + "description": "Convert a string/Buffer/Uint8Array to a readable stream", + "license": "MIT", + "repository": "sindresorhus/to-readable-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "stream", + "readablestream", + "string", + "buffer", + "uint8array", + "from", + "into", + "to", + "transform", + "convert", + "readable", + "pull" + ], + "devDependencies": { + "ava": "*", + "get-stream": "^3.0.0", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz" +,"_integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" +,"_from": "to-readable-stream@1.0.0" +} \ No newline at end of file diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json index ea59177f9..fe98f0685 100644 --- a/node_modules/to-regex-range/package.json +++ b/node_modules/to-regex-range/package.json @@ -1,54 +1,31 @@ { - "_args": [ - [ - "to-regex-range@5.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "to-regex-range@5.0.1", - "_id": "to-regex-range@5.0.1", - "_inBundle": false, - "_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "_location": "/to-regex-range", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-regex-range@5.0.1", - "name": "to-regex-range", - "escapedName": "to-regex-range", - "rawSpec": "5.0.1", - "saveSpec": null, - "fetchSpec": "5.0.1" - }, - "_requiredBy": [ - "/fill-range" + "name": "to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "version": "5.0.1", + "homepage": "https://github.com/micromatch/to-regex-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "_spec": "5.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-number": "^7.0.0" }, - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", "devDependencies": { "fill-range": "^6.0.0", "gulp-format-md": "^2.0.0", @@ -56,13 +33,6 @@ "text-table": "^0.2.0", "time-diff": "^0.3.1" }, - "engines": { - "node": ">=8.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/to-regex-range", "keywords": [ "bash", "date", @@ -88,16 +58,6 @@ "regular expression", "sequence" ], - "license": "MIT", - "main": "index.js", - "name": "to-regex-range", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/to-regex-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "layout": "default", "toc": false, @@ -124,6 +84,9 @@ "repeat-string" ] } - }, - "version": "5.0.1" -} + } + +,"_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" +,"_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" +,"_from": "to-regex-range@5.0.1" +} \ No newline at end of file diff --git a/node_modules/trim-off-newlines/package.json b/node_modules/trim-off-newlines/package.json index 5fcc67356..91a1806f6 100644 --- a/node_modules/trim-off-newlines/package.json +++ b/node_modules/trim-off-newlines/package.json @@ -1,54 +1,23 @@ { - "_args": [ - [ - "trim-off-newlines@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "trim-off-newlines@1.0.1", - "_id": "trim-off-newlines@1.0.1", - "_inBundle": false, - "_integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=", - "_location": "/trim-off-newlines", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "trim-off-newlines@1.0.1", - "name": "trim-off-newlines", - "escapedName": "trim-off-newlines", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "trim-off-newlines", + "version": "1.0.1", + "description": "Similar to String#trim() but removes only newlines", + "license": "MIT", + "repository": "stevemao/trim-off-newlines", "author": { "name": "Steve Mao", "email": "maochenyan@gmail.com", "url": "github.com/stevemao" }, - "bugs": { - "url": "https://github.com/stevemao/trim-off-newlines/issues" - }, - "dependencies": {}, - "description": "Similar to String#trim() but removes only newlines", - "devDependencies": { - "mocha": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/stevemao/trim-off-newlines#readme", "keywords": [ "trim", "newlines", @@ -65,20 +34,19 @@ "remove", "delete" ], - "license": "MIT", - "name": "trim-off-newlines", - "repository": { - "type": "git", - "url": "git+https://github.com/stevemao/trim-off-newlines.git" - }, - "scripts": { - "test": "xo && mocha" + "dependencies": {}, + "devDependencies": { + "mocha": "*", + "xo": "*" }, - "version": "1.0.1", "xo": { "envs": [ "node", "mocha" ] } -} + +,"_resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz" +,"_integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=" +,"_from": "trim-off-newlines@1.0.1" +} \ No newline at end of file diff --git a/node_modules/tslib/package.json b/node_modules/tslib/package.json index ee80ba144..991aea3b7 100644 --- a/node_modules/tslib/package.json +++ b/node_modules/tslib/package.json @@ -1,61 +1,33 @@ { - "_args": [ - [ - "tslib@1.11.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "tslib@1.11.1", - "_id": "tslib@1.11.1", - "_inBundle": false, - "_integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==", - "_location": "/tslib", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "tslib@1.11.1", "name": "tslib", - "escapedName": "tslib", - "rawSpec": "1.11.1", - "saveSpec": null, - "fetchSpec": "1.11.1" - }, - "_requiredBy": [ - "/tslint", - "/tsutils" - ], - "_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", - "_spec": "1.11.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Microsoft Corp." - }, - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, - "description": "Runtime library for TypeScript helper functions", - "homepage": "https://www.typescriptlang.org/", - "jsnext:main": "tslib.es6.js", - "keywords": [ - "TypeScript", - "Microsoft", - "compiler", - "language", - "javascript", - "tslib", - "runtime" - ], - "license": "Apache-2.0", - "main": "tslib.js", - "module": "tslib.es6.js", - "name": "tslib", - "repository": { - "type": "git", - "url": "git+https://github.com/Microsoft/tslib.git" - }, - "sideEffects": false, - "typings": "tslib.d.ts", - "version": "1.11.1" -} + "author": "Microsoft Corp.", + "homepage": "https://www.typescriptlang.org/", + "version": "1.11.1", + "license": "Apache-2.0", + "description": "Runtime library for TypeScript helper functions", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript", + "tslib", + "runtime" + ], + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/tslib.git" + }, + "main": "tslib.js", + "module": "tslib.es6.js", + "jsnext:main": "tslib.es6.js", + "typings": "tslib.d.ts", + "sideEffects": false + +,"_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz" +,"_integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==" +,"_from": "tslib@1.11.1" +} \ No newline at end of file diff --git a/node_modules/tslint/node_modules/semver/package.json b/node_modules/tslint/node_modules/semver/package.json index 18ef06811..31e12dde0 100644 --- a/node_modules/tslint/node_modules/semver/package.json +++ b/node_modules/tslint/node_modules/semver/package.json @@ -1,60 +1,32 @@ { - "_from": "semver@^5.3.0", - "_id": "semver@5.7.1", - "_inBundle": false, - "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "_location": "/tslint/semver", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "semver@^5.3.0", - "name": "semver", - "escapedName": "semver", - "rawSpec": "^5.3.0", - "saveSpec": null, - "fetchSpec": "^5.3.0" - }, - "_requiredBy": [ - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", - "_spec": "semver@^5.3.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/tslint", - "bin": { - "semver": "bin/semver" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "semver", + "version": "5.7.1", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, "devDependencies": { "tap": "^13.0.0-rc.18" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver" + }, "files": [ "bin", "range.bnf", "semver.js" ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true - }, - "version": "5.7.1" -} + } + +,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" +,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" +,"_from": "semver@5.7.1" +} \ No newline at end of file diff --git a/node_modules/tslint/package.json b/node_modules/tslint/package.json index 7bda24cc4..8f918b1d6 100644 --- a/node_modules/tslint/package.json +++ b/node_modules/tslint/package.json @@ -1,125 +1,97 @@ { - "_args": [ - [ - "tslint@6.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "tslint@6.1.0", - "_id": "tslint@6.1.0", - "_inBundle": false, - "_integrity": "sha512-fXjYd/61vU6da04E505OZQGb2VCN2Mq3doeWcOIryuG+eqdmFUXTYVwdhnbEu2k46LNLgUYt9bI5icQze/j0bQ==", - "_location": "/tslint", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "tslint@6.1.0", "name": "tslint", - "escapedName": "tslint", - "rawSpec": "6.1.0", - "saveSpec": null, - "fetchSpec": "6.1.0" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.0.tgz", - "_spec": "6.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bin": { - "tslint": "bin/tslint" - }, - "bugs": { - "url": "https://github.com/palantir/tslint/issues" - }, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.10.0", - "tsutils": "^2.29.0" - }, - "description": "An extensible static analysis linter for the TypeScript language", - "devDependencies": { - "@octokit/rest": "^16.24.3", - "@types/babel__code-frame": "^7.0.1", - "@types/chai": "^3.5.0", - "@types/diff": "^3.2.0", - "@types/glob": "^5.0.30", - "@types/js-yaml": "^3.5.31", - "@types/minimatch": "^2.0.29", - "@types/mkdirp": "^0.5.2", - "@types/mocha": "^5.2.6", - "@types/node": "^7.0.29", - "@types/resolve": "^0.0.4", - "@types/rimraf": "^2.0.2", - "@types/semver": "^5.3.30", - "chai": "^3.5.0", - "husky": "^0.14.3", - "json-stringify-pretty-compact": "^1.2.0", - "mocha": "^6.1.4", - "npm-run-all": "^4.0.2", - "nyc": "^14.1.1", - "prettier": "~1.16.4", - "rimraf": "^2.5.4", - "ts-node": "^3.3.0", - "tslint": "~5.13.0", - "tslint-config-prettier": "^1.18.0", - "tslint-plugin-prettier": "^2.0.1", - "tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative", - "typescript": "~3.8.2", - "yarn-deduplicate": "^1.1.1" - }, - "engines": { - "node": ">=4.8.0" - }, - "homepage": "https://palantir.github.io/tslint", - "keywords": [ - "cli", - "typescript", - "linter" - ], - "license": "Apache-2.0", - "main": "./lib/index.js", - "name": "tslint", - "peerDependencies": { - "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/palantir/tslint.git" - }, - "scripts": { - "clean": "npm-run-all -p clean:core clean:test", - "clean:core": "rimraf lib", - "clean:test": "rimraf build && rimraf test/config/node_modules", - "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", - "compile:core": "tsc -p src", - "compile:scripts": "tsc -p scripts", - "compile:test": "tsc -p test", - "coverage": "rimraf coverage .nyc_output && nyc npm test", - "docs": "node scripts/buildDocs.js", - "lint": "npm-run-all -p lint:from-installed lint:from-bin", - "lint-fix": "yarn lint:from-installed --fix", - "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", - "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", - "publish:local": "./scripts/npmPublish.sh", - "test": "npm-run-all test:pre -p test:mocha test:rules", - "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", - "test:pre": "cd ./test/config && npm install --no-save", - "test:rules": "node ./build/test/ruleTestRunner.js", - "verify": "npm-run-all clean compile lint test docs" - }, - "typings": "./lib/index.d.ts", - "version": "6.1.0" -} + "version": "6.1.0", + "description": "An extensible static analysis linter for the TypeScript language", + "bin": { + "tslint": "./bin/tslint" + }, + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "scripts": { + "clean": "npm-run-all -p clean:core clean:test", + "clean:core": "rimraf lib", + "clean:test": "rimraf build && rimraf test/config/node_modules", + "docs": "node scripts/buildDocs.js", + "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", + "compile:core": "tsc -p src", + "compile:scripts": "tsc -p scripts", + "compile:test": "tsc -p test", + "lint": "npm-run-all -p lint:from-installed lint:from-bin", + "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", + "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", + "lint-fix": "yarn lint:from-installed --fix", + "publish:local": "./scripts/npmPublish.sh", + "test": "npm-run-all test:pre -p test:mocha test:rules", + "test:pre": "cd ./test/config && npm install --no-save", + "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", + "test:rules": "node ./build/test/ruleTestRunner.js", + "verify": "npm-run-all clean compile lint test docs", + "coverage": "rimraf coverage .nyc_output && nyc npm test" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.10.0", + "tsutils": "^2.29.0" + }, + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" + }, + "devDependencies": { + "@octokit/rest": "^16.24.3", + "@types/babel__code-frame": "^7.0.1", + "@types/chai": "^3.5.0", + "@types/diff": "^3.2.0", + "@types/glob": "^5.0.30", + "@types/js-yaml": "^3.5.31", + "@types/minimatch": "^2.0.29", + "@types/mkdirp": "^0.5.2", + "@types/mocha": "^5.2.6", + "@types/node": "^7.0.29", + "@types/resolve": "^0.0.4", + "@types/rimraf": "^2.0.2", + "@types/semver": "^5.3.30", + "chai": "^3.5.0", + "husky": "^0.14.3", + "json-stringify-pretty-compact": "^1.2.0", + "mocha": "^6.1.4", + "npm-run-all": "^4.0.2", + "nyc": "^14.1.1", + "prettier": "~1.16.4", + "rimraf": "^2.5.4", + "ts-node": "^3.3.0", + "tslint": "~5.13.0", + "tslint-config-prettier": "^1.18.0", + "tslint-plugin-prettier": "^2.0.1", + "tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative", + "typescript": "~3.8.2", + "yarn-deduplicate": "^1.1.1" + }, + "engines": { + "node": ">=4.8.0" + }, + "homepage": "https://palantir.github.io/tslint", + "repository": { + "type": "git", + "url": "https://github.com/palantir/tslint.git" + }, + "keywords": [ + "cli", + "typescript", + "linter" + ], + "license": "Apache-2.0" + +,"_resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.0.tgz" +,"_integrity": "sha512-fXjYd/61vU6da04E505OZQGb2VCN2Mq3doeWcOIryuG+eqdmFUXTYVwdhnbEu2k46LNLgUYt9bI5icQze/j0bQ==" +,"_from": "tslint@6.1.0" +} \ No newline at end of file diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json index 92eb8114a..71967fb7a 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -1,43 +1,35 @@ { - "_args": [ - [ - "tsutils@2.29.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "tsutils@2.29.0", - "_id": "tsutils@2.29.0", - "_inBundle": false, - "_integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "_location": "/tsutils", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "tsutils@2.29.0", - "name": "tsutils", - "escapedName": "tsutils", - "rawSpec": "2.29.0", - "saveSpec": null, - "fetchSpec": "2.29.0" - }, - "_requiredBy": [ - "/tslint" - ], - "_resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "_spec": "2.29.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Klaus Meinhardt" - }, - "bugs": { - "url": "https://github.com/ajafff/tsutils/issues" + "name": "tsutils", + "version": "2.29.0", + "description": "utilities for working with typescript's AST", + "scripts": { + "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .", + "lint:tslint": "wotan -m @fimbul/valtyr", + "lint:wotan": "wotan", + "lint": "run-p lint:*", + "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'", + "verify": "run-s compile lint coverage", + "prepublishOnly": "npm run verify", + "coverage": "nyc npm test", + "report-coverage": "cat ./coverage/lcov.info | coveralls", + "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog", + "postpublish": "git push origin master --tags; npm run github-release" }, - "dependencies": { - "tslib": "^1.8.1" + "repository": { + "type": "git", + "url": "https://github.com/ajafff/tsutils" }, - "description": "utilities for working with typescript's AST", + "keywords": [ + "typescript", + "ts", + "ast", + "typeguard", + "utils", + "helper", + "node" + ], + "author": "Klaus Meinhardt", + "license": "MIT", "devDependencies": { "@fimbul/valtyr": "^0.12.0", "@fimbul/wotan": "^0.12.0", @@ -54,37 +46,14 @@ "tslint-consistent-codestyle": "^1.11.0", "typescript": "^3.0.0-rc" }, - "homepage": "https://github.com/ajafff/tsutils#readme", - "keywords": [ - "typescript", - "ts", - "ast", - "typeguard", - "utils", - "helper", - "node" - ], - "license": "MIT", - "name": "tsutils", "peerDependencies": { "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" }, - "repository": { - "type": "git", - "url": "git+https://github.com/ajafff/tsutils.git" - }, - "scripts": { - "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .", - "coverage": "nyc npm test", - "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog", - "lint": "run-p lint:*", - "lint:tslint": "wotan -m @fimbul/valtyr", - "lint:wotan": "wotan", - "postpublish": "git push origin master --tags; npm run github-release", - "prepublishOnly": "npm run verify", - "report-coverage": "cat ./coverage/lcov.info | coveralls", - "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'", - "verify": "run-s compile lint coverage" - }, - "version": "2.29.0" -} + "dependencies": { + "tslib": "^1.8.1" + } + +,"_resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz" +,"_integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==" +,"_from": "tsutils@2.29.0" +} \ No newline at end of file diff --git a/node_modules/typedarray-to-buffer/package.json b/node_modules/typedarray-to-buffer/package.json index e767f2d2c..afaac5233 100644 --- a/node_modules/typedarray-to-buffer/package.json +++ b/node_modules/typedarray-to-buffer/package.json @@ -1,33 +1,7 @@ { - "_args": [ - [ - "typedarray-to-buffer@3.1.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "typedarray-to-buffer@3.1.5", - "_id": "typedarray-to-buffer@3.1.5", - "_inBundle": false, - "_integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "_location": "/typedarray-to-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "typedarray-to-buffer@3.1.5", - "name": "typedarray-to-buffer", - "escapedName": "typedarray-to-buffer", - "rawSpec": "3.1.5", - "saveSpec": null, - "fetchSpec": "3.1.5" - }, - "_requiredBy": [ - "/write-file-atomic" - ], - "_resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "_spec": "3.1.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "typedarray-to-buffer", + "description": "Convert a typed array to a Buffer without a copy", + "version": "3.1.5", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -39,7 +13,6 @@ "dependencies": { "is-typedarray": "^1.0.0" }, - "description": "Convert a typed array to a Buffer without a copy", "devDependencies": { "airtap": "0.0.4", "standard": "*", @@ -64,7 +37,6 @@ ], "license": "MIT", "main": "index.js", - "name": "typedarray-to-buffer", "repository": { "type": "git", "url": "git://github.com/feross/typedarray-to-buffer.git" @@ -74,6 +46,9 @@ "test-browser": "airtap -- test/*.js", "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" - }, - "version": "3.1.5" -} + } + +,"_resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" +,"_integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" +,"_from": "typedarray-to-buffer@3.1.5" +} \ No newline at end of file diff --git a/node_modules/typescript/package.json b/node_modules/typescript/package.json index 4d58d0310..6e6dadab8 100644 --- a/node_modules/typescript/package.json +++ b/node_modules/typescript/package.json @@ -1,165 +1,138 @@ { - "_args": [ - [ - "typescript@3.7.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "typescript@3.7.5", - "_id": "typescript@3.7.5", - "_inBundle": false, - "_integrity": "sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==", - "_location": "/typescript", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "typescript@3.7.5", "name": "typescript", - "escapedName": "typescript", - "rawSpec": "3.7.5", - "saveSpec": null, - "fetchSpec": "3.7.5" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.5.tgz", - "_spec": "3.7.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Microsoft Corp." - }, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "browser": { - "fs": false, - "os": false, - "path": false, - "crypto": false, - "buffer": false, - "@microsoft/typescript-etw": false, - "source-map-support": false, - "inspector": false - }, - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, - "dependencies": {}, - "description": "TypeScript is a language for application scale JavaScript development", - "devDependencies": { - "@octokit/rest": "latest", - "@types/browserify": "latest", - "@types/chai": "latest", - "@types/convert-source-map": "latest", - "@types/glob": "latest", - "@types/gulp": "^4.0.5", - "@types/gulp-concat": "latest", - "@types/gulp-newer": "latest", - "@types/gulp-rename": "0.0.33", - "@types/gulp-sourcemaps": "0.0.32", - "@types/jake": "latest", - "@types/merge2": "latest", - "@types/microsoft__typescript-etw": "latest", - "@types/minimatch": "latest", - "@types/minimist": "latest", - "@types/mkdirp": "latest", - "@types/mocha": "latest", - "@types/ms": "latest", - "@types/node": "latest", - "@types/node-fetch": "^2.3.4", - "@types/q": "latest", - "@types/source-map-support": "latest", - "@types/through2": "latest", - "@types/travis-fold": "latest", - "@types/xml2js": "^0.4.0", - "@typescript-eslint/eslint-plugin": "2.3.2", - "@typescript-eslint/experimental-utils": "2.3.2", - "@typescript-eslint/parser": "2.3.2", - "async": "latest", - "azure-devops-node-api": "^8.0.0", - "browser-resolve": "^1.11.2", - "browserify": "latest", - "chai": "latest", - "chalk": "latest", - "convert-source-map": "latest", - "del": "5.1.0", - "eslint": "6.5.1", - "eslint-formatter-autolinkable-stylish": "1.0.3", - "eslint-plugin-import": "2.18.2", - "eslint-plugin-jsdoc": "15.9.9", - "eslint-plugin-no-null": "1.0.2", - "fancy-log": "latest", - "fs-extra": "^6.0.1", - "glob": "latest", - "gulp": "^4.0.0", - "gulp-concat": "latest", - "gulp-insert": "latest", - "gulp-newer": "latest", - "gulp-rename": "latest", - "gulp-sourcemaps": "latest", - "istanbul": "latest", - "merge2": "latest", - "minimist": "latest", - "mkdirp": "latest", - "mocha": "latest", - "mocha-fivemat-progress-reporter": "latest", - "ms": "latest", - "node-fetch": "^2.6.0", - "plugin-error": "latest", - "pretty-hrtime": "^1.0.3", - "prex": "^0.4.3", - "q": "latest", - "remove-internal": "^2.9.2", - "simple-git": "^1.113.0", - "source-map-support": "latest", - "through2": "latest", - "travis-fold": "latest", - "typescript": "next", - "vinyl": "latest", - "vinyl-sourcemaps-apply": "latest", - "xml2js": "^0.4.19" - }, - "engines": { - "node": ">=4.2.0" - }, - "homepage": "https://www.typescriptlang.org/", - "keywords": [ - "TypeScript", - "Microsoft", - "compiler", - "language", - "javascript" - ], - "license": "Apache-2.0", - "main": "./lib/typescript.js", - "name": "typescript", - "repository": { - "type": "git", - "url": "git+https://github.com/Microsoft/TypeScript.git" - }, - "scripts": { - "build": "npm run build:compiler && npm run build:tests", - "build:compiler": "gulp local", - "build:tests": "gulp tests", - "clean": "gulp clean", - "gulp": "gulp", - "jake": "gulp", - "lint": "gulp lint", - "lint:ci": "gulp lint --ci", - "lint:compiler": "gulp lint-compiler", - "lint:scripts": "gulp lint-scripts", - "prepare": "gulp build-eslint-rules", - "pretest": "gulp tests", - "setup-hooks": "node scripts/link-hooks.js", - "start": "node lib/tsc", - "test": "gulp runtests-parallel --light=false", - "test:eslint-rules": "gulp run-eslint-rules-tests", - "update-costly-tests": "node scripts/costly-tests.js" - }, - "typings": "./lib/typescript.d.ts", - "version": "3.7.5" -} + "author": "Microsoft Corp.", + "homepage": "https://www.typescriptlang.org/", + "version": "3.7.5", + "license": "Apache-2.0", + "description": "TypeScript is a language for application scale JavaScript development", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript" + ], + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/TypeScript.git" + }, + "main": "./lib/typescript.js", + "typings": "./lib/typescript.d.ts", + "bin": { + "tsc": "./bin/tsc", + "tsserver": "./bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + }, + "devDependencies": { + "@octokit/rest": "latest", + "@types/browserify": "latest", + "@types/chai": "latest", + "@types/convert-source-map": "latest", + "@types/glob": "latest", + "@types/gulp": "^4.0.5", + "@types/gulp-concat": "latest", + "@types/gulp-newer": "latest", + "@types/gulp-rename": "0.0.33", + "@types/gulp-sourcemaps": "0.0.32", + "@types/jake": "latest", + "@types/merge2": "latest", + "@types/microsoft__typescript-etw": "latest", + "@types/minimatch": "latest", + "@types/minimist": "latest", + "@types/mkdirp": "latest", + "@types/mocha": "latest", + "@types/ms": "latest", + "@types/node": "latest", + "@types/node-fetch": "^2.3.4", + "@types/q": "latest", + "@types/source-map-support": "latest", + "@types/through2": "latest", + "@types/travis-fold": "latest", + "@types/xml2js": "^0.4.0", + "@typescript-eslint/eslint-plugin": "2.3.2", + "@typescript-eslint/experimental-utils": "2.3.2", + "@typescript-eslint/parser": "2.3.2", + "async": "latest", + "azure-devops-node-api": "^8.0.0", + "browser-resolve": "^1.11.2", + "browserify": "latest", + "chai": "latest", + "chalk": "latest", + "convert-source-map": "latest", + "del": "5.1.0", + "eslint": "6.5.1", + "eslint-formatter-autolinkable-stylish": "1.0.3", + "eslint-plugin-import": "2.18.2", + "eslint-plugin-jsdoc": "15.9.9", + "eslint-plugin-no-null": "1.0.2", + "fancy-log": "latest", + "fs-extra": "^6.0.1", + "glob": "latest", + "gulp": "^4.0.0", + "gulp-concat": "latest", + "gulp-insert": "latest", + "gulp-newer": "latest", + "gulp-rename": "latest", + "gulp-sourcemaps": "latest", + "istanbul": "latest", + "merge2": "latest", + "minimist": "latest", + "mkdirp": "latest", + "mocha": "latest", + "mocha-fivemat-progress-reporter": "latest", + "ms": "latest", + "node-fetch": "^2.6.0", + "plugin-error": "latest", + "pretty-hrtime": "^1.0.3", + "prex": "^0.4.3", + "q": "latest", + "remove-internal": "^2.9.2", + "simple-git": "^1.113.0", + "source-map-support": "latest", + "through2": "latest", + "travis-fold": "latest", + "typescript": "next", + "vinyl": "latest", + "vinyl-sourcemaps-apply": "latest", + "xml2js": "^0.4.19" + }, + "scripts": { + "prepare": "gulp build-eslint-rules", + "pretest": "gulp tests", + "test": "gulp runtests-parallel --light=false", + "test:eslint-rules": "gulp run-eslint-rules-tests", + "build": "npm run build:compiler && npm run build:tests", + "build:compiler": "gulp local", + "build:tests": "gulp tests", + "start": "node lib/tsc", + "clean": "gulp clean", + "gulp": "gulp", + "jake": "gulp", + "lint": "gulp lint", + "lint:ci": "gulp lint --ci", + "lint:compiler": "gulp lint-compiler", + "lint:scripts": "gulp lint-scripts", + "setup-hooks": "node scripts/link-hooks.js", + "update-costly-tests": "node scripts/costly-tests.js" + }, + "browser": { + "fs": false, + "os": false, + "path": false, + "crypto": false, + "buffer": false, + "@microsoft/typescript-etw": false, + "source-map-support": false, + "inspector": false + }, + "dependencies": {} + +,"_resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.5.tgz" +,"_integrity": "sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==" +,"_from": "typescript@3.7.5" +} \ No newline at end of file diff --git a/node_modules/unique-string/package.json b/node_modules/unique-string/package.json index b1c4b6522..808e91cf2 100644 --- a/node_modules/unique-string/package.json +++ b/node_modules/unique-string/package.json @@ -1,76 +1,44 @@ { - "_args": [ - [ - "unique-string@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "unique-string@2.0.0", - "_id": "unique-string@2.0.0", - "_inBundle": false, - "_integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "_location": "/unique-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "unique-string@2.0.0", - "name": "unique-string", - "escapedName": "unique-string", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/configstore" - ], - "_resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/unique-string/issues" - }, - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "description": "Generate a unique random string", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/unique-string#readme", - "keywords": [ - "unique", - "string", - "random", - "text", - "id", - "identifier", - "slug", - "hex" - ], - "license": "MIT", - "name": "unique-string", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/unique-string.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" -} + "name": "unique-string", + "version": "2.0.0", + "description": "Generate a unique random string", + "license": "MIT", + "repository": "sindresorhus/unique-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "unique", + "string", + "random", + "text", + "id", + "identifier", + "slug", + "hex" + ], + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" +,"_integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" +,"_from": "unique-string@2.0.0" +} \ No newline at end of file diff --git a/node_modules/universal-user-agent/package.json b/node_modules/universal-user-agent/package.json index 7052e18ef..9870ef087 100644 --- a/node_modules/universal-user-agent/package.json +++ b/node_modules/universal-user-agent/package.json @@ -1,41 +1,19 @@ { - "_args": [ - [ - "universal-user-agent@5.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "universal-user-agent@5.0.0", - "_id": "universal-user-agent@5.0.0", - "_inBundle": false, - "_integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==", - "_location": "/universal-user-agent", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "universal-user-agent@5.0.0", - "name": "universal-user-agent", - "escapedName": "universal-user-agent", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/@octokit/core", - "/@octokit/endpoint", - "/@octokit/request" + "name": "universal-user-agent", + "description": "Get a user agent string in both browser and node", + "version": "5.0.0", + "license": "ISC", + "files": [ + "dist-*/", + "bin/" ], - "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/gr2m/universal-user-agent/issues" - }, + "pika": true, + "sideEffects": false, + "keywords": [], + "repository": "https://github.com/gr2m/universal-user-agent.git", "dependencies": { "os-name": "^3.1.0" }, - "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", "@pika/pack": "^0.5.0", @@ -48,23 +26,12 @@ "ts-jest": "^25.1.0", "typescript": "^3.6.2" }, - "files": [ - "dist-*/", - "bin/" - ], - "homepage": "https://github.com/gr2m/universal-user-agent#readme", - "keywords": [], - "license": "ISC", - "main": "dist-node/index.js", - "module": "dist-web/index.js", - "name": "universal-user-agent", - "pika": true, - "repository": { - "type": "git", - "url": "git+https://github.com/gr2m/universal-user-agent.git" - }, - "sideEffects": false, "source": "dist-src/index.js", "types": "dist-types/index.d.ts", - "version": "5.0.0" -} + "main": "dist-node/index.js", + "module": "dist-web/index.js" + +,"_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz" +,"_integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==" +,"_from": "universal-user-agent@5.0.0" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/ansi-styles/package.json b/node_modules/update-notifier/node_modules/ansi-styles/package.json index 5c8229d32..f970a55ac 100644 --- a/node_modules/update-notifier/node_modules/ansi-styles/package.json +++ b/node_modules/update-notifier/node_modules/ansi-styles/package.json @@ -1,93 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/update-notifier/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/update-notifier/chalk" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/chalk/package.json b/node_modules/update-notifier/node_modules/chalk/package.json index 6b5650501..c75d30e94 100644 --- a/node_modules/update-notifier/node_modules/chalk/package.json +++ b/node_modules/update-notifier/node_modules/chalk/package.json @@ -1,99 +1,67 @@ { - "_args": [ - [ - "chalk@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "chalk@3.0.0", - "_id": "chalk@3.0.0", - "_inBundle": false, - "_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "_location": "/update-notifier/chalk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chalk@3.0.0", - "name": "chalk", - "escapedName": "chalk", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "description": "Terminal string styling done right", - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "source", - "index.d.ts" - ], - "homepage": "https://github.com/chalk/chalk#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" - }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" - }, - "version": "3.0.0", - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } -} + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } + +,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" +,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" +,"_from": "chalk@3.0.0" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/color-convert/package.json b/node_modules/update-notifier/node_modules/color-convert/package.json index ebd0d50f9..26354b46e 100644 --- a/node_modules/update-notifier/node_modules/color-convert/package.json +++ b/node_modules/update-notifier/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/update-notifier/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/update-notifier/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/color-name/package.json b/node_modules/update-notifier/node_modules/color-name/package.json index 81a4f048c..14739f13f 100644 --- a/node_modules/update-notifier/node_modules/color-name/package.json +++ b/node_modules/update-notifier/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/update-notifier/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/update-notifier/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/has-flag/package.json b/node_modules/update-notifier/node_modules/has-flag/package.json index a0ada6011..5b10a2844 100644 --- a/node_modules/update-notifier/node_modules/has-flag/package.json +++ b/node_modules/update-notifier/node_modules/has-flag/package.json @@ -1,82 +1,50 @@ { - "_args": [ - [ - "has-flag@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "has-flag@4.0.0", - "_id": "has-flag@4.0.0", - "_inBundle": false, - "_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "_location": "/update-notifier/has-flag", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "has-flag@4.0.0", - "name": "has-flag", - "escapedName": "has-flag", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/update-notifier/supports-color" - ], - "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "license": "MIT", - "name": "has-flag", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/has-flag.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" +,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" +,"_from": "has-flag@4.0.0" +} \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/supports-color/package.json b/node_modules/update-notifier/node_modules/supports-color/package.json index 13f6df31b..f0982eb21 100644 --- a/node_modules/update-notifier/node_modules/supports-color/package.json +++ b/node_modules/update-notifier/node_modules/supports-color/package.json @@ -1,89 +1,57 @@ { - "_args": [ - [ - "supports-color@7.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "supports-color@7.1.0", - "_id": "supports-color@7.1.0", - "_inBundle": false, - "_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "_location": "/update-notifier/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@7.1.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "7.1.0", - "saveSpec": null, - "fetchSpec": "7.1.0" - }, - "_requiredBy": [ - "/update-notifier/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "_spec": "7.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^4.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "browser.js" - ], - "homepage": "https://github.com/chalk/supports-color#readme", - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "7.1.0" -} + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" + +,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" +,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" +,"_from": "supports-color@7.1.0" +} \ No newline at end of file diff --git a/node_modules/update-notifier/package.json b/node_modules/update-notifier/package.json index 80468f269..5aa45bd9c 100644 --- a/node_modules/update-notifier/package.json +++ b/node_modules/update-notifier/package.json @@ -1,102 +1,68 @@ { - "_args": [ - [ - "update-notifier@4.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "update-notifier@4.1.0", - "_id": "update-notifier@4.1.0", - "_inBundle": false, - "_integrity": "sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew==", - "_location": "/update-notifier", - "_phantomChildren": { - "@types/color-name": "1.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "update-notifier@4.1.0", - "name": "update-notifier", - "escapedName": "update-notifier", - "rawSpec": "4.1.0", - "saveSpec": null, - "fetchSpec": "4.1.0" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.0.tgz", - "_spec": "4.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/yeoman/update-notifier/issues" - }, - "dependencies": { - "boxen": "^4.2.0", - "chalk": "^3.0.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.3.1", - "is-npm": "^4.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.0.0", - "pupa": "^2.0.1", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - }, - "description": "Update notifications for your CLI app", - "devDependencies": { - "ava": "^2.4.0", - "clear-module": "^4.0.0", - "fixture-stdout": "^0.2.1", - "mock-require": "^3.0.3", - "strip-ansi": "^6.0.0", - "xo": "^0.26.1" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "check.js" - ], - "funding": "https://github.com/yeoman/update-notifier?sponsor=1", - "homepage": "https://github.com/yeoman/update-notifier#readme", - "keywords": [ - "npm", - "update", - "updater", - "notify", - "notifier", - "check", - "checker", - "cli", - "module", - "package", - "version" - ], - "license": "BSD-2-Clause", - "name": "update-notifier", - "repository": { - "type": "git", - "url": "git+https://github.com/yeoman/update-notifier.git" - }, - "scripts": { - "test": "xo && ava --timeout=20s -s" - }, - "version": "4.1.0", - "xo": { - "rules": { - "prefer-object-spread": 0 - } - } -} + "name": "update-notifier", + "version": "4.1.0", + "description": "Update notifications for your CLI app", + "license": "BSD-2-Clause", + "repository": "yeoman/update-notifier", + "funding": "https://github.com/yeoman/update-notifier?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava --timeout=20s -s" + }, + "files": [ + "index.js", + "check.js" + ], + "keywords": [ + "npm", + "update", + "updater", + "notify", + "notifier", + "check", + "checker", + "cli", + "module", + "package", + "version" + ], + "dependencies": { + "boxen": "^4.2.0", + "chalk": "^3.0.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.3.1", + "is-npm": "^4.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.0.0", + "pupa": "^2.0.1", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "clear-module": "^4.0.0", + "fixture-stdout": "^0.2.1", + "mock-require": "^3.0.3", + "strip-ansi": "^6.0.0", + "xo": "^0.26.1" + }, + "xo": { + "rules": { + "prefer-object-spread": 0 + } + } + +,"_resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.0.tgz" +,"_integrity": "sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew==" +,"_from": "update-notifier@4.1.0" +} \ No newline at end of file diff --git a/node_modules/url-parse-lax/package.json b/node_modules/url-parse-lax/package.json index d60bbdf48..f62c1616c 100644 --- a/node_modules/url-parse-lax/package.json +++ b/node_modules/url-parse-lax/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "url-parse-lax@3.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "url-parse-lax@3.0.0", - "_id": "url-parse-lax@3.0.0", - "_inBundle": false, - "_integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", - "_location": "/url-parse-lax", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "url-parse-lax@3.0.0", - "name": "url-parse-lax", - "escapedName": "url-parse-lax", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/got" - ], - "_resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", + "name": "url-parse-lax", + "version": "3.0.0", + "description": "Lax url.parse() with support for protocol-less URLs & IPs", + "license": "MIT", + "repository": "sindresorhus/url-parse-lax", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/url-parse-lax/issues" - }, - "dependencies": { - "prepend-http": "^2.0.0" - }, - "description": "Lax url.parse() with support for protocol-less URLs & IPs", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/url-parse-lax#readme", "keywords": [ "url", "uri", @@ -65,14 +32,15 @@ "ipv4", "ipv6" ], - "license": "MIT", - "name": "url-parse-lax", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/url-parse-lax.git" - }, - "scripts": { - "test": "xo && ava" + "dependencies": { + "prepend-http": "^2.0.0" }, - "version": "3.0.0" -} + "devDependencies": { + "ava": "*", + "xo": "*" + } + +,"_resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" +,"_integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" +,"_from": "url-parse-lax@3.0.0" +} \ No newline at end of file diff --git a/node_modules/util/package.json b/node_modules/util/package.json index 9badf98c7..e007ee0db 100644 --- a/node_modules/util/package.json +++ b/node_modules/util/package.json @@ -1,66 +1,39 @@ { - "_args": [ - [ - "util@0.10.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "util@0.10.4", - "_id": "util@0.10.4", - "_inBundle": false, - "_integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "_location": "/util", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "util@0.10.4", - "name": "util", - "escapedName": "util", - "rawSpec": "0.10.4", - "saveSpec": null, - "fetchSpec": "0.10.4" - }, - "_requiredBy": [ - "/path" - ], - "_resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "_spec": "0.10.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", "author": { "name": "Joyent", "url": "http://www.joyent.com" }, - "browser": { - "./support/isBuffer.js": "./support/isBufferBrowser.js" - }, - "bugs": { - "url": "https://github.com/defunctzombie/node-util/issues" - }, - "dependencies": { - "inherits": "2.0.3" - }, + "name": "util", "description": "Node.JS util module", - "devDependencies": { - "zuul": "~1.0.9" - }, - "files": [ - "util.js", - "support" - ], - "homepage": "https://github.com/defunctzombie/node-util", "keywords": [ "util" ], - "license": "MIT", - "main": "./util.js", - "name": "util", + "version": "0.10.4", + "homepage": "https://github.com/defunctzombie/node-util", "repository": { "type": "git", - "url": "git://github.com/defunctzombie/node-util.git" + "url": "git://github.com/defunctzombie/node-util" }, + "main": "./util.js", + "files": [ + "util.js", + "support" + ], "scripts": { "test": "node test/node/*.js && zuul test/browser/*.js" }, - "version": "0.10.4" -} + "dependencies": { + "inherits": "2.0.3" + }, + "license": "MIT", + "devDependencies": { + "zuul": "~1.0.9" + }, + "browser": { + "./support/isBuffer.js": "./support/isBufferBrowser.js" + } + +,"_resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz" +,"_integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==" +,"_from": "util@0.10.4" +} \ No newline at end of file diff --git a/node_modules/uuid/package.json b/node_modules/uuid/package.json index a63987214..3777855f5 100644 --- a/node_modules/uuid/package.json +++ b/node_modules/uuid/package.json @@ -1,68 +1,21 @@ { - "_from": "uuid@^3.3.2", - "_id": "uuid@3.4.0", - "_inBundle": false, - "_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "_location": "/uuid", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "uuid@^3.3.2", - "name": "uuid", - "escapedName": "uuid", - "rawSpec": "^3.3.2", - "saveSpec": null, - "fetchSpec": "^3.3.2" - }, - "_requiredBy": [ - "/@actions/tool-cache" - ], - "_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "_shasum": "b23e4358afa8a202fe7a100af1f5f883f02007ee", - "_spec": "uuid@^3.3.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action/node_modules/@actions/tool-cache", - "bin": { - "uuid": "bin/uuid" - }, - "browser": { - "./lib/rng.js": "./lib/rng-browser.js", - "./lib/sha1.js": "./lib/sha1-browser.js", - "./lib/md5.js": "./lib/md5-browser.js" - }, - "bugs": { - "url": "https://github.com/uuidjs/uuid/issues" - }, - "bundleDependencies": false, + "name": "uuid", + "version": "3.4.0", + "description": "RFC4122 (v1, v4, and v5) UUIDs", "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, - "contributors": [ - { - "name": "Robert Kieffer", - "email": "robert@broofa.com" - }, - { - "name": "Christoph Tavan", - "email": "dev@tavan.de" - }, - { - "name": "AJ ONeal", - "email": "coolaj86@gmail.com" - }, - { - "name": "Vincent Voyer", - "email": "vincent@zeroload.net" - }, - { - "name": "Roman Shtylman", - "email": "shtylman@gmail.com" - } + "keywords": [ + "uuid", + "guid", + "rfc4122" ], - "deprecated": false, - "description": "RFC4122 (v1, v4, and v5) UUIDs", + "license": "MIT", + "bin": { + "uuid": "./bin/uuid" + }, "devDependencies": { "@commitlint/cli": "~8.2.0", "@commitlint/config-conventional": "~8.2.0", @@ -72,29 +25,29 @@ "runmd": "1.2.1", "standard-version": "7.0.0" }, - "homepage": "https://github.com/uuidjs/uuid#readme", - "husky": { - "hooks": { - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" - } - }, - "keywords": [ - "uuid", - "guid", - "rfc4122" - ], - "license": "MIT", - "name": "uuid", - "repository": { - "type": "git", - "url": "git+https://github.com/uuidjs/uuid.git" - }, "scripts": { "lint": "eslint .", + "test": "npm run lint && mocha test/test.js", "md": "runmd --watch --output=README.md README_js.md", - "prepare": "runmd --output=README.md README_js.md", "release": "standard-version", - "test": "npm run lint && mocha test/test.js" + "prepare": "runmd --output=README.md README_js.md" }, - "version": "3.4.0" -} + "browser": { + "./lib/rng.js": "./lib/rng-browser.js", + "./lib/sha1.js": "./lib/sha1-browser.js", + "./lib/md5.js": "./lib/md5-browser.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/uuidjs/uuid.git" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + } + } + +,"_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" +,"_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" +,"_from": "uuid@3.4.0" +} \ No newline at end of file diff --git a/node_modules/validate-npm-package-license/package.json b/node_modules/validate-npm-package-license/package.json index a3c6f536c..586f12a17 100644 --- a/node_modules/validate-npm-package-license/package.json +++ b/node_modules/validate-npm-package-license/package.json @@ -1,57 +1,19 @@ { - "_args": [ - [ - "validate-npm-package-license@3.0.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "validate-npm-package-license@3.0.4", - "_id": "validate-npm-package-license@3.0.4", - "_inBundle": false, - "_integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "_location": "/validate-npm-package-license", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "validate-npm-package-license@3.0.4", - "name": "validate-npm-package-license", - "escapedName": "validate-npm-package-license", - "rawSpec": "3.0.4", - "saveSpec": null, - "fetchSpec": "3.0.4" - }, - "_requiredBy": [ - "/normalize-package-data" - ], - "_resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "_spec": "3.0.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Kyle E. Mitchell", - "email": "kyle@kemitchell.com", - "url": "https://kemitchell.com" - }, - "bugs": { - "url": "https://github.com/kemitchell/validate-npm-package-license.js/issues" - }, + "name": "validate-npm-package-license", + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "version": "3.0.4", + "author": "Kyle E. Mitchell (https://kemitchell.com)", "contributors": [ - { - "name": "Mark Stacey", - "email": "markjstacey@gmail.com" - } + "Mark Stacey " ], "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" }, - "description": "Give me a string and I'll tell you if it's a valid npm package license string", "devDependencies": { "defence-cli": "^2.0.1", "replace-require-self": "^1.0.0" }, - "homepage": "https://github.com/kemitchell/validate-npm-package-license.js#readme", "keywords": [ "license", "npm", @@ -59,13 +21,12 @@ "validation" ], "license": "Apache-2.0", - "name": "validate-npm-package-license", - "repository": { - "type": "git", - "url": "git+https://github.com/kemitchell/validate-npm-package-license.js.git" - }, + "repository": "kemitchell/validate-npm-package-license.js", "scripts": { "test": "defence README.md | replace-require-self | node" - }, - "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==" +,"_from": "validate-npm-package-license@3.0.4" +} \ No newline at end of file diff --git a/node_modules/wcwidth/package.json b/node_modules/wcwidth/package.json index 32c0dc5e9..12cb1c239 100644 --- a/node_modules/wcwidth/package.json +++ b/node_modules/wcwidth/package.json @@ -1,58 +1,19 @@ { - "_args": [ - [ - "wcwidth@1.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "wcwidth@1.0.1", - "_id": "wcwidth@1.0.1", - "_inBundle": false, - "_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", - "_location": "/wcwidth", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "wcwidth@1.0.1", - "name": "wcwidth", - "escapedName": "wcwidth", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/ora" - ], - "_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Tim Oxley" - }, - "bugs": { - "url": "https://github.com/timoxley/wcwidth/issues" - }, + "name": "wcwidth", + "version": "1.0.1", + "description": "Port of C's wcwidth() and wcswidth()", + "author": "Tim Oxley", "contributors": [ - { - "name": "Woong Jun", - "email": "woong.jun@gmail.com", - "url": "http://code.woong.org/" - } + "Woong Jun (http://code.woong.org/)" ], + "main": "index.js", "dependencies": { "defaults": "^1.0.3" }, - "description": "Port of C's wcwidth() and wcswidth()", "devDependencies": { "tape": "^4.5.1" }, - "directories": { - "doc": "docs", - "test": "test" - }, - "homepage": "https://github.com/timoxley/wcwidth#readme", + "license": "MIT", "keywords": [ "wide character", "wc", @@ -63,15 +24,23 @@ "wcwidth", "wcswidth" ], - "license": "MIT", - "main": "index.js", - "name": "wcwidth", + "directories": { + "doc": "docs", + "test": "test" + }, + "scripts": { + "test": "tape test/*.js" + }, "repository": { "type": "git", "url": "git+https://github.com/timoxley/wcwidth.git" }, - "scripts": { - "test": "tape test/*.js" + "bugs": { + "url": "https://github.com/timoxley/wcwidth/issues" }, - "version": "1.0.1" -} + "homepage": "https://github.com/timoxley/wcwidth#readme" + +,"_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" +,"_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" +,"_from": "wcwidth@1.0.1" +} \ No newline at end of file diff --git a/node_modules/well-known-symbols/package.json b/node_modules/well-known-symbols/package.json index 55b8900e5..83e7f542d 100644 --- a/node_modules/well-known-symbols/package.json +++ b/node_modules/well-known-symbols/package.json @@ -1,54 +1,22 @@ { - "_args": [ - [ - "well-known-symbols@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "well-known-symbols@2.0.0", - "_id": "well-known-symbols@2.0.0", - "_inBundle": false, - "_integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", - "_location": "/well-known-symbols", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "well-known-symbols@2.0.0", - "name": "well-known-symbols", - "escapedName": "well-known-symbols", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/concordance" - ], - "_resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Mark Wubben", - "url": "https://novemberborn.net/" - }, - "bugs": { - "url": "https://github.com/novemberborn/well-known-symbols/issues" - }, + "name": "well-known-symbols", + "version": "2.0.0", "description": "Check whether a symbol is well-known", - "devDependencies": { - "@novemberborn/as-i-preach": "^11.0.0", - "ava": "1.0.0-beta.8", - "codecov": "^3.1.0", - "nyc": "^13.0.1" - }, - "engines": { - "node": ">=6" - }, + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/novemberborn/well-known-symbols#readme", + "engines": { + "node": ">=6" + }, + "scripts": { + "lint": "as-i-preach", + "test": "npm -s run lint && nyc ava" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/well-known-symbols.git" + }, "keywords": [ "symbols", "es6", @@ -58,9 +26,18 @@ "es2016", "es2017" ], + "author": "Mark Wubben (https://novemberborn.net/)", "license": "ISC", - "main": "index.js", - "name": "well-known-symbols", + "bugs": { + "url": "https://github.com/novemberborn/well-known-symbols/issues" + }, + "homepage": "https://github.com/novemberborn/well-known-symbols#readme", + "devDependencies": { + "@novemberborn/as-i-preach": "^11.0.0", + "ava": "1.0.0-beta.8", + "codecov": "^3.1.0", + "nyc": "^13.0.1" + }, "nyc": { "reporter": [ "html", @@ -68,14 +45,9 @@ "text" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/novemberborn/well-known-symbols.git" - }, - "scripts": { - "lint": "as-i-preach", - "test": "npm -s run lint && nyc ava" - }, - "standard-engine": "@novemberborn/as-i-preach", - "version": "2.0.0" -} + "standard-engine": "@novemberborn/as-i-preach" + +,"_resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz" +,"_integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==" +,"_from": "well-known-symbols@2.0.0" +} \ No newline at end of file diff --git a/node_modules/which-module/package.json b/node_modules/which-module/package.json index 65bcc211c..fc272b5fa 100644 --- a/node_modules/which-module/package.json +++ b/node_modules/which-module/package.json @@ -1,51 +1,21 @@ { - "_args": [ - [ - "which-module@2.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "which-module@2.0.0", - "_id": "which-module@2.0.0", - "_inBundle": false, - "_integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "_location": "/which-module", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "which-module@2.0.0", - "name": "which-module", - "escapedName": "which-module", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "nexdrew" - }, - "bugs": { - "url": "https://github.com/nexdrew/which-module/issues" - }, + "name": "which-module", + "version": "2.0.0", "description": "Find the module object for something that was require()d", - "devDependencies": { - "ava": "^0.19.1", - "coveralls": "^2.13.1", - "nyc": "^10.3.0", - "standard": "^10.0.2", - "standard-version": "^4.0.0" + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "standard-version" }, "files": [ "index.js" ], - "homepage": "https://github.com/nexdrew/which-module#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/nexdrew/which-module.git" + }, "keywords": [ "which", "module", @@ -55,18 +25,21 @@ "reverse", "lookup" ], + "author": "nexdrew", "license": "ISC", - "main": "index.js", - "name": "which-module", - "repository": { - "type": "git", - "url": "git+https://github.com/nexdrew/which-module.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "pretest": "standard", - "release": "standard-version", - "test": "nyc ava" + "bugs": { + "url": "https://github.com/nexdrew/which-module/issues" }, - "version": "2.0.0" -} + "homepage": "https://github.com/nexdrew/which-module#readme", + "devDependencies": { + "ava": "^0.19.1", + "coveralls": "^2.13.1", + "nyc": "^10.3.0", + "standard": "^10.0.2", + "standard-version": "^4.0.0" + } + +,"_resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" +,"_integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" +,"_from": "which-module@2.0.0" +} \ No newline at end of file diff --git a/node_modules/which/package.json b/node_modules/which/package.json index df99cdc6d..740862f21 100644 --- a/node_modules/which/package.json +++ b/node_modules/which/package.json @@ -1,68 +1,34 @@ { - "_args": [ - [ - "which@1.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "which@1.3.1", - "_id": "which@1.3.1", - "_inBundle": false, - "_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "_location": "/which", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "which@1.3.1", - "name": "which", - "escapedName": "which", - "rawSpec": "1.3.1", - "saveSpec": null, - "fetchSpec": "1.3.1" - }, - "_requiredBy": [ - "/cross-spawn" - ], - "_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "_spec": "1.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "bin": { - "which": "bin/which" - }, - "bugs": { - "url": "https://github.com/isaacs/node-which/issues" + "author": "Isaac Z. Schlueter (http://blog.izs.me)", + "name": "which", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "version": "1.3.1", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" }, + "main": "which.js", + "bin": "./bin/which", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, - "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", "devDependencies": { "mkdirp": "^0.5.0", "rimraf": "^2.6.2", "tap": "^12.0.1" }, - "files": [ - "which.js", - "bin/which" - ], - "homepage": "https://github.com/isaacs/node-which#readme", - "license": "ISC", - "main": "which.js", - "name": "which", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-which.git" - }, "scripts": { + "test": "tap test/*.js --cov", "changelog": "bash gen-changelog.sh", - "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}", - "test": "tap test/*.js --cov" + "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}" }, - "version": "1.3.1" -} + "files": [ + "which.js", + "bin/which" + ] + +,"_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz" +,"_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" +,"_from": "which@1.3.1" +} \ No newline at end of file diff --git a/node_modules/widest-line/package.json b/node_modules/widest-line/package.json index ae73e2d9c..5795ae553 100644 --- a/node_modules/widest-line/package.json +++ b/node_modules/widest-line/package.json @@ -1,90 +1,58 @@ { - "_args": [ - [ - "widest-line@3.1.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "widest-line@3.1.0", - "_id": "widest-line@3.1.0", - "_inBundle": false, - "_integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "_location": "/widest-line", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "widest-line@3.1.0", - "name": "widest-line", - "escapedName": "widest-line", - "rawSpec": "3.1.0", - "saveSpec": null, - "fetchSpec": "3.1.0" - }, - "_requiredBy": [ - "/boxen" - ], - "_resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "_spec": "3.1.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/widest-line/issues" - }, - "dependencies": { - "string-width": "^4.0.0" - }, - "description": "Get the visual width of the widest line in a string - the number of columns required to display it", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/widest-line#readme", - "keywords": [ - "string", - "character", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "license": "MIT", - "name": "widest-line", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/widest-line.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.0" -} + "name": "widest-line", + "version": "3.1.0", + "description": "Get the visual width of the widest line in a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/widest-line", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "character", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "string-width": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" +,"_integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" +,"_from": "widest-line@3.1.0" +} \ No newline at end of file diff --git a/node_modules/windows-release/package.json b/node_modules/windows-release/package.json index ef3874c27..c9adabf01 100644 --- a/node_modules/windows-release/package.json +++ b/node_modules/windows-release/package.json @@ -1,78 +1,47 @@ { - "_args": [ - [ - "windows-release@3.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "windows-release@3.2.0", - "_id": "windows-release@3.2.0", - "_inBundle": false, - "_integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==", - "_location": "/windows-release", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "windows-release@3.2.0", - "name": "windows-release", - "escapedName": "windows-release", - "rawSpec": "3.2.0", - "saveSpec": null, - "fetchSpec": "3.2.0" - }, - "_requiredBy": [ - "/os-name" - ], - "_resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz", - "_spec": "3.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/windows-release/issues" - }, - "dependencies": { - "execa": "^1.0.0" - }, - "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/windows-release#readme", - "keywords": [ - "os", - "win", - "win32", - "windows", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version" - ], - "license": "MIT", - "name": "windows-release", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/windows-release.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.2.0" -} + "name": "windows-release", + "version": "3.2.0", + "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", + "license": "MIT", + "repository": "sindresorhus/windows-release", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "os", + "win", + "win32", + "windows", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version" + ], + "dependencies": { + "execa": "^1.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz" +,"_integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==" +,"_from": "windows-release@3.2.0" +} \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json index 65069feb2..f970a55ac 100644 --- a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json @@ -1,93 +1,61 @@ { - "_args": [ - [ - "ansi-styles@4.2.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "ansi-styles@4.2.1", - "_id": "ansi-styles@4.2.1", - "_inBundle": false, - "_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "_location": "/wrap-ansi/ansi-styles", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ansi-styles@4.2.1", - "name": "ansi-styles", - "escapedName": "ansi-styles", - "rawSpec": "4.2.1", - "saveSpec": null, - "fetchSpec": "4.2.1" - }, - "_requiredBy": [ - "/wrap-ansi" - ], - "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "_spec": "4.2.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "homepage": "https://github.com/chalk/ansi-styles#readme", - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" - }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava && tsd" - }, - "version": "4.2.1" -} + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } + +,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" +,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" +,"_from": "ansi-styles@4.2.1" +} \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/color-convert/package.json b/node_modules/wrap-ansi/node_modules/color-convert/package.json index ed6f88eb3..26354b46e 100644 --- a/node_modules/wrap-ansi/node_modules/color-convert/package.json +++ b/node_modules/wrap-ansi/node_modules/color-convert/package.json @@ -1,57 +1,17 @@ { - "_args": [ - [ - "color-convert@2.0.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-convert@2.0.1", - "_id": "color-convert@2.0.1", - "_inBundle": false, - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "_location": "/wrap-ansi/color-convert", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-convert@2.0.1", - "name": "color-convert", - "escapedName": "color-convert", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/wrap-ansi/ansi-styles" - ], - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "dependencies": { - "color-name": "~1.1.4" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^2.4.2", - "xo": "^0.24.0" + "version": "2.0.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, "engines": { "node": ">=7.0.0" }, - "files": [ - "index.js", - "conversions.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -66,22 +26,27 @@ "ansi", "ansi16" ], - "license": "MIT", - "name": "color-convert", - "repository": { - "type": "git", - "url": "git+https://github.com/Qix-/color-convert.git" - }, - "scripts": { - "pretest": "xo", - "test": "node test/basic.js" - }, - "version": "2.0.1", + "files": [ + "index.js", + "conversions.js", + "route.js" + ], "xo": { "rules": { "default-case": 0, "no-inline-comments": 0, "operator-linebreak": 0 } + }, + "devDependencies": { + "chalk": "^2.4.2", + "xo": "^0.24.0" + }, + "dependencies": { + "color-name": "~1.1.4" } -} + +,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" +,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" +,"_from": "color-convert@2.0.1" +} \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/color-name/package.json b/node_modules/wrap-ansi/node_modules/color-name/package.json index 0698aa905..14739f13f 100644 --- a/node_modules/wrap-ansi/node_modules/color-name/package.json +++ b/node_modules/wrap-ansi/node_modules/color-name/package.json @@ -1,60 +1,32 @@ -{ - "_args": [ - [ - "color-name@1.1.4", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "color-name@1.1.4", - "_id": "color-name@1.1.4", - "_inBundle": false, - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "_location": "/wrap-ansi/color-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "color-name@1.1.4", - "name": "color-name", - "escapedName": "color-name", - "rawSpec": "1.1.4", - "saveSpec": null, - "fetchSpec": "1.1.4" - }, - "_requiredBy": [ - "/wrap-ansi/color-convert" - ], - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "_spec": "1.1.4", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "description": "A list of color names and its values", - "files": [ - "index.js" - ], - "homepage": "https://github.com/colorjs/color-name", - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.4" -} +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" + +,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" +,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +,"_from": "color-name@1.1.4" +} \ No newline at end of file diff --git a/node_modules/wrap-ansi/package.json b/node_modules/wrap-ansi/package.json index 91437cfe5..cd22ae882 100644 --- a/node_modules/wrap-ansi/package.json +++ b/node_modules/wrap-ansi/package.json @@ -1,99 +1,65 @@ { - "_args": [ - [ - "wrap-ansi@6.2.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "wrap-ansi@6.2.0", - "_id": "wrap-ansi@6.2.0", - "_inBundle": false, - "_integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "_location": "/wrap-ansi", - "_phantomChildren": { - "@types/color-name": "1.1.1" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "wrap-ansi@6.2.0", - "name": "wrap-ansi", - "escapedName": "wrap-ansi", - "rawSpec": "6.2.0", - "saveSpec": null, - "fetchSpec": "6.2.0" - }, - "_requiredBy": [ - "/cliui" - ], - "_resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "_spec": "6.2.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/chalk/wrap-ansi/issues" - }, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "description": "Wordwrap a string with ANSI escape codes", - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "coveralls": "^3.0.3", - "has-ansi": "^3.0.0", - "nyc": "^14.1.1", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/chalk/wrap-ansi#readme", - "keywords": [ - "wrap", - "break", - "wordwrap", - "wordbreak", - "linewrap", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "license": "MIT", - "name": "wrap-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/wrap-ansi.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "6.2.0" -} + "name": "wrap-ansi", + "version": "6.2.0", + "description": "Wordwrap a string with ANSI escape codes", + "license": "MIT", + "repository": "chalk/wrap-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "wrap", + "break", + "wordwrap", + "wordbreak", + "linewrap", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "coveralls": "^3.0.3", + "has-ansi": "^3.0.0", + "nyc": "^14.1.1", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" +,"_integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" +,"_from": "wrap-ansi@6.2.0" +} \ No newline at end of file diff --git a/node_modules/wrappy/package.json b/node_modules/wrappy/package.json index da7564e07..afa77fdc3 100644 --- a/node_modules/wrappy/package.json +++ b/node_modules/wrappy/package.json @@ -1,62 +1,33 @@ { - "_args": [ - [ - "wrappy@1.0.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "wrappy@1.0.2", - "_id": "wrappy@1.0.2", - "_inBundle": false, - "_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "_location": "/wrappy", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "wrappy@1.0.2", - "name": "wrappy", - "escapedName": "wrappy", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/inflight", - "/once" + "name": "wrappy", + "version": "1.0.2", + "description": "Callback wrapping utility", + "main": "wrappy.js", + "files": [ + "wrappy.js" ], - "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/npm/wrappy/issues" + "directories": { + "test": "test" }, "dependencies": {}, - "description": "Callback wrapping utility", "devDependencies": { "tap": "^2.3.1" }, - "directories": { - "test": "test" + "scripts": { + "test": "tap --coverage test/*.js" }, - "files": [ - "wrappy.js" - ], - "homepage": "https://github.com/npm/wrappy", - "license": "ISC", - "main": "wrappy.js", - "name": "wrappy", "repository": { "type": "git", - "url": "git+https://github.com/npm/wrappy.git" + "url": "https://github.com/npm/wrappy" }, - "scripts": { - "test": "tap --coverage test/*.js" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC", + "bugs": { + "url": "https://github.com/npm/wrappy/issues" }, - "version": "1.0.2" -} + "homepage": "https://github.com/npm/wrappy" + +,"_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" +,"_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" +,"_from": "wrappy@1.0.2" +} \ No newline at end of file diff --git a/node_modules/write-file-atomic/package.json b/node_modules/write-file-atomic/package.json index da72aaeab..e9740c053 100644 --- a/node_modules/write-file-atomic/package.json +++ b/node_modules/write-file-atomic/package.json @@ -1,49 +1,37 @@ { - "_args": [ - [ - "write-file-atomic@3.0.3", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "write-file-atomic@3.0.3", - "_id": "write-file-atomic@3.0.3", - "_inBundle": false, - "_integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "_location": "/write-file-atomic", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "write-file-atomic@3.0.3", - "name": "write-file-atomic", - "escapedName": "write-file-atomic", - "rawSpec": "3.0.3", - "saveSpec": null, - "fetchSpec": "3.0.3" + "name": "write-file-atomic", + "version": "3.0.3", + "description": "Write files in an atomic fashion w/configurable ownership", + "main": "index.js", + "scripts": { + "test": "tap", + "posttest": "npm run lint", + "lint": "standard", + "postlint": "rimraf chowncopy good nochmod nochown nofsync nofsyncopt noopen norename \"norename nounlink\" nowrite", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "_requiredBy": [ - "/ava", - "/configstore" - ], - "_resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "_spec": "3.0.3", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org" + "repository": { + "type": "git", + "url": "git://github.com/npm/write-file-atomic.git" }, + "keywords": [ + "writeFile", + "atomic" + ], + "author": "Rebecca Turner (http://re-becca.org)", + "license": "ISC", "bugs": { "url": "https://github.com/npm/write-file-atomic/issues" }, + "homepage": "https://github.com/npm/write-file-atomic", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" }, - "description": "Write files in an atomic fashion w/configurable ownership", "devDependencies": { "mkdirp": "^0.5.1", "require-inject": "^1.4.4", @@ -54,29 +42,11 @@ "files": [ "index.js" ], - "homepage": "https://github.com/npm/write-file-atomic", - "keywords": [ - "writeFile", - "atomic" - ], - "license": "ISC", - "main": "index.js", - "name": "write-file-atomic", - "repository": { - "type": "git", - "url": "git://github.com/npm/write-file-atomic.git" - }, - "scripts": { - "lint": "standard", - "postlint": "rimraf chowncopy good nochmod nochown nofsync nofsyncopt noopen norename \"norename nounlink\" nowrite", - "posttest": "npm run lint", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", - "preversion": "npm test", - "test": "tap" - }, "tap": { "100": true - }, - "version": "3.0.3" -} + } + +,"_resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" +,"_integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" +,"_from": "write-file-atomic@3.0.3" +} \ No newline at end of file diff --git a/node_modules/xdg-basedir/package.json b/node_modules/xdg-basedir/package.json index 4bfc14331..c1fa79ef9 100644 --- a/node_modules/xdg-basedir/package.json +++ b/node_modules/xdg-basedir/package.json @@ -1,78 +1,45 @@ { - "_args": [ - [ - "xdg-basedir@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "xdg-basedir@4.0.0", - "_id": "xdg-basedir@4.0.0", - "_inBundle": false, - "_integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "_location": "/xdg-basedir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "xdg-basedir@4.0.0", - "name": "xdg-basedir", - "escapedName": "xdg-basedir", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/configstore", - "/update-notifier" - ], - "_resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/xdg-basedir/issues" - }, - "description": "Get XDG Base Directory paths", - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/sindresorhus/xdg-basedir#readme", - "keywords": [ - "xdg", - "base", - "directory", - "basedir", - "path", - "data", - "config", - "cache", - "linux", - "unix", - "spec" - ], - "license": "MIT", - "name": "xdg-basedir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/xdg-basedir.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.0.0" -} + "name": "xdg-basedir", + "version": "4.0.0", + "description": "Get XDG Base Directory paths", + "license": "MIT", + "repository": "sindresorhus/xdg-basedir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "xdg", + "base", + "directory", + "basedir", + "path", + "data", + "config", + "cache", + "linux", + "unix", + "spec" + ], + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } + +,"_resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz" +,"_integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" +,"_from": "xdg-basedir@4.0.0" +} \ No newline at end of file diff --git a/node_modules/y18n/package.json b/node_modules/y18n/package.json index 05fdf1f09..28d76228e 100644 --- a/node_modules/y18n/package.json +++ b/node_modules/y18n/package.json @@ -1,41 +1,32 @@ { - "_args": [ - [ - "y18n@4.0.0", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "y18n@4.0.0", - "_id": "y18n@4.0.0", - "_inBundle": false, - "_integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "_location": "/y18n", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "y18n@4.0.0", - "name": "y18n", - "escapedName": "y18n", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" + "name": "y18n", + "version": "4.0.0", + "description": "the bare-bones internationalization library used by yargs", + "main": "index.js", + "scripts": { + "pretest": "standard", + "test": "nyc mocha", + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "standard-version" }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "repository": { + "type": "git", + "url": "git@github.com:yargs/y18n.git" }, + "files": [ + "index.js" + ], + "keywords": [ + "i18n", + "internationalization", + "yargs" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/yargs/y18n/issues" }, - "description": "the bare-bones internationalization library used by yargs", + "homepage": "https://github.com/yargs/y18n", "devDependencies": { "chai": "^4.0.1", "coveralls": "^3.0.0", @@ -44,28 +35,9 @@ "rimraf": "^2.5.0", "standard": "^10.0.0-beta.0", "standard-version": "^4.2.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/yargs/y18n", - "keywords": [ - "i18n", - "internationalization", - "yargs" - ], - "license": "ISC", - "main": "index.js", - "name": "y18n", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/yargs/y18n.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "pretest": "standard", - "release": "standard-version", - "test": "nyc mocha" - }, - "version": "4.0.0" -} + } + +,"_resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" +,"_integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" +,"_from": "y18n@4.0.0" +} \ No newline at end of file diff --git a/node_modules/yargs-parser/package.json b/node_modules/yargs-parser/package.json index 5730e2bf4..8fc562099 100644 --- a/node_modules/yargs-parser/package.json +++ b/node_modules/yargs-parser/package.json @@ -1,59 +1,18 @@ { - "_args": [ - [ - "yargs-parser@18.1.2", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "yargs-parser@18.1.2", - "_id": "yargs-parser@18.1.2", - "_inBundle": false, - "_integrity": "sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ==", - "_location": "/yargs-parser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "yargs-parser@18.1.2", - "name": "yargs-parser", - "escapedName": "yargs-parser", - "rawSpec": "18.1.2", - "saveSpec": null, - "fetchSpec": "18.1.2" - }, - "_requiredBy": [ - "/yargs" - ], - "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz", - "_spec": "18.1.2", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" - }, - "bugs": { - "url": "https://github.com/yargs/yargs-parser/issues" - }, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, + "name": "yargs-parser", + "version": "18.1.2", "description": "the mighty option parser used by yargs", - "devDependencies": { - "c8": "^7.0.1", - "chai": "^4.2.0", - "mocha": "^7.0.0", - "standard": "^14.3.1" + "main": "index.js", + "scripts": { + "fix": "standard --fix", + "test": "c8 --reporter=text --reporter=html mocha test/*.js", + "posttest": "standard", + "coverage": "c8 report --check-coverage check-coverage --lines=100 --branches=97 --statements=100" }, - "engines": { - "node": ">=6" + "repository": { + "type": "git", + "url": "https://github.com/yargs/yargs-parser.git" }, - "files": [ - "lib", - "index.js" - ], - "homepage": "https://github.com/yargs/yargs-parser#readme", "keywords": [ "argument", "parser", @@ -65,18 +24,27 @@ "args", "argument" ], + "author": "Ben Coe ", "license": "ISC", - "main": "index.js", - "name": "yargs-parser", - "repository": { - "type": "git", - "url": "git+https://github.com/yargs/yargs-parser.git" + "devDependencies": { + "c8": "^7.0.1", + "chai": "^4.2.0", + "mocha": "^7.0.0", + "standard": "^14.3.1" }, - "scripts": { - "coverage": "c8 report --check-coverage check-coverage --lines=100 --branches=97 --statements=100", - "fix": "standard --fix", - "posttest": "standard", - "test": "c8 --reporter=text --reporter=html mocha test/*.js" + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" }, - "version": "18.1.2" -} + "files": [ + "lib", + "index.js" + ], + "engines": { + "node": ">=6" + } + +,"_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz" +,"_integrity": "sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ==" +,"_from": "yargs-parser@18.1.2" +} \ No newline at end of file diff --git a/node_modules/yargs/package.json b/node_modules/yargs/package.json index dec501daa..c260dec39 100644 --- a/node_modules/yargs/package.json +++ b/node_modules/yargs/package.json @@ -1,42 +1,23 @@ { - "_args": [ - [ - "yargs@15.3.1", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_development": true, - "_from": "yargs@15.3.1", - "_id": "yargs@15.3.1", - "_inBundle": false, - "_integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", - "_location": "/yargs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "yargs@15.3.1", - "name": "yargs", - "escapedName": "yargs", - "rawSpec": "15.3.1", - "saveSpec": null, - "fetchSpec": "15.3.1" - }, - "_requiredBy": [ - "/ava" - ], - "_resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", - "_spec": "15.3.1", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "bugs": { - "url": "https://github.com/yargs/yargs/issues" - }, + "name": "yargs", + "version": "15.3.1", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "main": "./index.js", "contributors": [ { "name": "Yargs Contributors", "url": "https://github.com/yargs/yargs/graphs/contributors" } ], + "files": [ + "index.js", + "yargs.js", + "lib", + "locales", + "completion.sh.hbs", + "completion.zsh.hbs", + "LICENSE" + ], "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -50,7 +31,6 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.1" }, - "description": "yargs the modern, pirate-themed, successor to optimist.", "devDependencies": { "c8": "^7.0.0", "chai": "^4.2.0", @@ -66,19 +46,22 @@ "which": "^2.0.0", "yargs-test-extends": "^1.0.1" }, - "engines": { - "node": ">=8" + "scripts": { + "fix": "standard --fix", + "posttest": "standard", + "test": "c8 mocha --require ./test/before.js --timeout=12000 --check-leaks", + "coverage": "c8 report --check-coverage" + }, + "repository": { + "type": "git", + "url": "https://github.com/yargs/yargs.git" }, - "files": [ - "index.js", - "yargs.js", - "lib", - "locales", - "completion.sh.hbs", - "completion.zsh.hbs", - "LICENSE" - ], "homepage": "https://yargs.js.org/", + "standard": { + "ignore": [ + "**/example/**" + ] + }, "keywords": [ "argument", "args", @@ -89,22 +72,11 @@ "command" ], "license": "MIT", - "main": "./index.js", - "name": "yargs", - "repository": { - "type": "git", - "url": "git+https://github.com/yargs/yargs.git" - }, - "scripts": { - "coverage": "c8 report --check-coverage", - "fix": "standard --fix", - "posttest": "standard", - "test": "c8 mocha --require ./test/before.js --timeout=12000 --check-leaks" - }, - "standard": { - "ignore": [ - "**/example/**" - ] - }, - "version": "15.3.1" -} + "engines": { + "node": ">=8" + } + +,"_resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz" +,"_integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==" +,"_from": "yargs@15.3.1" +} \ No newline at end of file diff --git a/node_modules/zlib/package.json b/node_modules/zlib/package.json index 2d59e4be4..3c97a7452 100644 --- a/node_modules/zlib/package.json +++ b/node_modules/zlib/package.json @@ -1,54 +1,22 @@ { - "_args": [ - [ - "zlib@1.0.5", - "/Users/alexkappa/Code/ts/github.com/github/codeql-action" - ] - ], - "_from": "zlib@1.0.5", - "_id": "zlib@1.0.5", - "_inBundle": false, - "_integrity": "sha1-bnyXL8NxxkWmr7A6sUdp3vEU/MA=", - "_location": "/zlib", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "zlib@1.0.5", "name": "zlib", - "escapedName": "zlib", - "rawSpec": "1.0.5", - "saveSpec": null, - "fetchSpec": "1.0.5" - }, - "_requiredBy": [ - "/" - ], - "_resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz", - "_spec": "1.0.5", - "_where": "/Users/alexkappa/Code/ts/github.com/github/codeql-action", - "author": { - "name": "Konstantin Käfer", - "email": "kkaefer@gmail.com" - }, - "bugs": { - "url": "https://github.com/kkaefer/node-zlib/issues" - }, - "description": "Simple, synchronous deflate/inflate for buffers", - "engines": { - "node": ">=0.2.0" - }, - "homepage": "https://github.com/kkaefer/node-zlib", - "licenses": [ - { - "type": "BSD" - } - ], - "main": "./lib/zlib", - "name": "zlib", - "repository": { - "type": "git", - "url": "git://github.com/kkaefer/node-zlib.git" - }, - "version": "1.0.5" -} + "description": "Simple, synchronous deflate/inflate for buffers", + "version": "1.0.5", + "homepage": "https://github.com/kkaefer/node-zlib", + "author": "Konstantin Käfer ", + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "engines": { + "node": ">=0.2.0" + }, + "licenses": [ + { "type": "BSD" } + ], + "main": "./lib/zlib" + +,"_resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz" +,"_integrity": "sha1-bnyXL8NxxkWmr7A6sUdp3vEU/MA=" +,"_from": "zlib@1.0.5" +} \ No newline at end of file From 11a9af0387b868ce5922ab92fc3d79ac9cd64d78 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Thu, 18 Jun 2020 19:10:34 +0200 Subject: [PATCH 08/11] update deps again --- node_modules/@actions/core/package.json | 4 - node_modules/@actions/exec/package.json | 4 - .../node_modules/tunnel/package.json | 4 - .../@actions/http-client/package.json | 4 - node_modules/@actions/io/package.json | 4 - .../node_modules/@actions/core/package.json | 4 - .../node_modules/semver/package.json | 4 - node_modules/@actions/tool-cache/package.json | 4 - .../escape-string-regexp/package.json | 86 ++-- node_modules/@ava/typescript/package.json | 4 - node_modules/@babel/code-frame/package.json | 4 - node_modules/@babel/highlight/package.json | 4 - .../react/node_modules/arrify/package.json | 4 - node_modules/@concordance/react/package.json | 4 - node_modules/@nodelib/fs.scandir/package.json | 4 - node_modules/@nodelib/fs.stat/package.json | 4 - node_modules/@nodelib/fs.walk/package.json | 4 - node_modules/@octokit/auth-token/package.json | 4 - node_modules/@octokit/core/package.json | 4 - node_modules/@octokit/endpoint/package.json | 4 - .../universal-user-agent/package.json | 4 - node_modules/@octokit/graphql/package.json | 4 - .../plugin-paginate-rest/package.json | 4 - .../@octokit/plugin-request-log/package.json | 4 - .../plugin-rest-endpoint-methods/package.json | 4 - .../@octokit/request-error/package.json | 4 - node_modules/@octokit/request/package.json | 4 - node_modules/@octokit/rest/package.json | 4 - node_modules/@octokit/types/package.json | 4 - node_modules/@sindresorhus/is/package.json | 126 +++-- .../@szmarczak/http-timer/package.json | 94 ++-- node_modules/@types/color-name/package.json | 46 +- node_modules/@types/events/package.json | 54 +- node_modules/@types/glob/package.json | 68 ++- node_modules/@types/jszip/package.json | 60 ++- node_modules/@types/long/package.json | 44 +- node_modules/@types/minimatch/package.json | 52 +- node_modules/@types/nock/package.json | 28 +- node_modules/@types/node/package.json | 462 +++++++++--------- .../normalize-package-data/package.json | 44 +- node_modules/@types/semver/package.json | 98 ++-- node_modules/acorn/package.json | 12 +- node_modules/aggregate-error/package.json | 82 ++-- .../node_modules/emoji-regex/package.json | 4 - .../is-fullwidth-code-point/package.json | 4 - .../node_modules/string-width/package.json | 112 ++--- .../node_modules/strip-ansi/package.json | 108 ++-- node_modules/ansi-align/package.json | 4 - node_modules/ansi-regex/package.json | 106 ++-- node_modules/ansi-styles/package.json | 112 ++--- node_modules/argparse/package.json | 4 - node_modules/array-find-index/package.json | 4 - node_modules/array-union/package.json | 76 ++- node_modules/arrgv/package.json | 4 - node_modules/arrify/package.json | 70 ++- .../ava/node_modules/acorn-walk/package.json | 8 +- .../ava/node_modules/ansi-styles/package.json | 114 +++-- .../ava/node_modules/chalk/package.json | 136 +++--- .../node_modules/color-convert/package.json | 4 - .../ava/node_modules/color-name/package.json | 58 +-- .../escape-string-regexp/package.json | 86 ++-- .../ava/node_modules/has-flag/package.json | 92 ++-- .../source-map-support/package.json | 4 - .../ava/node_modules/stack-utils/package.json | 4 - .../node_modules/supports-color/package.json | 106 ++-- node_modules/ava/package.json | 280 ++++++----- node_modules/balanced-match/package.json | 4 - node_modules/before-after-hook/package.json | 4 - node_modules/binary-extensions/package.json | 76 ++- node_modules/blueimp-md5/package.json | 4 - .../node_modules/ansi-styles/package.json | 114 +++-- .../boxen/node_modules/chalk/package.json | 126 +++-- .../node_modules/color-convert/package.json | 4 - .../node_modules/color-name/package.json | 58 +-- .../boxen/node_modules/has-flag/package.json | 92 ++-- .../node_modules/supports-color/package.json | 106 ++-- .../boxen/node_modules/type-fest/package.json | 102 ++-- node_modules/boxen/package.json | 102 ++-- node_modules/brace-expansion/package.json | 4 - node_modules/braces/package.json | 4 - node_modules/buffer-from/package.json | 4 - node_modules/builtin-modules/package.json | 4 - .../node_modules/get-stream/package.json | 98 ++-- .../node_modules/lowercase-keys/package.json | 76 ++- node_modules/cacheable-request/package.json | 112 ++--- node_modules/callsites/package.json | 78 ++- node_modules/camelcase/package.json | 86 ++-- node_modules/chalk/package.json | 142 +++--- node_modules/charenc/package.json | 4 - .../node_modules/anymatch/package.json | 4 - .../node_modules/normalize-path/package.json | 4 - node_modules/chokidar/package.json | 4 - node_modules/chunkd/package.json | 108 ++-- node_modules/ci-info/package.json | 4 - node_modules/ci-parallel-vars/package.json | 4 - node_modules/clean-stack/package.json | 78 ++- node_modules/clean-yaml-object/package.json | 4 - node_modules/cli-boxes/package.json | 82 ++-- node_modules/cli-cursor/package.json | 92 ++-- node_modules/cli-spinners/package.json | 94 ++-- node_modules/cli-truncate/package.json | 92 ++-- node_modules/cliui/package.json | 4 - node_modules/clone-response/package.json | 4 - node_modules/clone/package.json | 4 - node_modules/code-excerpt/package.json | 4 - node_modules/color-convert/package.json | 4 - node_modules/color-name/package.json | 4 - node_modules/commander/package.json | 4 - node_modules/common-path-prefix/package.json | 4 - node_modules/concat-map/package.json | 100 ++-- .../node_modules/md5-hex/package.json | 4 - .../node_modules/semver/package.json | 4 - node_modules/concordance/package.json | 4 - node_modules/configstore/package.json | 92 ++-- node_modules/console-log-level/package.json | 4 - node_modules/convert-source-map/package.json | 4 - node_modules/convert-to-spaces/package.json | 4 - .../node_modules/semver/package.json | 4 - node_modules/cross-spawn/package.json | 4 - node_modules/crypt/package.json | 4 - .../crypto-random-string/package.json | 80 ++- node_modules/currently-unhandled/package.json | 4 - node_modules/date-time/package.json | 4 - node_modules/debug/package.json | 4 - node_modules/decamelize/package.json | 4 - node_modules/decompress-response/package.json | 4 - node_modules/deep-extend/package.json | 4 - node_modules/defaults/package.json | 4 - node_modules/defer-to-connect/package.json | 12 +- .../del/node_modules/globby/package.json | 166 +++---- .../del/node_modules/p-map/package.json | 104 ++-- node_modules/del/package.json | 130 +++-- node_modules/deprecation/package.json | 4 - node_modules/diff/package.json | 4 - node_modules/dir-glob/package.json | 76 ++- node_modules/dot-prop/package.json | 90 ++-- node_modules/duplexer3/package.json | 6 +- node_modules/emittery/package.json | 134 +++-- node_modules/emoji-regex/package.json | 4 - node_modules/end-of-stream/package.json | 4 - node_modules/equal-length/package.json | 4 - node_modules/error-ex/package.json | 4 - node_modules/escape-goat/package.json | 90 ++-- .../escape-string-regexp/package.json | 4 - node_modules/esutils/package.json | 4 - node_modules/execa/package.json | 138 +++--- node_modules/fast-diff/package.json | 4 - node_modules/fast-glob/package.json | 4 - node_modules/fastq/package.json | 4 - node_modules/figures/package.json | 90 ++-- node_modules/file-url/package.json | 70 ++- node_modules/fill-range/package.json | 4 - node_modules/find-up/package.json | 106 ++-- node_modules/fs.realpath/package.json | 4 - node_modules/fs/package.json | 4 - node_modules/fsevents/package.json | 4 - node_modules/get-caller-file/package.json | 4 - node_modules/get-stream/package.json | 92 ++-- node_modules/glob-parent/package.json | 4 - node_modules/glob/package.json | 4 - node_modules/global-dirs/package.json | 110 ++--- node_modules/globby/package.json | 164 +++---- node_modules/got/package.json | 148 +++--- node_modules/graceful-fs/package.json | 4 - node_modules/has-flag/package.json | 4 - node_modules/has-yarn/package.json | 78 ++- node_modules/hosted-git-info/package.json | 4 - .../http-cache-semantics/package.json | 48 +- node_modules/ignore-by-default/package.json | 4 - node_modules/ignore/package.json | 4 - node_modules/import-lazy/package.json | 4 - node_modules/import-local/package.json | 102 ++-- node_modules/imurmurhash/package.json | 10 +- node_modules/indent-string/package.json | 74 ++- node_modules/inflight/package.json | 4 - node_modules/inherits/package.json | 4 - node_modules/ini/package.json | 4 - node_modules/irregular-plurals/package.json | 92 ++-- node_modules/is-arrayish/package.json | 4 - node_modules/is-binary-path/package.json | 80 ++- node_modules/is-buffer/package.json | 4 - node_modules/is-ci/package.json | 4 - node_modules/is-error/package.json | 7 +- node_modules/is-extglob/package.json | 4 - .../is-fullwidth-code-point/package.json | 84 ++-- node_modules/is-glob/package.json | 4 - .../is-installed-globally/package.json | 108 ++-- node_modules/is-interactive/package.json | 76 ++- node_modules/is-npm/package.json | 74 ++- node_modules/is-number/package.json | 4 - node_modules/is-obj/package.json | 68 ++- node_modules/is-path-cwd/package.json | 72 ++- node_modules/is-path-inside/package.json | 72 ++- node_modules/is-plain-object/package.json | 4 - node_modules/is-promise/package.json | 4 - node_modules/is-stream/package.json | 4 - node_modules/is-typedarray/package.json | 4 - node_modules/is-yarn-global/package.json | 4 - node_modules/isexe/package.json | 4 - node_modules/isobject/package.json | 4 - node_modules/js-string-escape/package.json | 6 +- node_modules/js-tokens/package.json | 4 - .../js-yaml/node_modules/esprima/package.json | 4 - node_modules/js-yaml/package.json | 4 - node_modules/json-buffer/package.json | 4 - .../json-parse-better-errors/package.json | 4 - node_modules/json-stringify-safe/package.json | 4 - node_modules/jsonschema/package.json | 4 - node_modules/keyv/package.json | 4 - node_modules/latest-version/package.json | 84 ++-- node_modules/lines-and-columns/package.json | 4 - .../node_modules/strip-bom/package.json | 4 - .../node_modules/type-fest/package.json | 98 ++-- node_modules/load-json-file/package.json | 86 ++-- node_modules/locate-path/package.json | 90 ++-- node_modules/lodash.clonedeep/package.json | 8 +- node_modules/lodash.flattendeep/package.json | 8 +- node_modules/lodash.islength/package.json | 8 +- node_modules/lodash.merge/package.json | 8 +- node_modules/lodash/package.json | 8 +- node_modules/log-symbols/package.json | 100 ++-- node_modules/long/package.json | 68 ++- node_modules/lowercase-keys/package.json | 4 - node_modules/macos-release/package.json | 78 ++- .../make-dir/node_modules/semver/package.json | 4 - node_modules/make-dir/package.json | 118 +++-- node_modules/map-age-cleaner/package.json | 118 +++-- .../escape-string-regexp/package.json | 76 ++- node_modules/matcher/package.json | 108 ++-- node_modules/md5-hex/package.json | 82 ++-- node_modules/md5-o-matic/package.json | 10 +- node_modules/md5/package.json | 4 - .../mem/node_modules/mimic-fn/package.json | 84 ++-- node_modules/mem/package.json | 92 ++-- node_modules/merge2/package.json | 88 ++-- node_modules/micromatch/package.json | 4 - node_modules/mimic-fn/package.json | 84 ++-- node_modules/mimic-response/package.json | 4 - node_modules/minimatch/package.json | 4 - node_modules/minimist/package.json | 4 - node_modules/mkdirp/package.json | 4 - node_modules/ms/package.json | 4 - node_modules/mute-stream/package.json | 4 - node_modules/nice-try/package.json | 4 - node_modules/nock/package.json | 4 - node_modules/node-fetch/package.json | 4 - .../node_modules/semver/package.json | 4 - .../normalize-package-data/package.json | 4 - node_modules/normalize-url/package.json | 88 ++-- node_modules/npm-run-path/package.json | 4 - node_modules/once/package.json | 4 - node_modules/onetime/package.json | 84 ++-- .../ora/node_modules/ansi-styles/package.json | 114 +++-- .../ora/node_modules/chalk/package.json | 126 +++-- .../node_modules/color-convert/package.json | 4 - .../ora/node_modules/color-name/package.json | 58 +-- .../ora/node_modules/has-flag/package.json | 92 ++-- .../node_modules/supports-color/package.json | 106 ++-- node_modules/ora/package.json | 112 ++--- node_modules/os-name/package.json | 90 ++-- node_modules/p-cancelable/package.json | 98 ++-- node_modules/p-defer/package.json | 4 - node_modules/p-finally/package.json | 4 - node_modules/p-limit/package.json | 102 ++-- node_modules/p-locate/package.json | 106 ++-- node_modules/p-map/package.json | 106 ++-- node_modules/p-try/package.json | 84 ++-- .../node_modules/semver/package.json | 4 - node_modules/package-json/package.json | 92 ++-- node_modules/parse-json/package.json | 4 - node_modules/parse-ms/package.json | 80 ++- node_modules/path-exists/package.json | 78 ++- node_modules/path-is-absolute/package.json | 4 - node_modules/path-key/package.json | 4 - node_modules/path-parse/package.json | 4 - node_modules/path-type/package.json | 90 ++-- node_modules/path/package.json | 50 +- node_modules/picomatch/package.json | 4 - node_modules/pify/package.json | 102 ++-- .../node_modules/find-up/package.json | 100 ++-- .../node_modules/locate-path/package.json | 88 ++-- .../node_modules/p-locate/package.json | 102 ++-- .../node_modules/path-exists/package.json | 4 - node_modules/pkg-conf/package.json | 102 ++-- node_modules/pkg-dir/package.json | 112 ++--- node_modules/plur/package.json | 86 ++-- node_modules/prepend-http/package.json | 4 - node_modules/pretty-ms/package.json | 98 ++-- node_modules/process/package.json | 4 - node_modules/propagate/package.json | 4 - node_modules/pump/package.json | 4 - node_modules/pupa/package.json | 94 ++-- node_modules/rc/package.json | 4 - .../node_modules/parse-json/package.json | 88 ++-- .../node_modules/type-fest/package.json | 102 ++-- node_modules/read-pkg/package.json | 98 ++-- node_modules/readdirp/package.json | 4 - node_modules/registry-auth-token/package.json | 4 - node_modules/registry-url/package.json | 88 ++-- .../removeNPMAbsolutePaths/package.json | 4 - node_modules/require-directory/package.json | 4 - .../require-main-filename/package.json | 4 - node_modules/resolve-cwd/package.json | 86 ++-- node_modules/resolve-from/package.json | 72 ++- node_modules/resolve/package.json | 94 ++-- .../test/module_dir/zmodules/bbb/package.json | 2 +- .../resolve/test/resolver/baz/package.json | 4 +- .../test/resolver/browser_field/package.json | 2 +- .../test/resolver/dot_main/package.json | 4 +- .../test/resolver/dot_slash_main/package.json | 4 +- .../test/resolver/incorrect_main/package.json | 4 +- .../test/resolver/invalid_main/package.json | 2 +- .../test/resolver/multirepo/package.json | 2 +- .../multirepo/packages/package-a/package.json | 2 +- .../multirepo/packages/package-b/package.json | 2 +- .../nested_symlinks/mylib/package.json | 2 +- .../resolver/symlinked/package/package.json | 2 +- node_modules/responselike/package.json | 4 - node_modules/restore-cursor/package.json | 104 ++-- node_modules/reusify/package.json | 4 - node_modules/rimraf/package.json | 4 - node_modules/run-parallel/package.json | 4 - node_modules/safe-buffer/package.json | 4 - .../node_modules/semver/package.json | 4 - node_modules/semver-diff/package.json | 74 ++- node_modules/semver/package.json | 4 - node_modules/serialize-error/package.json | 4 - node_modules/set-blocking/package.json | 4 - node_modules/shebang-command/package.json | 4 - node_modules/shebang-regex/package.json | 4 - node_modules/signal-exit/package.json | 4 - node_modules/slash/package.json | 70 ++- .../node_modules/ansi-styles/package.json | 114 +++-- .../node_modules/astral-regex/package.json | 66 ++- .../node_modules/color-convert/package.json | 4 - .../node_modules/color-name/package.json | 58 +-- node_modules/slice-ansi/package.json | 102 ++-- node_modules/source-map/package.json | 4 - node_modules/spdx-correct/package.json | 4 - node_modules/spdx-exceptions/package.json | 4 - .../spdx-expression-parse/package.json | 4 - node_modules/spdx-license-ids/package.json | 78 ++- node_modules/sprintf-js/package.json | 44 +- node_modules/string-width/package.json | 112 ++--- .../node_modules/ansi-regex/package.json | 110 ++--- node_modules/strip-ansi/package.json | 108 ++-- node_modules/strip-eof/package.json | 4 - node_modules/strip-json-comments/package.json | 4 - .../node_modules/ansi-regex/package.json | 4 - .../supertap/node_modules/arrify/package.json | 4 - .../node_modules/indent-string/package.json | 4 - .../node_modules/strip-ansi/package.json | 4 - node_modules/supertap/package.json | 4 - node_modules/supports-color/package.json | 106 ++-- node_modules/temp-dir/package.json | 82 ++-- node_modules/term-size/package.json | 86 ++-- node_modules/time-zone/package.json | 4 - node_modules/to-readable-stream/package.json | 80 ++- node_modules/to-regex-range/package.json | 4 - node_modules/trim-off-newlines/package.json | 4 - node_modules/tslib/package.json | 58 +-- .../tslint/node_modules/semver/package.json | 4 - node_modules/tslint/package.json | 186 ++++--- node_modules/tsutils/package.json | 4 - .../typedarray-to-buffer/package.json | 4 - node_modules/typescript/package.json | 268 +++++----- node_modules/unique-string/package.json | 80 ++- .../universal-user-agent/package.json | 4 - .../node_modules/ansi-styles/package.json | 114 +++-- .../node_modules/chalk/package.json | 126 +++-- .../node_modules/color-convert/package.json | 4 - .../node_modules/color-name/package.json | 58 +-- .../node_modules/has-flag/package.json | 92 ++-- .../node_modules/supports-color/package.json | 106 ++-- node_modules/update-notifier/package.json | 128 +++-- node_modules/url-parse-lax/package.json | 4 - node_modules/util/package.json | 4 - node_modules/uuid/package.json | 4 - .../validate-npm-package-license/package.json | 4 - node_modules/wcwidth/package.json | 4 - node_modules/well-known-symbols/package.json | 4 - node_modules/which-module/package.json | 4 - node_modules/which/package.json | 4 - node_modules/widest-line/package.json | 108 ++-- node_modules/windows-release/package.json | 86 ++-- .../node_modules/ansi-styles/package.json | 114 +++-- .../node_modules/color-convert/package.json | 4 - .../node_modules/color-name/package.json | 58 +-- node_modules/wrap-ansi/package.json | 122 +++-- node_modules/wrappy/package.json | 4 - node_modules/write-file-atomic/package.json | 4 - node_modules/xdg-basedir/package.json | 82 ++-- node_modules/y18n/package.json | 4 - node_modules/yargs-parser/package.json | 4 - node_modules/yargs/package.json | 4 - node_modules/zlib/package.json | 38 +- package.json | 2 +- 397 files changed, 7570 insertions(+), 9073 deletions(-) diff --git a/node_modules/@actions/core/package.json b/node_modules/@actions/core/package.json index f0c526e1c..ac8962e99 100644 --- a/node_modules/@actions/core/package.json +++ b/node_modules/@actions/core/package.json @@ -35,8 +35,4 @@ "devDependencies": { "@types/node": "^12.0.2" } - -,"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz" -,"_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==" -,"_from": "@actions/core@1.2.0" } \ No newline at end of file diff --git a/node_modules/@actions/exec/package.json b/node_modules/@actions/exec/package.json index bb85262a2..5255e599d 100644 --- a/node_modules/@actions/exec/package.json +++ b/node_modules/@actions/exec/package.json @@ -35,8 +35,4 @@ "@actions/io": "^1.0.1" }, "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" - -,"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz" -,"_integrity": "sha512-nvFkxwiicvpzNiCBF4wFBDfnBvi7xp/as7LE1hBxBxKG2L29+gkIPBiLKMVORL+Hg3JNf07AKRfl0V5djoypjQ==" -,"_from": "@actions/exec@1.0.1" } \ No newline at end of file diff --git a/node_modules/@actions/http-client/node_modules/tunnel/package.json b/node_modules/@actions/http-client/node_modules/tunnel/package.json index eef71891b..27cce6b48 100644 --- a/node_modules/@actions/http-client/node_modules/tunnel/package.json +++ b/node_modules/@actions/http-client/node_modules/tunnel/package.json @@ -31,8 +31,4 @@ "engines": { "node": ">=0.6.11 <=0.7.0 || >=0.7.3" } - -,"_resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz" -,"_integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" -,"_from": "tunnel@0.0.6" } \ No newline at end of file diff --git a/node_modules/@actions/http-client/package.json b/node_modules/@actions/http-client/package.json index 4c7296d59..fbfec5f9d 100644 --- a/node_modules/@actions/http-client/package.json +++ b/node_modules/@actions/http-client/package.json @@ -36,8 +36,4 @@ "dependencies": { "tunnel": "0.0.6" } - -,"_resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.8.tgz" -,"_integrity": "sha512-G4JjJ6f9Hb3Zvejj+ewLLKLf99ZC+9v+yCxoYf9vSyH+WkzPLB2LuUtRMGNkooMqdugGBFStIKXOuvH1W+EctA==" -,"_from": "@actions/http-client@1.0.8" } \ No newline at end of file diff --git a/node_modules/@actions/io/package.json b/node_modules/@actions/io/package.json index 3a303f251..c19c88922 100644 --- a/node_modules/@actions/io/package.json +++ b/node_modules/@actions/io/package.json @@ -32,8 +32,4 @@ "url": "https://github.com/actions/toolkit/issues" }, "gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52" - -,"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz" -,"_integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==" -,"_from": "@actions/io@1.0.1" } \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json index dd01abb87..e32e6425d 100644 --- a/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json +++ b/node_modules/@actions/tool-cache/node_modules/@actions/core/package.json @@ -37,8 +37,4 @@ "devDependencies": { "@types/node": "^12.0.2" } - -,"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz" -,"_integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg==" -,"_from": "@actions/core@1.2.4" } \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/node_modules/semver/package.json b/node_modules/@actions/tool-cache/node_modules/semver/package.json index 13030769c..a330b56c2 100644 --- a/node_modules/@actions/tool-cache/node_modules/semver/package.json +++ b/node_modules/@actions/tool-cache/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" -,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" -,"_from": "semver@6.3.0" } \ No newline at end of file diff --git a/node_modules/@actions/tool-cache/package.json b/node_modules/@actions/tool-cache/package.json index 17c984e44..ddce94d82 100644 --- a/node_modules/@actions/tool-cache/package.json +++ b/node_modules/@actions/tool-cache/package.json @@ -49,8 +49,4 @@ "@types/uuid": "^3.4.4", "nock": "^10.0.6" } - -,"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz" -,"_integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==" -,"_from": "@actions/tool-cache@1.5.5" } \ No newline at end of file diff --git a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json index 99dd980e9..d7bec7c3d 100644 --- a/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json +++ b/node_modules/@ava/typescript/node_modules/escape-string-regexp/package.json @@ -1,47 +1,43 @@ { - "name": "escape-string-regexp", - "version": "2.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "maintainers": [ - "Sindre Sorhus (sindresorhus.com)", - "Joshua Boy Nicolai Appelman (jbna.nl)" - ], - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "escape", - "regex", - "regexp", - "re", - "regular", - "expression", - "string", - "str", - "special", - "characters" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" -,"_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" -,"_from": "escape-string-regexp@2.0.0" + "name": "escape-string-regexp", + "version": "2.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "re", + "regular", + "expression", + "string", + "str", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@ava/typescript/package.json b/node_modules/@ava/typescript/package.json index be099a845..d064983ae 100644 --- a/node_modules/@ava/typescript/package.json +++ b/node_modules/@ava/typescript/package.json @@ -39,8 +39,4 @@ "import/order": "off" } } - -,"_resolved": "https://registry.npmjs.org/@ava/typescript/-/typescript-1.1.1.tgz" -,"_integrity": "sha512-KbLUAe2cWXK63WLK6LnOJonjwEDU/8MNXCOA1ooX/YFZgKRmeAD1kZu+2K0ks5fnOCEcckNQAooyBNGdZUmMQA==" -,"_from": "@ava/typescript@1.1.1" } \ No newline at end of file diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json index bdf027869..ce0bf0f62 100644 --- a/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/code-frame/package.json @@ -18,8 +18,4 @@ "strip-ansi": "^4.0.0" }, "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43" - -,"_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz" -,"_integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==" -,"_from": "@babel/code-frame@7.5.5" } \ No newline at end of file diff --git a/node_modules/@babel/highlight/package.json b/node_modules/@babel/highlight/package.json index d6588bcfa..c958a9e8d 100644 --- a/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/highlight/package.json @@ -19,8 +19,4 @@ "strip-ansi": "^4.0.0" }, "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4" - -,"_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz" -,"_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==" -,"_from": "@babel/highlight@7.5.0" } \ No newline at end of file diff --git a/node_modules/@concordance/react/node_modules/arrify/package.json b/node_modules/@concordance/react/node_modules/arrify/package.json index bfc8621c9..d60245659 100644 --- a/node_modules/@concordance/react/node_modules/arrify/package.json +++ b/node_modules/@concordance/react/node_modules/arrify/package.json @@ -30,8 +30,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" -,"_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" -,"_from": "arrify@1.0.1" } \ No newline at end of file diff --git a/node_modules/@concordance/react/package.json b/node_modules/@concordance/react/package.json index e65f61ee9..f0ba9b96c 100644 --- a/node_modules/@concordance/react/package.json +++ b/node_modules/@concordance/react/package.json @@ -72,8 +72,4 @@ ] }, "standard-engine": "@novemberborn/as-i-preach" - -,"_resolved": "https://registry.npmjs.org/@concordance/react/-/react-2.0.0.tgz" -,"_integrity": "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA==" -,"_from": "@concordance/react@2.0.0" } \ No newline at end of file diff --git a/node_modules/@nodelib/fs.scandir/package.json b/node_modules/@nodelib/fs.scandir/package.json index 5ed6f43c3..5a32a9fea 100644 --- a/node_modules/@nodelib/fs.scandir/package.json +++ b/node_modules/@nodelib/fs.scandir/package.json @@ -32,8 +32,4 @@ "run-parallel": "^1.1.9" }, "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" - -,"_resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz" -,"_integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" -,"_from": "@nodelib/fs.scandir@2.1.3" } \ No newline at end of file diff --git a/node_modules/@nodelib/fs.stat/package.json b/node_modules/@nodelib/fs.stat/package.json index 014b307de..96a5ebb31 100644 --- a/node_modules/@nodelib/fs.stat/package.json +++ b/node_modules/@nodelib/fs.stat/package.json @@ -26,8 +26,4 @@ "watch": "npm run clean && npm run compile:watch" }, "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" - -,"_resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz" -,"_integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" -,"_from": "@nodelib/fs.stat@2.0.3" } \ No newline at end of file diff --git a/node_modules/@nodelib/fs.walk/package.json b/node_modules/@nodelib/fs.walk/package.json index 5289c2a75..9490845bf 100644 --- a/node_modules/@nodelib/fs.walk/package.json +++ b/node_modules/@nodelib/fs.walk/package.json @@ -32,8 +32,4 @@ "fastq": "^1.6.0" }, "gitHead": "3b1ef7554ad7c061b3580858101d483fba847abf" - -,"_resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz" -,"_integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" -,"_from": "@nodelib/fs.walk@1.2.4" } \ No newline at end of file diff --git a/node_modules/@octokit/auth-token/package.json b/node_modules/@octokit/auth-token/package.json index 71f2d0260..5add1ac3d 100644 --- a/node_modules/@octokit/auth-token/package.json +++ b/node_modules/@octokit/auth-token/package.json @@ -44,8 +44,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.0.tgz" -,"_integrity": "sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==" -,"_from": "@octokit/auth-token@2.4.0" } \ No newline at end of file diff --git a/node_modules/@octokit/core/package.json b/node_modules/@octokit/core/package.json index 965b7ab8f..5eab6c145 100644 --- a/node_modules/@octokit/core/package.json +++ b/node_modules/@octokit/core/package.json @@ -54,8 +54,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.4.2.tgz" -,"_integrity": "sha512-fUx/Qt774cgiPhb3HRKfdl6iufVL/ltECkwkCg373I4lIPYvAPY4cbidVZqyVqHI+ThAIlFlTW8FT4QHChv3Sg==" -,"_from": "@octokit/core@2.4.2" } \ No newline at end of file diff --git a/node_modules/@octokit/endpoint/package.json b/node_modules/@octokit/endpoint/package.json index 6ad4cc528..49e716c34 100644 --- a/node_modules/@octokit/endpoint/package.json +++ b/node_modules/@octokit/endpoint/package.json @@ -48,8 +48,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.3.tgz" -,"_integrity": "sha512-EzKwkwcxeegYYah5ukEeAI/gYRLv2Y9U5PpIsseGSFDk+G3RbipQGBs8GuYS1TLCtQaqoO66+aQGtITPalxsNQ==" -,"_from": "@octokit/endpoint@5.5.3" } \ No newline at end of file diff --git a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json index eb8e2be66..ad2c9a9f4 100644 --- a/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/graphql/node_modules/universal-user-agent/package.json @@ -30,8 +30,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz" -,"_integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==" -,"_from": "universal-user-agent@4.0.1" } \ No newline at end of file diff --git a/node_modules/@octokit/graphql/package.json b/node_modules/@octokit/graphql/package.json index 52fa976f7..958b0c83e 100644 --- a/node_modules/@octokit/graphql/package.json +++ b/node_modules/@octokit/graphql/package.json @@ -51,8 +51,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "deno": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.3.1.tgz" -,"_integrity": "sha512-hCdTjfvrK+ilU2keAdqNBWOk+gm1kai1ZcdjRfB30oA3/T6n53UVJb7w0L5cR3/rhU91xT3HSqCd+qbvH06yxA==" -,"_from": "@octokit/graphql@4.3.1" } \ No newline at end of file diff --git a/node_modules/@octokit/plugin-paginate-rest/package.json b/node_modules/@octokit/plugin-paginate-rest/package.json index d2c998e8b..2c0d4c9f4 100644 --- a/node_modules/@octokit/plugin-paginate-rest/package.json +++ b/node_modules/@octokit/plugin-paginate-rest/package.json @@ -43,8 +43,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.0.2.tgz" -,"_integrity": "sha512-HzODcSUt9mjErly26TlTOGZrhf9bmF/FEDQ2zln1izhgmIV6ulsjsHmgmR4VZ0wzVr/m52Eb6U2XuyS8fkcR1A==" -,"_from": "@octokit/plugin-paginate-rest@2.0.2" } \ No newline at end of file diff --git a/node_modules/@octokit/plugin-request-log/package.json b/node_modules/@octokit/plugin-request-log/package.json index dde789f3c..ff6a0b1d3 100644 --- a/node_modules/@octokit/plugin-request-log/package.json +++ b/node_modules/@octokit/plugin-request-log/package.json @@ -41,8 +41,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz" -,"_integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==" -,"_from": "@octokit/plugin-request-log@1.0.0" } \ No newline at end of file diff --git a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json index 3775af4bc..261fbec2b 100644 --- a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json +++ b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json @@ -54,8 +54,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.3.1.tgz" -,"_integrity": "sha512-iLAXPLWBZaP6ocy1GFfZUCzyN4cwg3y2JE6yZjQo0zLE3UaewC3TI68/TnS4ilyhXDxh81Jr1qwPN1AqTp8t3w==" -,"_from": "@octokit/plugin-rest-endpoint-methods@3.3.1" } \ No newline at end of file diff --git a/node_modules/@octokit/request-error/package.json b/node_modules/@octokit/request-error/package.json index 5d11805dd..0938401ac 100644 --- a/node_modules/@octokit/request-error/package.json +++ b/node_modules/@octokit/request-error/package.json @@ -51,8 +51,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz" -,"_integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==" -,"_from": "@octokit/request-error@1.2.1" } \ No newline at end of file diff --git a/node_modules/@octokit/request/package.json b/node_modules/@octokit/request/package.json index 6fa672d8d..e14ca5a44 100644 --- a/node_modules/@octokit/request/package.json +++ b/node_modules/@octokit/request/package.json @@ -61,8 +61,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.3.2.tgz" -,"_integrity": "sha512-7NPJpg19wVQy1cs2xqXjjRq/RmtSomja/VSWnptfYwuBxLdbYh2UjhGi0Wx7B1v5Iw5GKhfFDQL7jM7SSp7K2g==" -,"_from": "@octokit/request@5.3.2" } \ No newline at end of file diff --git a/node_modules/@octokit/rest/package.json b/node_modules/@octokit/rest/package.json index 2ea157f22..6cf0f21e4 100644 --- a/node_modules/@octokit/rest/package.json +++ b/node_modules/@octokit/rest/package.json @@ -65,8 +65,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.1.0.tgz" -,"_integrity": "sha512-L5YtpxHZSHZCh2xETbzxz8clBGmcpT+5e78JLZQ+VfuHrHJ1J/r+R2PGwKHwClUEECTeWFMMdAtIik+OCkANBg==" -,"_from": "@octokit/rest@17.1.0" } \ No newline at end of file diff --git a/node_modules/@octokit/types/package.json b/node_modules/@octokit/types/package.json index da45e714b..8176f97b4 100644 --- a/node_modules/@octokit/types/package.json +++ b/node_modules/@octokit/types/package.json @@ -62,8 +62,4 @@ "dependencies": { "@types/node": ">= 8" } - -,"_resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.5.0.tgz" -,"_integrity": "sha512-KEnLwOfdXzxPNL34fj508bhi9Z9cStyN7qY1kOfVahmqtAfrWw6Oq3P4R+dtsg0lYtZdWBpUrS/Ixmd5YILSww==" -,"_from": "@octokit/types@2.5.0" } \ No newline at end of file diff --git a/node_modules/@sindresorhus/is/package.json b/node_modules/@sindresorhus/is/package.json index b08acf00a..66fc8bad1 100644 --- a/node_modules/@sindresorhus/is/package.json +++ b/node_modules/@sindresorhus/is/package.json @@ -1,67 +1,63 @@ { - "name": "@sindresorhus/is", - "version": "0.14.0", - "description": "Type check values: `is.string('🦄') //=> true`", - "license": "MIT", - "repository": "sindresorhus/is", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "main": "dist/index.js", - "engines": { - "node": ">=6" - }, - "scripts": { - "lint": "tslint --format stylish --project .", - "build": "del dist && tsc", - "test": "npm run lint && npm run build && ava dist/tests", - "prepublish": "npm run build && del dist/tests" - }, - "files": [ - "dist" - ], - "keywords": [ - "type", - "types", - "is", - "check", - "checking", - "validate", - "validation", - "utility", - "util", - "typeof", - "instanceof", - "object", - "assert", - "assertion", - "test", - "kind", - "primitive", - "verify", - "compare" - ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.1.0", - "@types/jsdom": "^11.12.0", - "@types/node": "^10.12.10", - "@types/tempy": "^0.2.0", - "@types/zen-observable": "^0.8.0", - "ava": "^0.25.0", - "del-cli": "^1.1.0", - "jsdom": "^11.6.2", - "rxjs": "^6.3.3", - "tempy": "^0.2.1", - "tslint": "^5.9.1", - "tslint-xo": "^0.10.0", - "typescript": "^3.2.1", - "zen-observable": "^0.8.8" - }, - "types": "dist/index.d.ts" - -,"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz" -,"_integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" -,"_from": "@sindresorhus/is@0.14.0" + "name": "@sindresorhus/is", + "version": "0.14.0", + "description": "Type check values: `is.string('🦄') //=> true`", + "license": "MIT", + "repository": "sindresorhus/is", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "main": "dist/index.js", + "engines": { + "node": ">=6" + }, + "scripts": { + "lint": "tslint --format stylish --project .", + "build": "del dist && tsc", + "test": "npm run lint && npm run build && ava dist/tests", + "prepublish": "npm run build && del dist/tests" + }, + "files": [ + "dist" + ], + "keywords": [ + "type", + "types", + "is", + "check", + "checking", + "validate", + "validation", + "utility", + "util", + "typeof", + "instanceof", + "object", + "assert", + "assertion", + "test", + "kind", + "primitive", + "verify", + "compare" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.1.0", + "@types/jsdom": "^11.12.0", + "@types/node": "^10.12.10", + "@types/tempy": "^0.2.0", + "@types/zen-observable": "^0.8.0", + "ava": "^0.25.0", + "del-cli": "^1.1.0", + "jsdom": "^11.6.2", + "rxjs": "^6.3.3", + "tempy": "^0.2.1", + "tslint": "^5.9.1", + "tslint-xo": "^0.10.0", + "typescript": "^3.2.1", + "zen-observable": "^0.8.8" + }, + "types": "dist/index.d.ts" } \ No newline at end of file diff --git a/node_modules/@szmarczak/http-timer/package.json b/node_modules/@szmarczak/http-timer/package.json index ce9d4c665..cf366a763 100755 --- a/node_modules/@szmarczak/http-timer/package.json +++ b/node_modules/@szmarczak/http-timer/package.json @@ -1,51 +1,47 @@ { - "name": "@szmarczak/http-timer", - "version": "1.1.2", - "description": "Timings for HTTP requests", - "main": "source", - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && nyc ava", - "coveralls": "nyc report --reporter=text-lcov | coveralls" - }, - "files": [ - "source" - ], - "keywords": [ - "http", - "https", - "timer", - "timings" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/szmarczak/http-timer.git" - }, - "author": "Szymon Marczak", - "license": "MIT", - "bugs": { - "url": "https://github.com/szmarczak/http-timer/issues" - }, - "homepage": "https://github.com/szmarczak/http-timer#readme", - "xo": { - "rules": { - "unicorn/filename-case": "camelCase" - } - }, - "devDependencies": { - "ava": "^0.25.0", - "coveralls": "^3.0.2", - "p-event": "^2.1.0", - "nyc": "^12.0.2", - "xo": "^0.22.0" - }, - "dependencies": { - "defer-to-connect": "^1.0.1" - } - -,"_resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz" -,"_integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" -,"_from": "@szmarczak/http-timer@1.1.2" + "name": "@szmarczak/http-timer", + "version": "1.1.2", + "description": "Timings for HTTP requests", + "main": "source", + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && nyc ava", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "source" + ], + "keywords": [ + "http", + "https", + "timer", + "timings" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/szmarczak/http-timer.git" + }, + "author": "Szymon Marczak", + "license": "MIT", + "bugs": { + "url": "https://github.com/szmarczak/http-timer/issues" + }, + "homepage": "https://github.com/szmarczak/http-timer#readme", + "xo": { + "rules": { + "unicorn/filename-case": "camelCase" + } + }, + "devDependencies": { + "ava": "^0.25.0", + "coveralls": "^3.0.2", + "p-event": "^2.1.0", + "nyc": "^12.0.2", + "xo": "^0.22.0" + }, + "dependencies": { + "defer-to-connect": "^1.0.1" + } } \ No newline at end of file diff --git a/node_modules/@types/color-name/package.json b/node_modules/@types/color-name/package.json index da77dae61..de213731b 100644 --- a/node_modules/@types/color-name/package.json +++ b/node_modules/@types/color-name/package.json @@ -1,27 +1,23 @@ { - "name": "@types/color-name", - "version": "1.1.1", - "description": "TypeScript definitions for color-name", - "license": "MIT", - "contributors": [ - { - "name": "Junyoung Clare Jang", - "url": "https://github.com/Ailrun", - "githubUsername": "Ailrun" - } - ], - "main": "", - "types": "index", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz" -,"_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" -,"_from": "@types/color-name@1.1.1" + "name": "@types/color-name", + "version": "1.1.1", + "description": "TypeScript definitions for color-name", + "license": "MIT", + "contributors": [ + { + "name": "Junyoung Clare Jang", + "url": "https://github.com/Ailrun", + "githubUsername": "Ailrun" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/events/package.json b/node_modules/@types/events/package.json index ec26d33d0..511653a8c 100644 --- a/node_modules/@types/events/package.json +++ b/node_modules/@types/events/package.json @@ -1,32 +1,28 @@ { - "name": "@types/events", - "version": "3.0.0", - "description": "TypeScript definitions for events", - "license": "MIT", - "contributors": [ - { - "name": "Yasunori Ohoka", - "url": "https://github.com/yasupeke", - "githubUsername": "yasupeke" - }, - { - "name": "Shenwei Wang", - "url": "https://github.com/weareoutman", - "githubUsername": "weareoutman" - } - ], - "main": "", - "types": "index", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + "name": "@types/events", + "version": "3.0.0", + "description": "TypeScript definitions for events", + "license": "MIT", + "contributors": [ + { + "name": "Yasunori Ohoka", + "url": "https://github.com/yasupeke", + "githubUsername": "yasupeke" }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz" -,"_integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" -,"_from": "@types/events@3.0.0" + { + "name": "Shenwei Wang", + "url": "https://github.com/weareoutman", + "githubUsername": "weareoutman" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "ae078136220837864b64cc7c1c5267ca1ceb809166fb74569e637bc7de9f2e12", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/glob/package.json b/node_modules/@types/glob/package.json index 7b98f8851..599e299a4 100644 --- a/node_modules/@types/glob/package.json +++ b/node_modules/@types/glob/package.json @@ -1,40 +1,36 @@ { - "name": "@types/glob", - "version": "7.1.1", - "description": "TypeScript definitions for Glob", - "license": "MIT", - "contributors": [ - { - "name": "vvakame", - "url": "https://github.com/vvakame", - "githubUsername": "vvakame" - }, - { - "name": "voy", - "url": "https://github.com/voy", - "githubUsername": "voy" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff", - "githubUsername": "ajafff" - } - ], - "main": "", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + "name": "@types/glob", + "version": "7.1.1", + "description": "TypeScript definitions for Glob", + "license": "MIT", + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame", + "githubUsername": "vvakame" }, - "scripts": {}, - "dependencies": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" + { + "name": "voy", + "url": "https://github.com/voy", + "githubUsername": "voy" }, - "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz" -,"_integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" -,"_from": "@types/glob@7.1.1" + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": { + "@types/events": "*", + "@types/minimatch": "*", + "@types/node": "*" + }, + "typesPublisherContentHash": "43019f2af91c7a4ca3453c4b806a01c521ca3008ffe1bfefd37c5f9d6135660e", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/jszip/package.json b/node_modules/@types/jszip/package.json index 3f6eafbd7..5712e3e9d 100644 --- a/node_modules/@types/jszip/package.json +++ b/node_modules/@types/jszip/package.json @@ -1,35 +1,31 @@ { - "name": "@types/jszip", - "version": "3.1.6", - "description": "TypeScript definitions for JSZip", - "license": "MIT", - "contributors": [ - { - "name": "mzeiher", - "url": "https://github.com/mzeiher", - "githubUsername": "mzeiher" - }, - { - "name": "forabi", - "url": "https://github.com/forabi", - "githubUsername": "forabi" - } - ], - "main": "", - "types": "index", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/jszip" + "name": "@types/jszip", + "version": "3.1.6", + "description": "TypeScript definitions for JSZip", + "license": "MIT", + "contributors": [ + { + "name": "mzeiher", + "url": "https://github.com/mzeiher", + "githubUsername": "mzeiher" }, - "scripts": {}, - "dependencies": { - "@types/node": "*" - }, - "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", - "typeScriptVersion": "2.3" - -,"_resolved": "https://registry.npmjs.org/@types/jszip/-/jszip-3.1.6.tgz" -,"_integrity": "sha512-m8uFcI+O2EupCfbEVQWsBM/4nhbegjOHL7cQgBpM95FeF98kdFJXzy9/8yhx4b3lCRl/gMBhcvyh30Qt3X+XPQ==" -,"_from": "@types/jszip@3.1.6" + { + "name": "forabi", + "url": "https://github.com/forabi", + "githubUsername": "forabi" + } + ], + "main": "", + "types": "index", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/jszip" + }, + "scripts": {}, + "dependencies": { + "@types/node": "*" + }, + "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", + "typeScriptVersion": "2.3" } \ No newline at end of file diff --git a/node_modules/@types/long/package.json b/node_modules/@types/long/package.json index 690bb90f3..71fc5eae5 100644 --- a/node_modules/@types/long/package.json +++ b/node_modules/@types/long/package.json @@ -1,26 +1,22 @@ { - "name": "@types/long", - "version": "4.0.0", - "description": "TypeScript definitions for long.js", - "license": "MIT", - "contributors": [ - { - "name": "Peter Kooijmans", - "url": "https://github.com/peterkooijmans", - "githubUsername": "peterkooijmans" - } - ], - "main": "", - "repository": { - "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz" -,"_integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==" -,"_from": "@types/long@4.0.0" + "name": "@types/long", + "version": "4.0.0", + "description": "TypeScript definitions for long.js", + "license": "MIT", + "contributors": [ + { + "name": "Peter Kooijmans", + "url": "https://github.com/peterkooijmans", + "githubUsername": "peterkooijmans" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/minimatch/package.json b/node_modules/@types/minimatch/package.json index 2ffb9f1c8..85e258799 100644 --- a/node_modules/@types/minimatch/package.json +++ b/node_modules/@types/minimatch/package.json @@ -1,31 +1,27 @@ { - "name": "@types/minimatch", - "version": "3.0.3", - "description": "TypeScript definitions for Minimatch", - "license": "MIT", - "contributors": [ - { - "name": "vvakame", - "url": "https://github.com/vvakame", - "githubUsername": "vvakame" - }, - { - "name": "Shant Marouti", - "url": "https://github.com/shantmarouti", - "githubUsername": "shantmarouti" - } - ], - "main": "", - "repository": { - "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + "name": "@types/minimatch", + "version": "3.0.3", + "description": "TypeScript definitions for Minimatch", + "license": "MIT", + "contributors": [ + { + "name": "vvakame", + "url": "https://github.com/vvakame", + "githubUsername": "vvakame" }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz" -,"_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" -,"_from": "@types/minimatch@3.0.3" + { + "name": "Shant Marouti", + "url": "https://github.com/shantmarouti", + "githubUsername": "shantmarouti" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/nock/package.json b/node_modules/@types/nock/package.json index 28efa45be..04a7fbeda 100644 --- a/node_modules/@types/nock/package.json +++ b/node_modules/@types/nock/package.json @@ -1,18 +1,14 @@ { - "name": "@types/nock", - "version": "11.1.0", - "typings": null, - "description": "Stub TypeScript definitions entry for nock, which provides its own types definitions", - "main": "", - "scripts": {}, - "author": "", - "repository": "https://github.com/nock/nock", - "license": "MIT", - "dependencies": { - "nock": "*" - } - -,"_resolved": "https://registry.npmjs.org/@types/nock/-/nock-11.1.0.tgz" -,"_integrity": "sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==" -,"_from": "@types/nock@11.1.0" + "name": "@types/nock", + "version": "11.1.0", + "typings": null, + "description": "Stub TypeScript definitions entry for nock, which provides its own types definitions", + "main": "", + "scripts": {}, + "author": "", + "repository": "https://github.com/nock/nock", + "license": "MIT", + "dependencies": { + "nock": "*" + } } \ No newline at end of file diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index c62c0141d..f3863a09b 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -1,235 +1,231 @@ { - "name": "@types/node", - "version": "12.12.14", - "description": "TypeScript definitions for Node.js", - "license": "MIT", - "contributors": [ - { - "name": "Microsoft TypeScript", - "url": "https://github.com/Microsoft", - "githubUsername": "Microsoft" - }, - { - "name": "DefinitelyTyped", - "url": "https://github.com/DefinitelyTyped", - "githubUsername": "DefinitelyTyped" - }, - { - "name": "Alberto Schiabel", - "url": "https://github.com/jkomyno", - "githubUsername": "jkomyno" - }, - { - "name": "Alexander T.", - "url": "https://github.com/a-tarasyuk", - "githubUsername": "a-tarasyuk" - }, - { - "name": "Alvis HT Tang", - "url": "https://github.com/alvis", - "githubUsername": "alvis" - }, - { - "name": "Andrew Makarov", - "url": "https://github.com/r3nya", - "githubUsername": "r3nya" - }, - { - "name": "Benjamin Toueg", - "url": "https://github.com/btoueg", - "githubUsername": "btoueg" - }, - { - "name": "Bruno Scheufler", - "url": "https://github.com/brunoscheufler", - "githubUsername": "brunoscheufler" - }, - { - "name": "Chigozirim C.", - "url": "https://github.com/smac89", - "githubUsername": "smac89" - }, - { - "name": "Christian Vaagland Tellnes", - "url": "https://github.com/tellnes", - "githubUsername": "tellnes" - }, - { - "name": "David Junger", - "url": "https://github.com/touffy", - "githubUsername": "touffy" - }, - { - "name": "Deividas Bakanas", - "url": "https://github.com/DeividasBakanas", - "githubUsername": "DeividasBakanas" - }, - { - "name": "Eugene Y. Q. Shen", - "url": "https://github.com/eyqs", - "githubUsername": "eyqs" - }, - { - "name": "Flarna", - "url": "https://github.com/Flarna", - "githubUsername": "Flarna" - }, - { - "name": "Hannes Magnusson", - "url": "https://github.com/Hannes-Magnusson-CK", - "githubUsername": "Hannes-Magnusson-CK" - }, - { - "name": "Hoàng Văn Khải", - "url": "https://github.com/KSXGitHub", - "githubUsername": "KSXGitHub" - }, - { - "name": "Huw", - "url": "https://github.com/hoo29", - "githubUsername": "hoo29" - }, - { - "name": "Kelvin Jin", - "url": "https://github.com/kjin", - "githubUsername": "kjin" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff", - "githubUsername": "ajafff" - }, - { - "name": "Lishude", - "url": "https://github.com/islishude", - "githubUsername": "islishude" - }, - { - "name": "Mariusz Wiktorczyk", - "url": "https://github.com/mwiktorczyk", - "githubUsername": "mwiktorczyk" - }, - { - "name": "Mohsen Azimi", - "url": "https://github.com/mohsen1", - "githubUsername": "mohsen1" - }, - { - "name": "Nicolas Even", - "url": "https://github.com/n-e", - "githubUsername": "n-e" - }, - { - "name": "Nicolas Voigt", - "url": "https://github.com/octo-sniffle", - "githubUsername": "octo-sniffle" - }, - { - "name": "Nikita Galkin", - "url": "https://github.com/galkin", - "githubUsername": "galkin" - }, - { - "name": "Parambir Singh", - "url": "https://github.com/parambirs", - "githubUsername": "parambirs" - }, - { - "name": "Sebastian Silbermann", - "url": "https://github.com/eps1lon", - "githubUsername": "eps1lon" - }, - { - "name": "Simon Schick", - "url": "https://github.com/SimonSchick", - "githubUsername": "SimonSchick" - }, - { - "name": "Thomas den Hollander", - "url": "https://github.com/ThomasdenH", - "githubUsername": "ThomasdenH" - }, - { - "name": "Wilco Bakker", - "url": "https://github.com/WilcoBakker", - "githubUsername": "WilcoBakker" - }, - { - "name": "wwwy3y3", - "url": "https://github.com/wwwy3y3", - "githubUsername": "wwwy3y3" - }, - { - "name": "Zane Hannan AU", - "url": "https://github.com/ZaneHannanAU", - "githubUsername": "ZaneHannanAU" - }, - { - "name": "Samuel Ainsworth", - "url": "https://github.com/samuela", - "githubUsername": "samuela" - }, - { - "name": "Kyle Uehlein", - "url": "https://github.com/kuehlein", - "githubUsername": "kuehlein" - }, - { - "name": "Jordi Oliveras Rovira", - "url": "https://github.com/j-oliveras", - "githubUsername": "j-oliveras" - }, - { - "name": "Thanik Bhongbhibhat", - "url": "https://github.com/bhongy", - "githubUsername": "bhongy" - }, - { - "name": "Marcin Kopacz", - "url": "https://github.com/chyzwar", - "githubUsername": "chyzwar" - }, - { - "name": "Trivikram Kamat", - "url": "https://github.com/trivikr", - "githubUsername": "trivikr" - }, - { - "name": "Minh Son Nguyen", - "url": "https://github.com/nguymin4", - "githubUsername": "nguymin4" - }, - { - "name": "Junxiao Shi", - "url": "https://github.com/yoursunny", - "githubUsername": "yoursunny" - }, - { - "name": "Ilia Baryshnikov", - "url": "https://github.com/qwelias", - "githubUsername": "qwelias" - } - ], - "main": "", - "types": "index.d.ts", - "typesVersions": { - ">=3.2.0-0": { - "*": [ - "ts3.2/*" - ] - } - }, - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/node" - }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", - "typeScriptVersion": "2.8" - -,"_resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.14.tgz" -,"_integrity": "sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA==" -,"_from": "@types/node@12.12.14" + "name": "@types/node", + "version": "12.12.14", + "description": "TypeScript definitions for Node.js", + "license": "MIT", + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft", + "githubUsername": "Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped", + "githubUsername": "DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno", + "githubUsername": "jkomyno" + }, + { + "name": "Alexander T.", + "url": "https://github.com/a-tarasyuk", + "githubUsername": "a-tarasyuk" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis", + "githubUsername": "alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya", + "githubUsername": "r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg", + "githubUsername": "btoueg" + }, + { + "name": "Bruno Scheufler", + "url": "https://github.com/brunoscheufler", + "githubUsername": "brunoscheufler" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89", + "githubUsername": "smac89" + }, + { + "name": "Christian Vaagland Tellnes", + "url": "https://github.com/tellnes", + "githubUsername": "tellnes" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy", + "githubUsername": "touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas", + "githubUsername": "DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs", + "githubUsername": "eyqs" + }, + { + "name": "Flarna", + "url": "https://github.com/Flarna", + "githubUsername": "Flarna" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK", + "githubUsername": "Hannes-Magnusson-CK" + }, + { + "name": "Hoàng Văn Khải", + "url": "https://github.com/KSXGitHub", + "githubUsername": "KSXGitHub" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29", + "githubUsername": "hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin", + "githubUsername": "kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude", + "githubUsername": "islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk", + "githubUsername": "mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1", + "githubUsername": "mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e", + "githubUsername": "n-e" + }, + { + "name": "Nicolas Voigt", + "url": "https://github.com/octo-sniffle", + "githubUsername": "octo-sniffle" + }, + { + "name": "Nikita Galkin", + "url": "https://github.com/galkin", + "githubUsername": "galkin" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs", + "githubUsername": "parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon", + "githubUsername": "eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick", + "githubUsername": "SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH", + "githubUsername": "ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker", + "githubUsername": "WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3", + "githubUsername": "wwwy3y3" + }, + { + "name": "Zane Hannan AU", + "url": "https://github.com/ZaneHannanAU", + "githubUsername": "ZaneHannanAU" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela", + "githubUsername": "samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein", + "githubUsername": "kuehlein" + }, + { + "name": "Jordi Oliveras Rovira", + "url": "https://github.com/j-oliveras", + "githubUsername": "j-oliveras" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy", + "githubUsername": "bhongy" + }, + { + "name": "Marcin Kopacz", + "url": "https://github.com/chyzwar", + "githubUsername": "chyzwar" + }, + { + "name": "Trivikram Kamat", + "url": "https://github.com/trivikr", + "githubUsername": "trivikr" + }, + { + "name": "Minh Son Nguyen", + "url": "https://github.com/nguymin4", + "githubUsername": "nguymin4" + }, + { + "name": "Junxiao Shi", + "url": "https://github.com/yoursunny", + "githubUsername": "yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "url": "https://github.com/qwelias", + "githubUsername": "qwelias" + } + ], + "main": "", + "types": "index.d.ts", + "typesVersions": { + ">=3.2.0-0": { + "*": [ + "ts3.2/*" + ] + } + }, + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "305a8ff81632f0e70287898475e87d6aedbd683a5e37cb775f9ea845625cfa06", + "typeScriptVersion": "2.8" } \ No newline at end of file diff --git a/node_modules/@types/normalize-package-data/package.json b/node_modules/@types/normalize-package-data/package.json index 82b657ae0..830641a9d 100755 --- a/node_modules/@types/normalize-package-data/package.json +++ b/node_modules/@types/normalize-package-data/package.json @@ -1,26 +1,22 @@ { - "name": "@types/normalize-package-data", - "version": "2.4.0", - "description": "TypeScript definitions for normalize-package-data", - "license": "MIT", - "contributors": [ - { - "name": "Jeff Dickey", - "url": "https://github.com/jdxcode", - "githubUsername": "jdxcode" - } - ], - "main": "", - "repository": { - "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" - }, - "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", - "typeScriptVersion": "2.0" - -,"_resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz" -,"_integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" -,"_from": "@types/normalize-package-data@2.4.0" + "name": "@types/normalize-package-data", + "version": "2.4.0", + "description": "TypeScript definitions for normalize-package-data", + "license": "MIT", + "contributors": [ + { + "name": "Jeff Dickey", + "url": "https://github.com/jdxcode", + "githubUsername": "jdxcode" + } + ], + "main": "", + "repository": { + "type": "git", + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/semver/package.json b/node_modules/@types/semver/package.json index 5bff6095b..eb5d0f55c 100644 --- a/node_modules/@types/semver/package.json +++ b/node_modules/@types/semver/package.json @@ -1,55 +1,51 @@ { - "name": "@types/semver", - "version": "7.2.0", - "description": "TypeScript definitions for semver", - "license": "MIT", - "contributors": [ - { - "name": "Bart van der Schoor", - "url": "https://github.com/Bartvds", - "githubUsername": "Bartvds" - }, - { - "name": "BendingBender", - "url": "https://github.com/BendingBender", - "githubUsername": "BendingBender" - }, - { - "name": "Lucian Buzzo", - "url": "https://github.com/LucianBuzzo", - "githubUsername": "LucianBuzzo" - }, - { - "name": "Klaus Meinhardt", - "url": "https://github.com/ajafff", - "githubUsername": "ajafff" - }, - { - "name": "ExE Boss", - "url": "https://github.com/ExE-Boss", - "githubUsername": "ExE-Boss" - }, - { - "name": "Piotr Błażejewicz", - "url": "https://github.com/peterblazejewicz", - "githubUsername": "peterblazejewicz" - } - ], - "main": "", - "types": "index.d.ts", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", - "directory": "types/semver" + "name": "@types/semver", + "version": "7.2.0", + "description": "TypeScript definitions for semver", + "license": "MIT", + "contributors": [ + { + "name": "Bart van der Schoor", + "url": "https://github.com/Bartvds", + "githubUsername": "Bartvds" }, - "scripts": {}, - "dependencies": { - "@types/node": "*" + { + "name": "BendingBender", + "url": "https://github.com/BendingBender", + "githubUsername": "BendingBender" }, - "typesPublisherContentHash": "a85c812786f6121af7012f9234a35445623e4933797ddf4b52584d65deaec9ef", - "typeScriptVersion": "2.9" - -,"_resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.2.0.tgz" -,"_integrity": "sha512-TbB0A8ACUWZt3Y6bQPstW9QNbhNeebdgLX4T/ZfkrswAfUzRiXrgd9seol+X379Wa589Pu4UEx9Uok0D4RjRCQ==" -,"_from": "@types/semver@7.2.0" + { + "name": "Lucian Buzzo", + "url": "https://github.com/LucianBuzzo", + "githubUsername": "LucianBuzzo" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" + }, + { + "name": "Piotr Błażejewicz", + "url": "https://github.com/peterblazejewicz", + "githubUsername": "peterblazejewicz" + } + ], + "main": "", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/semver" + }, + "scripts": {}, + "dependencies": { + "@types/node": "*" + }, + "typesPublisherContentHash": "a85c812786f6121af7012f9234a35445623e4933797ddf4b52584d65deaec9ef", + "typeScriptVersion": "2.9" } \ No newline at end of file diff --git a/node_modules/acorn/package.json b/node_modules/acorn/package.json index 3509ed8ad..40a5beda7 100644 --- a/node_modules/acorn/package.json +++ b/node_modules/acorn/package.json @@ -6,7 +6,9 @@ "types": "dist/acorn.d.ts", "module": "dist/acorn.mjs", "version": "7.1.1", - "engines": {"node": ">=0.4.0"}, + "engines": { + "node": ">=0.4.0" + }, "maintainers": [ { "name": "Marijn Haverbeke", @@ -31,9 +33,7 @@ "scripts": { "prepare": "cd ..; npm run build:main && npm run build:bin" }, - "bin": {"acorn": "./bin/acorn"} - -,"_resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz" -,"_integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" -,"_from": "acorn@7.1.1" + "bin": { + "acorn": "./bin/acorn" + } } \ No newline at end of file diff --git a/node_modules/aggregate-error/package.json b/node_modules/aggregate-error/package.json index bea3cd781..975b087d9 100644 --- a/node_modules/aggregate-error/package.json +++ b/node_modules/aggregate-error/package.json @@ -1,45 +1,41 @@ { - "name": "aggregate-error", - "version": "3.0.1", - "description": "Create an error from multiple errors", - "license": "MIT", - "repository": "sindresorhus/aggregate-error", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "aggregate", - "error", - "combine", - "multiple", - "many", - "collection", - "iterable", - "iterator" - ], - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.7.1", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz" -,"_integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" -,"_from": "aggregate-error@3.0.1" + "name": "aggregate-error", + "version": "3.0.1", + "description": "Create an error from multiple errors", + "license": "MIT", + "repository": "sindresorhus/aggregate-error", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "aggregate", + "error", + "combine", + "multiple", + "many", + "collection", + "iterable", + "iterator" + ], + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.7.1", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/emoji-regex/package.json b/node_modules/ansi-align/node_modules/emoji-regex/package.json index 0815d4b6b..9b1f7fa11 100644 --- a/node_modules/ansi-align/node_modules/emoji-regex/package.json +++ b/node_modules/ansi-align/node_modules/emoji-regex/package.json @@ -48,8 +48,4 @@ "unicode-11.0.0": "^0.7.7", "unicode-tr51": "^9.0.1" } - -,"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" -,"_integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" -,"_from": "emoji-regex@7.0.3" } \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json index 2a660ef08..26bde6763 100644 --- a/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/ansi-align/node_modules/is-fullwidth-code-point/package.json @@ -42,8 +42,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" -,"_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" -,"_from": "is-fullwidth-code-point@2.0.0" } \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/string-width/package.json b/node_modules/ansi-align/node_modules/string-width/package.json index 04b93127c..999be2234 100644 --- a/node_modules/ansi-align/node_modules/string-width/package.json +++ b/node_modules/ansi-align/node_modules/string-width/package.json @@ -1,60 +1,56 @@ { - "name": "string-width", - "version": "3.1.0", - "description": "Get the visual width of a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/string-width", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "string", - "str", - "character", - "char", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "devDependencies": { - "ava": "^1.0.1", - "xo": "^0.23.0" - } - -,"_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" -,"_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" -,"_from": "string-width@3.1.0" + "name": "string-width", + "version": "3.1.0", + "description": "Get the visual width of a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/string-width", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "string", + "str", + "character", + "char", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "devDependencies": { + "ava": "^1.0.1", + "xo": "^0.23.0" + } } \ No newline at end of file diff --git a/node_modules/ansi-align/node_modules/strip-ansi/package.json b/node_modules/ansi-align/node_modules/strip-ansi/package.json index b8c890988..8da283c17 100644 --- a/node_modules/ansi-align/node_modules/strip-ansi/package.json +++ b/node_modules/ansi-align/node_modules/strip-ansi/package.json @@ -1,58 +1,54 @@ { - "name": "strip-ansi", - "version": "5.2.0", - "description": "Strip ANSI escape codes from a string", - "license": "MIT", - "repository": "chalk/strip-ansi", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "strip", - "trim", - "remove", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" -,"_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" -,"_from": "strip-ansi@5.2.0" + "name": "strip-ansi", + "version": "5.2.0", + "description": "Strip ANSI escape codes from a string", + "license": "MIT", + "repository": "chalk/strip-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ansi-align/package.json b/node_modules/ansi-align/package.json index c44a43b98..dd0ee2023 100644 --- a/node_modules/ansi-align/package.json +++ b/node_modules/ansi-align/package.json @@ -40,8 +40,4 @@ "standard": "^12.0.1", "standard-version": "^4.4.0" } - -,"_resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz" -,"_integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" -,"_from": "ansi-align@3.0.0" } \ No newline at end of file diff --git a/node_modules/ansi-regex/package.json b/node_modules/ansi-regex/package.json index 3a7e5ef08..cbf44fadd 100644 --- a/node_modules/ansi-regex/package.json +++ b/node_modules/ansi-regex/package.json @@ -1,57 +1,53 @@ { - "name": "ansi-regex", - "version": "4.1.0", - "description": "Regular expression for matching ANSI escape codes", - "license": "MIT", - "repository": "chalk/ansi-regex", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava", - "view-supported": "node fixtures/view-codes.js" - }, - "files": [ - "index.js" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "text", - "regex", - "regexp", - "re", - "match", - "test", - "find", - "pattern" - ], - "devDependencies": { - "ava": "^0.25.0", - "xo": "^0.23.0" - } - -,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" -,"_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" -,"_from": "ansi-regex@4.1.0" + "name": "ansi-regex", + "version": "4.1.0", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "devDependencies": { + "ava": "^0.25.0", + "xo": "^0.23.0" + } } \ No newline at end of file diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json index 8e2972cd4..a5eb4ff0f 100644 --- a/node_modules/ansi-styles/package.json +++ b/node_modules/ansi-styles/package.json @@ -1,60 +1,56 @@ { - "name": "ansi-styles", - "version": "3.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && ava", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "color-convert": "^1.9.0" - }, - "devDependencies": { - "ava": "*", - "babel-polyfill": "^6.23.0", - "svg-term-cli": "^2.1.1", - "xo": "*" - }, - "ava": { - "require": "babel-polyfill" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" -,"_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" -,"_from": "ansi-styles@3.2.1" + "name": "ansi-styles", + "version": "3.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "color-convert": "^1.9.0" + }, + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" + }, + "ava": { + "require": "babel-polyfill" + } } \ No newline at end of file diff --git a/node_modules/argparse/package.json b/node_modules/argparse/package.json index 6bb96cb71..b16de2518 100644 --- a/node_modules/argparse/package.json +++ b/node_modules/argparse/package.json @@ -31,8 +31,4 @@ "mocha": "^3.1.0", "ndoc": "^5.0.1" } - -,"_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" -,"_integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" -,"_from": "argparse@1.0.10" } \ No newline at end of file diff --git a/node_modules/array-find-index/package.json b/node_modules/array-find-index/package.json index 8fdab7d97..ed7544350 100644 --- a/node_modules/array-find-index/package.json +++ b/node_modules/array-find-index/package.json @@ -32,8 +32,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz" -,"_integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" -,"_from": "array-find-index@1.0.2" } \ No newline at end of file diff --git a/node_modules/array-union/package.json b/node_modules/array-union/package.json index a7f5d17e0..ca61e74cb 100644 --- a/node_modules/array-union/package.json +++ b/node_modules/array-union/package.json @@ -1,42 +1,38 @@ { - "name": "array-union", - "version": "2.1.0", - "description": "Create an array of unique values, in order, from the input arrays", - "license": "MIT", - "repository": "sindresorhus/array-union", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "array", - "set", - "uniq", - "unique", - "duplicate", - "remove", - "union", - "combine", - "merge" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" -,"_integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" -,"_from": "array-union@2.1.0" + "name": "array-union", + "version": "2.1.0", + "description": "Create an array of unique values, in order, from the input arrays", + "license": "MIT", + "repository": "sindresorhus/array-union", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "array", + "set", + "uniq", + "unique", + "duplicate", + "remove", + "union", + "combine", + "merge" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/arrgv/package.json b/node_modules/arrgv/package.json index db0f2f523..620775aeb 100644 --- a/node_modules/arrgv/package.json +++ b/node_modules/arrgv/package.json @@ -30,8 +30,4 @@ "argv" ], "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz" -,"_integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==" -,"_from": "arrgv@1.0.2" } \ No newline at end of file diff --git a/node_modules/arrify/package.json b/node_modules/arrify/package.json index 5a1a8c0b5..223b18354 100644 --- a/node_modules/arrify/package.json +++ b/node_modules/arrify/package.json @@ -1,39 +1,35 @@ { - "name": "arrify", - "version": "2.0.1", - "description": "Convert a value to an array", - "license": "MIT", - "repository": "sindresorhus/arrify", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "array", - "arrify", - "arrayify", - "convert", - "value", - "ensure" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" -,"_integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" -,"_from": "arrify@2.0.1" + "name": "arrify", + "version": "2.0.1", + "description": "Convert a value to an array", + "license": "MIT", + "repository": "sindresorhus/arrify", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "array", + "arrify", + "arrayify", + "convert", + "value", + "ensure" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ava/node_modules/acorn-walk/package.json b/node_modules/ava/node_modules/acorn-walk/package.json index 555e40782..1cbd11682 100644 --- a/node_modules/ava/node_modules/acorn-walk/package.json +++ b/node_modules/ava/node_modules/acorn-walk/package.json @@ -6,7 +6,9 @@ "types": "dist/walk.d.ts", "module": "dist/walk.mjs", "version": "7.1.1", - "engines": {"node": ">=0.4.0"}, + "engines": { + "node": ">=0.4.0" + }, "maintainers": [ { "name": "Marijn Haverbeke", @@ -31,8 +33,4 @@ "prepare": "cd ..; npm run build:walk" }, "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.1.1.tgz" -,"_integrity": "sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==" -,"_from": "acorn-walk@7.1.1" } \ No newline at end of file diff --git a/node_modules/ava/node_modules/ansi-styles/package.json b/node_modules/ava/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/ava/node_modules/ansi-styles/package.json +++ b/node_modules/ava/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/ava/node_modules/chalk/package.json b/node_modules/ava/node_modules/chalk/package.json index 1266d81f3..bb745bb89 100644 --- a/node_modules/ava/node_modules/chalk/package.json +++ b/node_modules/ava/node_modules/chalk/package.json @@ -1,72 +1,68 @@ { - "name": "chalk", - "version": "4.0.0", - "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "funding": "https://github.com/chalk/chalk?sponsor=1", - "main": "source", - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, - "files": [ - "source", - "index.d.ts" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^4.0.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^15.0.0", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.28.2" - }, - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off", - "@typescript-eslint/member-ordering": "off", - "no-redeclare": "off", - "unicorn/string-content": "off", - "unicorn/better-regex": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz" -,"_integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==" -,"_from": "chalk@4.0.0" + "name": "chalk", + "version": "4.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "funding": "https://github.com/chalk/chalk?sponsor=1", + "main": "source", + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^4.0.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^15.0.0", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.28.2" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off", + "@typescript-eslint/member-ordering": "off", + "no-redeclare": "off", + "unicorn/string-content": "off", + "unicorn/better-regex": "off" + } + } } \ No newline at end of file diff --git a/node_modules/ava/node_modules/color-convert/package.json b/node_modules/ava/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/ava/node_modules/color-convert/package.json +++ b/node_modules/ava/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/ava/node_modules/color-name/package.json b/node_modules/ava/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/ava/node_modules/color-name/package.json +++ b/node_modules/ava/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/ava/node_modules/escape-string-regexp/package.json b/node_modules/ava/node_modules/escape-string-regexp/package.json index 99dd980e9..d7bec7c3d 100644 --- a/node_modules/ava/node_modules/escape-string-regexp/package.json +++ b/node_modules/ava/node_modules/escape-string-regexp/package.json @@ -1,47 +1,43 @@ { - "name": "escape-string-regexp", - "version": "2.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "maintainers": [ - "Sindre Sorhus (sindresorhus.com)", - "Joshua Boy Nicolai Appelman (jbna.nl)" - ], - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "escape", - "regex", - "regexp", - "re", - "regular", - "expression", - "string", - "str", - "special", - "characters" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" -,"_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" -,"_from": "escape-string-regexp@2.0.0" + "name": "escape-string-regexp", + "version": "2.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "re", + "regular", + "expression", + "string", + "str", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ava/node_modules/has-flag/package.json b/node_modules/ava/node_modules/has-flag/package.json index 5b10a2844..55d0058e4 100644 --- a/node_modules/ava/node_modules/has-flag/package.json +++ b/node_modules/ava/node_modules/has-flag/package.json @@ -1,50 +1,46 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" -,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" -,"_from": "has-flag@4.0.0" + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ava/node_modules/source-map-support/package.json b/node_modules/ava/node_modules/source-map-support/package.json index febada891..f15f25283 100644 --- a/node_modules/ava/node_modules/source-map-support/package.json +++ b/node_modules/ava/node_modules/source-map-support/package.json @@ -28,8 +28,4 @@ "url": "https://github.com/evanw/node-source-map-support/issues" }, "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" -,"_integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" -,"_from": "source-map-support@0.5.19" } \ No newline at end of file diff --git a/node_modules/ava/node_modules/stack-utils/package.json b/node_modules/ava/node_modules/stack-utils/package.json index 1f6223fa4..186d32844 100644 --- a/node_modules/ava/node_modules/stack-utils/package.json +++ b/node_modules/ava/node_modules/stack-utils/package.json @@ -32,8 +32,4 @@ "q": "^1.5.1", "tap": "=14.10.2-unbundled" } - -,"_resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.2.tgz" -,"_integrity": "sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==" -,"_from": "stack-utils@2.0.2" } \ No newline at end of file diff --git a/node_modules/ava/node_modules/supports-color/package.json b/node_modules/ava/node_modules/supports-color/package.json index f0982eb21..79856038d 100644 --- a/node_modules/ava/node_modules/supports-color/package.json +++ b/node_modules/ava/node_modules/supports-color/package.json @@ -1,57 +1,53 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "browser.js" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "dependencies": { - "has-flag": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" -,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" -,"_from": "supports-color@7.1.0" + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/ava/package.json b/node_modules/ava/package.json index 79ccc8482..03146bb13 100644 --- a/node_modules/ava/package.json +++ b/node_modules/ava/package.json @@ -1,144 +1,140 @@ { - "name": "ava", - "version": "3.8.1", - "description": "Testing can be a drag. AVA helps you get it done.", - "license": "MIT", - "repository": "avajs/ava", - "homepage": "https://avajs.dev", - "bin": "cli.js", - "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" - }, - "scripts": { - "test": "xo && tsd && c8 tap" - }, - "files": [ - "lib", - "*.js", - "!*.config.js", - "index.d.ts" - ], - "keywords": [ - "🦄", - "test", - "runner", - "testing", - "ava", - "concurrent", - "parallel", - "fast", - "tdd", - "cli-app", - "cli", - "jest", - "mocha", - "tape", - "tap", - "qunit", - "jasmine", - "babel", - "assert", - "assertion", - "promise", - "promises", - "async", - "function", - "await", - "generator", - "generators", - "yield", - "observable", - "observables", - "unit", - "snapshot", - "expect", - "typescript" - ], - "dependencies": { - "@concordance/react": "^2.0.0", - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1", - "ansi-styles": "^4.2.1", - "arrgv": "^1.0.2", - "arrify": "^2.0.1", - "callsites": "^3.1.0", - "chalk": "^4.0.0", - "chokidar": "^3.4.0", - "chunkd": "^2.0.1", - "ci-info": "^2.0.0", - "ci-parallel-vars": "^1.0.0", - "clean-yaml-object": "^0.1.0", - "cli-cursor": "^3.1.0", - "cli-truncate": "^2.1.0", - "code-excerpt": "^2.1.1", - "common-path-prefix": "^3.0.0", - "concordance": "^4.0.0", - "convert-source-map": "^1.7.0", - "currently-unhandled": "^0.4.1", - "debug": "^4.1.1", - "del": "^5.1.0", - "emittery": "^0.6.0", - "equal-length": "^1.0.0", - "figures": "^3.2.0", - "globby": "^11.0.0", - "ignore-by-default": "^1.0.0", - "import-local": "^3.0.2", - "indent-string": "^4.0.0", - "is-error": "^2.2.2", - "is-plain-object": "^3.0.0", - "is-promise": "^3.0.0", - "lodash": "^4.17.15", - "matcher": "^3.0.0", - "md5-hex": "^3.0.1", - "mem": "^6.1.0", - "ms": "^2.1.2", - "ora": "^4.0.4", - "p-map": "^4.0.0", - "picomatch": "^2.2.2", - "pkg-conf": "^3.1.0", - "plur": "^4.0.0", - "pretty-ms": "^6.0.1", - "read-pkg": "^5.2.0", - "resolve-cwd": "^3.0.0", - "slash": "^3.0.0", - "source-map-support": "^0.5.19", - "stack-utils": "^2.0.1", - "strip-ansi": "^6.0.0", - "supertap": "^1.0.0", - "temp-dir": "^2.0.0", - "trim-off-newlines": "^1.0.1", - "update-notifier": "^4.1.0", - "write-file-atomic": "^3.0.3", - "yargs": "^15.3.1" - }, - "devDependencies": { - "@ava/babel": "^1.0.1", - "@babel/plugin-proposal-do-expressions": "^7.8.3", - "@sinonjs/fake-timers": "^6.0.1", - "ansi-escapes": "^4.3.1", - "c8": "^7.1.0", - "delay": "^4.3.0", - "esm": "^3.2.25", - "execa": "^4.0.0", - "get-stream": "^5.1.0", - "p-event": "^4.1.0", - "proxyquire": "^2.1.3", - "react": "^16.13.1", - "react-test-renderer": "^16.13.1", - "replace-string": "^3.0.0", - "sinon": "^9.0.2", - "source-map-fixtures": "^2.1.0", - "tap": "^14.10.7", - "temp-write": "^4.0.0", - "tempy": "^0.5.0", - "touch": "^3.1.0", - "tsd": "^0.11.0", - "typescript": "^3.8.3", - "xo": "^0.30.0", - "zen-observable": "^0.8.15" - } - -,"_resolved": "https://registry.npmjs.org/ava/-/ava-3.8.1.tgz" -,"_integrity": "sha512-OPWrTxcf1EbtAaGGFQPLbx4AaVqPrFMumKOKn2SzIRo+RTKb33lF2aoVnWqBeZaJ68uSc9R6jqIE7qkG6O33uQ==" -,"_from": "ava@3.8.1" + "name": "ava", + "version": "3.8.1", + "description": "Testing can be a drag. AVA helps you get it done.", + "license": "MIT", + "repository": "avajs/ava", + "homepage": "https://avajs.dev", + "bin": "cli.js", + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0 <14 || >=14.0.0" + }, + "scripts": { + "test": "xo && tsd && c8 tap" + }, + "files": [ + "lib", + "*.js", + "!*.config.js", + "index.d.ts" + ], + "keywords": [ + "🦄", + "test", + "runner", + "testing", + "ava", + "concurrent", + "parallel", + "fast", + "tdd", + "cli-app", + "cli", + "jest", + "mocha", + "tape", + "tap", + "qunit", + "jasmine", + "babel", + "assert", + "assertion", + "promise", + "promises", + "async", + "function", + "await", + "generator", + "generators", + "yield", + "observable", + "observables", + "unit", + "snapshot", + "expect", + "typescript" + ], + "dependencies": { + "@concordance/react": "^2.0.0", + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "ansi-styles": "^4.2.1", + "arrgv": "^1.0.2", + "arrify": "^2.0.1", + "callsites": "^3.1.0", + "chalk": "^4.0.0", + "chokidar": "^3.4.0", + "chunkd": "^2.0.1", + "ci-info": "^2.0.0", + "ci-parallel-vars": "^1.0.0", + "clean-yaml-object": "^0.1.0", + "cli-cursor": "^3.1.0", + "cli-truncate": "^2.1.0", + "code-excerpt": "^2.1.1", + "common-path-prefix": "^3.0.0", + "concordance": "^4.0.0", + "convert-source-map": "^1.7.0", + "currently-unhandled": "^0.4.1", + "debug": "^4.1.1", + "del": "^5.1.0", + "emittery": "^0.6.0", + "equal-length": "^1.0.0", + "figures": "^3.2.0", + "globby": "^11.0.0", + "ignore-by-default": "^1.0.0", + "import-local": "^3.0.2", + "indent-string": "^4.0.0", + "is-error": "^2.2.2", + "is-plain-object": "^3.0.0", + "is-promise": "^3.0.0", + "lodash": "^4.17.15", + "matcher": "^3.0.0", + "md5-hex": "^3.0.1", + "mem": "^6.1.0", + "ms": "^2.1.2", + "ora": "^4.0.4", + "p-map": "^4.0.0", + "picomatch": "^2.2.2", + "pkg-conf": "^3.1.0", + "plur": "^4.0.0", + "pretty-ms": "^6.0.1", + "read-pkg": "^5.2.0", + "resolve-cwd": "^3.0.0", + "slash": "^3.0.0", + "source-map-support": "^0.5.19", + "stack-utils": "^2.0.1", + "strip-ansi": "^6.0.0", + "supertap": "^1.0.0", + "temp-dir": "^2.0.0", + "trim-off-newlines": "^1.0.1", + "update-notifier": "^4.1.0", + "write-file-atomic": "^3.0.3", + "yargs": "^15.3.1" + }, + "devDependencies": { + "@ava/babel": "^1.0.1", + "@babel/plugin-proposal-do-expressions": "^7.8.3", + "@sinonjs/fake-timers": "^6.0.1", + "ansi-escapes": "^4.3.1", + "c8": "^7.1.0", + "delay": "^4.3.0", + "esm": "^3.2.25", + "execa": "^4.0.0", + "get-stream": "^5.1.0", + "p-event": "^4.1.0", + "proxyquire": "^2.1.3", + "react": "^16.13.1", + "react-test-renderer": "^16.13.1", + "replace-string": "^3.0.0", + "sinon": "^9.0.2", + "source-map-fixtures": "^2.1.0", + "tap": "^14.10.7", + "temp-write": "^4.0.0", + "tempy": "^0.5.0", + "touch": "^3.1.0", + "tsd": "^0.11.0", + "typescript": "^3.8.3", + "xo": "^0.30.0", + "zen-observable": "^0.8.15" + } } \ No newline at end of file diff --git a/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json index 5fc21da86..55ba6f00e 100644 --- a/node_modules/balanced-match/package.json +++ b/node_modules/balanced-match/package.json @@ -46,8 +46,4 @@ "android-browser/4.2..latest" ] } - -,"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" -,"_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" -,"_from": "balanced-match@1.0.0" } \ No newline at end of file diff --git a/node_modules/before-after-hook/package.json b/node_modules/before-after-hook/package.json index e43a284df..ddd5acbe7 100644 --- a/node_modules/before-after-hook/package.json +++ b/node_modules/before-after-hook/package.json @@ -67,8 +67,4 @@ } ] } - -,"_resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz" -,"_integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==" -,"_from": "before-after-hook@2.1.0" } \ No newline at end of file diff --git a/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json index 29fed23f6..e1ec6292f 100644 --- a/node_modules/binary-extensions/package.json +++ b/node_modules/binary-extensions/package.json @@ -1,42 +1,38 @@ { - "name": "binary-extensions", - "version": "2.0.0", - "description": "List of binary file extensions", - "license": "MIT", - "repository": "sindresorhus/binary-extensions", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "binary-extensions.json", - "binary-extensions.json.d.ts" - ], - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "json", - "list", - "array" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz" -,"_integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==" -,"_from": "binary-extensions@2.0.0" + "name": "binary-extensions", + "version": "2.0.0", + "description": "List of binary file extensions", + "license": "MIT", + "repository": "sindresorhus/binary-extensions", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "binary-extensions.json", + "binary-extensions.json.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "json", + "list", + "array" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/blueimp-md5/package.json b/node_modules/blueimp-md5/package.json index 4fcfc0813..c7b89fc14 100644 --- a/node_modules/blueimp-md5/package.json +++ b/node_modules/blueimp-md5/package.json @@ -70,8 +70,4 @@ "js/*.js.map" ], "main": "js/md5.js" - -,"_resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.15.0.tgz" -,"_integrity": "sha512-Zc6sowqlCWu3+V0bocZwdaPPXlRv14EHtYcQDCOghj9EdyKLMkAOODBh3HHAx5r7QRylDYCOaXa/b/edgBLDpA==" -,"_from": "blueimp-md5@2.15.0" } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/ansi-styles/package.json b/node_modules/boxen/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/boxen/node_modules/ansi-styles/package.json +++ b/node_modules/boxen/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/chalk/package.json b/node_modules/boxen/node_modules/chalk/package.json index c75d30e94..b68e931e7 100644 --- a/node_modules/boxen/node_modules/chalk/package.json +++ b/node_modules/boxen/node_modules/chalk/package.json @@ -1,67 +1,63 @@ { - "name": "chalk", - "version": "3.0.0", - "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, - "files": [ - "source", - "index.d.ts" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" -,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" -,"_from": "chalk@3.0.0" + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/color-convert/package.json b/node_modules/boxen/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/boxen/node_modules/color-convert/package.json +++ b/node_modules/boxen/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/color-name/package.json b/node_modules/boxen/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/boxen/node_modules/color-name/package.json +++ b/node_modules/boxen/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/has-flag/package.json b/node_modules/boxen/node_modules/has-flag/package.json index 5b10a2844..55d0058e4 100644 --- a/node_modules/boxen/node_modules/has-flag/package.json +++ b/node_modules/boxen/node_modules/has-flag/package.json @@ -1,50 +1,46 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" -,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" -,"_from": "has-flag@4.0.0" + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/supports-color/package.json b/node_modules/boxen/node_modules/supports-color/package.json index f0982eb21..79856038d 100644 --- a/node_modules/boxen/node_modules/supports-color/package.json +++ b/node_modules/boxen/node_modules/supports-color/package.json @@ -1,57 +1,53 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "browser.js" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "dependencies": { - "has-flag": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" -,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" -,"_from": "supports-color@7.1.0" + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/boxen/node_modules/type-fest/package.json b/node_modules/boxen/node_modules/type-fest/package.json index e896022e8..4ae131df3 100644 --- a/node_modules/boxen/node_modules/type-fest/package.json +++ b/node_modules/boxen/node_modules/type-fest/package.json @@ -1,55 +1,51 @@ { - "name": "type-fest", - "version": "0.8.1", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && tsd" - }, - "files": [ - "index.d.ts", - "source" - ], - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^2.2.0", - "@typescript-eslint/parser": "^2.2.0", - "eslint-config-xo-typescript": "^0.18.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off", - "@typescript-eslint/indent": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" -,"_integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" -,"_from": "type-fest@0.8.1" + "name": "type-fest", + "version": "0.8.1", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^2.2.0", + "@typescript-eslint/parser": "^2.2.0", + "eslint-config-xo-typescript": "^0.18.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off", + "@typescript-eslint/indent": "off" + } + } } \ No newline at end of file diff --git a/node_modules/boxen/package.json b/node_modules/boxen/package.json index 003986fb7..9ecbd6db5 100644 --- a/node_modules/boxen/package.json +++ b/node_modules/boxen/package.json @@ -1,55 +1,51 @@ { - "name": "boxen", - "version": "4.2.0", - "description": "Create boxes in the terminal", - "license": "MIT", - "repository": "sindresorhus/boxen", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "cli", - "box", - "boxes", - "terminal", - "term", - "console", - "ascii", - "unicode", - "border", - "text" - ], - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "nyc": "^14.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz" -,"_integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" -,"_from": "boxen@4.2.0" + "name": "boxen", + "version": "4.2.0", + "description": "Create boxes in the terminal", + "license": "MIT", + "repository": "sindresorhus/boxen", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "box", + "boxes", + "terminal", + "term", + "console", + "ascii", + "unicode", + "border", + "text" + ], + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "nyc": "^14.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json index 99f83cd7d..c8e652883 100644 --- a/node_modules/brace-expansion/package.json +++ b/node_modules/brace-expansion/package.json @@ -44,8 +44,4 @@ "android-browser/4.2..latest" ] } - -,"_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" -,"_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" -,"_from": "brace-expansion@1.1.11" } \ No newline at end of file diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json index 008f6401a..da327631e 100644 --- a/node_modules/braces/package.json +++ b/node_modules/braces/package.json @@ -74,8 +74,4 @@ "gulp-format-md" ] } - -,"_resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" -,"_integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" -,"_from": "braces@3.0.2" } \ No newline at end of file diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json index a01e0f19a..22277b00f 100644 --- a/node_modules/buffer-from/package.json +++ b/node_modules/buffer-from/package.json @@ -16,8 +16,4 @@ "buffer", "buffer from" ] - -,"_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" -,"_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" -,"_from": "buffer-from@1.1.1" } \ No newline at end of file diff --git a/node_modules/builtin-modules/package.json b/node_modules/builtin-modules/package.json index 830ed46e2..3ea9033b3 100644 --- a/node_modules/builtin-modules/package.json +++ b/node_modules/builtin-modules/package.json @@ -37,8 +37,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" -,"_integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" -,"_from": "builtin-modules@1.1.1" } \ No newline at end of file diff --git a/node_modules/cacheable-request/node_modules/get-stream/package.json b/node_modules/cacheable-request/node_modules/get-stream/package.json index 646812e99..7c86cfc9f 100644 --- a/node_modules/cacheable-request/node_modules/get-stream/package.json +++ b/node_modules/cacheable-request/node_modules/get-stream/package.json @@ -1,53 +1,49 @@ { - "name": "get-stream", - "version": "5.1.0", - "description": "Get a stream as a string, buffer, or array", - "license": "MIT", - "repository": "sindresorhus/get-stream", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "buffer-stream.js" - ], - "keywords": [ - "get", - "stream", - "promise", - "concat", - "string", - "text", - "buffer", - "read", - "data", - "consume", - "readable", - "readablestream", - "array", - "object" - ], - "dependencies": { - "pump": "^3.0.0" - }, - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "into-stream": "^5.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz" -,"_integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" -,"_from": "get-stream@5.1.0" + "name": "get-stream", + "version": "5.1.0", + "description": "Get a stream as a string, buffer, or array", + "license": "MIT", + "repository": "sindresorhus/get-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "buffer-stream.js" + ], + "keywords": [ + "get", + "stream", + "promise", + "concat", + "string", + "text", + "buffer", + "read", + "data", + "consume", + "readable", + "readablestream", + "array", + "object" + ], + "dependencies": { + "pump": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "into-stream": "^5.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json index abe6ca778..f9e75a348 100644 --- a/node_modules/cacheable-request/node_modules/lowercase-keys/package.json +++ b/node_modules/cacheable-request/node_modules/lowercase-keys/package.json @@ -1,42 +1,38 @@ { - "name": "lowercase-keys", - "version": "2.0.0", - "description": "Lowercase the keys of an object", - "license": "MIT", - "repository": "sindresorhus/lowercase-keys", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "object", - "assign", - "extend", - "properties", - "lowercase", - "lower-case", - "case", - "keys", - "key" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz" -,"_integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" -,"_from": "lowercase-keys@2.0.0" + "name": "lowercase-keys", + "version": "2.0.0", + "description": "Lowercase the keys of an object", + "license": "MIT", + "repository": "sindresorhus/lowercase-keys", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "assign", + "extend", + "properties", + "lowercase", + "lower-case", + "case", + "keys", + "key" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/cacheable-request/package.json b/node_modules/cacheable-request/package.json index 3b9865307..ba9468bd6 100644 --- a/node_modules/cacheable-request/package.json +++ b/node_modules/cacheable-request/package.json @@ -1,60 +1,56 @@ { - "name": "cacheable-request", - "version": "6.1.0", - "description": "Wrap native HTTP requests with RFC compliant cache support", - "license": "MIT", - "repository": "lukechilds/cacheable-request", - "author": "Luke Childs (http://lukechilds.co.uk)", - "main": "src/index.js", - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava", - "coverage": "nyc report --reporter=text-lcov | coveralls" - }, - "files": [ - "src" - ], - "keywords": [ - "HTTP", - "HTTPS", - "cache", - "caching", - "layer", - "cacheable", - "RFC 7234", - "RFC", - "7234", - "compliant" - ], - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "devDependencies": { - "@keyv/sqlite": "^2.0.0", - "ava": "^1.1.0", - "coveralls": "^3.0.0", - "create-test-server": "3.0.0", - "delay": "^4.0.0", - "eslint-config-xo-lukechilds": "^1.0.0", - "nyc": "^14.1.1", - "pify": "^4.0.0", - "sqlite3": "^4.0.2", - "this": "^1.0.2", - "xo": "^0.23.0" - }, - "xo": { - "extends": "xo-lukechilds" - } - -,"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz" -,"_integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" -,"_from": "cacheable-request@6.1.0" + "name": "cacheable-request", + "version": "6.1.0", + "description": "Wrap native HTTP requests with RFC compliant cache support", + "license": "MIT", + "repository": "lukechilds/cacheable-request", + "author": "Luke Childs (http://lukechilds.co.uk)", + "main": "src/index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava", + "coverage": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "src" + ], + "keywords": [ + "HTTP", + "HTTPS", + "cache", + "caching", + "layer", + "cacheable", + "RFC 7234", + "RFC", + "7234", + "compliant" + ], + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "devDependencies": { + "@keyv/sqlite": "^2.0.0", + "ava": "^1.1.0", + "coveralls": "^3.0.0", + "create-test-server": "3.0.0", + "delay": "^4.0.0", + "eslint-config-xo-lukechilds": "^1.0.0", + "nyc": "^14.1.1", + "pify": "^4.0.0", + "sqlite3": "^4.0.2", + "this": "^1.0.2", + "xo": "^0.23.0" + }, + "xo": { + "extends": "xo-lukechilds" + } } \ No newline at end of file diff --git a/node_modules/callsites/package.json b/node_modules/callsites/package.json index 7e70e5686..46b1de0c6 100644 --- a/node_modules/callsites/package.json +++ b/node_modules/callsites/package.json @@ -1,43 +1,39 @@ { - "name": "callsites", - "version": "3.1.0", - "description": "Get callsites from the V8 stack trace API", - "license": "MIT", - "repository": "sindresorhus/callsites", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "stacktrace", - "v8", - "callsite", - "callsites", - "stack", - "trace", - "function", - "file", - "line", - "debug" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" -,"_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" -,"_from": "callsites@3.1.0" + "name": "callsites", + "version": "3.1.0", + "description": "Get callsites from the V8 stack trace API", + "license": "MIT", + "repository": "sindresorhus/callsites", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "stacktrace", + "v8", + "callsite", + "callsites", + "stack", + "trace", + "function", + "file", + "line", + "debug" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/camelcase/package.json b/node_modules/camelcase/package.json index 07bc8fe9c..1b48bb0da 100644 --- a/node_modules/camelcase/package.json +++ b/node_modules/camelcase/package.json @@ -1,47 +1,43 @@ { - "name": "camelcase", - "version": "5.3.1", - "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", - "license": "MIT", - "repository": "sindresorhus/camelcase", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "camelcase", - "camel-case", - "camel", - "case", - "dash", - "hyphen", - "dot", - "underscore", - "separator", - "string", - "text", - "convert", - "pascalcase", - "pascal-case" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" -,"_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" -,"_from": "camelcase@5.3.1" + "name": "camelcase", + "version": "5.3.1", + "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", + "license": "MIT", + "repository": "sindresorhus/camelcase", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "camelcase", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "dot", + "underscore", + "separator", + "string", + "text", + "convert", + "pascalcase", + "pascal-case" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json index 0b96e3717..aed521aec 100644 --- a/node_modules/chalk/package.json +++ b/node_modules/chalk/package.json @@ -1,75 +1,71 @@ { - "name": "chalk", - "version": "2.4.2", - "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava", - "bench": "matcha benchmark.js", - "coveralls": "nyc report --reporter=text-lcov | coveralls" - }, - "files": [ - "index.js", - "templates.js", - "types/index.d.ts", - "index.js.flow" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "devDependencies": { - "ava": "*", - "coveralls": "^3.0.0", - "execa": "^0.9.0", - "flow-bin": "^0.68.0", - "import-fresh": "^2.0.0", - "matcha": "^0.7.0", - "nyc": "^11.0.2", - "resolve-from": "^4.0.0", - "typescript": "^2.5.3", - "xo": "*" - }, - "types": "types/index.d.ts", - "xo": { - "envs": [ - "node", - "mocha" - ], - "ignores": [ - "test/_flow.js" - ] - } - -,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" -,"_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" -,"_from": "chalk@2.4.2" + "name": "chalk", + "version": "2.4.2", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava", + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "index.js", + "templates.js", + "types/index.d.ts", + "index.js.flow" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, + "types": "types/index.d.ts", + "xo": { + "envs": [ + "node", + "mocha" + ], + "ignores": [ + "test/_flow.js" + ] + } } \ No newline at end of file diff --git a/node_modules/charenc/package.json b/node_modules/charenc/package.json index df5475001..80ac698de 100644 --- a/node_modules/charenc/package.json +++ b/node_modules/charenc/package.json @@ -21,8 +21,4 @@ "engines": { "node": "*" } - -,"_resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz" -,"_integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" -,"_from": "charenc@0.0.2" } \ No newline at end of file diff --git a/node_modules/chokidar/node_modules/anymatch/package.json b/node_modules/chokidar/node_modules/anymatch/package.json index 5b9f2c4fa..aa33dbcdb 100644 --- a/node_modules/chokidar/node_modules/anymatch/package.json +++ b/node_modules/chokidar/node_modules/anymatch/package.json @@ -45,8 +45,4 @@ "engines": { "node": ">= 8" } - -,"_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" -,"_integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==" -,"_from": "anymatch@3.1.1" } \ No newline at end of file diff --git a/node_modules/chokidar/node_modules/normalize-path/package.json b/node_modules/chokidar/node_modules/normalize-path/package.json index 73ab0c933..101634b95 100644 --- a/node_modules/chokidar/node_modules/normalize-path/package.json +++ b/node_modules/chokidar/node_modules/normalize-path/package.json @@ -74,8 +74,4 @@ "reflinks": true } } - -,"_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" -,"_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" -,"_from": "normalize-path@3.0.0" } \ No newline at end of file diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json index 0891bbdf2..84d082a47 100644 --- a/node_modules/chokidar/package.json +++ b/node_modules/chokidar/package.json @@ -125,8 +125,4 @@ "text" ] } - -,"_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz" -,"_integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==" -,"_from": "chokidar@3.4.0" } \ No newline at end of file diff --git a/node_modules/chunkd/package.json b/node_modules/chunkd/package.json index ea5843112..6dfab968b 100644 --- a/node_modules/chunkd/package.json +++ b/node_modules/chunkd/package.json @@ -1,58 +1,54 @@ { - "name": "chunkd", - "version": "2.0.1", - "description": "Get a chunk of an array based on the total number of chunks and current index", - "main": "dist/chunkd.js", - "repository": "jamiebuilds/chunkd", - "author": "Jamie Kyle ", - "license": "MIT", - "keywords": [ - "util", - "chunk", - "index", - "total" - ], - "files": [ - "dist" - ], - "scripts": { - "check:typescript": "tsc --noEmit", - "check:prettier": "prettier --check '**'", - "build": "rm -rf dist && tsc", - "format": "prettier --write '**'", - "test": "ava", - "prepublishOnly": "npm run -s build" - }, - "devDependencies": { - "ava": "^2.4.0", - "husky": "^3.1.0", - "lint-staged": "^9.4.3", - "prettier": "^1.19.1", - "ts-node": "^8.5.2", - "typescript": "^3.7.2" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "lint-staged": { - "*": [ - "prettier --write", - "git add" - ] - }, - "ava": { - "compileEnhancements": false, - "extensions": [ - "ts" - ], - "require": [ - "ts-node/register" - ] - } - -,"_resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz" -,"_integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==" -,"_from": "chunkd@2.0.1" + "name": "chunkd", + "version": "2.0.1", + "description": "Get a chunk of an array based on the total number of chunks and current index", + "main": "dist/chunkd.js", + "repository": "jamiebuilds/chunkd", + "author": "Jamie Kyle ", + "license": "MIT", + "keywords": [ + "util", + "chunk", + "index", + "total" + ], + "files": [ + "dist" + ], + "scripts": { + "check:typescript": "tsc --noEmit", + "check:prettier": "prettier --check '**'", + "build": "rm -rf dist && tsc", + "format": "prettier --write '**'", + "test": "ava", + "prepublishOnly": "npm run -s build" + }, + "devDependencies": { + "ava": "^2.4.0", + "husky": "^3.1.0", + "lint-staged": "^9.4.3", + "prettier": "^1.19.1", + "ts-node": "^8.5.2", + "typescript": "^3.7.2" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + }, + "lint-staged": { + "*": [ + "prettier --write", + "git add" + ] + }, + "ava": { + "compileEnhancements": false, + "extensions": [ + "ts" + ], + "require": [ + "ts-node/register" + ] + } } \ No newline at end of file diff --git a/node_modules/ci-info/package.json b/node_modules/ci-info/package.json index a62c59e19..b3f5c2ca9 100644 --- a/node_modules/ci-info/package.json +++ b/node_modules/ci-info/package.json @@ -33,8 +33,4 @@ 55.778231, 12.593179 ] - -,"_resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" -,"_integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" -,"_from": "ci-info@2.0.0" } \ No newline at end of file diff --git a/node_modules/ci-parallel-vars/package.json b/node_modules/ci-parallel-vars/package.json index a865c584e..5e6cc758a 100644 --- a/node_modules/ci-parallel-vars/package.json +++ b/node_modules/ci-parallel-vars/package.json @@ -33,8 +33,4 @@ "flow-bin": "^0.73.0", "spawndamnit": "^2.0.0" } - -,"_resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.0.tgz" -,"_integrity": "sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g==" -,"_from": "ci-parallel-vars@1.0.0" } \ No newline at end of file diff --git a/node_modules/clean-stack/package.json b/node_modules/clean-stack/package.json index c727708c6..fb9bd0b77 100644 --- a/node_modules/clean-stack/package.json +++ b/node_modules/clean-stack/package.json @@ -1,43 +1,39 @@ { - "name": "clean-stack", - "version": "2.2.0", - "description": "Clean up error stack traces", - "license": "MIT", - "repository": "sindresorhus/clean-stack", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "clean", - "stack", - "trace", - "traces", - "error", - "err", - "electron" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "browser": { - "os": false - } - -,"_resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" -,"_integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" -,"_from": "clean-stack@2.2.0" + "name": "clean-stack", + "version": "2.2.0", + "description": "Clean up error stack traces", + "license": "MIT", + "repository": "sindresorhus/clean-stack", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "clean", + "stack", + "trace", + "traces", + "error", + "err", + "electron" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "browser": { + "os": false + } } \ No newline at end of file diff --git a/node_modules/clean-yaml-object/package.json b/node_modules/clean-yaml-object/package.json index 6b362458f..27a6564ba 100644 --- a/node_modules/clean-yaml-object/package.json +++ b/node_modules/clean-yaml-object/package.json @@ -34,8 +34,4 @@ "nyc": "^5.3.0", "xo": "^0.12.1" } - -,"_resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz" -,"_integrity": "sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=" -,"_from": "clean-yaml-object@0.1.0" } \ No newline at end of file diff --git a/node_modules/cli-boxes/package.json b/node_modules/cli-boxes/package.json index c4becb60f..f77701b7e 100644 --- a/node_modules/cli-boxes/package.json +++ b/node_modules/cli-boxes/package.json @@ -1,45 +1,41 @@ { - "name": "cli-boxes", - "version": "2.2.0", - "description": "Boxes for use in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-boxes", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "boxes.json" - ], - "keywords": [ - "cli", - "box", - "boxes", - "terminal", - "term", - "console", - "ascii", - "unicode", - "border", - "text", - "json" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz" -,"_integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==" -,"_from": "cli-boxes@2.2.0" + "name": "cli-boxes", + "version": "2.2.0", + "description": "Boxes for use in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-boxes", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "boxes.json" + ], + "keywords": [ + "cli", + "box", + "boxes", + "terminal", + "term", + "console", + "ascii", + "unicode", + "border", + "text", + "json" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/cli-cursor/package.json b/node_modules/cli-cursor/package.json index c4e5e9014..38d50d2c4 100644 --- a/node_modules/cli-cursor/package.json +++ b/node_modules/cli-cursor/package.json @@ -1,50 +1,46 @@ { - "name": "cli-cursor", - "version": "3.1.0", - "description": "Toggle the CLI cursor", - "license": "MIT", - "repository": "sindresorhus/cli-cursor", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "cli", - "cursor", - "ansi", - "toggle", - "display", - "show", - "hide", - "term", - "terminal", - "console", - "tty", - "shell", - "command-line" - ], - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "devDependencies": { - "@types/node": "^12.0.7", - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" -,"_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" -,"_from": "cli-cursor@3.1.0" + "name": "cli-cursor", + "version": "3.1.0", + "description": "Toggle the CLI cursor", + "license": "MIT", + "repository": "sindresorhus/cli-cursor", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "cursor", + "ansi", + "toggle", + "display", + "show", + "hide", + "term", + "terminal", + "console", + "tty", + "shell", + "command-line" + ], + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "devDependencies": { + "@types/node": "^12.0.7", + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/cli-spinners/package.json b/node_modules/cli-spinners/package.json index 4fb3ec4b0..23323c5f4 100644 --- a/node_modules/cli-spinners/package.json +++ b/node_modules/cli-spinners/package.json @@ -1,51 +1,47 @@ { - "name": "cli-spinners", - "version": "2.3.0", - "description": "Spinners for use in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-spinners", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd", - "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet" - }, - "files": [ - "index.js", - "index.d.ts", - "spinners.json" - ], - "keywords": [ - "cli", - "spinner", - "spinners", - "terminal", - "term", - "console", - "ascii", - "unicode", - "loading", - "indicator", - "progress", - "busy", - "wait", - "idle", - "json" - ], - "devDependencies": { - "ava": "^1.4.1", - "log-update": "^3.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz" -,"_integrity": "sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w==" -,"_from": "cli-spinners@2.3.0" + "name": "cli-spinners", + "version": "2.3.0", + "description": "Spinners for use in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-spinners", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd", + "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet" + }, + "files": [ + "index.js", + "index.d.ts", + "spinners.json" + ], + "keywords": [ + "cli", + "spinner", + "spinners", + "terminal", + "term", + "console", + "ascii", + "unicode", + "loading", + "indicator", + "progress", + "busy", + "wait", + "idle", + "json" + ], + "devDependencies": { + "ava": "^1.4.1", + "log-update": "^3.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/cli-truncate/package.json b/node_modules/cli-truncate/package.json index e4933a52c..0d9e9a141 100644 --- a/node_modules/cli-truncate/package.json +++ b/node_modules/cli-truncate/package.json @@ -1,50 +1,46 @@ { - "name": "cli-truncate", - "version": "2.1.0", - "description": "Truncate a string to a specific width in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-truncate", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "truncate", - "ellipsis", - "text", - "limit", - "slice", - "cli", - "terminal", - "term", - "shell", - "width", - "ansi", - "string" - ], - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz" -,"_integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" -,"_from": "cli-truncate@2.1.0" + "name": "cli-truncate", + "version": "2.1.0", + "description": "Truncate a string to a specific width in the terminal", + "license": "MIT", + "repository": "sindresorhus/cli-truncate", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "truncate", + "ellipsis", + "text", + "limit", + "slice", + "cli", + "terminal", + "term", + "shell", + "width", + "ansi", + "string" + ], + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json index 513f5ba00..2869089cc 100644 --- a/node_modules/cliui/package.json +++ b/node_modules/cliui/package.json @@ -62,8 +62,4 @@ "engine": { "node": ">=8" } - -,"_resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" -,"_integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" -,"_from": "cliui@6.0.0" } \ No newline at end of file diff --git a/node_modules/clone-response/package.json b/node_modules/clone-response/package.json index e6bead037..24e834356 100644 --- a/node_modules/clone-response/package.json +++ b/node_modules/clone-response/package.json @@ -41,8 +41,4 @@ "pify": "^3.0.0", "xo": "^0.19.0" } - -,"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" -,"_integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" -,"_from": "clone-response@1.0.2" } \ No newline at end of file diff --git a/node_modules/clone/package.json b/node_modules/clone/package.json index 075e6aeae..9305b656e 100644 --- a/node_modules/clone/package.json +++ b/node_modules/clone/package.json @@ -48,8 +48,4 @@ "scripts": { "test": "nodeunit test.js" } - -,"_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" -,"_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" -,"_from": "clone@1.0.4" } \ No newline at end of file diff --git a/node_modules/code-excerpt/package.json b/node_modules/code-excerpt/package.json index 9ec17bf8e..1f55433e7 100644 --- a/node_modules/code-excerpt/package.json +++ b/node_modules/code-excerpt/package.json @@ -28,8 +28,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.1.tgz" -,"_integrity": "sha512-tJLhH3EpFm/1x7heIW0hemXJTUU5EWl2V0EIX558jp05Mt1U6DVryCgkp3l37cxqs+DNbNgxG43SkwJXpQ14Jw==" -,"_from": "code-excerpt@2.1.1" } \ No newline at end of file diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json index faaa48587..6446c22d5 100644 --- a/node_modules/color-convert/package.json +++ b/node_modules/color-convert/package.json @@ -43,8 +43,4 @@ "dependencies": { "color-name": "1.1.3" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" -,"_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" -,"_from": "color-convert@1.9.3" } \ No newline at end of file diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json index 0afa4856d..40d588535 100644 --- a/node_modules/color-name/package.json +++ b/node_modules/color-name/package.json @@ -22,8 +22,4 @@ "url": "https://github.com/dfcreative/color-name/issues" }, "homepage": "https://github.com/dfcreative/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" -,"_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" -,"_from": "color-name@1.1.3" } \ No newline at end of file diff --git a/node_modules/commander/package.json b/node_modules/commander/package.json index 4c42e53cc..8b14f0069 100644 --- a/node_modules/commander/package.json +++ b/node_modules/commander/package.json @@ -35,8 +35,4 @@ "typescript": "^3.6.3" }, "typings": "typings/index.d.ts" - -,"_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" -,"_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" -,"_from": "commander@2.20.3" } \ No newline at end of file diff --git a/node_modules/common-path-prefix/package.json b/node_modules/common-path-prefix/package.json index 81747f16b..5fbc77c3a 100644 --- a/node_modules/common-path-prefix/package.json +++ b/node_modules/common-path-prefix/package.json @@ -38,8 +38,4 @@ "nyc": "^14.1.1", "standard": "^14.0.2" } - -,"_resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz" -,"_integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" -,"_from": "common-path-prefix@3.0.0" } \ No newline at end of file diff --git a/node_modules/concat-map/package.json b/node_modules/concat-map/package.json index 03d173495..396f2c1b9 100644 --- a/node_modules/concat-map/package.json +++ b/node_modules/concat-map/package.json @@ -1,47 +1,59 @@ { - "name" : "concat-map", - "description" : "concatenative mapdashery", - "version" : "0.0.1", - "repository" : { - "type" : "git", - "url" : "git://github.com/substack/node-concat-map.git" - }, - "main" : "index.js", - "keywords" : [ - "concat", - "concatMap", - "map", - "functional", - "higher-order" - ], - "directories" : { - "example" : "example", - "test" : "test" - }, - "scripts" : { - "test" : "tape test/*.js" - }, - "devDependencies" : { - "tape" : "~2.4.0" - }, - "license" : "MIT", - "author" : { - "name" : "James Halliday", - "email" : "mail@substack.net", - "url" : "http://substack.net" - }, - "testling" : { - "files" : "test/*.js", - "browsers" : { - "ie" : [ 6, 7, 8, 9 ], - "ff" : [ 3.5, 10, 15.0 ], - "chrome" : [ 10, 22 ], - "safari" : [ 5.1 ], - "opera" : [ 12 ] - } + "name": "concat-map", + "description": "concatenative mapdashery", + "version": "0.0.1", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-concat-map.git" + }, + "main": "index.js", + "keywords": [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "directories": { + "example": "example", + "test": "test" + }, + "scripts": { + "test": "tape test/*.js" + }, + "devDependencies": { + "tape": "~2.4.0" + }, + "license": "MIT", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "testling": { + "files": "test/*.js", + "browsers": { + "ie": [ + 6, + 7, + 8, + 9 + ], + "ff": [ + 3.5, + 10, + 15 + ], + "chrome": [ + 10, + 22 + ], + "safari": [ + 5.1 + ], + "opera": [ + 12 + ] } - -,"_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" -,"_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" -,"_from": "concat-map@0.0.1" + } } \ No newline at end of file diff --git a/node_modules/concordance/node_modules/md5-hex/package.json b/node_modules/concordance/node_modules/md5-hex/package.json index 9898d7cc7..f45fb17da 100644 --- a/node_modules/concordance/node_modules/md5-hex/package.json +++ b/node_modules/concordance/node_modules/md5-hex/package.json @@ -36,8 +36,4 @@ "xo": "*" }, "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz" -,"_integrity": "sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM=" -,"_from": "md5-hex@2.0.0" } \ No newline at end of file diff --git a/node_modules/concordance/node_modules/semver/package.json b/node_modules/concordance/node_modules/semver/package.json index 31e12dde0..90e287ecf 100644 --- a/node_modules/concordance/node_modules/semver/package.json +++ b/node_modules/concordance/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" -,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" -,"_from": "semver@5.7.1" } \ No newline at end of file diff --git a/node_modules/concordance/package.json b/node_modules/concordance/package.json index 0810c2a4b..6c8901446 100644 --- a/node_modules/concordance/package.json +++ b/node_modules/concordance/package.json @@ -61,8 +61,4 @@ ] }, "standard-engine": "@novemberborn/as-i-preach" - -,"_resolved": "https://registry.npmjs.org/concordance/-/concordance-4.0.0.tgz" -,"_integrity": "sha512-l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ==" -,"_from": "concordance@4.0.0" } \ No newline at end of file diff --git a/node_modules/configstore/package.json b/node_modules/configstore/package.json index 26ac1332f..08dd5b83a 100644 --- a/node_modules/configstore/package.json +++ b/node_modules/configstore/package.json @@ -1,50 +1,46 @@ { - "name": "configstore", - "version": "5.0.1", - "description": "Easily load and save config without having to think about where and how", - "license": "BSD-2-Clause", - "repository": "yeoman/configstore", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "config", - "store", - "storage", - "configuration", - "settings", - "preferences", - "json", - "data", - "persist", - "persistent", - "save" - ], - "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz" -,"_integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" -,"_from": "configstore@5.0.1" + "name": "configstore", + "version": "5.0.1", + "description": "Easily load and save config without having to think about where and how", + "license": "BSD-2-Clause", + "repository": "yeoman/configstore", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "config", + "store", + "storage", + "configuration", + "settings", + "preferences", + "json", + "data", + "persist", + "persistent", + "save" + ], + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/console-log-level/package.json b/node_modules/console-log-level/package.json index a511957fd..55a7bcc1c 100644 --- a/node_modules/console-log-level/package.json +++ b/node_modules/console-log-level/package.json @@ -34,8 +34,4 @@ 55.778253, 12.593208 ] - -,"_resolved": "https://registry.npmjs.org/console-log-level/-/console-log-level-1.4.1.tgz" -,"_integrity": "sha512-VZzbIORbP+PPcN/gg3DXClTLPLg5Slwd5fL2MIc+o1qZ4BXBvWyc6QxPk6T/Mkr6IVjRpoAGf32XxP3ZWMVRcQ==" -,"_from": "console-log-level@1.4.1" } \ No newline at end of file diff --git a/node_modules/convert-source-map/package.json b/node_modules/convert-source-map/package.json index 60f4a887c..40ec9f5af 100644 --- a/node_modules/convert-source-map/package.json +++ b/node_modules/convert-source-map/package.json @@ -41,8 +41,4 @@ "browser": { "fs": false } - -,"_resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" -,"_integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" -,"_from": "convert-source-map@1.7.0" } \ No newline at end of file diff --git a/node_modules/convert-to-spaces/package.json b/node_modules/convert-to-spaces/package.json index 59b226f37..330450e4d 100644 --- a/node_modules/convert-to-spaces/package.json +++ b/node_modules/convert-to-spaces/package.json @@ -22,8 +22,4 @@ "ava": "^0.18.2", "xo": "^0.17.1" } - -,"_resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz" -,"_integrity": "sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=" -,"_from": "convert-to-spaces@1.0.2" } \ No newline at end of file diff --git a/node_modules/cross-spawn/node_modules/semver/package.json b/node_modules/cross-spawn/node_modules/semver/package.json index 31e12dde0..90e287ecf 100644 --- a/node_modules/cross-spawn/node_modules/semver/package.json +++ b/node_modules/cross-spawn/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" -,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" -,"_from": "semver@5.7.1" } \ No newline at end of file diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json index 3d5bf3149..f1c88a040 100644 --- a/node_modules/cross-spawn/package.json +++ b/node_modules/cross-spawn/package.json @@ -73,8 +73,4 @@ "engines": { "node": ">=4.8" } - -,"_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" -,"_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" -,"_from": "cross-spawn@6.0.5" } \ No newline at end of file diff --git a/node_modules/crypt/package.json b/node_modules/crypt/package.json index 7177e5102..b4b8c991c 100644 --- a/node_modules/crypt/package.json +++ b/node_modules/crypt/package.json @@ -19,8 +19,4 @@ "engines": { "node": "*" } - -,"_resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz" -,"_integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" -,"_from": "crypt@0.0.2" } \ No newline at end of file diff --git a/node_modules/crypto-random-string/package.json b/node_modules/crypto-random-string/package.json index 6089e2c65..ef7255a61 100644 --- a/node_modules/crypto-random-string/package.json +++ b/node_modules/crypto-random-string/package.json @@ -1,44 +1,40 @@ { - "name": "crypto-random-string", - "version": "2.0.0", - "description": "Generate a cryptographically strong random string", - "license": "MIT", - "repository": "sindresorhus/crypto-random-string", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "random", - "string", - "text", - "id", - "identifier", - "slug", - "salt", - "crypto", - "strong", - "secure", - "hex" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" -,"_integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" -,"_from": "crypto-random-string@2.0.0" + "name": "crypto-random-string", + "version": "2.0.0", + "description": "Generate a cryptographically strong random string", + "license": "MIT", + "repository": "sindresorhus/crypto-random-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "random", + "string", + "text", + "id", + "identifier", + "slug", + "salt", + "crypto", + "strong", + "secure", + "hex" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/currently-unhandled/package.json b/node_modules/currently-unhandled/package.json index dc5fb68f0..99380249b 100644 --- a/node_modules/currently-unhandled/package.json +++ b/node_modules/currently-unhandled/package.json @@ -68,8 +68,4 @@ "node" ] } - -,"_resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz" -,"_integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" -,"_from": "currently-unhandled@0.4.1" } \ No newline at end of file diff --git a/node_modules/date-time/package.json b/node_modules/date-time/package.json index 941e5ee31..3b28adcd3 100644 --- a/node_modules/date-time/package.json +++ b/node_modules/date-time/package.json @@ -36,8 +36,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz" -,"_integrity": "sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==" -,"_from": "date-time@2.1.0" } \ No newline at end of file diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json index c8c751660..a71916fc4 100644 --- a/node_modules/debug/package.json +++ b/node_modules/debug/package.json @@ -60,8 +60,4 @@ "main": "./src/index.js", "browser": "./src/browser.js", "unpkg": "./dist/debug.js" - -,"_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" -,"_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" -,"_from": "debug@4.1.1" } \ No newline at end of file diff --git a/node_modules/decamelize/package.json b/node_modules/decamelize/package.json index 5e14849d9..861013122 100644 --- a/node_modules/decamelize/package.json +++ b/node_modules/decamelize/package.json @@ -35,8 +35,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" -,"_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" -,"_from": "decamelize@1.2.0" } \ No newline at end of file diff --git a/node_modules/decompress-response/package.json b/node_modules/decompress-response/package.json index 85552180c..25f1828ef 100644 --- a/node_modules/decompress-response/package.json +++ b/node_modules/decompress-response/package.json @@ -50,8 +50,4 @@ "pify": "^3.0.0", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" -,"_integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" -,"_from": "decompress-response@3.3.0" } \ No newline at end of file diff --git a/node_modules/deep-extend/package.json b/node_modules/deep-extend/package.json index 3aca83419..e507ea0fb 100644 --- a/node_modules/deep-extend/package.json +++ b/node_modules/deep-extend/package.json @@ -59,8 +59,4 @@ "index.js", "lib/" ] - -,"_resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" -,"_integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" -,"_from": "deep-extend@0.6.0" } \ No newline at end of file diff --git a/node_modules/defaults/package.json b/node_modules/defaults/package.json index 218c9d9f0..f34731bf6 100644 --- a/node_modules/defaults/package.json +++ b/node_modules/defaults/package.json @@ -23,8 +23,4 @@ "devDependencies": { "tap": "^2.0.0" } - -,"_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz" -,"_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" -,"_from": "defaults@1.0.3" } \ No newline at end of file diff --git a/node_modules/defer-to-connect/package.json b/node_modules/defer-to-connect/package.json index 7a083be4c..a47091f68 100644 --- a/node_modules/defer-to-connect/package.json +++ b/node_modules/defer-to-connect/package.json @@ -65,14 +65,10 @@ ], "require": [ "ts-node/register" - ], - "files": [ - "!dist/tests/test.d.ts" - ] + ], + "files": [ + "!dist/tests/test.d.ts" + ] }, "types": "dist" - -,"_resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz" -,"_integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" -,"_from": "defer-to-connect@1.1.3" } \ No newline at end of file diff --git a/node_modules/del/node_modules/globby/package.json b/node_modules/del/node_modules/globby/package.json index 16a8110db..e8b134ab4 100644 --- a/node_modules/del/node_modules/globby/package.json +++ b/node_modules/del/node_modules/globby/package.json @@ -1,87 +1,83 @@ { - "name": "globby", - "version": "10.0.2", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": "sindresorhus/globby", - "author": { - "email": "sindresorhus@gmail.com", - "name": "Sindre Sorhus", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "gitignore.js", - "index.d.ts", - "stream-utils.js" - ], - "keywords": [ - "all", - "array", - "directories", - "expand", - "files", - "filesystem", - "filter", - "find", - "fnmatch", - "folders", - "fs", - "glob", - "globbing", - "globs", - "gulpfriendly", - "match", - "matcher", - "minimatch", - "multi", - "multiple", - "paths", - "pattern", - "patterns", - "traverse", - "util", - "utility", - "wildcard", - "wildcards", - "promise", - "gitignore", - "git" - ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "xo": { - "ignores": [ - "fixtures" - ] - } - -,"_resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz" -,"_integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" -,"_from": "globby@10.0.2" + "name": "globby", + "version": "10.0.2", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "license": "MIT", + "repository": "sindresorhus/globby", + "author": { + "email": "sindresorhus@gmail.com", + "name": "Sindre Sorhus", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "gitignore.js", + "index.d.ts", + "stream-utils.js" + ], + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } } \ No newline at end of file diff --git a/node_modules/del/node_modules/p-map/package.json b/node_modules/del/node_modules/p-map/package.json index 72331066c..df6f80d15 100644 --- a/node_modules/del/node_modules/p-map/package.json +++ b/node_modules/del/node_modules/p-map/package.json @@ -1,56 +1,52 @@ { - "name": "p-map", - "version": "3.0.0", - "description": "Map over promises concurrently", - "license": "MIT", - "repository": "sindresorhus/p-map", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "map", - "resolved", - "wait", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "async", - "await", - "promises", - "concurrently", - "concurrency", - "parallel", - "bluebird" - ], - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz" -,"_integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" -,"_from": "p-map@3.0.0" + "name": "p-map", + "version": "3.0.0", + "description": "Map over promises concurrently", + "license": "MIT", + "repository": "sindresorhus/p-map", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "map", + "resolved", + "wait", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "async", + "await", + "promises", + "concurrently", + "concurrency", + "parallel", + "bluebird" + ], + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/del/package.json b/node_modules/del/package.json index 9d3e2a7af..e230d78b8 100644 --- a/node_modules/del/package.json +++ b/node_modules/del/package.json @@ -1,69 +1,65 @@ { - "name": "del", - "version": "5.1.0", - "description": "Delete files and directories", - "license": "MIT", - "repository": "sindresorhus/del", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "node benchmark.js" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "delete", - "files", - "folders", - "directories", - "remove", - "destroy", - "trash", - "unlink", - "clean", - "cleaning", - "cleanup", - "rm", - "rmrf", - "rimraf", - "rmdir", - "glob", - "gulpfriendly", - "file", - "folder", - "directory", - "fs", - "filesystem" - ], - "dependencies": { - "globby": "^10.0.1", - "graceful-fs": "^4.2.2", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.1", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.3.0", - "benchmark": "^2.1.4", - "make-dir": "^3.0.0", - "tempy": "^0.3.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz" -,"_integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" -,"_from": "del@5.1.0" + "name": "del", + "version": "5.1.0", + "description": "Delete files and directories", + "license": "MIT", + "repository": "sindresorhus/del", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "node benchmark.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "delete", + "files", + "folders", + "directories", + "remove", + "destroy", + "trash", + "unlink", + "clean", + "cleaning", + "cleanup", + "rm", + "rmrf", + "rimraf", + "rmdir", + "glob", + "gulpfriendly", + "file", + "folder", + "directory", + "fs", + "filesystem" + ], + "dependencies": { + "globby": "^10.0.1", + "graceful-fs": "^4.2.2", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.1", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.3.0", + "benchmark": "^2.1.4", + "make-dir": "^3.0.0", + "tempy": "^0.3.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/deprecation/package.json b/node_modules/deprecation/package.json index bdbdea7e7..02e6bc9d4 100644 --- a/node_modules/deprecation/package.json +++ b/node_modules/deprecation/package.json @@ -31,8 +31,4 @@ "@pika/plugin-standard-pkg": "^0.4.0", "semantic-release": "^15.13.3" } - -,"_resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" -,"_integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" -,"_from": "deprecation@2.3.1" } \ No newline at end of file diff --git a/node_modules/diff/package.json b/node_modules/diff/package.json index 1c2f99fd6..4ff484e88 100644 --- a/node_modules/diff/package.json +++ b/node_modules/diff/package.json @@ -70,8 +70,4 @@ "webpack-dev-server": "^3.1.14" }, "optionalDependencies": {} - -,"_resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" -,"_integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" -,"_from": "diff@4.0.2" } \ No newline at end of file diff --git a/node_modules/dir-glob/package.json b/node_modules/dir-glob/package.json index e71af2f29..e2334d4af 100644 --- a/node_modules/dir-glob/package.json +++ b/node_modules/dir-glob/package.json @@ -1,42 +1,38 @@ { - "name": "dir-glob", - "version": "3.0.1", - "description": "Convert directories to glob compatible strings", - "license": "MIT", - "repository": "kevva/dir-glob", - "author": { - "name": "Kevin Mårtensson", - "email": "kevinmartensson@gmail.com", - "url": "github.com/kevva" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "convert", - "directory", - "extensions", - "files", - "glob" - ], - "dependencies": { - "path-type": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "del": "^4.1.1", - "make-dir": "^3.0.0", - "rimraf": "^2.5.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" -,"_integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" -,"_from": "dir-glob@3.0.1" + "name": "dir-glob", + "version": "3.0.1", + "description": "Convert directories to glob compatible strings", + "license": "MIT", + "repository": "kevva/dir-glob", + "author": { + "name": "Kevin Mårtensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "convert", + "directory", + "extensions", + "files", + "glob" + ], + "dependencies": { + "path-type": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "del": "^4.1.1", + "make-dir": "^3.0.0", + "rimraf": "^2.5.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/dot-prop/package.json b/node_modules/dot-prop/package.json index c242c18ce..a1c3610c3 100644 --- a/node_modules/dot-prop/package.json +++ b/node_modules/dot-prop/package.json @@ -1,49 +1,45 @@ { - "name": "dot-prop", - "version": "5.2.0", - "description": "Get, set, or delete a property from a nested object using a dot path", - "license": "MIT", - "repository": "sindresorhus/dot-prop", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "node bench.js" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "object", - "prop", - "property", - "dot", - "path", - "get", - "set", - "delete", - "access", - "notation", - "dotty" - ], - "dependencies": { - "is-obj": "^2.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "benchmark": "^2.1.4", - "tsd": "^0.7.2", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz" -,"_integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==" -,"_from": "dot-prop@5.2.0" + "name": "dot-prop", + "version": "5.2.0", + "description": "Get, set, or delete a property from a nested object using a dot path", + "license": "MIT", + "repository": "sindresorhus/dot-prop", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "node bench.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "prop", + "property", + "dot", + "path", + "get", + "set", + "delete", + "access", + "notation", + "dotty" + ], + "dependencies": { + "is-obj": "^2.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "benchmark": "^2.1.4", + "tsd": "^0.7.2", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/duplexer3/package.json b/node_modules/duplexer3/package.json index 5b2c79aba..195def149 100644 --- a/node_modules/duplexer3/package.json +++ b/node_modules/duplexer3/package.json @@ -3,7 +3,7 @@ "version": "0.1.4", "description": "Like duplexer but using streams3", "engine": { - "node": ">=4" + "node": ">=4" }, "files": [ "index.js" @@ -25,8 +25,4 @@ "devDependencies": { "mocha": "^2.2.5" } - -,"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" -,"_integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" -,"_from": "duplexer3@0.1.4" } \ No newline at end of file diff --git a/node_modules/emittery/package.json b/node_modules/emittery/package.json index b6d92c0fb..1bc264a4c 100644 --- a/node_modules/emittery/package.json +++ b/node_modules/emittery/package.json @@ -1,71 +1,67 @@ { - "name": "emittery", - "version": "0.6.0", - "description": "Simple and modern async event emitter", - "license": "MIT", - "repository": "sindresorhus/emittery", - "funding": "https://github.com/sindresorhus/emittery?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "event", - "emitter", - "eventemitter", - "events", - "async", - "emit", - "on", - "once", - "off", - "listener", - "subscribe", - "unsubscribe", - "pubsub", - "tiny", - "addlistener", - "addeventlistener", - "dispatch", - "dispatcher", - "observer", - "trigger", - "await", - "promise", - "typescript", - "ts", - "typed" - ], - "devDependencies": { - "@types/node": "^13.7.5", - "ava": "^2.4.0", - "codecov": "^3.1.0", - "delay": "^4.3.0", - "nyc": "^15.0.0", - "p-event": "^4.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.4" - }, - "nyc": { - "reporter": [ - "html", - "lcov", - "text" - ] - } - -,"_resolved": "https://registry.npmjs.org/emittery/-/emittery-0.6.0.tgz" -,"_integrity": "sha512-6EMRGr9KzYWp8DzHFZsKVZBsMO6QhAeHMeHND8rhyBNCHKMLpgW9tZv40bwN3rAIKRS5CxcK8oLRKUJSB9h7yQ==" -,"_from": "emittery@0.6.0" + "name": "emittery", + "version": "0.6.0", + "description": "Simple and modern async event emitter", + "license": "MIT", + "repository": "sindresorhus/emittery", + "funding": "https://github.com/sindresorhus/emittery?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "event", + "emitter", + "eventemitter", + "events", + "async", + "emit", + "on", + "once", + "off", + "listener", + "subscribe", + "unsubscribe", + "pubsub", + "tiny", + "addlistener", + "addeventlistener", + "dispatch", + "dispatcher", + "observer", + "trigger", + "await", + "promise", + "typescript", + "ts", + "typed" + ], + "devDependencies": { + "@types/node": "^13.7.5", + "ava": "^2.4.0", + "codecov": "^3.1.0", + "delay": "^4.3.0", + "nyc": "^15.0.0", + "p-event": "^4.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.4" + }, + "nyc": { + "reporter": [ + "html", + "lcov", + "text" + ] + } } \ No newline at end of file diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json index 2b0473ab8..cb5ad3677 100644 --- a/node_modules/emoji-regex/package.json +++ b/node_modules/emoji-regex/package.json @@ -47,8 +47,4 @@ "regexgen": "^1.3.0", "unicode-12.0.0": "^0.7.9" } - -,"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" -,"_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" -,"_from": "emoji-regex@8.0.0" } \ No newline at end of file diff --git a/node_modules/end-of-stream/package.json b/node_modules/end-of-stream/package.json index f723fae9d..4caffe9e0 100644 --- a/node_modules/end-of-stream/package.json +++ b/node_modules/end-of-stream/package.json @@ -34,8 +34,4 @@ "devDependencies": { "tape": "^4.11.0" } - -,"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" -,"_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" -,"_from": "end-of-stream@1.4.4" } \ No newline at end of file diff --git a/node_modules/equal-length/package.json b/node_modules/equal-length/package.json index 96cef9188..06bf86a9e 100644 --- a/node_modules/equal-length/package.json +++ b/node_modules/equal-length/package.json @@ -29,8 +29,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz" -,"_integrity": "sha1-IcoRLUirJLTh5//A5TOdMf38J0w=" -,"_from": "equal-length@1.0.1" } \ No newline at end of file diff --git a/node_modules/error-ex/package.json b/node_modules/error-ex/package.json index 172d854f7..01f328d44 100644 --- a/node_modules/error-ex/package.json +++ b/node_modules/error-ex/package.json @@ -43,8 +43,4 @@ "dependencies": { "is-arrayish": "^0.2.1" } - -,"_resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" -,"_integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" -,"_from": "error-ex@1.3.2" } \ No newline at end of file diff --git a/node_modules/escape-goat/package.json b/node_modules/escape-goat/package.json index 02ce3264c..b97a05f1d 100644 --- a/node_modules/escape-goat/package.json +++ b/node_modules/escape-goat/package.json @@ -1,49 +1,45 @@ { - "name": "escape-goat", - "version": "2.1.1", - "description": "Escape a string for use in HTML or the inverse", - "license": "MIT", - "repository": "sindresorhus/escape-goat", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "escape", - "unescape", - "html", - "entity", - "entities", - "escaping", - "sanitize", - "sanitization", - "utility", - "template", - "attribute", - "value", - "interpolate", - "xss", - "goat", - "🐐" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz" -,"_integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" -,"_from": "escape-goat@2.1.1" + "name": "escape-goat", + "version": "2.1.1", + "description": "Escape a string for use in HTML or the inverse", + "license": "MIT", + "repository": "sindresorhus/escape-goat", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "unescape", + "html", + "entity", + "entities", + "escaping", + "sanitize", + "sanitization", + "utility", + "template", + "attribute", + "value", + "interpolate", + "xss", + "goat", + "🐐" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json index 8b63190fe..ddf8dee2f 100644 --- a/node_modules/escape-string-regexp/package.json +++ b/node_modules/escape-string-regexp/package.json @@ -38,8 +38,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" -,"_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" -,"_from": "escape-string-regexp@1.0.5" } \ No newline at end of file diff --git a/node_modules/esutils/package.json b/node_modules/esutils/package.json index 6446b57f2..0578338b8 100644 --- a/node_modules/esutils/package.json +++ b/node_modules/esutils/package.json @@ -41,8 +41,4 @@ "unit-test": "mocha --compilers coffee:coffee-script -R spec", "generate-regex": "node tools/generate-identifier-regex.js" } - -,"_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" -,"_integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" -,"_from": "esutils@2.0.3" } \ No newline at end of file diff --git a/node_modules/execa/package.json b/node_modules/execa/package.json index 4e33f47e5..1b8e3f8c6 100644 --- a/node_modules/execa/package.json +++ b/node_modules/execa/package.json @@ -1,73 +1,69 @@ { - "name": "execa", - "version": "1.0.0", - "description": "A better `child_process`", - "license": "MIT", - "repository": "sindresorhus/execa", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "files": [ - "index.js", - "lib" - ], - "keywords": [ - "exec", - "child", - "process", - "execute", - "fork", - "execfile", - "spawn", - "file", - "shell", - "bin", - "binary", - "binaries", - "npm", - "path", - "local" - ], - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "cat-names": "^1.0.2", - "coveralls": "^3.0.1", - "delay": "^3.0.0", - "is-running": "^2.0.0", - "nyc": "^13.0.1", - "tempfile": "^2.0.0", - "xo": "*" - }, - "nyc": { - "reporter": [ - "text", - "lcov" - ], - "exclude": [ - "**/fixtures/**", - "**/test.js", - "**/test/**" - ] - } - -,"_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" -,"_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" -,"_from": "execa@1.0.0" + "name": "execa", + "version": "1.0.0", + "description": "A better `child_process`", + "license": "MIT", + "repository": "sindresorhus/execa", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js", + "lib" + ], + "keywords": [ + "exec", + "child", + "process", + "execute", + "fork", + "execfile", + "spawn", + "file", + "shell", + "bin", + "binary", + "binaries", + "npm", + "path", + "local" + ], + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "devDependencies": { + "ava": "*", + "cat-names": "^1.0.2", + "coveralls": "^3.0.1", + "delay": "^3.0.0", + "is-running": "^2.0.0", + "nyc": "^13.0.1", + "tempfile": "^2.0.0", + "xo": "*" + }, + "nyc": { + "reporter": [ + "text", + "lcov" + ], + "exclude": [ + "**/fixtures/**", + "**/test.js", + "**/test/**" + ] + } } \ No newline at end of file diff --git a/node_modules/fast-diff/package.json b/node_modules/fast-diff/package.json index 7c8b5e107..ad043feca 100644 --- a/node_modules/fast-diff/package.json +++ b/node_modules/fast-diff/package.json @@ -23,8 +23,4 @@ "keywords": [ "diff" ] - -,"_resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz" -,"_integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==" -,"_from": "fast-diff@1.2.0" } \ No newline at end of file diff --git a/node_modules/fast-glob/package.json b/node_modules/fast-glob/package.json index 05a520e06..9a8744041 100644 --- a/node_modules/fast-glob/package.json +++ b/node_modules/fast-glob/package.json @@ -82,8 +82,4 @@ "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"", "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"" } - -,"_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz" -,"_integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==" -,"_from": "fast-glob@3.2.2" } \ No newline at end of file diff --git a/node_modules/fastq/package.json b/node_modules/fastq/package.json index c5cf9e6ca..41c544d73 100644 --- a/node_modules/fastq/package.json +++ b/node_modules/fastq/package.json @@ -44,8 +44,4 @@ "dependencies": { "reusify": "^1.0.4" } - -,"_resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz" -,"_integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==" -,"_from": "fastq@1.8.0" } \ No newline at end of file diff --git a/node_modules/figures/package.json b/node_modules/figures/package.json index 41dea9e9b..fac166e88 100644 --- a/node_modules/figures/package.json +++ b/node_modules/figures/package.json @@ -1,49 +1,45 @@ { - "name": "figures", - "version": "3.2.0", - "description": "Unicode symbols with Windows CMD fallbacks", - "license": "MIT", - "repository": "sindresorhus/figures", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "make": "./makefile.js" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "unicode", - "cli", - "cmd", - "command-line", - "characters", - "symbol", - "symbols", - "figure", - "figures", - "fallback" - ], - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "devDependencies": { - "ava": "^1.4.1", - "markdown-table": "^1.1.2", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" -,"_integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" -,"_from": "figures@3.2.0" + "name": "figures", + "version": "3.2.0", + "description": "Unicode symbols with Windows CMD fallbacks", + "license": "MIT", + "repository": "sindresorhus/figures", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "make": "./makefile.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "unicode", + "cli", + "cmd", + "command-line", + "characters", + "symbol", + "symbols", + "figure", + "figures", + "fallback" + ], + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "devDependencies": { + "ava": "^1.4.1", + "markdown-table": "^1.1.2", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/file-url/package.json b/node_modules/file-url/package.json index 70261a027..dbcd4f1b4 100644 --- a/node_modules/file-url/package.json +++ b/node_modules/file-url/package.json @@ -1,39 +1,35 @@ { - "name": "file-url", - "version": "3.0.0", - "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", - "license": "MIT", - "repository": "sindresorhus/file-url", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "file", - "url", - "uri", - "path", - "scheme", - "slash" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/file-url/-/file-url-3.0.0.tgz" -,"_integrity": "sha512-g872QGsHexznxkIAdK8UiZRe7SkE6kvylShU4Nsj8NvfvZag7S0QuQ4IgvPDkk75HxgjIVDwycFTDAgIiO4nDA==" -,"_from": "file-url@3.0.0" + "name": "file-url", + "version": "3.0.0", + "description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`", + "license": "MIT", + "repository": "sindresorhus/file-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "file", + "url", + "uri", + "path", + "scheme", + "slash" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json index 6aeb617db..c3868058f 100644 --- a/node_modules/fill-range/package.json +++ b/node_modules/fill-range/package.json @@ -66,8 +66,4 @@ "reflinks": true } } - -,"_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" -,"_integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" -,"_from": "fill-range@7.0.1" } \ No newline at end of file diff --git a/node_modules/find-up/package.json b/node_modules/find-up/package.json index 60f289df4..39a30757f 100644 --- a/node_modules/find-up/package.json +++ b/node_modules/find-up/package.json @@ -1,57 +1,53 @@ { - "name": "find-up", - "version": "4.1.0", - "description": "Find a file or directory by walking up parent directories", - "license": "MIT", - "repository": "sindresorhus/find-up", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "package", - "resolve", - "parent", - "parents", - "folder", - "directory", - "walk", - "walking", - "path" - ], - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "is-path-inside": "^2.1.0", - "tempy": "^0.3.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" -,"_integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" -,"_from": "find-up@4.1.0" + "name": "find-up", + "version": "4.1.0", + "description": "Find a file or directory by walking up parent directories", + "license": "MIT", + "repository": "sindresorhus/find-up", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "walk", + "walking", + "path" + ], + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "is-path-inside": "^2.1.0", + "tempy": "^0.3.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/fs.realpath/package.json b/node_modules/fs.realpath/package.json index fba1ff9a4..6e98eaab9 100644 --- a/node_modules/fs.realpath/package.json +++ b/node_modules/fs.realpath/package.json @@ -23,8 +23,4 @@ "old.js", "index.js" ] - -,"_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" -,"_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" -,"_from": "fs.realpath@1.0.0" } \ No newline at end of file diff --git a/node_modules/fs/package.json b/node_modules/fs/package.json index 819721e5b..f1fa735a7 100644 --- a/node_modules/fs/package.json +++ b/node_modules/fs/package.json @@ -17,8 +17,4 @@ "url": "https://github.com/npm/security-holder/issues" }, "homepage": "https://github.com/npm/security-holder#readme" - -,"_resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz" -,"_integrity": "sha1-invTcYa23d84E/I4WLV+yq9eQdQ=" -,"_from": "fs@0.0.1-security" } \ No newline at end of file diff --git a/node_modules/fsevents/package.json b/node_modules/fsevents/package.json index 814b8eb48..d3b732346 100644 --- a/node_modules/fsevents/package.json +++ b/node_modules/fsevents/package.json @@ -56,8 +56,4 @@ "url": "https://github.com/fsevents/fsevents/issues" }, "homepage": "https://github.com/fsevents/fsevents" - -,"_resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz" -,"_integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==" -,"_from": "fsevents@2.1.2" } \ No newline at end of file diff --git a/node_modules/get-caller-file/package.json b/node_modules/get-caller-file/package.json index acf38f618..3218e973a 100644 --- a/node_modules/get-caller-file/package.json +++ b/node_modules/get-caller-file/package.json @@ -39,8 +39,4 @@ "engines": { "node": "6.* || 8.* || >= 10.*" } - -,"_resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" -,"_integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" -,"_from": "get-caller-file@2.0.5" } \ No newline at end of file diff --git a/node_modules/get-stream/package.json b/node_modules/get-stream/package.json index 0f66e7b31..a78fba1fb 100644 --- a/node_modules/get-stream/package.json +++ b/node_modules/get-stream/package.json @@ -1,50 +1,46 @@ { - "name": "get-stream", - "version": "4.1.0", - "description": "Get a stream as a string, buffer, or array", - "license": "MIT", - "repository": "sindresorhus/get-stream", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "buffer-stream.js" - ], - "keywords": [ - "get", - "stream", - "promise", - "concat", - "string", - "text", - "buffer", - "read", - "data", - "consume", - "readable", - "readablestream", - "array", - "object" - ], - "dependencies": { - "pump": "^3.0.0" - }, - "devDependencies": { - "ava": "*", - "into-stream": "^3.0.0", - "xo": "*" - } - -,"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" -,"_integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" -,"_from": "get-stream@4.1.0" + "name": "get-stream", + "version": "4.1.0", + "description": "Get a stream as a string, buffer, or array", + "license": "MIT", + "repository": "sindresorhus/get-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "buffer-stream.js" + ], + "keywords": [ + "get", + "stream", + "promise", + "concat", + "string", + "text", + "buffer", + "read", + "data", + "consume", + "readable", + "readablestream", + "array", + "object" + ], + "dependencies": { + "pump": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "into-stream": "^3.0.0", + "xo": "*" + } } \ No newline at end of file diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json index e5f8484d4..d7f8b7f28 100644 --- a/node_modules/glob-parent/package.json +++ b/node_modules/glob-parent/package.json @@ -45,8 +45,4 @@ "base", "wildcard" ] - -,"_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz" -,"_integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==" -,"_from": "glob-parent@5.1.1" } \ No newline at end of file diff --git a/node_modules/glob/package.json b/node_modules/glob/package.json index 715f73a54..dbfa78ee8 100644 --- a/node_modules/glob/package.json +++ b/node_modules/glob/package.json @@ -43,8 +43,4 @@ "funding": { "url": "https://github.com/sponsors/isaacs" } - -,"_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" -,"_integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" -,"_from": "glob@7.1.6" } \ No newline at end of file diff --git a/node_modules/global-dirs/package.json b/node_modules/global-dirs/package.json index 5b0b40cb8..1f11cd0f6 100644 --- a/node_modules/global-dirs/package.json +++ b/node_modules/global-dirs/package.json @@ -1,59 +1,55 @@ { - "name": "global-dirs", - "version": "2.0.1", - "description": "Get the directory of globally installed packages and binaries", - "license": "MIT", - "repository": "sindresorhus/global-dirs", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "global", - "prefix", - "path", - "paths", - "npm", - "yarn", - "node", - "modules", - "node-modules", - "package", - "packages", - "binary", - "binaries", - "bin", - "directory", - "directories", - "npmrc", - "rc", - "config", - "root", - "resolve" - ], - "dependencies": { - "ini": "^1.3.5" - }, - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz" -,"_integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==" -,"_from": "global-dirs@2.0.1" + "name": "global-dirs", + "version": "2.0.1", + "description": "Get the directory of globally installed packages and binaries", + "license": "MIT", + "repository": "sindresorhus/global-dirs", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "global", + "prefix", + "path", + "paths", + "npm", + "yarn", + "node", + "modules", + "node-modules", + "package", + "packages", + "binary", + "binaries", + "bin", + "directory", + "directories", + "npmrc", + "rc", + "config", + "root", + "resolve" + ], + "dependencies": { + "ini": "^1.3.5" + }, + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/globby/package.json b/node_modules/globby/package.json index ea35313ac..08a3b169d 100644 --- a/node_modules/globby/package.json +++ b/node_modules/globby/package.json @@ -1,86 +1,82 @@ { - "name": "globby", - "version": "11.0.0", - "description": "User-friendly glob matching", - "license": "MIT", - "repository": "sindresorhus/globby", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "email": "sindresorhus@gmail.com", - "name": "Sindre Sorhus", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "gitignore.js", - "stream-utils.js" - ], - "keywords": [ - "all", - "array", - "directories", - "expand", - "files", - "filesystem", - "filter", - "find", - "fnmatch", - "folders", - "fs", - "glob", - "globbing", - "globs", - "gulpfriendly", - "match", - "matcher", - "minimatch", - "multi", - "multiple", - "paths", - "pattern", - "patterns", - "traverse", - "util", - "utility", - "wildcard", - "wildcards", - "promise", - "gitignore", - "git" - ], - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - }, - "xo": { - "ignores": [ - "fixtures" - ] - } - -,"_resolved": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz" -,"_integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==" -,"_from": "globby@11.0.0" + "name": "globby", + "version": "11.0.0", + "description": "User-friendly glob matching", + "license": "MIT", + "repository": "sindresorhus/globby", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "email": "sindresorhus@gmail.com", + "name": "Sindre Sorhus", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "gitignore.js", + "stream-utils.js" + ], + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0", + "globby": "sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } } \ No newline at end of file diff --git a/node_modules/got/package.json b/node_modules/got/package.json index bd81ae543..28c396adb 100644 --- a/node_modules/got/package.json +++ b/node_modules/got/package.json @@ -1,78 +1,74 @@ { - "name": "got", - "version": "9.6.0", - "description": "Simplified HTTP requests", - "license": "MIT", - "repository": "sindresorhus/got", - "main": "source", - "engines": { - "node": ">=8.6" - }, - "scripts": { - "test": "xo && nyc ava", - "release": "np" - }, - "files": [ - "source" - ], - "keywords": [ - "http", - "https", - "get", - "got", - "url", - "uri", - "request", - "util", - "utility", - "simple", - "curl", - "wget", - "fetch", - "net", - "network", - "electron" - ], - "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "devDependencies": { - "ava": "^1.1.0", - "coveralls": "^3.0.0", - "delay": "^4.1.0", - "form-data": "^2.3.3", - "get-port": "^4.0.0", - "np": "^3.1.0", - "nyc": "^13.1.0", - "p-event": "^2.1.0", - "pem": "^1.13.2", - "proxyquire": "^2.0.1", - "sinon": "^7.2.2", - "slow-stream": "0.0.4", - "tempfile": "^2.0.0", - "tempy": "^0.2.1", - "tough-cookie": "^3.0.0", - "xo": "^0.24.0" - }, - "ava": { - "concurrency": 4 - }, - "browser": { - "decompress-response": false, - "electron": false - } - -,"_resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz" -,"_integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" -,"_from": "got@9.6.0" + "name": "got", + "version": "9.6.0", + "description": "Simplified HTTP requests", + "license": "MIT", + "repository": "sindresorhus/got", + "main": "source", + "engines": { + "node": ">=8.6" + }, + "scripts": { + "test": "xo && nyc ava", + "release": "np" + }, + "files": [ + "source" + ], + "keywords": [ + "http", + "https", + "get", + "got", + "url", + "uri", + "request", + "util", + "utility", + "simple", + "curl", + "wget", + "fetch", + "net", + "network", + "electron" + ], + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "devDependencies": { + "ava": "^1.1.0", + "coveralls": "^3.0.0", + "delay": "^4.1.0", + "form-data": "^2.3.3", + "get-port": "^4.0.0", + "np": "^3.1.0", + "nyc": "^13.1.0", + "p-event": "^2.1.0", + "pem": "^1.13.2", + "proxyquire": "^2.0.1", + "sinon": "^7.2.2", + "slow-stream": "0.0.4", + "tempfile": "^2.0.0", + "tempy": "^0.2.1", + "tough-cookie": "^3.0.0", + "xo": "^0.24.0" + }, + "ava": { + "concurrency": 4 + }, + "browser": { + "decompress-response": false, + "electron": false + } } \ No newline at end of file diff --git a/node_modules/graceful-fs/package.json b/node_modules/graceful-fs/package.json index 73bb9f911..77a29b3da 100644 --- a/node_modules/graceful-fs/package.json +++ b/node_modules/graceful-fs/package.json @@ -47,8 +47,4 @@ "clone.js" ], "dependencies": {} - -,"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz" -,"_integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" -,"_from": "graceful-fs@4.2.3" } \ No newline at end of file diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json index b07fbde41..ff188fa37 100644 --- a/node_modules/has-flag/package.json +++ b/node_modules/has-flag/package.json @@ -41,8 +41,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" -,"_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" -,"_from": "has-flag@3.0.0" } \ No newline at end of file diff --git a/node_modules/has-yarn/package.json b/node_modules/has-yarn/package.json index 0bbf4473c..fcadde721 100644 --- a/node_modules/has-yarn/package.json +++ b/node_modules/has-yarn/package.json @@ -1,43 +1,39 @@ { - "name": "has-yarn", - "version": "2.1.0", - "description": "Check if a project is using Yarn", - "license": "MIT", - "repository": "sindresorhus/has-yarn", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "yarn", - "has", - "detect", - "is", - "project", - "app", - "module", - "package", - "manager", - "npm" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz" -,"_integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" -,"_from": "has-yarn@2.1.0" + "name": "has-yarn", + "version": "2.1.0", + "description": "Check if a project is using Yarn", + "license": "MIT", + "repository": "sindresorhus/has-yarn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "yarn", + "has", + "detect", + "is", + "project", + "app", + "module", + "package", + "manager", + "npm" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/hosted-git-info/package.json b/node_modules/hosted-git-info/package.json index 1dc8e6464..3ff3c095e 100644 --- a/node_modules/hosted-git-info/package.json +++ b/node_modules/hosted-git-info/package.json @@ -37,8 +37,4 @@ "git-host.js", "git-host-info.js" ] - -,"_resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" -,"_integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" -,"_from": "hosted-git-info@2.8.8" } \ No newline at end of file diff --git a/node_modules/http-cache-semantics/package.json b/node_modules/http-cache-semantics/package.json index baf02e311..125b72b51 100644 --- a/node_modules/http-cache-semantics/package.json +++ b/node_modules/http-cache-semantics/package.json @@ -1,28 +1,24 @@ { - "name": "http-cache-semantics", - "version": "4.1.0", - "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", - "repository": "https://github.com/kornelski/http-cache-semantics.git", - "main": "index.js", - "scripts": { - "test": "mocha" - }, - "files": [ - "index.js" - ], - "author": "Kornel Lesiński (https://kornel.ski/)", - "license": "BSD-2-Clause", - "devDependencies": { - "eslint": "^5.13.0", - "eslint-plugin-prettier": "^3.0.1", - "husky": "^0.14.3", - "lint-staged": "^8.1.3", - "mocha": "^5.1.0", - "prettier": "^1.14.3", - "prettier-eslint-cli": "^4.7.1" - } - -,"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" -,"_integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" -,"_from": "http-cache-semantics@4.1.0" + "name": "http-cache-semantics", + "version": "4.1.0", + "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", + "repository": "https://github.com/kornelski/http-cache-semantics.git", + "main": "index.js", + "scripts": { + "test": "mocha" + }, + "files": [ + "index.js" + ], + "author": "Kornel Lesiński (https://kornel.ski/)", + "license": "BSD-2-Clause", + "devDependencies": { + "eslint": "^5.13.0", + "eslint-plugin-prettier": "^3.0.1", + "husky": "^0.14.3", + "lint-staged": "^8.1.3", + "mocha": "^5.1.0", + "prettier": "^1.14.3", + "prettier-eslint-cli": "^4.7.1" + } } \ No newline at end of file diff --git a/node_modules/ignore-by-default/package.json b/node_modules/ignore-by-default/package.json index c705e1523..30225ada3 100644 --- a/node_modules/ignore-by-default/package.json +++ b/node_modules/ignore-by-default/package.json @@ -31,8 +31,4 @@ "figures": "^1.4.0", "standard": "^6.0.4" } - -,"_resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz" -,"_integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" -,"_from": "ignore-by-default@1.0.1" } \ No newline at end of file diff --git a/node_modules/ignore/package.json b/node_modules/ignore/package.json index d101f0e82..fe7029497 100644 --- a/node_modules/ignore/package.json +++ b/node_modules/ignore/package.json @@ -67,8 +67,4 @@ "engines": { "node": ">= 4" } - -,"_resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz" -,"_integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==" -,"_from": "ignore@5.1.4" } \ No newline at end of file diff --git a/node_modules/import-lazy/package.json b/node_modules/import-lazy/package.json index db9a3a407..8cca7bba1 100644 --- a/node_modules/import-lazy/package.json +++ b/node_modules/import-lazy/package.json @@ -41,8 +41,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz" -,"_integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" -,"_from": "import-lazy@2.1.0" } \ No newline at end of file diff --git a/node_modules/import-local/package.json b/node_modules/import-local/package.json index 96f445b3b..c07a5c4be 100644 --- a/node_modules/import-local/package.json +++ b/node_modules/import-local/package.json @@ -1,55 +1,51 @@ { - "name": "import-local", - "version": "3.0.2", - "description": "Let a globally installed package use a locally installed version of itself if available", - "license": "MIT", - "repository": "sindresorhus/import-local", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "fixtures/cli.js" - ], - "keywords": [ - "import", - "local", - "require", - "resolve", - "global", - "version", - "prefer", - "cli" - ], - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "devDependencies": { - "ava": "2.1.0", - "cpy": "^7.0.1", - "del": "^4.1.1", - "execa": "^2.0.1", - "xo": "^0.24.0" - }, - "xo": { - "ignores": [ - "fixtures" - ] - } - -,"_resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz" -,"_integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==" -,"_from": "import-local@3.0.2" + "name": "import-local", + "version": "3.0.2", + "description": "Let a globally installed package use a locally installed version of itself if available", + "license": "MIT", + "repository": "sindresorhus/import-local", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "fixtures/cli.js" + ], + "keywords": [ + "import", + "local", + "require", + "resolve", + "global", + "version", + "prefer", + "cli" + ], + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "devDependencies": { + "ava": "2.1.0", + "cpy": "^7.0.1", + "del": "^4.1.1", + "execa": "^2.0.1", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "fixtures" + ] + } } \ No newline at end of file diff --git a/node_modules/imurmurhash/package.json b/node_modules/imurmurhash/package.json index 129286ed0..1e91c12bd 100644 --- a/node_modules/imurmurhash/package.json +++ b/node_modules/imurmurhash/package.json @@ -30,15 +30,9 @@ "url": "https://github.com/homebrewing" }, "license": "MIT", - "dependencies": { - }, - "devDependencies": { - }, + "dependencies": {}, + "devDependencies": {}, "engines": { "node": ">=0.8.19" } - -,"_resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" -,"_integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" -,"_from": "imurmurhash@0.1.4" } \ No newline at end of file diff --git a/node_modules/indent-string/package.json b/node_modules/indent-string/package.json index 2254e46cf..5db5db01a 100644 --- a/node_modules/indent-string/package.json +++ b/node_modules/indent-string/package.json @@ -1,41 +1,37 @@ { - "name": "indent-string", - "version": "4.0.0", - "description": "Indent each line in a string", - "license": "MIT", - "repository": "sindresorhus/indent-string", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "indent", - "string", - "pad", - "align", - "line", - "text", - "each", - "every" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" -,"_integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" -,"_from": "indent-string@4.0.0" + "name": "indent-string", + "version": "4.0.0", + "description": "Indent each line in a string", + "license": "MIT", + "repository": "sindresorhus/indent-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "indent", + "string", + "pad", + "align", + "line", + "text", + "each", + "every" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/inflight/package.json b/node_modules/inflight/package.json index 102b3be3a..b7095d05d 100644 --- a/node_modules/inflight/package.json +++ b/node_modules/inflight/package.json @@ -26,8 +26,4 @@ }, "homepage": "https://github.com/isaacs/inflight", "license": "ISC" - -,"_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" -,"_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" -,"_from": "inflight@1.0.6" } \ No newline at end of file diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json index 48b9816a5..47220feb9 100644 --- a/node_modules/inherits/package.json +++ b/node_modules/inherits/package.json @@ -26,8 +26,4 @@ "inherits.js", "inherits_browser.js" ] - -,"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" -,"_integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" -,"_from": "inherits@2.0.3" } \ No newline at end of file diff --git a/node_modules/ini/package.json b/node_modules/ini/package.json index 85f8b965a..49027d955 100644 --- a/node_modules/ini/package.json +++ b/node_modules/ini/package.json @@ -27,8 +27,4 @@ "files": [ "ini.js" ] - -,"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz" -,"_integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" -,"_from": "ini@1.3.5" } \ No newline at end of file diff --git a/node_modules/irregular-plurals/package.json b/node_modules/irregular-plurals/package.json index 7da904bbd..cf9707d52 100644 --- a/node_modules/irregular-plurals/package.json +++ b/node_modules/irregular-plurals/package.json @@ -1,50 +1,46 @@ { - "name": "irregular-plurals", - "version": "3.2.0", - "description": "Map of nouns to their irregular plural form", - "license": "MIT", - "repository": "sindresorhus/irregular-plurals", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "irregular-plurals.json" - ], - "keywords": [ - "word", - "words", - "list", - "map", - "hash", - "json", - "irregular", - "plural", - "plurals", - "noun", - "nouns" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "tsd": { - "compilerOptions": { - "resolveJsonModule": true - } - } - -,"_resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.2.0.tgz" -,"_integrity": "sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==" -,"_from": "irregular-plurals@3.2.0" + "name": "irregular-plurals", + "version": "3.2.0", + "description": "Map of nouns to their irregular plural form", + "license": "MIT", + "repository": "sindresorhus/irregular-plurals", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "irregular-plurals.json" + ], + "keywords": [ + "word", + "words", + "list", + "map", + "hash", + "json", + "irregular", + "plural", + "plurals", + "noun", + "nouns" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "tsd": { + "compilerOptions": { + "resolveJsonModule": true + } + } } \ No newline at end of file diff --git a/node_modules/is-arrayish/package.json b/node_modules/is-arrayish/package.json index 91f64fee4..47b168d29 100644 --- a/node_modules/is-arrayish/package.json +++ b/node_modules/is-arrayish/package.json @@ -31,8 +31,4 @@ "should": "^7.0.1", "xo": "^0.6.1" } - -,"_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" -,"_integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" -,"_from": "is-arrayish@0.2.1" } \ No newline at end of file diff --git a/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json index 4998949a8..e3bdf2a7f 100644 --- a/node_modules/is-binary-path/package.json +++ b/node_modules/is-binary-path/package.json @@ -1,44 +1,40 @@ { - "name": "is-binary-path", - "version": "2.1.0", - "description": "Check if a file path is a binary file", - "license": "MIT", - "repository": "sindresorhus/is-binary-path", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "binary", - "extensions", - "extension", - "file", - "path", - "check", - "detect", - "is" - ], - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" -,"_integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" -,"_from": "is-binary-path@2.1.0" + "name": "is-binary-path", + "version": "2.1.0", + "description": "Check if a file path is a binary file", + "license": "MIT", + "repository": "sindresorhus/is-binary-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "path", + "check", + "detect", + "is" + ], + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-buffer/package.json b/node_modules/is-buffer/package.json index 79d8ab75b..9f304ee57 100644 --- a/node_modules/is-buffer/package.json +++ b/node_modules/is-buffer/package.json @@ -48,8 +48,4 @@ "testling": { "files": "test/*.js" } - -,"_resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" -,"_integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" -,"_from": "is-buffer@1.1.6" } \ No newline at end of file diff --git a/node_modules/is-ci/package.json b/node_modules/is-ci/package.json index 7ce825a5f..3900a0420 100644 --- a/node_modules/is-ci/package.json +++ b/node_modules/is-ci/package.json @@ -35,8 +35,4 @@ 55.778272, 12.593116 ] - -,"_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" -,"_integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" -,"_from": "is-ci@2.0.0" } \ No newline at end of file diff --git a/node_modules/is-error/package.json b/node_modules/is-error/package.json index 94d4817e8..441791f23 100644 --- a/node_modules/is-error/package.json +++ b/node_modules/is-error/package.json @@ -1,4 +1,5 @@ -{ "name": "is-error", +{ + "name": "is-error", "version": "2.2.2", "description": "Detect whether a value is an error", "keywords": [], @@ -41,8 +42,4 @@ ], "pre-commit.silent": true, "ngen-version": "5.1.0" - -,"_resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz" -,"_integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==" -,"_from": "is-error@2.2.2" } \ No newline at end of file diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index 956af5894..00ad5c9fc 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -66,8 +66,4 @@ "reflinks": true } } - -,"_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" -,"_integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" -,"_from": "is-extglob@2.1.1" } \ No newline at end of file diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json index 3122d9996..a67414558 100644 --- a/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/is-fullwidth-code-point/package.json @@ -1,46 +1,42 @@ { - "name": "is-fullwidth-code-point", - "version": "3.0.0", - "description": "Check if the character represented by a given Unicode code point is fullwidth", - "license": "MIT", - "repository": "sindresorhus/is-fullwidth-code-point", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "fullwidth", - "full-width", - "full", - "width", - "unicode", - "character", - "string", - "codepoint", - "code", - "point", - "is", - "detect", - "check" - ], - "devDependencies": { - "ava": "^1.3.1", - "tsd-check": "^0.5.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" -,"_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" -,"_from": "is-fullwidth-code-point@3.0.0" + "name": "is-fullwidth-code-point", + "version": "3.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "license": "MIT", + "repository": "sindresorhus/is-fullwidth-code-point", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "fullwidth", + "full-width", + "full", + "width", + "unicode", + "character", + "string", + "codepoint", + "code", + "point", + "is", + "detect", + "check" + ], + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index 2ca9e34d6..b7afb44d2 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -78,8 +78,4 @@ "vinyl" ] } - -,"_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" -,"_integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==" -,"_from": "is-glob@4.0.1" } \ No newline at end of file diff --git a/node_modules/is-installed-globally/package.json b/node_modules/is-installed-globally/package.json index 40100962f..bad8f8918 100644 --- a/node_modules/is-installed-globally/package.json +++ b/node_modules/is-installed-globally/package.json @@ -1,58 +1,54 @@ { - "name": "is-installed-globally", - "version": "0.3.2", - "description": "Check if your package was installed globally", - "license": "MIT", - "repository": "sindresorhus/is-installed-globally", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "global", - "package", - "globally", - "module", - "install", - "installed", - "npm", - "yarn", - "is", - "check", - "detect", - "local", - "locally", - "cli", - "bin", - "binary" - ], - "dependencies": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" - }, - "devDependencies": { - "ava": "^2.4.0", - "cpy": "^7.3.0", - "del": "^5.1.0", - "execa": "^2.0.4", - "make-dir": "^3.0.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz" -,"_integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==" -,"_from": "is-installed-globally@0.3.2" + "name": "is-installed-globally", + "version": "0.3.2", + "description": "Check if your package was installed globally", + "license": "MIT", + "repository": "sindresorhus/is-installed-globally", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "global", + "package", + "globally", + "module", + "install", + "installed", + "npm", + "yarn", + "is", + "check", + "detect", + "local", + "locally", + "cli", + "bin", + "binary" + ], + "dependencies": { + "global-dirs": "^2.0.1", + "is-path-inside": "^3.0.1" + }, + "devDependencies": { + "ava": "^2.4.0", + "cpy": "^7.3.0", + "del": "^5.1.0", + "execa": "^2.0.4", + "make-dir": "^3.0.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/is-interactive/package.json b/node_modules/is-interactive/package.json index c23793c1e..2c0f4c55d 100644 --- a/node_modules/is-interactive/package.json +++ b/node_modules/is-interactive/package.json @@ -1,42 +1,38 @@ { - "name": "is-interactive", - "version": "1.0.0", - "description": "Check if stdout or stderr is interactive", - "license": "MIT", - "repository": "sindresorhus/is-interactive", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "interactive", - "stdout", - "stderr", - "detect", - "is", - "terminal", - "shell", - "tty" - ], - "devDependencies": { - "@types/node": "^12.0.12", - "ava": "^2.1.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" -,"_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" -,"_from": "is-interactive@1.0.0" + "name": "is-interactive", + "version": "1.0.0", + "description": "Check if stdout or stderr is interactive", + "license": "MIT", + "repository": "sindresorhus/is-interactive", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "interactive", + "stdout", + "stderr", + "detect", + "is", + "terminal", + "shell", + "tty" + ], + "devDependencies": { + "@types/node": "^12.0.12", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-npm/package.json b/node_modules/is-npm/package.json index a405f9f87..07c9dcb40 100644 --- a/node_modules/is-npm/package.json +++ b/node_modules/is-npm/package.json @@ -1,41 +1,37 @@ { - "name": "is-npm", - "version": "4.0.0", - "description": "Check if your code is running as an npm script", - "license": "MIT", - "repository": "sindresorhus/is-npm", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "npm", - "is", - "check", - "detect", - "env", - "environment", - "run", - "script" - ], - "devDependencies": { - "ava": "^2.4.0", - "tsd-check": "^0.6.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz" -,"_integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==" -,"_from": "is-npm@4.0.0" + "name": "is-npm", + "version": "4.0.0", + "description": "Check if your code is running as an npm script", + "license": "MIT", + "repository": "sindresorhus/is-npm", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "is", + "check", + "detect", + "env", + "environment", + "run", + "script" + ], + "devDependencies": { + "ava": "^2.4.0", + "tsd-check": "^0.6.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json index 002361756..1749833c1 100644 --- a/node_modules/is-number/package.json +++ b/node_modules/is-number/package.json @@ -79,8 +79,4 @@ "reflinks": true } } - -,"_resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" -,"_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" -,"_from": "is-number@7.0.0" } \ No newline at end of file diff --git a/node_modules/is-obj/package.json b/node_modules/is-obj/package.json index 0db846586..1485e78dd 100644 --- a/node_modules/is-obj/package.json +++ b/node_modules/is-obj/package.json @@ -1,38 +1,34 @@ { - "name": "is-obj", - "version": "2.0.0", - "description": "Check if a value is an object", - "license": "MIT", - "repository": "sindresorhus/is-obj", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "object", - "is", - "check", - "test", - "type" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" -,"_integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" -,"_from": "is-obj@2.0.0" + "name": "is-obj", + "version": "2.0.0", + "description": "Check if a value is an object", + "license": "MIT", + "repository": "sindresorhus/is-obj", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "object", + "is", + "check", + "test", + "type" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-path-cwd/package.json b/node_modules/is-path-cwd/package.json index 55ea5ecb4..064cba0b0 100644 --- a/node_modules/is-path-cwd/package.json +++ b/node_modules/is-path-cwd/package.json @@ -1,40 +1,36 @@ { - "name": "is-path-cwd", - "version": "2.2.0", - "description": "Check if a path is the current working directory", - "license": "MIT", - "repository": "sindresorhus/is-path-cwd", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "path", - "cwd", - "pwd", - "check", - "filepath", - "file", - "folder" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" -,"_integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" -,"_from": "is-path-cwd@2.2.0" + "name": "is-path-cwd", + "version": "2.2.0", + "description": "Check if a path is the current working directory", + "license": "MIT", + "repository": "sindresorhus/is-path-cwd", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "cwd", + "pwd", + "check", + "filepath", + "file", + "folder" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-path-inside/package.json b/node_modules/is-path-inside/package.json index a6e54a227..8d9d9343a 100644 --- a/node_modules/is-path-inside/package.json +++ b/node_modules/is-path-inside/package.json @@ -1,40 +1,36 @@ { - "name": "is-path-inside", - "version": "3.0.2", - "description": "Check if a path is inside another path", - "license": "MIT", - "repository": "sindresorhus/is-path-inside", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "path", - "inside", - "folder", - "directory", - "dir", - "file", - "resolve" - ], - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz" -,"_integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" -,"_from": "is-path-inside@3.0.2" + "name": "is-path-inside", + "version": "3.0.2", + "description": "Check if a path is inside another path", + "license": "MIT", + "repository": "sindresorhus/is-path-inside", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "inside", + "folder", + "directory", + "dir", + "file", + "resolve" + ], + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json index 300c45203..986ffab26 100644 --- a/node_modules/is-plain-object/package.json +++ b/node_modules/is-plain-object/package.json @@ -79,8 +79,4 @@ "reflinks": true } } - -,"_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz" -,"_integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==" -,"_from": "is-plain-object@3.0.0" } \ No newline at end of file diff --git a/node_modules/is-promise/package.json b/node_modules/is-promise/package.json index ee9c0f64f..e729cac00 100644 --- a/node_modules/is-promise/package.json +++ b/node_modules/is-promise/package.json @@ -27,8 +27,4 @@ }, "author": "ForbesLindesay", "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-3.0.0.tgz" -,"_integrity": "sha512-aTHJ4BvETyySzLhguH+7sL4b8765eecqq7ZrHVuhZr3FjCL/IV+LsvisEeH+9d0AkChYny3ad1KEL+mKy4ot7A==" -,"_from": "is-promise@3.0.0" } \ No newline at end of file diff --git a/node_modules/is-stream/package.json b/node_modules/is-stream/package.json index 0f50caac8..e0d17830e 100644 --- a/node_modules/is-stream/package.json +++ b/node_modules/is-stream/package.json @@ -35,8 +35,4 @@ "tempfile": "^1.1.0", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" -,"_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" -,"_from": "is-stream@1.1.0" } \ No newline at end of file diff --git a/node_modules/is-typedarray/package.json b/node_modules/is-typedarray/package.json index 73e4061e0..6fc813ab7 100644 --- a/node_modules/is-typedarray/package.json +++ b/node_modules/is-typedarray/package.json @@ -27,8 +27,4 @@ "url": "https://github.com/hughsk/is-typedarray/issues" }, "homepage": "https://github.com/hughsk/is-typedarray" - -,"_resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" -,"_integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" -,"_from": "is-typedarray@1.0.0" } \ No newline at end of file diff --git a/node_modules/is-yarn-global/package.json b/node_modules/is-yarn-global/package.json index 63bc4b8d4..25b0e3dfc 100644 --- a/node_modules/is-yarn-global/package.json +++ b/node_modules/is-yarn-global/package.json @@ -12,8 +12,4 @@ "ava": "^0.24.0", "xo": "^0.18.2" } - -,"_resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" -,"_integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" -,"_from": "is-yarn-global@0.3.0" } \ No newline at end of file diff --git a/node_modules/isexe/package.json b/node_modules/isexe/package.json index 4ae1ed4ce..5e8bc7867 100644 --- a/node_modules/isexe/package.json +++ b/node_modules/isexe/package.json @@ -28,8 +28,4 @@ "url": "https://github.com/isaacs/isexe/issues" }, "homepage": "https://github.com/isaacs/isexe#readme" - -,"_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" -,"_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" -,"_from": "isexe@2.0.0" } \ No newline at end of file diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json index 8ddad953f..c59d1ba3a 100644 --- a/node_modules/isobject/package.json +++ b/node_modules/isobject/package.json @@ -77,8 +77,4 @@ "verb" ] } - -,"_resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz" -,"_integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" -,"_from": "isobject@4.0.0" } \ No newline at end of file diff --git a/node_modules/js-string-escape/package.json b/node_modules/js-string-escape/package.json index 2bb2f6640..5675486fe 100644 --- a/node_modules/js-string-escape/package.json +++ b/node_modules/js-string-escape/package.json @@ -25,7 +25,7 @@ } ], "license": "MIT", - "devDependencies" : { + "devDependencies": { "tap": "~> 0.4.2", "punycode": "~> 1.2.1" }, @@ -35,8 +35,4 @@ "files": [ "index.js" ] - -,"_resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz" -,"_integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" -,"_from": "js-string-escape@1.0.1" } \ No newline at end of file diff --git a/node_modules/js-tokens/package.json b/node_modules/js-tokens/package.json index 368221c86..a4c280b67 100644 --- a/node_modules/js-tokens/package.json +++ b/node_modules/js-tokens/package.json @@ -27,8 +27,4 @@ "everything.js": "1.0.3", "mocha": "5.0.0" } - -,"_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" -,"_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" -,"_from": "js-tokens@4.0.0" } \ No newline at end of file diff --git a/node_modules/js-yaml/node_modules/esprima/package.json b/node_modules/js-yaml/node_modules/esprima/package.json index 942d939a5..55d445995 100644 --- a/node_modules/js-yaml/node_modules/esprima/package.json +++ b/node_modules/js-yaml/node_modules/esprima/package.json @@ -109,8 +109,4 @@ "generate-regex": "node tools/generate-identifier-regex.js", "generate-xhtml-entities": "node tools/generate-xhtml-entities.js" } - -,"_resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" -,"_integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" -,"_from": "esprima@4.0.1" } \ No newline at end of file diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json index dd41f7f11..dbaa43e0c 100644 --- a/node_modules/js-yaml/package.json +++ b/node_modules/js-yaml/package.json @@ -44,8 +44,4 @@ "scripts": { "test": "make test" } - -,"_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz" -,"_integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" -,"_from": "js-yaml@3.13.1" } \ No newline at end of file diff --git a/node_modules/json-buffer/package.json b/node_modules/json-buffer/package.json index 003343ae6..3c51a6781 100644 --- a/node_modules/json-buffer/package.json +++ b/node_modules/json-buffer/package.json @@ -31,8 +31,4 @@ "android-browser/4.2..latest" ] } - -,"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" -,"_integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" -,"_from": "json-buffer@3.0.0" } \ No newline at end of file diff --git a/node_modules/json-parse-better-errors/package.json b/node_modules/json-parse-better-errors/package.json index 2d2d208c3..89b9301d6 100644 --- a/node_modules/json-parse-better-errors/package.json +++ b/node_modules/json-parse-better-errors/package.json @@ -42,8 +42,4 @@ ] } } - -,"_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" -,"_integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" -,"_from": "json-parse-better-errors@1.0.2" } \ No newline at end of file diff --git a/node_modules/json-stringify-safe/package.json b/node_modules/json-stringify-safe/package.json index 5d5488725..7493a587d 100644 --- a/node_modules/json-stringify-safe/package.json +++ b/node_modules/json-stringify-safe/package.json @@ -28,8 +28,4 @@ "must": ">= 0.12 < 0.13", "sinon": ">= 1.12.2 < 2" } - -,"_resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" -,"_integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" -,"_from": "json-stringify-safe@5.0.1" } \ No newline at end of file diff --git a/node_modules/jsonschema/package.json b/node_modules/jsonschema/package.json index a0f4e3e2c..8d384e2d4 100644 --- a/node_modules/jsonschema/package.json +++ b/node_modules/jsonschema/package.json @@ -35,8 +35,4 @@ "scripts": { "test": "./node_modules/.bin/mocha -R spec" } - -,"_resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz" -,"_integrity": "sha512-SqhURKZG07JyKKeo/ir24QnS4/BV7a6gQy93bUSe4lUdNp0QNpIz2c9elWJQ9dpc5cQYY6cvCzgRwy0MQCLyqA==" -,"_from": "jsonschema@1.2.6" } \ No newline at end of file diff --git a/node_modules/keyv/package.json b/node_modules/keyv/package.json index 22585d90b..e179afca8 100644 --- a/node_modules/keyv/package.json +++ b/node_modules/keyv/package.json @@ -46,8 +46,4 @@ "timekeeper": "^2.0.0", "xo": "^0.20.1" } - -,"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" -,"_integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" -,"_from": "keyv@3.1.0" } \ No newline at end of file diff --git a/node_modules/latest-version/package.json b/node_modules/latest-version/package.json index 48621639f..601992a28 100644 --- a/node_modules/latest-version/package.json +++ b/node_modules/latest-version/package.json @@ -1,46 +1,42 @@ { - "name": "latest-version", - "version": "5.1.0", - "description": "Get the latest version of an npm package", - "license": "MIT", - "repository": "sindresorhus/latest-version", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "latest", - "version", - "npm", - "pkg", - "package", - "package.json", - "current", - "module" - ], - "dependencies": { - "package-json": "^6.3.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "semver": "^6.0.0", - "semver-regex": "^2.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" -,"_integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" -,"_from": "latest-version@5.1.0" + "name": "latest-version", + "version": "5.1.0", + "description": "Get the latest version of an npm package", + "license": "MIT", + "repository": "sindresorhus/latest-version", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "latest", + "version", + "npm", + "pkg", + "package", + "package.json", + "current", + "module" + ], + "dependencies": { + "package-json": "^6.3.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "semver": "^6.0.0", + "semver-regex": "^2.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/lines-and-columns/package.json b/node_modules/lines-and-columns/package.json index 0ac37ec31..646cb2301 100644 --- a/node_modules/lines-and-columns/package.json +++ b/node_modules/lines-and-columns/package.json @@ -42,8 +42,4 @@ "typescript": "^2.1.4" }, "version": "1.1.6" - -,"_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" -,"_integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" -,"_from": "lines-and-columns@1.1.6" } \ No newline at end of file diff --git a/node_modules/load-json-file/node_modules/strip-bom/package.json b/node_modules/load-json-file/node_modules/strip-bom/package.json index a2e66c154..f37e6ab2e 100644 --- a/node_modules/load-json-file/node_modules/strip-bom/package.json +++ b/node_modules/load-json-file/node_modules/strip-bom/package.json @@ -37,8 +37,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" -,"_integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" -,"_from": "strip-bom@3.0.0" } \ No newline at end of file diff --git a/node_modules/load-json-file/node_modules/type-fest/package.json b/node_modules/load-json-file/node_modules/type-fest/package.json index 3661ed5f9..e0a025de5 100644 --- a/node_modules/load-json-file/node_modules/type-fest/package.json +++ b/node_modules/load-json-file/node_modules/type-fest/package.json @@ -1,53 +1,49 @@ { - "name": "type-fest", - "version": "0.3.1", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && tsd" - }, - "files": [ - "index.d.ts", - "source" - ], - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.3.0", - "@typescript-eslint/eslint-plugin": "^1.5.0", - "eslint-config-xo-typescript": "^0.9.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" -,"_integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" -,"_from": "type-fest@0.3.1" + "name": "type-fest", + "version": "0.3.1", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.3.0", + "@typescript-eslint/eslint-plugin": "^1.5.0", + "eslint-config-xo-typescript": "^0.9.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off" + } + } } \ No newline at end of file diff --git a/node_modules/load-json-file/package.json b/node_modules/load-json-file/package.json index 16da414d5..644fa615e 100644 --- a/node_modules/load-json-file/package.json +++ b/node_modules/load-json-file/package.json @@ -1,47 +1,43 @@ { - "name": "load-json-file", - "version": "5.3.0", - "description": "Read and parse a JSON file", - "license": "MIT", - "repository": "sindresorhus/load-json-file", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "read", - "json", - "parse", - "file", - "fs", - "graceful", - "load" - ], - "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz" -,"_integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==" -,"_from": "load-json-file@5.3.0" + "name": "load-json-file", + "version": "5.3.0", + "description": "Read and parse a JSON file", + "license": "MIT", + "repository": "sindresorhus/load-json-file", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "read", + "json", + "parse", + "file", + "fs", + "graceful", + "load" + ], + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/locate-path/package.json b/node_modules/locate-path/package.json index a73101f8e..c3cac4f11 100644 --- a/node_modules/locate-path/package.json +++ b/node_modules/locate-path/package.json @@ -1,49 +1,45 @@ { - "name": "locate-path", - "version": "5.0.0", - "description": "Get the first path that exists on disk of multiple paths", - "license": "MIT", - "repository": "sindresorhus/locate-path", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "locate", - "path", - "paths", - "file", - "files", - "exists", - "find", - "finder", - "search", - "searcher", - "array", - "iterable", - "iterator" - ], - "dependencies": { - "p-locate": "^4.1.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" -,"_integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" -,"_from": "locate-path@5.0.0" + "name": "locate-path", + "version": "5.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "license": "MIT", + "repository": "sindresorhus/locate-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "dependencies": { + "p-locate": "^4.1.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/lodash.clonedeep/package.json b/node_modules/lodash.clonedeep/package.json index 63593f28b..06e0a424b 100644 --- a/node_modules/lodash.clonedeep/package.json +++ b/node_modules/lodash.clonedeep/package.json @@ -13,9 +13,7 @@ "Mathias Bynens (https://mathiasbynens.be/)" ], "repository": "lodash/lodash", - "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } - -,"_resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz" -,"_integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" -,"_from": "lodash.clonedeep@4.5.0" + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" + } } \ No newline at end of file diff --git a/node_modules/lodash.flattendeep/package.json b/node_modules/lodash.flattendeep/package.json index d70de5dc8..24bf32a74 100644 --- a/node_modules/lodash.flattendeep/package.json +++ b/node_modules/lodash.flattendeep/package.json @@ -13,9 +13,7 @@ "Mathias Bynens (https://mathiasbynens.be/)" ], "repository": "lodash/lodash", - "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } - -,"_resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz" -,"_integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" -,"_from": "lodash.flattendeep@4.4.0" + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" + } } \ No newline at end of file diff --git a/node_modules/lodash.islength/package.json b/node_modules/lodash.islength/package.json index dfda9a8e9..e8687664b 100644 --- a/node_modules/lodash.islength/package.json +++ b/node_modules/lodash.islength/package.json @@ -13,9 +13,7 @@ "Mathias Bynens (https://mathiasbynens.be/)" ], "repository": "lodash/lodash", - "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } - -,"_resolved": "https://registry.npmjs.org/lodash.islength/-/lodash.islength-4.0.1.tgz" -,"_integrity": "sha1-Tpho1FJXXXUK/9NYyXlUPcIO1Xc=" -,"_from": "lodash.islength@4.0.1" + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" + } } \ No newline at end of file diff --git a/node_modules/lodash.merge/package.json b/node_modules/lodash.merge/package.json index 64c7bcf4c..41a93f294 100644 --- a/node_modules/lodash.merge/package.json +++ b/node_modules/lodash.merge/package.json @@ -12,9 +12,7 @@ "Mathias Bynens " ], "repository": "lodash/lodash", - "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } - -,"_resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" -,"_integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" -,"_from": "lodash.merge@4.6.2" + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" + } } \ No newline at end of file diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json index 205e9bb0a..d0967f7a9 100644 --- a/node_modules/lodash/package.json +++ b/node_modules/lodash/package.json @@ -13,9 +13,7 @@ "John-David Dalton ", "Mathias Bynens " ], - "scripts": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" } - -,"_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz" -,"_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" -,"_from": "lodash@4.17.15" + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" + } } \ No newline at end of file diff --git a/node_modules/log-symbols/package.json b/node_modules/log-symbols/package.json index fe17beec9..a7bb760a1 100644 --- a/node_modules/log-symbols/package.json +++ b/node_modules/log-symbols/package.json @@ -1,54 +1,50 @@ { - "name": "log-symbols", - "version": "3.0.0", - "description": "Colored symbols for various log levels. Example: `✔︎ Success`", - "license": "MIT", - "repository": "sindresorhus/log-symbols", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "browser.js" - ], - "keywords": [ - "unicode", - "cli", - "cmd", - "command-line", - "characters", - "symbol", - "symbols", - "figure", - "figures", - "fallback", - "windows", - "log", - "logging", - "terminal", - "stdout" - ], - "dependencies": { - "chalk": "^2.4.2" - }, - "devDependencies": { - "ava": "^1.4.1", - "strip-ansi": "^5.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz" -,"_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" -,"_from": "log-symbols@3.0.0" + "name": "log-symbols", + "version": "3.0.0", + "description": "Colored symbols for various log levels. Example: `✔︎ Success`", + "license": "MIT", + "repository": "sindresorhus/log-symbols", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "browser.js" + ], + "keywords": [ + "unicode", + "cli", + "cmd", + "command-line", + "characters", + "symbol", + "symbols", + "figure", + "figures", + "fallback", + "windows", + "log", + "logging", + "terminal", + "stdout" + ], + "dependencies": { + "chalk": "^2.4.2" + }, + "devDependencies": { + "ava": "^1.4.1", + "strip-ansi": "^5.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/long/package.json b/node_modules/long/package.json index 3be939df4..922ef794d 100644 --- a/node_modules/long/package.json +++ b/node_modules/long/package.json @@ -1,38 +1,34 @@ { - "name": "long", - "version": "4.0.0", - "author": "Daniel Wirtz ", - "description": "A Long class for representing a 64-bit two's-complement integer value.", - "main": "src/long.js", - "repository": { - "type": "git", - "url": "https://github.com/dcodeIO/long.js.git" - }, - "bugs": { - "url": "https://github.com/dcodeIO/long.js/issues" - }, - "keywords": [ - "math" - ], - "dependencies": {}, - "devDependencies": { - "webpack": "^3.10.0" - }, - "license": "Apache-2.0", - "scripts": { - "build": "webpack", - "test": "node tests" - }, - "files": [ - "index.js", - "LICENSE", - "README.md", - "src/long.js", - "dist/long.js", - "dist/long.js.map" - ] - -,"_resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz" -,"_integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" -,"_from": "long@4.0.0" + "name": "long", + "version": "4.0.0", + "author": "Daniel Wirtz ", + "description": "A Long class for representing a 64-bit two's-complement integer value.", + "main": "src/long.js", + "repository": { + "type": "git", + "url": "https://github.com/dcodeIO/long.js.git" + }, + "bugs": { + "url": "https://github.com/dcodeIO/long.js/issues" + }, + "keywords": [ + "math" + ], + "dependencies": {}, + "devDependencies": { + "webpack": "^3.10.0" + }, + "license": "Apache-2.0", + "scripts": { + "build": "webpack", + "test": "node tests" + }, + "files": [ + "index.js", + "LICENSE", + "README.md", + "src/long.js", + "dist/long.js", + "dist/long.js.map" + ] } \ No newline at end of file diff --git a/node_modules/lowercase-keys/package.json b/node_modules/lowercase-keys/package.json index 9723e2602..e28b4c1dd 100644 --- a/node_modules/lowercase-keys/package.json +++ b/node_modules/lowercase-keys/package.json @@ -32,8 +32,4 @@ "devDependencies": { "ava": "*" } - -,"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" -,"_integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" -,"_from": "lowercase-keys@1.0.1" } \ No newline at end of file diff --git a/node_modules/macos-release/package.json b/node_modules/macos-release/package.json index 870c40cb0..78bde8578 100644 --- a/node_modules/macos-release/package.json +++ b/node_modules/macos-release/package.json @@ -1,43 +1,39 @@ { - "name": "macos-release", - "version": "2.3.0", - "description": "Get the name and version of a macOS release from the Darwin version", - "license": "MIT", - "repository": "sindresorhus/macos-release", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "macos", - "os", - "darwin", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz" -,"_integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==" -,"_from": "macos-release@2.3.0" + "name": "macos-release", + "version": "2.3.0", + "description": "Get the name and version of a macOS release from the Darwin version", + "license": "MIT", + "repository": "sindresorhus/macos-release", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "macos", + "os", + "darwin", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/make-dir/node_modules/semver/package.json b/node_modules/make-dir/node_modules/semver/package.json index 13030769c..a330b56c2 100644 --- a/node_modules/make-dir/node_modules/semver/package.json +++ b/node_modules/make-dir/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" -,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" -,"_from": "semver@6.3.0" } \ No newline at end of file diff --git a/node_modules/make-dir/package.json b/node_modules/make-dir/package.json index 27e91efaf..f644e281a 100644 --- a/node_modules/make-dir/package.json +++ b/node_modules/make-dir/package.json @@ -1,63 +1,59 @@ { - "name": "make-dir", - "version": "3.0.2", - "description": "Make a directory and its parents if needed - Think `mkdir -p`", - "license": "MIT", - "repository": "sindresorhus/make-dir", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "mkdir", - "mkdirp", - "make", - "directories", - "dir", - "dirs", - "folders", - "directory", - "folder", - "path", - "parent", - "parents", - "intermediate", - "recursively", - "recursive", - "create", - "fs", - "filesystem", - "file-system" - ], - "dependencies": { - "semver": "^6.0.0" - }, - "devDependencies": { - "@types/graceful-fs": "^4.1.3", - "@types/node": "^13.7.1", - "ava": "^1.4.0", - "codecov": "^3.2.0", - "graceful-fs": "^4.1.15", - "nyc": "^15.0.0", - "path-type": "^4.0.0", - "tempy": "^0.2.1", - "tsd": "^0.11.0", - "xo": "^0.25.4" - } - -,"_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz" -,"_integrity": "sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==" -,"_from": "make-dir@3.0.2" + "name": "make-dir", + "version": "3.0.2", + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "license": "MIT", + "repository": "sindresorhus/make-dir", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "mkdir", + "mkdirp", + "make", + "directories", + "dir", + "dirs", + "folders", + "directory", + "folder", + "path", + "parent", + "parents", + "intermediate", + "recursively", + "recursive", + "create", + "fs", + "filesystem", + "file-system" + ], + "dependencies": { + "semver": "^6.0.0" + }, + "devDependencies": { + "@types/graceful-fs": "^4.1.3", + "@types/node": "^13.7.1", + "ava": "^1.4.0", + "codecov": "^3.2.0", + "graceful-fs": "^4.1.15", + "nyc": "^15.0.0", + "path-type": "^4.0.0", + "tempy": "^0.2.1", + "tsd": "^0.11.0", + "xo": "^0.25.4" + } } \ No newline at end of file diff --git a/node_modules/map-age-cleaner/package.json b/node_modules/map-age-cleaner/package.json index 2ce35979d..4478f2268 100644 --- a/node_modules/map-age-cleaner/package.json +++ b/node_modules/map-age-cleaner/package.json @@ -1,63 +1,59 @@ { - "name": "map-age-cleaner", - "version": "0.1.3", - "description": "Automatically cleanup expired items in a Map", - "license": "MIT", - "repository": "SamVerschueren/map-age-cleaner", - "author": { - "name": "Sam Verschueren", - "email": "sam.verschueren@gmail.com", - "url": "github.com/SamVerschueren" - }, - "main": "dist/index.js", - "engines": { - "node": ">=6" - }, - "scripts": { - "prepublishOnly": "npm run build", - "pretest": "npm run build -- --sourceMap", - "test": "npm run lint && nyc ava dist/test.js", - "lint": "tslint --format stylish --project .", - "build": "npm run clean && tsc", - "clean": "del-cli dist" - }, - "files": [ - "dist/index.js", - "dist/index.d.ts" - ], - "keywords": [ - "map", - "age", - "cleaner", - "maxage", - "expire", - "expiration", - "expiring" - ], - "dependencies": { - "p-defer": "^1.0.0" - }, - "devDependencies": { - "@types/delay": "^2.0.1", - "@types/node": "^10.7.1", - "ava": "^0.25.0", - "codecov": "^3.0.0", - "del-cli": "^1.1.0", - "delay": "^3.0.0", - "nyc": "^12.0.0", - "tslint": "^5.11.0", - "tslint-xo": "^0.9.0", - "typescript": "^3.0.1" - }, - "typings": "dist/index.d.ts", - "sideEffects": false, - "nyc": { - "exclude": [ - "dist/test.js" - ] - } - -,"_resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz" -,"_integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" -,"_from": "map-age-cleaner@0.1.3" + "name": "map-age-cleaner", + "version": "0.1.3", + "description": "Automatically cleanup expired items in a Map", + "license": "MIT", + "repository": "SamVerschueren/map-age-cleaner", + "author": { + "name": "Sam Verschueren", + "email": "sam.verschueren@gmail.com", + "url": "github.com/SamVerschueren" + }, + "main": "dist/index.js", + "engines": { + "node": ">=6" + }, + "scripts": { + "prepublishOnly": "npm run build", + "pretest": "npm run build -- --sourceMap", + "test": "npm run lint && nyc ava dist/test.js", + "lint": "tslint --format stylish --project .", + "build": "npm run clean && tsc", + "clean": "del-cli dist" + }, + "files": [ + "dist/index.js", + "dist/index.d.ts" + ], + "keywords": [ + "map", + "age", + "cleaner", + "maxage", + "expire", + "expiration", + "expiring" + ], + "dependencies": { + "p-defer": "^1.0.0" + }, + "devDependencies": { + "@types/delay": "^2.0.1", + "@types/node": "^10.7.1", + "ava": "^0.25.0", + "codecov": "^3.0.0", + "del-cli": "^1.1.0", + "delay": "^3.0.0", + "nyc": "^12.0.0", + "tslint": "^5.11.0", + "tslint-xo": "^0.9.0", + "typescript": "^3.0.1" + }, + "typings": "dist/index.d.ts", + "sideEffects": false, + "nyc": { + "exclude": [ + "dist/test.js" + ] + } } \ No newline at end of file diff --git a/node_modules/matcher/node_modules/escape-string-regexp/package.json b/node_modules/matcher/node_modules/escape-string-regexp/package.json index 29a6312fd..053b31334 100644 --- a/node_modules/matcher/node_modules/escape-string-regexp/package.json +++ b/node_modules/matcher/node_modules/escape-string-regexp/package.json @@ -1,42 +1,38 @@ { - "name": "escape-string-regexp", - "version": "4.0.0", - "description": "Escape RegExp special characters", - "license": "MIT", - "repository": "sindresorhus/escape-string-regexp", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "escape", - "regex", - "regexp", - "regular", - "expression", - "string", - "special", - "characters" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.28.3" - } - -,"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" -,"_integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" -,"_from": "escape-string-regexp@4.0.0" + "name": "escape-string-regexp", + "version": "4.0.0", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "escape", + "regex", + "regexp", + "regular", + "expression", + "string", + "special", + "characters" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.28.3" + } } \ No newline at end of file diff --git a/node_modules/matcher/package.json b/node_modules/matcher/package.json index bae54d9ae..af3a3845f 100644 --- a/node_modules/matcher/package.json +++ b/node_modules/matcher/package.json @@ -1,58 +1,54 @@ { - "name": "matcher", - "version": "3.0.0", - "description": "Simple wildcard matching", - "license": "MIT", - "repository": "sindresorhus/matcher", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && ava && tsd", - "bench": "matcha bench.js" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "matcher", - "matching", - "match", - "regex", - "regexp", - "regular", - "expression", - "wildcard", - "pattern", - "string", - "filter", - "glob", - "globber", - "globbing", - "minimatch" - ], - "dependencies": { - "escape-string-regexp": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "matcha": "^0.7.0", - "tsd": "^0.11.0", - "xo": "^0.30.0" - }, - "xo": { - "rules": { - "@typescript-eslint/member-ordering": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz" -,"_integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==" -,"_from": "matcher@3.0.0" + "name": "matcher", + "version": "3.0.0", + "description": "Simple wildcard matching", + "license": "MIT", + "repository": "sindresorhus/matcher", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd", + "bench": "matcha bench.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "matcher", + "matching", + "match", + "regex", + "regexp", + "regular", + "expression", + "wildcard", + "pattern", + "string", + "filter", + "glob", + "globber", + "globbing", + "minimatch" + ], + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "matcha": "^0.7.0", + "tsd": "^0.11.0", + "xo": "^0.30.0" + }, + "xo": { + "rules": { + "@typescript-eslint/member-ordering": "off" + } + } } \ No newline at end of file diff --git a/node_modules/md5-hex/package.json b/node_modules/md5-hex/package.json index 63e1c3de6..a71c11260 100644 --- a/node_modules/md5-hex/package.json +++ b/node_modules/md5-hex/package.json @@ -1,45 +1,41 @@ { - "name": "md5-hex", - "version": "3.0.1", - "description": "Create a MD5 hash with hex encoding", - "license": "MIT", - "repository": "sindresorhus/md5-hex", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "browser.js" - ], - "keywords": [ - "hash", - "crypto", - "md5", - "hex", - "buffer", - "browser" - ], - "dependencies": { - "blueimp-md5": "^2.10.0" - }, - "devDependencies": { - "@types/node": "^12.6.2", - "ava": "^2.2.0", - "tsd": "^0.7.4", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz" -,"_integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==" -,"_from": "md5-hex@3.0.1" + "name": "md5-hex", + "version": "3.0.1", + "description": "Create a MD5 hash with hex encoding", + "license": "MIT", + "repository": "sindresorhus/md5-hex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "browser.js" + ], + "keywords": [ + "hash", + "crypto", + "md5", + "hex", + "buffer", + "browser" + ], + "dependencies": { + "blueimp-md5": "^2.10.0" + }, + "devDependencies": { + "@types/node": "^12.6.2", + "ava": "^2.2.0", + "tsd": "^0.7.4", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/md5-o-matic/package.json b/node_modules/md5-o-matic/package.json index d5aeffd9f..72382adbc 100644 --- a/node_modules/md5-o-matic/package.json +++ b/node_modules/md5-o-matic/package.json @@ -28,9 +28,9 @@ }, "licenses": [ { - "type": "MIT", - "url": "https://github.com/trentmillar/md5-o-matic/blob/master/LICENSE" - } + "type": "MIT", + "url": "https://github.com/trentmillar/md5-o-matic/blob/master/LICENSE" + } ], "devDependencies": { "mocha": "", @@ -41,8 +41,4 @@ "url": "https://github.com/trentmillar/md5-o-matic/issues" }, "homepage": "https://github.com/trentmillar/md5-o-matic" - -,"_resolved": "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz" -,"_integrity": "sha1-givM1l4RfFFPqxdrJZRdVBAKA8M=" -,"_from": "md5-o-matic@0.1.1" } \ No newline at end of file diff --git a/node_modules/md5/package.json b/node_modules/md5/package.json index 644e305f0..fdcac15a4 100644 --- a/node_modules/md5/package.json +++ b/node_modules/md5/package.json @@ -33,8 +33,4 @@ }, "optionalDependencies": {}, "license": "BSD-3-Clause" - -,"_resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz" -,"_integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=" -,"_from": "md5@2.2.1" } \ No newline at end of file diff --git a/node_modules/mem/node_modules/mimic-fn/package.json b/node_modules/mem/node_modules/mimic-fn/package.json index ae102f417..ac43d06ca 100644 --- a/node_modules/mem/node_modules/mimic-fn/package.json +++ b/node_modules/mem/node_modules/mimic-fn/package.json @@ -1,46 +1,42 @@ { - "name": "mimic-fn", - "version": "3.0.0", - "description": "Make a function mimic another one", - "license": "MIT", - "repository": "sindresorhus/mimic-fn", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "function", - "mimic", - "imitate", - "rename", - "copy", - "inherit", - "properties", - "name", - "func", - "fn", - "set", - "infer", - "change" - ], - "devDependencies": { - "ava": "^2.1.0", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.0.0.tgz" -,"_integrity": "sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==" -,"_from": "mimic-fn@3.0.0" + "name": "mimic-fn", + "version": "3.0.0", + "description": "Make a function mimic another one", + "license": "MIT", + "repository": "sindresorhus/mimic-fn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "function", + "mimic", + "imitate", + "rename", + "copy", + "inherit", + "properties", + "name", + "func", + "fn", + "set", + "infer", + "change" + ], + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/mem/package.json b/node_modules/mem/package.json index 645ec3287..dba9edb68 100644 --- a/node_modules/mem/package.json +++ b/node_modules/mem/package.json @@ -1,50 +1,46 @@ { - "name": "mem", - "version": "6.1.0", - "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", - "license": "MIT", - "repository": "sindresorhus/mem", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "memoize", - "function", - "mem", - "memoization", - "cache", - "caching", - "optimize", - "performance", - "ttl", - "expire", - "promise" - ], - "dependencies": { - "map-age-cleaner": "^0.1.3", - "mimic-fn": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "delay": "^4.1.0", - "serialize-javascript": "^2.1.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/mem/-/mem-6.1.0.tgz" -,"_integrity": "sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg==" -,"_from": "mem@6.1.0" + "name": "mem", + "version": "6.1.0", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "license": "MIT", + "repository": "sindresorhus/mem", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "memoize", + "function", + "mem", + "memoization", + "cache", + "caching", + "optimize", + "performance", + "ttl", + "expire", + "promise" + ], + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "delay": "^4.1.0", + "serialize-javascript": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/merge2/package.json b/node_modules/merge2/package.json index 972cfb99e..1e09cf88b 100644 --- a/node_modules/merge2/package.json +++ b/node_modules/merge2/package.json @@ -1,47 +1,43 @@ -{ - "name": "merge2", - "description": "Merge multiple streams into one stream in sequence or parallel.", - "authors": [ - "Yan Qing " - ], - "license": "MIT", - "version": "1.3.0", - "main": "./index.js", - "repository": { - "type": "git", - "url": "git@github.com:teambition/merge2.git" - }, - "homepage": "https://github.com/teambition/merge2", - "keywords": [ - "merge2", - "multiple", - "sequence", - "parallel", - "merge", - "stream", - "merge stream", - "sync" - ], - "engines": { - "node": ">= 6" - }, - "dependencies": {}, - "devDependencies": { - "standard": "^14.2.0", - "through2": "^3.0.1", - "thunks": "^4.9.5", - "tman": "^1.9.0", - "to-through": "^2.0.0" - }, - "scripts": { - "test": "standard && tman" - }, - "files": [ - "README.md", - "index.js" - ] - -,"_resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz" -,"_integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==" -,"_from": "merge2@1.3.0" +{ + "name": "merge2", + "description": "Merge multiple streams into one stream in sequence or parallel.", + "authors": [ + "Yan Qing " + ], + "license": "MIT", + "version": "1.3.0", + "main": "./index.js", + "repository": { + "type": "git", + "url": "git@github.com:teambition/merge2.git" + }, + "homepage": "https://github.com/teambition/merge2", + "keywords": [ + "merge2", + "multiple", + "sequence", + "parallel", + "merge", + "stream", + "merge stream", + "sync" + ], + "engines": { + "node": ">= 6" + }, + "dependencies": {}, + "devDependencies": { + "standard": "^14.2.0", + "through2": "^3.0.1", + "thunks": "^4.9.5", + "tman": "^1.9.0", + "to-through": "^2.0.0" + }, + "scripts": { + "test": "standard && tman" + }, + "files": [ + "README.md", + "index.js" + ] } \ No newline at end of file diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json index 5fbff1a64..0b870b1fe 100644 --- a/node_modules/micromatch/package.json +++ b/node_modules/micromatch/package.json @@ -115,8 +115,4 @@ "multimatch" ] } - -,"_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" -,"_integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==" -,"_from": "micromatch@4.0.2" } \ No newline at end of file diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json index 0ed35fde3..cddfcb379 100644 --- a/node_modules/mimic-fn/package.json +++ b/node_modules/mimic-fn/package.json @@ -1,46 +1,42 @@ { - "name": "mimic-fn", - "version": "2.1.0", - "description": "Make a function mimic another one", - "license": "MIT", - "repository": "sindresorhus/mimic-fn", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "function", - "mimic", - "imitate", - "rename", - "copy", - "inherit", - "properties", - "name", - "func", - "fn", - "set", - "infer", - "change" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" -,"_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" -,"_from": "mimic-fn@2.1.0" + "name": "mimic-fn", + "version": "2.1.0", + "description": "Make a function mimic another one", + "license": "MIT", + "repository": "sindresorhus/mimic-fn", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "function", + "mimic", + "imitate", + "rename", + "copy", + "inherit", + "properties", + "name", + "func", + "fn", + "set", + "infer", + "change" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/mimic-response/package.json b/node_modules/mimic-response/package.json index f491ccda6..953152b76 100644 --- a/node_modules/mimic-response/package.json +++ b/node_modules/mimic-response/package.json @@ -34,8 +34,4 @@ "pify": "^3.0.0", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" -,"_integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" -,"_from": "mimic-response@1.0.1" } \ No newline at end of file diff --git a/node_modules/minimatch/package.json b/node_modules/minimatch/package.json index 243f26056..8c89ea278 100644 --- a/node_modules/minimatch/package.json +++ b/node_modules/minimatch/package.json @@ -27,8 +27,4 @@ "files": [ "minimatch.js" ] - -,"_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" -,"_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" -,"_from": "minimatch@3.0.4" } \ No newline at end of file diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json index 71b4f816e..6d7171689 100644 --- a/node_modules/minimist/package.json +++ b/node_modules/minimist/package.json @@ -42,8 +42,4 @@ "url": "http://substack.net" }, "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" -,"_integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" -,"_from": "minimist@1.2.5" } \ No newline at end of file diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json index 8f5b167f8..b335f1ae0 100644 --- a/node_modules/mkdirp/package.json +++ b/node_modules/mkdirp/package.json @@ -31,8 +31,4 @@ "bin", "index.js" ] - -,"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz" -,"_integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==" -,"_from": "mkdirp@0.5.4" } \ No newline at end of file diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json index e286ef2be..3408eef7c 100644 --- a/node_modules/ms/package.json +++ b/node_modules/ms/package.json @@ -34,8 +34,4 @@ "lint-staged": "5.0.0", "mocha": "4.0.1" } - -,"_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" -,"_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" -,"_from": "ms@2.1.2" } \ No newline at end of file diff --git a/node_modules/mute-stream/package.json b/node_modules/mute-stream/package.json index 92cedb79a..dcd78bedf 100644 --- a/node_modules/mute-stream/package.json +++ b/node_modules/mute-stream/package.json @@ -26,8 +26,4 @@ "files": [ "mute.js" ] - -,"_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" -,"_integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" -,"_from": "mute-stream@0.0.8" } \ No newline at end of file diff --git a/node_modules/nice-try/package.json b/node_modules/nice-try/package.json index c118b5728..9d6f07278 100644 --- a/node_modules/nice-try/package.json +++ b/node_modules/nice-try/package.json @@ -30,8 +30,4 @@ "nyc": "^12.0.1", "mocha": "^5.1.1" } - -,"_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" -,"_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" -,"_from": "nice-try@1.0.5" } \ No newline at end of file diff --git a/node_modules/nock/package.json b/node_modules/nock/package.json index ff6dddc87..9f0f2004f 100644 --- a/node_modules/nock/package.json +++ b/node_modules/nock/package.json @@ -83,8 +83,4 @@ "lib", "types/index.d.ts" ] - -,"_resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz" -,"_integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==" -,"_from": "nock@12.0.3" } \ No newline at end of file diff --git a/node_modules/node-fetch/package.json b/node_modules/node-fetch/package.json index d9dc1c211..78a30d35a 100644 --- a/node_modules/node-fetch/package.json +++ b/node_modules/node-fetch/package.json @@ -63,8 +63,4 @@ "whatwg-url": "^5.0.0" }, "dependencies": {} - -,"_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz" -,"_integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" -,"_from": "node-fetch@2.6.0" } \ No newline at end of file diff --git a/node_modules/normalize-package-data/node_modules/semver/package.json b/node_modules/normalize-package-data/node_modules/semver/package.json index 31e12dde0..90e287ecf 100644 --- a/node_modules/normalize-package-data/node_modules/semver/package.json +++ b/node_modules/normalize-package-data/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" -,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" -,"_from": "semver@5.7.1" } \ No newline at end of file diff --git a/node_modules/normalize-package-data/package.json b/node_modules/normalize-package-data/package.json index c73c60bb1..b427a6052 100644 --- a/node_modules/normalize-package-data/package.json +++ b/node_modules/normalize-package-data/package.json @@ -28,8 +28,4 @@ "lib/*.json", "AUTHORS" ] - -,"_resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" -,"_integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" -,"_from": "normalize-package-data@2.5.0" } \ No newline at end of file diff --git a/node_modules/normalize-url/package.json b/node_modules/normalize-url/package.json index 6d81b2f93..84adbb278 100644 --- a/node_modules/normalize-url/package.json +++ b/node_modules/normalize-url/package.json @@ -1,48 +1,44 @@ { - "name": "normalize-url", - "version": "4.5.0", - "description": "Normalize a URL", - "license": "MIT", - "repository": "sindresorhus/normalize-url", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "normalize", - "url", - "uri", - "address", - "string", - "normalization", - "normalisation", - "query", - "querystring", - "simplify", - "strip", - "trim", - "canonical" - ], - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.6", - "nyc": "^14.1.1", - "tsd": "^0.8.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" -,"_integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" -,"_from": "normalize-url@4.5.0" + "name": "normalize-url", + "version": "4.5.0", + "description": "Normalize a URL", + "license": "MIT", + "repository": "sindresorhus/normalize-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "normalize", + "url", + "uri", + "address", + "string", + "normalization", + "normalisation", + "query", + "querystring", + "simplify", + "strip", + "trim", + "canonical" + ], + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.6", + "nyc": "^14.1.1", + "tsd": "^0.8.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/npm-run-path/package.json b/node_modules/npm-run-path/package.json index 557c23e7b..509723438 100644 --- a/node_modules/npm-run-path/package.json +++ b/node_modules/npm-run-path/package.json @@ -42,8 +42,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" -,"_integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" -,"_from": "npm-run-path@2.0.2" } \ No newline at end of file diff --git a/node_modules/once/package.json b/node_modules/once/package.json index a498f74fd..c827b2595 100644 --- a/node_modules/once/package.json +++ b/node_modules/once/package.json @@ -30,8 +30,4 @@ ], "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "license": "ISC" - -,"_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz" -,"_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" -,"_from": "once@1.4.0" } \ No newline at end of file diff --git a/node_modules/onetime/package.json b/node_modules/onetime/package.json index 93be75fae..19a7f198c 100644 --- a/node_modules/onetime/package.json +++ b/node_modules/onetime/package.json @@ -1,46 +1,42 @@ { - "name": "onetime", - "version": "5.1.0", - "description": "Ensure a function is only called once", - "license": "MIT", - "repository": "sindresorhus/onetime", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "once", - "function", - "one", - "onetime", - "func", - "fn", - "single", - "call", - "called", - "prevent" - ], - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz" -,"_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==" -,"_from": "onetime@5.1.0" + "name": "onetime", + "version": "5.1.0", + "description": "Ensure a function is only called once", + "license": "MIT", + "repository": "sindresorhus/onetime", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "once", + "function", + "one", + "onetime", + "func", + "fn", + "single", + "call", + "called", + "prevent" + ], + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ora/node_modules/ansi-styles/package.json b/node_modules/ora/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/ora/node_modules/ansi-styles/package.json +++ b/node_modules/ora/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/ora/node_modules/chalk/package.json b/node_modules/ora/node_modules/chalk/package.json index c75d30e94..b68e931e7 100644 --- a/node_modules/ora/node_modules/chalk/package.json +++ b/node_modules/ora/node_modules/chalk/package.json @@ -1,67 +1,63 @@ { - "name": "chalk", - "version": "3.0.0", - "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, - "files": [ - "source", - "index.d.ts" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" -,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" -,"_from": "chalk@3.0.0" + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } } \ No newline at end of file diff --git a/node_modules/ora/node_modules/color-convert/package.json b/node_modules/ora/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/ora/node_modules/color-convert/package.json +++ b/node_modules/ora/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/ora/node_modules/color-name/package.json b/node_modules/ora/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/ora/node_modules/color-name/package.json +++ b/node_modules/ora/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/ora/node_modules/has-flag/package.json b/node_modules/ora/node_modules/has-flag/package.json index 5b10a2844..55d0058e4 100644 --- a/node_modules/ora/node_modules/has-flag/package.json +++ b/node_modules/ora/node_modules/has-flag/package.json @@ -1,50 +1,46 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" -,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" -,"_from": "has-flag@4.0.0" + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/ora/node_modules/supports-color/package.json b/node_modules/ora/node_modules/supports-color/package.json index f0982eb21..79856038d 100644 --- a/node_modules/ora/node_modules/supports-color/package.json +++ b/node_modules/ora/node_modules/supports-color/package.json @@ -1,57 +1,53 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "browser.js" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "dependencies": { - "has-flag": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" -,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" -,"_from": "supports-color@7.1.0" + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/ora/package.json b/node_modules/ora/package.json index 29fd1e344..f5e907f91 100644 --- a/node_modules/ora/package.json +++ b/node_modules/ora/package.json @@ -1,60 +1,56 @@ { - "name": "ora", - "version": "4.0.4", - "description": "Elegant terminal spinner", - "license": "MIT", - "repository": "sindresorhus/ora", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "cli", - "spinner", - "spinners", - "terminal", - "term", - "console", - "ascii", - "unicode", - "loading", - "indicator", - "progress", - "busy", - "wait", - "idle" - ], - "dependencies": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "devDependencies": { - "@types/node": "^12.7.5", - "ava": "^2.4.0", - "get-stream": "^5.1.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.4.tgz" -,"_integrity": "sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==" -,"_from": "ora@4.0.4" + "name": "ora", + "version": "4.0.4", + "description": "Elegant terminal spinner", + "license": "MIT", + "repository": "sindresorhus/ora", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "cli", + "spinner", + "spinners", + "terminal", + "term", + "console", + "ascii", + "unicode", + "loading", + "indicator", + "progress", + "busy", + "wait", + "idle" + ], + "dependencies": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "devDependencies": { + "@types/node": "^12.7.5", + "ava": "^2.4.0", + "get-stream": "^5.1.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/os-name/package.json b/node_modules/os-name/package.json index 2ce367f0e..3418bf392 100644 --- a/node_modules/os-name/package.json +++ b/node_modules/os-name/package.json @@ -1,49 +1,45 @@ { - "name": "os-name", - "version": "3.1.0", - "description": "Get the name of the current operating system. Example: macOS Sierra", - "license": "MIT", - "repository": "sindresorhus/os-name", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "os", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version", - "macos", - "windows", - "linux" - ], - "dependencies": { - "macos-release": "^2.2.0", - "windows-release": "^3.1.0" - }, - "devDependencies": { - "@types/node": "^11.13.0", - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz" -,"_integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==" -,"_from": "os-name@3.1.0" + "name": "os-name", + "version": "3.1.0", + "description": "Get the name of the current operating system. Example: macOS Sierra", + "license": "MIT", + "repository": "sindresorhus/os-name", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "os", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version", + "macos", + "windows", + "linux" + ], + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + }, + "devDependencies": { + "@types/node": "^11.13.0", + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/p-cancelable/package.json b/node_modules/p-cancelable/package.json index 7ffb5608e..98d0b765a 100644 --- a/node_modules/p-cancelable/package.json +++ b/node_modules/p-cancelable/package.json @@ -1,53 +1,49 @@ { - "name": "p-cancelable", - "version": "1.1.0", - "description": "Create a promise that can be canceled", - "license": "MIT", - "repository": "sindresorhus/p-cancelable", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "cancelable", - "cancel", - "canceled", - "canceling", - "cancellable", - "cancellation", - "abort", - "abortable", - "aborting", - "cleanup", - "task", - "token", - "async", - "function", - "await", - "promises", - "bluebird" - ], - "devDependencies": { - "ava": "^1.3.1", - "delay": "^4.1.0", - "promise.prototype.finally": "^3.1.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" -,"_integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" -,"_from": "p-cancelable@1.1.0" + "name": "p-cancelable", + "version": "1.1.0", + "description": "Create a promise that can be canceled", + "license": "MIT", + "repository": "sindresorhus/p-cancelable", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "cancelable", + "cancel", + "canceled", + "canceling", + "cancellable", + "cancellation", + "abort", + "abortable", + "aborting", + "cleanup", + "task", + "token", + "async", + "function", + "await", + "promises", + "bluebird" + ], + "devDependencies": { + "ava": "^1.3.1", + "delay": "^4.1.0", + "promise.prototype.finally": "^3.1.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/p-defer/package.json b/node_modules/p-defer/package.json index 5b8a525ca..d7f9b811b 100644 --- a/node_modules/p-defer/package.json +++ b/node_modules/p-defer/package.json @@ -38,8 +38,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz" -,"_integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" -,"_from": "p-defer@1.0.0" } \ No newline at end of file diff --git a/node_modules/p-finally/package.json b/node_modules/p-finally/package.json index 719d847cf..8a58ebb94 100644 --- a/node_modules/p-finally/package.json +++ b/node_modules/p-finally/package.json @@ -39,8 +39,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" -,"_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" -,"_from": "p-finally@1.0.0" } \ No newline at end of file diff --git a/node_modules/p-limit/package.json b/node_modules/p-limit/package.json index 256a22233..8a8f33e00 100644 --- a/node_modules/p-limit/package.json +++ b/node_modules/p-limit/package.json @@ -1,55 +1,51 @@ { - "name": "p-limit", - "version": "2.2.1", - "description": "Run multiple promise-returning & async functions with limited concurrency", - "license": "MIT", - "repository": "sindresorhus/p-limit", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "limit", - "limited", - "concurrency", - "throttle", - "throat", - "rate", - "batch", - "ratelimit", - "task", - "queue", - "async", - "await", - "promises", - "bluebird" - ], - "dependencies": { - "p-try": "^2.0.0" - }, - "devDependencies": { - "ava": "^1.2.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "random-int": "^1.0.0", - "time-span": "^2.0.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz" -,"_integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==" -,"_from": "p-limit@2.2.1" + "name": "p-limit", + "version": "2.2.1", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "license": "MIT", + "repository": "sindresorhus/p-limit", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "limit", + "limited", + "concurrency", + "throttle", + "throat", + "rate", + "batch", + "ratelimit", + "task", + "queue", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-try": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.2.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "random-int": "^1.0.0", + "time-span": "^2.0.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/p-locate/package.json b/node_modules/p-locate/package.json index d2e602eee..24bf49512 100644 --- a/node_modules/p-locate/package.json +++ b/node_modules/p-locate/package.json @@ -1,57 +1,53 @@ { - "name": "p-locate", - "version": "4.1.0", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "license": "MIT", - "repository": "sindresorhus/p-locate", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "locate", - "find", - "finder", - "search", - "searcher", - "test", - "array", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "fastest", - "async", - "await", - "promises", - "bluebird" - ], - "dependencies": { - "p-limit": "^2.2.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "delay": "^4.1.0", - "in-range": "^1.0.0", - "time-span": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" -,"_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" -,"_from": "p-locate@4.1.0" + "name": "p-locate", + "version": "4.1.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "license": "MIT", + "repository": "sindresorhus/p-locate", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-limit": "^2.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "time-span": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/p-map/package.json b/node_modules/p-map/package.json index 0292392d0..8782cb6af 100644 --- a/node_modules/p-map/package.json +++ b/node_modules/p-map/package.json @@ -1,57 +1,53 @@ { - "name": "p-map", - "version": "4.0.0", - "description": "Map over promises concurrently", - "license": "MIT", - "repository": "sindresorhus/p-map", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "map", - "resolved", - "wait", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "async", - "await", - "promises", - "concurrently", - "concurrency", - "parallel", - "bluebird" - ], - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.2.0", - "delay": "^4.1.0", - "in-range": "^2.0.0", - "random-int": "^2.0.0", - "time-span": "^3.1.0", - "tsd": "^0.7.4", - "xo": "^0.27.2" - } - -,"_resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" -,"_integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" -,"_from": "p-map@4.0.0" + "name": "p-map", + "version": "4.0.0", + "description": "Map over promises concurrently", + "license": "MIT", + "repository": "sindresorhus/p-map", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "map", + "resolved", + "wait", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "async", + "await", + "promises", + "concurrently", + "concurrency", + "parallel", + "bluebird" + ], + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "delay": "^4.1.0", + "in-range": "^2.0.0", + "random-int": "^2.0.0", + "time-span": "^3.1.0", + "tsd": "^0.7.4", + "xo": "^0.27.2" + } } \ No newline at end of file diff --git a/node_modules/p-try/package.json b/node_modules/p-try/package.json index 640f8f8d2..43c139fa7 100644 --- a/node_modules/p-try/package.json +++ b/node_modules/p-try/package.json @@ -1,46 +1,42 @@ { - "name": "p-try", - "version": "2.2.0", - "description": "`Start a promise chain", - "license": "MIT", - "repository": "sindresorhus/p-try", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "promise", - "try", - "resolve", - "function", - "catch", - "async", - "await", - "promises", - "settled", - "ponyfill", - "polyfill", - "shim", - "bluebird" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" -,"_integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" -,"_from": "p-try@2.2.0" + "name": "p-try", + "version": "2.2.0", + "description": "`Start a promise chain", + "license": "MIT", + "repository": "sindresorhus/p-try", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "promise", + "try", + "resolve", + "function", + "catch", + "async", + "await", + "promises", + "settled", + "ponyfill", + "polyfill", + "shim", + "bluebird" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/package-json/node_modules/semver/package.json b/node_modules/package-json/node_modules/semver/package.json index 13030769c..a330b56c2 100644 --- a/node_modules/package-json/node_modules/semver/package.json +++ b/node_modules/package-json/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" -,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" -,"_from": "semver@6.3.0" } \ No newline at end of file diff --git a/node_modules/package-json/package.json b/node_modules/package-json/package.json index 03db7a062..f090b5552 100644 --- a/node_modules/package-json/package.json +++ b/node_modules/package-json/package.json @@ -1,50 +1,46 @@ { - "name": "package-json", - "version": "6.5.0", - "description": "Get metadata of a package from the npm registry", - "license": "MIT", - "repository": "sindresorhus/package-json", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "npm", - "registry", - "package", - "pkg", - "package.json", - "json", - "module", - "scope", - "scoped" - ], - "dependencies": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "devDependencies": { - "@types/node": "^12.6.8", - "ava": "^2.2.0", - "mock-private-registry": "^1.1.2", - "tsd": "^0.7.4", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz" -,"_integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" -,"_from": "package-json@6.5.0" + "name": "package-json", + "version": "6.5.0", + "description": "Get metadata of a package from the npm registry", + "license": "MIT", + "repository": "sindresorhus/package-json", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "registry", + "package", + "pkg", + "package.json", + "json", + "module", + "scope", + "scoped" + ], + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "devDependencies": { + "@types/node": "^12.6.8", + "ava": "^2.2.0", + "mock-private-registry": "^1.1.2", + "tsd": "^0.7.4", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/parse-json/package.json b/node_modules/parse-json/package.json index feb71a05a..9bbcba68c 100644 --- a/node_modules/parse-json/package.json +++ b/node_modules/parse-json/package.json @@ -40,8 +40,4 @@ "nyc": "^11.2.1", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" -,"_integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" -,"_from": "parse-json@4.0.0" } \ No newline at end of file diff --git a/node_modules/parse-ms/package.json b/node_modules/parse-ms/package.json index e1671d4de..556e3e088 100644 --- a/node_modules/parse-ms/package.json +++ b/node_modules/parse-ms/package.json @@ -1,44 +1,40 @@ { - "name": "parse-ms", - "version": "2.1.0", - "description": "Parse milliseconds into an object", - "license": "MIT", - "repository": "sindresorhus/parse-ms", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "browser", - "parse", - "time", - "ms", - "milliseconds", - "microseconds", - "nanoseconds", - "duration", - "period", - "range", - "interval" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz" -,"_integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" -,"_from": "parse-ms@2.1.0" + "name": "parse-ms", + "version": "2.1.0", + "description": "Parse milliseconds into an object", + "license": "MIT", + "repository": "sindresorhus/parse-ms", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "browser", + "parse", + "time", + "ms", + "milliseconds", + "microseconds", + "nanoseconds", + "duration", + "period", + "range", + "interval" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json index 60c6b6518..90039cc2f 100644 --- a/node_modules/path-exists/package.json +++ b/node_modules/path-exists/package.json @@ -1,43 +1,39 @@ { - "name": "path-exists", - "version": "4.0.0", - "description": "Check if a path exists", - "license": "MIT", - "repository": "sindresorhus/path-exists", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "path", - "exists", - "exist", - "file", - "filepath", - "fs", - "filesystem", - "file-system", - "access", - "stat" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" -,"_integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" -,"_from": "path-exists@4.0.0" + "name": "path-exists", + "version": "4.0.0", + "description": "Check if a path exists", + "license": "MIT", + "repository": "sindresorhus/path-exists", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/path-is-absolute/package.json b/node_modules/path-is-absolute/package.json index a29658e3f..b17117f3e 100644 --- a/node_modules/path-is-absolute/package.json +++ b/node_modules/path-is-absolute/package.json @@ -40,8 +40,4 @@ "devDependencies": { "xo": "^0.16.0" } - -,"_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" -,"_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" -,"_from": "path-is-absolute@1.0.1" } \ No newline at end of file diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json index d9d275133..843f0b378 100644 --- a/node_modules/path-key/package.json +++ b/node_modules/path-key/package.json @@ -36,8 +36,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" -,"_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" -,"_from": "path-key@2.0.1" } \ No newline at end of file diff --git a/node_modules/path-parse/package.json b/node_modules/path-parse/package.json index 0d977469c..b5cca7a87 100644 --- a/node_modules/path-parse/package.json +++ b/node_modules/path-parse/package.json @@ -30,8 +30,4 @@ "url": "https://github.com/jbgutierrez/path-parse/issues" }, "homepage": "https://github.com/jbgutierrez/path-parse#readme" - -,"_resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" -,"_integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" -,"_from": "path-parse@1.0.6" } \ No newline at end of file diff --git a/node_modules/path-type/package.json b/node_modules/path-type/package.json index d23031a1c..25d8b90c3 100644 --- a/node_modules/path-type/package.json +++ b/node_modules/path-type/package.json @@ -1,49 +1,45 @@ { - "name": "path-type", - "version": "4.0.0", - "description": "Check if a path is a file, directory, or symlink", - "license": "MIT", - "repository": "sindresorhus/path-type", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd-check" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "path", - "fs", - "type", - "is", - "check", - "directory", - "dir", - "file", - "filepath", - "symlink", - "symbolic", - "link", - "stat", - "stats", - "filesystem" - ], - "devDependencies": { - "ava": "^1.3.1", - "nyc": "^13.3.0", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" -,"_integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" -,"_from": "path-type@4.0.0" + "name": "path-type", + "version": "4.0.0", + "description": "Check if a path is a file, directory, or symlink", + "license": "MIT", + "repository": "sindresorhus/path-type", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd-check" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "fs", + "type", + "is", + "check", + "directory", + "dir", + "file", + "filepath", + "symlink", + "symbolic", + "link", + "stat", + "stats", + "filesystem" + ], + "devDependencies": { + "ava": "^1.3.1", + "nyc": "^13.3.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/path/package.json b/node_modules/path/package.json index db81af50e..de70fbf83 100644 --- a/node_modules/path/package.json +++ b/node_modules/path/package.json @@ -1,28 +1,24 @@ -{ - "author": { - "name": "Joyent", - "url": "http://www.joyent.com" - }, - "name": "path", - "description": "Node.JS path module", - "keywords": [ - "ender", - "path" - ], - "license": "MIT", - "version": "0.12.7", - "homepage": "http://nodejs.org/docs/latest/api/path.html", - "repository": { - "type": "git", - "url": "git://github.com/jinder/path.git" - }, - "main": "./path.js", - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - } - -,"_resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz" -,"_integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=" -,"_from": "path@0.12.7" +{ + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "name": "path", + "description": "Node.JS path module", + "keywords": [ + "ender", + "path" + ], + "license": "MIT", + "version": "0.12.7", + "homepage": "http://nodejs.org/docs/latest/api/path.html", + "repository": { + "type": "git", + "url": "git://github.com/jinder/path.git" + }, + "main": "./path.js", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } } \ No newline at end of file diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 4353f3b7a..882d1dff3 100755 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -78,8 +78,4 @@ "picomatch" ] } - -,"_resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" -,"_integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" -,"_from": "picomatch@2.2.2" } \ No newline at end of file diff --git a/node_modules/pify/package.json b/node_modules/pify/package.json index 472c0913a..ea9e54fd5 100644 --- a/node_modules/pify/package.json +++ b/node_modules/pify/package.json @@ -1,55 +1,51 @@ { - "name": "pify", - "version": "4.0.1", - "description": "Promisify a callback-style function", - "license": "MIT", - "repository": "sindresorhus/pify", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava", - "optimization-test": "node --allow-natives-syntax optimization-test.js" - }, - "files": [ - "index.js" - ], - "keywords": [ - "promise", - "promises", - "promisify", - "all", - "denodify", - "denodeify", - "callback", - "cb", - "node", - "then", - "thenify", - "convert", - "transform", - "wrap", - "wrapper", - "bind", - "to", - "async", - "await", - "es2015", - "bluebird" - ], - "devDependencies": { - "ava": "^0.25.0", - "pinkie-promise": "^2.0.0", - "v8-natives": "^1.1.0", - "xo": "^0.23.0" - } - -,"_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" -,"_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" -,"_from": "pify@4.0.1" + "name": "pify", + "version": "4.0.1", + "description": "Promisify a callback-style function", + "license": "MIT", + "repository": "sindresorhus/pify", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava", + "optimization-test": "node --allow-natives-syntax optimization-test.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "promise", + "promises", + "promisify", + "all", + "denodify", + "denodeify", + "callback", + "cb", + "node", + "then", + "thenify", + "convert", + "transform", + "wrap", + "wrapper", + "bind", + "to", + "async", + "await", + "es2015", + "bluebird" + ], + "devDependencies": { + "ava": "^0.25.0", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.1.0", + "xo": "^0.23.0" + } } \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/find-up/package.json b/node_modules/pkg-conf/node_modules/find-up/package.json index 95f70cb5b..c4045d882 100644 --- a/node_modules/pkg-conf/node_modules/find-up/package.json +++ b/node_modules/pkg-conf/node_modules/find-up/package.json @@ -1,54 +1,50 @@ { - "name": "find-up", - "version": "3.0.0", - "description": "Find a file or directory by walking up parent directories", - "license": "MIT", - "repository": "sindresorhus/find-up", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "package", - "resolve", - "parent", - "parents", - "folder", - "directory", - "dir", - "walk", - "walking", - "path" - ], - "dependencies": { - "locate-path": "^3.0.0" - }, - "devDependencies": { - "ava": "*", - "tempy": "^0.2.1", - "xo": "*" - } - -,"_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" -,"_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" -,"_from": "find-up@3.0.0" + "name": "find-up", + "version": "3.0.0", + "description": "Find a file or directory by walking up parent directories", + "license": "MIT", + "repository": "sindresorhus/find-up", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "dependencies": { + "locate-path": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + } } \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/locate-path/package.json b/node_modules/pkg-conf/node_modules/locate-path/package.json index f6ac4647d..ee35ddc2c 100644 --- a/node_modules/pkg-conf/node_modules/locate-path/package.json +++ b/node_modules/pkg-conf/node_modules/locate-path/package.json @@ -1,48 +1,44 @@ { - "name": "locate-path", - "version": "3.0.0", - "description": "Get the first path that exists on disk of multiple paths", - "license": "MIT", - "repository": "sindresorhus/locate-path", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "locate", - "path", - "paths", - "file", - "files", - "exists", - "find", - "finder", - "search", - "searcher", - "array", - "iterable", - "iterator" - ], - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "devDependencies": { - "ava": "*", - "xo": "*" - } - -,"_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" -,"_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" -,"_from": "locate-path@3.0.0" + "name": "locate-path", + "version": "3.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "license": "MIT", + "repository": "sindresorhus/locate-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "xo": "*" + } } \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/p-locate/package.json b/node_modules/pkg-conf/node_modules/p-locate/package.json index 4e4995c8a..fd4966219 100644 --- a/node_modules/pkg-conf/node_modules/p-locate/package.json +++ b/node_modules/pkg-conf/node_modules/p-locate/package.json @@ -1,55 +1,51 @@ { - "name": "p-locate", - "version": "3.0.0", - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "license": "MIT", - "repository": "sindresorhus/p-locate", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "promise", - "locate", - "find", - "finder", - "search", - "searcher", - "test", - "array", - "collection", - "iterable", - "iterator", - "race", - "fulfilled", - "fastest", - "async", - "await", - "promises", - "bluebird" - ], - "dependencies": { - "p-limit": "^2.0.0" - }, - "devDependencies": { - "ava": "*", - "delay": "^3.0.0", - "in-range": "^1.0.0", - "time-span": "^2.0.0", - "xo": "*" - } - -,"_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" -,"_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" -,"_from": "p-locate@3.0.0" + "name": "p-locate", + "version": "3.0.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "license": "MIT", + "repository": "sindresorhus/p-locate", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "dependencies": { + "p-limit": "^2.0.0" + }, + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + } } \ No newline at end of file diff --git a/node_modules/pkg-conf/node_modules/path-exists/package.json b/node_modules/pkg-conf/node_modules/path-exists/package.json index 5492ad2c0..ed507545d 100644 --- a/node_modules/pkg-conf/node_modules/path-exists/package.json +++ b/node_modules/pkg-conf/node_modules/path-exists/package.json @@ -37,8 +37,4 @@ "xo": { "esnext": true } - -,"_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" -,"_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" -,"_from": "path-exists@3.0.0" } \ No newline at end of file diff --git a/node_modules/pkg-conf/package.json b/node_modules/pkg-conf/package.json index 79ff89c59..9b163c318 100644 --- a/node_modules/pkg-conf/package.json +++ b/node_modules/pkg-conf/package.json @@ -1,55 +1,51 @@ { - "name": "pkg-conf", - "version": "3.1.0", - "description": "Get namespaced config from the closest package.json", - "license": "MIT", - "repository": "sindresorhus/pkg-conf", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "json", - "read", - "parse", - "file", - "fs", - "graceful", - "load", - "pkg", - "package", - "config", - "conf", - "configuration", - "object", - "namespace", - "namespaced" - ], - "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "fixture": { - "foo": true - } - -,"_resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz" -,"_integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==" -,"_from": "pkg-conf@3.1.0" + "name": "pkg-conf", + "version": "3.1.0", + "description": "Get namespaced config from the closest package.json", + "license": "MIT", + "repository": "sindresorhus/pkg-conf", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "pkg", + "package", + "config", + "conf", + "configuration", + "object", + "namespace", + "namespaced" + ], + "dependencies": { + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "fixture": { + "foo": true + } } \ No newline at end of file diff --git a/node_modules/pkg-dir/package.json b/node_modules/pkg-dir/package.json index b3e8f03d6..6759a9ce7 100644 --- a/node_modules/pkg-dir/package.json +++ b/node_modules/pkg-dir/package.json @@ -1,60 +1,56 @@ { - "name": "pkg-dir", - "version": "4.2.0", - "description": "Find the root directory of a Node.js project or npm package", - "license": "MIT", - "repository": "sindresorhus/pkg-dir", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "package", - "json", - "root", - "npm", - "entry", - "find", - "up", - "find-up", - "findup", - "look-up", - "look", - "file", - "search", - "match", - "resolve", - "parent", - "parents", - "folder", - "directory", - "dir", - "walk", - "walking", - "path" - ], - "dependencies": { - "find-up": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tempy": "^0.3.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" -,"_integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" -,"_from": "pkg-dir@4.2.0" + "name": "pkg-dir", + "version": "4.2.0", + "description": "Find the root directory of a Node.js project or npm package", + "license": "MIT", + "repository": "sindresorhus/pkg-dir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "package", + "json", + "root", + "npm", + "entry", + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "dependencies": { + "find-up": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tempy": "^0.3.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/plur/package.json b/node_modules/plur/package.json index 45f858310..fe91e1771 100644 --- a/node_modules/plur/package.json +++ b/node_modules/plur/package.json @@ -1,47 +1,43 @@ { - "name": "plur", - "version": "4.0.0", - "description": "Pluralize a word", - "license": "MIT", - "repository": "sindresorhus/plur", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "plural", - "plurals", - "pluralize", - "singular", - "count", - "word", - "string", - "irregular", - "noun", - "nouns" - ], - "dependencies": { - "irregular-plurals": "^3.2.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.11.0", - "xo": "^0.26.1" - } - -,"_resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz" -,"_integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==" -,"_from": "plur@4.0.0" + "name": "plur", + "version": "4.0.0", + "description": "Pluralize a word", + "license": "MIT", + "repository": "sindresorhus/plur", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "plural", + "plurals", + "pluralize", + "singular", + "count", + "word", + "string", + "irregular", + "noun", + "nouns" + ], + "dependencies": { + "irregular-plurals": "^3.2.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.11.0", + "xo": "^0.26.1" + } } \ No newline at end of file diff --git a/node_modules/prepend-http/package.json b/node_modules/prepend-http/package.json index 70c7570b1..9dfb56a48 100644 --- a/node_modules/prepend-http/package.json +++ b/node_modules/prepend-http/package.json @@ -32,8 +32,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" -,"_integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" -,"_from": "prepend-http@2.0.0" } \ No newline at end of file diff --git a/node_modules/pretty-ms/package.json b/node_modules/pretty-ms/package.json index 6525d591a..c491ffca7 100644 --- a/node_modules/pretty-ms/package.json +++ b/node_modules/pretty-ms/package.json @@ -1,53 +1,49 @@ { - "name": "pretty-ms", - "version": "6.0.1", - "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", - "license": "MIT", - "repository": "sindresorhus/pretty-ms", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "pretty", - "prettify", - "human", - "humanize", - "humanized", - "readable", - "time", - "ms", - "milliseconds", - "duration", - "period", - "range", - "text", - "string", - "number", - "hrtime" - ], - "dependencies": { - "parse-ms": "^2.1.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-6.0.1.tgz" -,"_integrity": "sha512-ke4njoVmlotekHlHyCZ3wI/c5AMT8peuHs8rKJqekj/oR5G8lND2dVpicFlUz5cbZgE290vvkMuDwfj/OcW1kw==" -,"_from": "pretty-ms@6.0.1" + "name": "pretty-ms", + "version": "6.0.1", + "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", + "license": "MIT", + "repository": "sindresorhus/pretty-ms", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=10" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "pretty", + "prettify", + "human", + "humanize", + "humanized", + "readable", + "time", + "ms", + "milliseconds", + "duration", + "period", + "range", + "text", + "string", + "number", + "hrtime" + ], + "dependencies": { + "parse-ms": "^2.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/process/package.json b/node_modules/process/package.json index 234b66489..390815d12 100644 --- a/node_modules/process/package.json +++ b/node_modules/process/package.json @@ -24,8 +24,4 @@ "mocha": "2.2.1", "zuul": "^3.10.3" } - -,"_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz" -,"_integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" -,"_from": "process@0.11.10" } \ No newline at end of file diff --git a/node_modules/propagate/package.json b/node_modules/propagate/package.json index 10591eeb1..b4df513bb 100644 --- a/node_modules/propagate/package.json +++ b/node_modules/propagate/package.json @@ -50,8 +50,4 @@ ] }, "license": "MIT" - -,"_resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz" -,"_integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==" -,"_from": "propagate@2.0.1" } \ No newline at end of file diff --git a/node_modules/pump/package.json b/node_modules/pump/package.json index be95fced6..638a6a24d 100644 --- a/node_modules/pump/package.json +++ b/node_modules/pump/package.json @@ -21,8 +21,4 @@ "scripts": { "test": "node test-browser.js && node test-node.js" } - -,"_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" -,"_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" -,"_from": "pump@3.0.0" } \ No newline at end of file diff --git a/node_modules/pupa/package.json b/node_modules/pupa/package.json index c8d005bd2..0bb8cca69 100644 --- a/node_modules/pupa/package.json +++ b/node_modules/pupa/package.json @@ -1,51 +1,47 @@ { - "name": "pupa", - "version": "2.0.1", - "description": "Simple micro templating", - "license": "MIT", - "repository": "sindresorhus/pupa", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "string", - "formatting", - "template", - "object", - "format", - "interpolate", - "interpolation", - "templating", - "expand", - "simple", - "replace", - "placeholders", - "values", - "transform", - "micro" - ], - "dependencies": { - "escape-goat": "^2.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/pupa/-/pupa-2.0.1.tgz" -,"_integrity": "sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==" -,"_from": "pupa@2.0.1" + "name": "pupa", + "version": "2.0.1", + "description": "Simple micro templating", + "license": "MIT", + "repository": "sindresorhus/pupa", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "formatting", + "template", + "object", + "format", + "interpolate", + "interpolation", + "templating", + "expand", + "simple", + "replace", + "placeholders", + "values", + "transform", + "micro" + ], + "dependencies": { + "escape-goat": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/rc/package.json b/node_modules/rc/package.json index 9076eabc1..07a1a16b0 100644 --- a/node_modules/rc/package.json +++ b/node_modules/rc/package.json @@ -26,8 +26,4 @@ "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" } - -,"_resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" -,"_integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" -,"_from": "rc@1.2.8" } \ No newline at end of file diff --git a/node_modules/read-pkg/node_modules/parse-json/package.json b/node_modules/read-pkg/node_modules/parse-json/package.json index a7d2d869f..6c5bb850d 100644 --- a/node_modules/read-pkg/node_modules/parse-json/package.json +++ b/node_modules/read-pkg/node_modules/parse-json/package.json @@ -1,48 +1,44 @@ { - "name": "parse-json", - "version": "5.0.0", - "description": "Parse JSON with more helpful errors", - "license": "MIT", - "repository": "sindresorhus/parse-json", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "files": [ - "index.js", - "vendor" - ], - "keywords": [ - "parse", - "json", - "graceful", - "error", - "message", - "humanize", - "friendly", - "helpful", - "string" - ], - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - }, - "devDependencies": { - "ava": "^1.4.1", - "nyc": "^14.1.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz" -,"_integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==" -,"_from": "parse-json@5.0.0" + "name": "parse-json", + "version": "5.0.0", + "description": "Parse JSON with more helpful errors", + "license": "MIT", + "repository": "sindresorhus/parse-json", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js", + "vendor" + ], + "keywords": [ + "parse", + "json", + "graceful", + "error", + "message", + "humanize", + "friendly", + "helpful", + "string" + ], + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + }, + "devDependencies": { + "ava": "^1.4.1", + "nyc": "^14.1.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/read-pkg/node_modules/type-fest/package.json b/node_modules/read-pkg/node_modules/type-fest/package.json index 53c4885e1..03b929edc 100644 --- a/node_modules/read-pkg/node_modules/type-fest/package.json +++ b/node_modules/read-pkg/node_modules/type-fest/package.json @@ -1,55 +1,51 @@ { - "name": "type-fest", - "version": "0.6.0", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && tsd" - }, - "files": [ - "index.d.ts", - "source" - ], - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "devDependencies": { - "@sindresorhus/tsconfig": "^0.4.0", - "@typescript-eslint/eslint-plugin": "^1.9.0", - "@typescript-eslint/parser": "^1.10.2", - "eslint-config-xo-typescript": "^0.14.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, - "xo": { - "extends": "xo-typescript", - "extensions": [ - "ts" - ], - "rules": { - "import/no-unresolved": "off", - "@typescript-eslint/indent": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" -,"_integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" -,"_from": "type-fest@0.6.0" + "name": "type-fest", + "version": "0.6.0", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.d.ts", + "source" + ], + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^1.9.0", + "@typescript-eslint/parser": "^1.10.2", + "eslint-config-xo-typescript": "^0.14.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off", + "@typescript-eslint/indent": "off" + } + } } \ No newline at end of file diff --git a/node_modules/read-pkg/package.json b/node_modules/read-pkg/package.json index 6e82a6263..8330328dd 100644 --- a/node_modules/read-pkg/package.json +++ b/node_modules/read-pkg/package.json @@ -1,53 +1,49 @@ { - "name": "read-pkg", - "version": "5.2.0", - "description": "Read a package.json file", - "license": "MIT", - "repository": "sindresorhus/read-pkg", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "json", - "read", - "parse", - "file", - "fs", - "graceful", - "load", - "package", - "normalize" - ], - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "devDependencies": { - "ava": "^2.2.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "xo": { - "ignores": [ - "test/test.js" - ] - } - -,"_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" -,"_integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" -,"_from": "read-pkg@5.2.0" + "name": "read-pkg", + "version": "5.2.0", + "description": "Read a package.json file", + "license": "MIT", + "repository": "sindresorhus/read-pkg", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "package", + "normalize" + ], + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "xo": { + "ignores": [ + "test/test.js" + ] + } } \ No newline at end of file diff --git a/node_modules/readdirp/package.json b/node_modules/readdirp/package.json index ff5319ec6..a7424e864 100644 --- a/node_modules/readdirp/package.json +++ b/node_modules/readdirp/package.json @@ -118,8 +118,4 @@ ] } } - -,"_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz" -,"_integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==" -,"_from": "readdirp@3.4.0" } \ No newline at end of file diff --git a/node_modules/registry-auth-token/package.json b/node_modules/registry-auth-token/package.json index 34f0388d4..f98fc4d62 100644 --- a/node_modules/registry-auth-token/package.json +++ b/node_modules/registry-auth-token/package.json @@ -45,8 +45,4 @@ "coverage/**" ] } - -,"_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.1.1.tgz" -,"_integrity": "sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==" -,"_from": "registry-auth-token@4.1.1" } \ No newline at end of file diff --git a/node_modules/registry-url/package.json b/node_modules/registry-url/package.json index 6dd01ea86..eb2b76756 100644 --- a/node_modules/registry-url/package.json +++ b/node_modules/registry-url/package.json @@ -1,48 +1,44 @@ { - "name": "registry-url", - "version": "5.1.0", - "description": "Get the set npm registry URL", - "license": "MIT", - "repository": "sindresorhus/registry-url", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "npm", - "conf", - "config", - "npmconf", - "registry", - "url", - "uri", - "scope" - ], - "dependencies": { - "rc": "^1.2.8" - }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - }, - "ava": { - "serial": true - } - -,"_resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz" -,"_integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" -,"_from": "registry-url@5.1.0" + "name": "registry-url", + "version": "5.1.0", + "description": "Get the set npm registry URL", + "license": "MIT", + "repository": "sindresorhus/registry-url", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "npm", + "conf", + "config", + "npmconf", + "registry", + "url", + "uri", + "scope" + ], + "dependencies": { + "rc": "^1.2.8" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "ava": { + "serial": true + } } \ No newline at end of file diff --git a/node_modules/removeNPMAbsolutePaths/package.json b/node_modules/removeNPMAbsolutePaths/package.json index d4af1b912..28ccddcaa 100644 --- a/node_modules/removeNPMAbsolutePaths/package.json +++ b/node_modules/removeNPMAbsolutePaths/package.json @@ -49,8 +49,4 @@ "engines": { "node": ">=4.0.0" } - -,"_resolved": "https://registry.npmjs.org/removeNPMAbsolutePaths/-/removeNPMAbsolutePaths-2.0.0.tgz" -,"_integrity": "sha512-Hea7U6iJcD0NE/aqBqxBMPKeKaxjqMNyTTajmH2dH9hhafJ9Tem5r4UeJK8+BdE1MK9lqoOYqNM0Sq9rl1OIbQ==" -,"_from": "removeNPMAbsolutePaths@2.0.0" } \ No newline at end of file diff --git a/node_modules/require-directory/package.json b/node_modules/require-directory/package.json index 1b68543bd..0970ec04c 100644 --- a/node_modules/require-directory/package.json +++ b/node_modules/require-directory/package.json @@ -37,8 +37,4 @@ "test": "mocha", "lint": "jshint index.js test/test.js" } - -,"_resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" -,"_integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" -,"_from": "require-directory@2.1.1" } \ No newline at end of file diff --git a/node_modules/require-main-filename/package.json b/node_modules/require-main-filename/package.json index 0a3da3583..3c441b325 100644 --- a/node_modules/require-main-filename/package.json +++ b/node_modules/require-main-filename/package.json @@ -32,8 +32,4 @@ "standard-version": "^4.0.0", "tap": "^11.0.0" } - -,"_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" -,"_integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" -,"_from": "require-main-filename@2.0.0" } \ No newline at end of file diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json index 12db21aad..a7d509c0f 100644 --- a/node_modules/resolve-cwd/package.json +++ b/node_modules/resolve-cwd/package.json @@ -1,47 +1,43 @@ { - "name": "resolve-cwd", - "version": "3.0.0", - "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", - "license": "MIT", - "repository": "sindresorhus/resolve-cwd", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "require", - "resolve", - "path", - "module", - "from", - "like", - "cwd", - "current", - "working", - "directory", - "import" - ], - "dependencies": { - "resolve-from": "^5.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" -,"_integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" -,"_from": "resolve-cwd@3.0.0" + "name": "resolve-cwd", + "version": "3.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", + "license": "MIT", + "repository": "sindresorhus/resolve-cwd", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "cwd", + "current", + "working", + "directory", + "import" + ], + "dependencies": { + "resolve-from": "^5.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/resolve-from/package.json b/node_modules/resolve-from/package.json index b2627367a..3d6db83a4 100644 --- a/node_modules/resolve-from/package.json +++ b/node_modules/resolve-from/package.json @@ -1,40 +1,36 @@ { - "name": "resolve-from", - "version": "5.0.0", - "description": "Resolve the path of a module like `require.resolve()` but from a given path", - "license": "MIT", - "repository": "sindresorhus/resolve-from", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "require", - "resolve", - "path", - "module", - "from", - "like", - "import" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" -,"_integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" -,"_from": "resolve-from@5.0.0" + "name": "resolve-from", + "version": "5.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "license": "MIT", + "repository": "sindresorhus/resolve-from", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "import" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/resolve/package.json b/node_modules/resolve/package.json index 1f3180fee..f8e40a6ac 100644 --- a/node_modules/resolve/package.json +++ b/node_modules/resolve/package.json @@ -1,51 +1,47 @@ { - "name": "resolve", - "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", - "version": "1.13.1", - "repository": { - "type": "git", - "url": "git://github.com/browserify/resolve.git" - }, - "main": "index.js", - "keywords": [ - "resolve", - "require", - "node", - "module" - ], - "scripts": { - "prepublish": "safe-publish-latest", - "lint": "eslint .", - "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", - "tests-only": "tape test/*.js", - "pretest": "npm run lint", - "test": "npm run --silent tests-only", - "posttest": "npm run test:multirepo", - "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" - }, - "devDependencies": { - "@ljharb/eslint-config": "^15.0.2", - "array.prototype.map": "^1.0.1", - "eslint": "^6.7.1", - "object-keys": "^1.1.1", - "safe-publish-latest": "^1.1.4", - "tap": "0.4.13", - "tape": "^4.11.0" - }, - "license": "MIT", - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "dependencies": { - "path-parse": "^1.0.6" - } - -,"_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz" -,"_integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==" -,"_from": "resolve@1.13.1" + "name": "resolve", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "version": "1.13.1", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" + }, + "main": "index.js", + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "scripts": { + "prepublish": "safe-publish-latest", + "lint": "eslint .", + "pretests-only": "cd ./test/resolver/nested_symlinks && node mylib/sync && node mylib/async", + "tests-only": "tape test/*.js", + "pretest": "npm run lint", + "test": "npm run --silent tests-only", + "posttest": "npm run test:multirepo", + "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" + }, + "devDependencies": { + "@ljharb/eslint-config": "^15.0.2", + "array.prototype.map": "^1.0.1", + "eslint": "^6.7.1", + "object-keys": "^1.1.1", + "safe-publish-latest": "^1.1.4", + "tap": "0.4.13", + "tape": "^4.11.0" + }, + "license": "MIT", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "dependencies": { + "path-parse": "^1.0.6" + } } \ No newline at end of file diff --git a/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json index c13b8cf6a..a60376465 100644 --- a/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +++ b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json @@ -1,3 +1,3 @@ { "main": "main.js" -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/baz/package.json b/node_modules/resolve/test/resolver/baz/package.json index c41e4dbf7..ddf31dc61 100644 --- a/node_modules/resolve/test/resolver/baz/package.json +++ b/node_modules/resolve/test/resolver/baz/package.json @@ -1,3 +1,3 @@ { - "main": "quux.js" -} + "main": "quux.js" +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/browser_field/package.json b/node_modules/resolve/test/resolver/browser_field/package.json index bf406f083..291ab03bc 100644 --- a/node_modules/resolve/test/resolver/browser_field/package.json +++ b/node_modules/resolve/test/resolver/browser_field/package.json @@ -2,4 +2,4 @@ "name": "browser_field", "main": "a", "browser": "b" -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/dot_main/package.json b/node_modules/resolve/test/resolver/dot_main/package.json index d7f4fc807..d08e00e9d 100644 --- a/node_modules/resolve/test/resolver/dot_main/package.json +++ b/node_modules/resolve/test/resolver/dot_main/package.json @@ -1,3 +1,3 @@ { - "main": "." -} + "main": "." +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/dot_slash_main/package.json b/node_modules/resolve/test/resolver/dot_slash_main/package.json index f51287b9d..a92bfd7b1 100644 --- a/node_modules/resolve/test/resolver/dot_slash_main/package.json +++ b/node_modules/resolve/test/resolver/dot_slash_main/package.json @@ -1,3 +1,3 @@ { - "main": "./" -} + "main": "./" +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/resolve/test/resolver/incorrect_main/package.json index b71880417..b3b73da08 100644 --- a/node_modules/resolve/test/resolver/incorrect_main/package.json +++ b/node_modules/resolve/test/resolver/incorrect_main/package.json @@ -1,3 +1,3 @@ { - "main": "wrong.js" -} + "main": "wrong.js" +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/invalid_main/package.json b/node_modules/resolve/test/resolver/invalid_main/package.json index 0cf827995..3158504f6 100644 --- a/node_modules/resolve/test/resolver/invalid_main/package.json +++ b/node_modules/resolve/test/resolver/invalid_main/package.json @@ -4,4 +4,4 @@ "why is this a thing", "srsly omg wtf" ] -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/multirepo/package.json b/node_modules/resolve/test/resolver/multirepo/package.json index 8508f9d2c..9c6d56b61 100644 --- a/node_modules/resolve/test/resolver/multirepo/package.json +++ b/node_modules/resolve/test/resolver/multirepo/package.json @@ -17,4 +17,4 @@ "devDependencies": { "lerna": "^3.4.3" } -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json index 204de51e0..a2bbfff89 100644 --- a/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json @@ -11,4 +11,4 @@ "dependencies": { "@my-scope/package-b": "^0.0.0" } -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json index f57c3b5f5..f7adacdeb 100644 --- a/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json @@ -11,4 +11,4 @@ "dependencies": { "@my-scope/package-a": "^0.0.0" } -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json b/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json index acfe9e951..f3fffe71c 100644 --- a/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +++ b/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json @@ -12,4 +12,4 @@ "dependencies": { "buffer": "*" } -} +} \ No newline at end of file diff --git a/node_modules/resolve/test/resolver/symlinked/package/package.json b/node_modules/resolve/test/resolver/symlinked/package/package.json index 8e1b58591..b6e6d85fd 100644 --- a/node_modules/resolve/test/resolver/symlinked/package/package.json +++ b/node_modules/resolve/test/resolver/symlinked/package/package.json @@ -1,3 +1,3 @@ { - "main": "bar.js" + "main": "bar.js" } \ No newline at end of file diff --git a/node_modules/responselike/package.json b/node_modules/responselike/package.json index 5b53db282..67f605a8d 100644 --- a/node_modules/responselike/package.json +++ b/node_modules/responselike/package.json @@ -35,8 +35,4 @@ "dependencies": { "lowercase-keys": "^1.0.0" } - -,"_resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" -,"_integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" -,"_from": "responselike@1.0.2" } \ No newline at end of file diff --git a/node_modules/restore-cursor/package.json b/node_modules/restore-cursor/package.json index 8e480e1f3..d23571572 100644 --- a/node_modules/restore-cursor/package.json +++ b/node_modules/restore-cursor/package.json @@ -1,56 +1,52 @@ { - "name": "restore-cursor", - "version": "3.1.0", - "description": "Gracefully restore the CLI cursor on exit", - "license": "MIT", - "repository": "sindresorhus/restore-cursor", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "exit", - "quit", - "process", - "graceful", - "shutdown", - "sigterm", - "sigint", - "terminate", - "kill", - "stop", - "cli", - "cursor", - "ansi", - "show", - "term", - "terminal", - "console", - "tty", - "shell", - "command-line" - ], - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "devDependencies": { - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" -,"_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" -,"_from": "restore-cursor@3.1.0" + "name": "restore-cursor", + "version": "3.1.0", + "description": "Gracefully restore the CLI cursor on exit", + "license": "MIT", + "repository": "sindresorhus/restore-cursor", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "exit", + "quit", + "process", + "graceful", + "shutdown", + "sigterm", + "sigint", + "terminate", + "kill", + "stop", + "cli", + "cursor", + "ansi", + "show", + "term", + "terminal", + "console", + "tty", + "shell", + "command-line" + ], + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "devDependencies": { + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/reusify/package.json b/node_modules/reusify/package.json index 27f301caa..4572b152f 100644 --- a/node_modules/reusify/package.json +++ b/node_modules/reusify/package.json @@ -42,8 +42,4 @@ "standard": "^10.0.3", "tape": "^4.8.0" } - -,"_resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" -,"_integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" -,"_from": "reusify@1.0.4" } \ No newline at end of file diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json index 2fc16433b..56eb03067 100644 --- a/node_modules/rimraf/package.json +++ b/node_modules/rimraf/package.json @@ -29,8 +29,4 @@ "funding": { "url": "https://github.com/sponsors/isaacs" } - -,"_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" -,"_integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" -,"_from": "rimraf@3.0.2" } \ No newline at end of file diff --git a/node_modules/run-parallel/package.json b/node_modules/run-parallel/package.json index 51925c0e7..87ebaf64b 100644 --- a/node_modules/run-parallel/package.json +++ b/node_modules/run-parallel/package.json @@ -39,8 +39,4 @@ "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" } - -,"_resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz" -,"_integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" -,"_from": "run-parallel@1.1.9" } \ No newline at end of file diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json index 9c8aef798..fdb8bc5f3 100644 --- a/node_modules/safe-buffer/package.json +++ b/node_modules/safe-buffer/package.json @@ -34,8 +34,4 @@ "scripts": { "test": "standard && tape test/*.js" } - -,"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" -,"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" -,"_from": "safe-buffer@5.1.2" } \ No newline at end of file diff --git a/node_modules/semver-diff/node_modules/semver/package.json b/node_modules/semver-diff/node_modules/semver/package.json index 13030769c..a330b56c2 100644 --- a/node_modules/semver-diff/node_modules/semver/package.json +++ b/node_modules/semver-diff/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" -,"_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" -,"_from": "semver@6.3.0" } \ No newline at end of file diff --git a/node_modules/semver-diff/package.json b/node_modules/semver-diff/package.json index d32c5a7e9..0cc0c3e34 100644 --- a/node_modules/semver-diff/package.json +++ b/node_modules/semver-diff/package.json @@ -1,41 +1,37 @@ { - "name": "semver-diff", - "version": "3.1.1", - "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", - "license": "MIT", - "repository": "sindresorhus/semver-diff", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "semver", - "version", - "semantic", - "diff", - "difference" - ], - "dependencies": { - "semver": "^6.3.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" -,"_integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" -,"_from": "semver-diff@3.1.1" + "name": "semver-diff", + "version": "3.1.1", + "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", + "license": "MIT", + "repository": "sindresorhus/semver-diff", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "semver", + "version", + "semantic", + "diff", + "difference" + ], + "dependencies": { + "semver": "^6.3.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json index 9aa9bd2a9..e04ff84a8 100644 --- a/node_modules/semver/package.json +++ b/node_modules/semver/package.json @@ -35,8 +35,4 @@ "engines": { "node": ">=10" } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" -,"_integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" -,"_from": "semver@7.3.2" } \ No newline at end of file diff --git a/node_modules/serialize-error/package.json b/node_modules/serialize-error/package.json index c660f73b3..7be0a0f03 100644 --- a/node_modules/serialize-error/package.json +++ b/node_modules/serialize-error/package.json @@ -33,8 +33,4 @@ "ava": "*", "xo": "^0.16.0" } - -,"_resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz" -,"_integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=" -,"_from": "serialize-error@2.1.0" } \ No newline at end of file diff --git a/node_modules/set-blocking/package.json b/node_modules/set-blocking/package.json index 993bdc2f7..c082db72c 100644 --- a/node_modules/set-blocking/package.json +++ b/node_modules/set-blocking/package.json @@ -39,8 +39,4 @@ "index.js", "LICENSE.txt" ] - -,"_resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" -,"_integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" -,"_from": "set-blocking@2.0.0" } \ No newline at end of file diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json index 3009d53eb..a836941a1 100644 --- a/node_modules/shebang-command/package.json +++ b/node_modules/shebang-command/package.json @@ -36,8 +36,4 @@ "test.js" ] } - -,"_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" -,"_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" -,"_from": "shebang-command@1.2.0" } \ No newline at end of file diff --git a/node_modules/shebang-regex/package.json b/node_modules/shebang-regex/package.json index 665793c1d..f174dc29e 100644 --- a/node_modules/shebang-regex/package.json +++ b/node_modules/shebang-regex/package.json @@ -29,8 +29,4 @@ "devDependencies": { "ava": "0.0.4" } - -,"_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" -,"_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" -,"_from": "shebang-regex@1.0.0" } \ No newline at end of file diff --git a/node_modules/signal-exit/package.json b/node_modules/signal-exit/package.json index c3b2677a9..2bee5637f 100644 --- a/node_modules/signal-exit/package.json +++ b/node_modules/signal-exit/package.json @@ -35,8 +35,4 @@ "standard-version": "^2.3.0", "tap": "^8.0.1" } - -,"_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz" -,"_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" -,"_from": "signal-exit@3.0.2" } \ No newline at end of file diff --git a/node_modules/slash/package.json b/node_modules/slash/package.json index 8100df404..c845a31bb 100644 --- a/node_modules/slash/package.json +++ b/node_modules/slash/package.json @@ -1,39 +1,35 @@ { - "name": "slash", - "version": "3.0.0", - "description": "Convert Windows backslash paths to slash paths", - "license": "MIT", - "repository": "sindresorhus/slash", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "path", - "seperator", - "slash", - "backslash", - "windows", - "convert" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" -,"_integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" -,"_from": "slash@3.0.0" + "name": "slash", + "version": "3.0.0", + "description": "Convert Windows backslash paths to slash paths", + "license": "MIT", + "repository": "sindresorhus/slash", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "seperator", + "slash", + "backslash", + "windows", + "convert" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/ansi-styles/package.json b/node_modules/slice-ansi/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/slice-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/slice-ansi/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/astral-regex/package.json b/node_modules/slice-ansi/node_modules/astral-regex/package.json index e21b198d7..744e3ea07 100644 --- a/node_modules/slice-ansi/node_modules/astral-regex/package.json +++ b/node_modules/slice-ansi/node_modules/astral-regex/package.json @@ -1,37 +1,33 @@ { - "name": "astral-regex", - "version": "2.0.0", - "description": "Regular expression for matching astral symbols", - "license": "MIT", - "repository": "kevva/astral-regex", - "author": { - "name": "Kevin Mårtensson", - "email": "kevinmartensson@gmail.com", - "url": "github.com/kevva" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "astral", - "emoji", - "regex", - "surrogate" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" -,"_integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" -,"_from": "astral-regex@2.0.0" + "name": "astral-regex", + "version": "2.0.0", + "description": "Regular expression for matching astral symbols", + "license": "MIT", + "repository": "kevva/astral-regex", + "author": { + "name": "Kevin Mårtensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "astral", + "emoji", + "regex", + "surrogate" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/color-convert/package.json b/node_modules/slice-ansi/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/slice-ansi/node_modules/color-convert/package.json +++ b/node_modules/slice-ansi/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/slice-ansi/node_modules/color-name/package.json b/node_modules/slice-ansi/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/slice-ansi/node_modules/color-name/package.json +++ b/node_modules/slice-ansi/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/slice-ansi/package.json b/node_modules/slice-ansi/package.json index 9f38fa41f..a5e103ef1 100644 --- a/node_modules/slice-ansi/package.json +++ b/node_modules/slice-ansi/package.json @@ -1,55 +1,51 @@ { - "name": "slice-ansi", - "version": "3.0.0", - "description": "Slice a string with ANSI escape codes", - "license": "MIT", - "repository": "chalk/slice-ansi", - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "slice", - "string", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "random-item": "^3.0.0", - "strip-ansi": "^5.0.0", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz" -,"_integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" -,"_from": "slice-ansi@3.0.0" + "name": "slice-ansi", + "version": "3.0.0", + "description": "Slice a string with ANSI escape codes", + "license": "MIT", + "repository": "chalk/slice-ansi", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "slice", + "string", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "random-item": "^3.0.0", + "strip-ansi": "^5.0.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/source-map/package.json b/node_modules/source-map/package.json index fb225f899..eb649bf17 100644 --- a/node_modules/source-map/package.json +++ b/node_modules/source-map/package.json @@ -70,8 +70,4 @@ "webpack": "^1.12.0" }, "typings": "source-map" - -,"_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" -,"_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" -,"_from": "source-map@0.6.1" } \ No newline at end of file diff --git a/node_modules/spdx-correct/package.json b/node_modules/spdx-correct/package.json index 5fc48f0fd..4002158a8 100644 --- a/node_modules/spdx-correct/package.json +++ b/node_modules/spdx-correct/package.json @@ -36,8 +36,4 @@ "lint": "standard && standard-markdown README.md", "test": "defence README.md | replace-require-self | node && node test.js" } - -,"_resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz" -,"_integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" -,"_from": "spdx-correct@3.1.0" } \ No newline at end of file diff --git a/node_modules/spdx-exceptions/package.json b/node_modules/spdx-exceptions/package.json index d48a49097..1b39b16d9 100644 --- a/node_modules/spdx-exceptions/package.json +++ b/node_modules/spdx-exceptions/package.json @@ -14,8 +14,4 @@ "scripts": { "build": "node build.js" } - -,"_resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" -,"_integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" -,"_from": "spdx-exceptions@2.3.0" } \ No newline at end of file diff --git a/node_modules/spdx-expression-parse/package.json b/node_modules/spdx-expression-parse/package.json index eeb3dd83b..93d94baa4 100644 --- a/node_modules/spdx-expression-parse/package.json +++ b/node_modules/spdx-expression-parse/package.json @@ -37,8 +37,4 @@ "test:mocha": "mocha test/index.js", "test": "npm run test:mocha && npm run test:readme" } - -,"_resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz" -,"_integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==" -,"_from": "spdx-expression-parse@3.0.0" } \ No newline at end of file diff --git a/node_modules/spdx-license-ids/package.json b/node_modules/spdx-license-ids/package.json index 0aff08f25..a21e42587 100644 --- a/node_modules/spdx-license-ids/package.json +++ b/node_modules/spdx-license-ids/package.json @@ -1,43 +1,39 @@ { - "name": "spdx-license-ids", - "version": "3.0.5", - "description": "A list of SPDX license identifiers", - "repository": "shinnn/spdx-license-ids", - "author": "Shinnosuke Watanabe (https://github.com/shinnn)", - "license": "CC0-1.0", - "scripts": { - "build": "node build.js", - "pretest": "eslint .", - "test": "node test.js" - }, - "files": [ - "deprecated.json", - "index.json" - ], - "keywords": [ - "spdx", - "license", - "licenses", - "id", - "identifier", - "identifiers", - "json", - "array", - "oss" - ], - "devDependencies": { - "@shinnn/eslint-config": "^6.8.7", - "chalk": "^2.4.1", - "eslint": "^5.10.0", - "get-spdx-license-ids": "^2.1.0", - "rmfr": "^2.0.0", - "tape": "^4.9.1" - }, - "eslintConfig": { - "extends": "@shinnn" - } - -,"_resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz" -,"_integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==" -,"_from": "spdx-license-ids@3.0.5" + "name": "spdx-license-ids", + "version": "3.0.5", + "description": "A list of SPDX license identifiers", + "repository": "shinnn/spdx-license-ids", + "author": "Shinnosuke Watanabe (https://github.com/shinnn)", + "license": "CC0-1.0", + "scripts": { + "build": "node build.js", + "pretest": "eslint .", + "test": "node test.js" + }, + "files": [ + "deprecated.json", + "index.json" + ], + "keywords": [ + "spdx", + "license", + "licenses", + "id", + "identifier", + "identifiers", + "json", + "array", + "oss" + ], + "devDependencies": { + "@shinnn/eslint-config": "^6.8.7", + "chalk": "^2.4.1", + "eslint": "^5.10.0", + "get-spdx-license-ids": "^2.1.0", + "rmfr": "^2.0.0", + "tape": "^4.9.1" + }, + "eslintConfig": { + "extends": "@shinnn" + } } \ No newline at end of file diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json index 309df0030..b49b1926d 100644 --- a/node_modules/sprintf-js/package.json +++ b/node_modules/sprintf-js/package.json @@ -1,26 +1,22 @@ { - "name": "sprintf-js", - "version": "1.0.3", - "description": "JavaScript sprintf implementation", - "author": "Alexandru Marasteanu (http://alexei.ro/)", - "main": "src/sprintf.js", - "scripts": { - "test": "mocha test/test.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/alexei/sprintf.js.git" - }, - "license": "BSD-3-Clause", - "readmeFilename": "README.md", - "devDependencies": { - "mocha": "*", - "grunt": "*", - "grunt-contrib-watch": "*", - "grunt-contrib-uglify": "*" - } - -,"_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" -,"_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" -,"_from": "sprintf-js@1.0.3" + "name": "sprintf-js", + "version": "1.0.3", + "description": "JavaScript sprintf implementation", + "author": "Alexandru Marasteanu (http://alexei.ro/)", + "main": "src/sprintf.js", + "scripts": { + "test": "mocha test/test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/alexei/sprintf.js.git" + }, + "license": "BSD-3-Clause", + "readmeFilename": "README.md", + "devDependencies": { + "mocha": "*", + "grunt": "*", + "grunt-contrib-watch": "*", + "grunt-contrib-uglify": "*" + } } \ No newline at end of file diff --git a/node_modules/string-width/package.json b/node_modules/string-width/package.json index c3ea56436..8a570010a 100644 --- a/node_modules/string-width/package.json +++ b/node_modules/string-width/package.json @@ -1,60 +1,56 @@ { - "name": "string-width", - "version": "4.2.0", - "description": "Get the visual width of a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/string-width", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "string", - "character", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz" -,"_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==" -,"_from": "string-width@4.2.0" + "name": "string-width", + "version": "4.2.0", + "description": "Get the visual width of a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/string-width", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "character", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/strip-ansi/node_modules/ansi-regex/package.json b/node_modules/strip-ansi/node_modules/ansi-regex/package.json index 555b26d73..b6c1efa36 100644 --- a/node_modules/strip-ansi/node_modules/ansi-regex/package.json +++ b/node_modules/strip-ansi/node_modules/ansi-regex/package.json @@ -1,59 +1,55 @@ { - "name": "ansi-regex", - "version": "5.0.0", - "description": "Regular expression for matching ANSI escape codes", - "license": "MIT", - "repository": "chalk/ansi-regex", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "view-supported": "node fixtures/view-codes.js" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "text", - "regex", - "regexp", - "re", - "match", - "test", - "find", - "pattern" - ], - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.9.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" -,"_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" -,"_from": "ansi-regex@5.0.0" + "name": "ansi-regex", + "version": "5.0.0", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "view-supported": "node fixtures/view-codes.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/strip-ansi/package.json b/node_modules/strip-ansi/package.json index 4fca79c1c..303816b1a 100644 --- a/node_modules/strip-ansi/package.json +++ b/node_modules/strip-ansi/package.json @@ -1,58 +1,54 @@ { - "name": "strip-ansi", - "version": "6.0.0", - "description": "Strip ANSI escape codes from a string", - "license": "MIT", - "repository": "chalk/strip-ansi", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "strip", - "trim", - "remove", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.10.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" -,"_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" -,"_from": "strip-ansi@6.0.0" + "name": "strip-ansi", + "version": "6.0.0", + "description": "Strip ANSI escape codes from a string", + "license": "MIT", + "repository": "chalk/strip-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.10.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/strip-eof/package.json b/node_modules/strip-eof/package.json index d054db16c..2e22eeb61 100644 --- a/node_modules/strip-eof/package.json +++ b/node_modules/strip-eof/package.json @@ -36,8 +36,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" -,"_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" -,"_from": "strip-eof@1.0.0" } \ No newline at end of file diff --git a/node_modules/strip-json-comments/package.json b/node_modules/strip-json-comments/package.json index 19d3a720c..2b00952d9 100644 --- a/node_modules/strip-json-comments/package.json +++ b/node_modules/strip-json-comments/package.json @@ -39,8 +39,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" -,"_integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" -,"_from": "strip-json-comments@2.0.1" } \ No newline at end of file diff --git a/node_modules/supertap/node_modules/ansi-regex/package.json b/node_modules/supertap/node_modules/ansi-regex/package.json index c79b39f0a..d8a414df3 100644 --- a/node_modules/supertap/node_modules/ansi-regex/package.json +++ b/node_modules/supertap/node_modules/ansi-regex/package.json @@ -50,8 +50,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz" -,"_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" -,"_from": "ansi-regex@3.0.0" } \ No newline at end of file diff --git a/node_modules/supertap/node_modules/arrify/package.json b/node_modules/supertap/node_modules/arrify/package.json index bfc8621c9..d60245659 100644 --- a/node_modules/supertap/node_modules/arrify/package.json +++ b/node_modules/supertap/node_modules/arrify/package.json @@ -30,8 +30,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" -,"_integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" -,"_from": "arrify@1.0.1" } \ No newline at end of file diff --git a/node_modules/supertap/node_modules/indent-string/package.json b/node_modules/supertap/node_modules/indent-string/package.json index 796eb8ecd..e235bb620 100644 --- a/node_modules/supertap/node_modules/indent-string/package.json +++ b/node_modules/supertap/node_modules/indent-string/package.json @@ -33,8 +33,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz" -,"_integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=" -,"_from": "indent-string@3.2.0" } \ No newline at end of file diff --git a/node_modules/supertap/node_modules/strip-ansi/package.json b/node_modules/supertap/node_modules/strip-ansi/package.json index 14a8f1c3a..e6f25b887 100644 --- a/node_modules/supertap/node_modules/strip-ansi/package.json +++ b/node_modules/supertap/node_modules/strip-ansi/package.json @@ -49,8 +49,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" -,"_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" -,"_from": "strip-ansi@4.0.0" } \ No newline at end of file diff --git a/node_modules/supertap/package.json b/node_modules/supertap/package.json index 7e7510710..5fdd242e6 100644 --- a/node_modules/supertap/package.json +++ b/node_modules/supertap/package.json @@ -50,8 +50,4 @@ "ava": { "serial": true } - -,"_resolved": "https://registry.npmjs.org/supertap/-/supertap-1.0.0.tgz" -,"_integrity": "sha512-HZJ3geIMPgVwKk2VsmO5YHqnnJYl6bV5A9JW2uzqV43WmpgliNEYbuvukfor7URpaqpxuw3CfZ3ONdVbZjCgIA==" -,"_from": "supertap@1.0.0" } \ No newline at end of file diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json index c01bdec70..efeb00b06 100644 --- a/node_modules/supports-color/package.json +++ b/node_modules/supports-color/package.json @@ -1,57 +1,53 @@ { - "name": "supports-color", - "version": "5.5.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "browser.js" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "dependencies": { - "has-flag": "^3.0.0" - }, - "devDependencies": { - "ava": "^0.25.0", - "import-fresh": "^2.0.0", - "xo": "^0.20.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" -,"_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" -,"_from": "supports-color@5.5.0" + "name": "supports-color", + "version": "5.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^3.0.0" + }, + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/temp-dir/package.json b/node_modules/temp-dir/package.json index 3fcb881fc..ad951f149 100644 --- a/node_modules/temp-dir/package.json +++ b/node_modules/temp-dir/package.json @@ -1,45 +1,41 @@ { - "name": "temp-dir", - "version": "2.0.0", - "description": "Get the real path of the system temp directory", - "license": "MIT", - "repository": "sindresorhus/temp-dir", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "temp", - "tmpdir", - "os", - "system", - "real", - "path", - "realpath", - "resolved", - "temporary", - "directory", - "folder" - ], - "devDependencies": { - "ava": "^1.4.1", - "proxyquire": "^2.1.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz" -,"_integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" -,"_from": "temp-dir@2.0.0" + "name": "temp-dir", + "version": "2.0.0", + "description": "Get the real path of the system temp directory", + "license": "MIT", + "repository": "sindresorhus/temp-dir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "temp", + "tmpdir", + "os", + "system", + "real", + "path", + "realpath", + "resolved", + "temporary", + "directory", + "folder" + ], + "devDependencies": { + "ava": "^1.4.1", + "proxyquire": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/term-size/package.json b/node_modules/term-size/package.json index d0980deb6..6e1b27a37 100644 --- a/node_modules/term-size/package.json +++ b/node_modules/term-size/package.json @@ -1,47 +1,43 @@ { - "name": "term-size", - "version": "2.2.0", - "description": "Reliably get the terminal window size (columns & rows)", - "license": "MIT", - "repository": "sindresorhus/term-size", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "vendor" - ], - "keywords": [ - "terminal", - "size", - "console", - "window", - "width", - "height", - "columns", - "rows", - "lines", - "tty", - "redirected" - ], - "devDependencies": { - "ava": "^2.4.0", - "execa": "^3.4.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz" -,"_integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==" -,"_from": "term-size@2.2.0" + "name": "term-size", + "version": "2.2.0", + "description": "Reliably get the terminal window size (columns & rows)", + "license": "MIT", + "repository": "sindresorhus/term-size", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "vendor" + ], + "keywords": [ + "terminal", + "size", + "console", + "window", + "width", + "height", + "columns", + "rows", + "lines", + "tty", + "redirected" + ], + "devDependencies": { + "ava": "^2.4.0", + "execa": "^3.4.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/time-zone/package.json b/node_modules/time-zone/package.json index 65a9f716a..8e3e1e1a1 100644 --- a/node_modules/time-zone/package.json +++ b/node_modules/time-zone/package.json @@ -32,8 +32,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz" -,"_integrity": "sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=" -,"_from": "time-zone@1.0.0" } \ No newline at end of file diff --git a/node_modules/to-readable-stream/package.json b/node_modules/to-readable-stream/package.json index f1aa3fdf1..3a078880d 100644 --- a/node_modules/to-readable-stream/package.json +++ b/node_modules/to-readable-stream/package.json @@ -1,44 +1,40 @@ { - "name": "to-readable-stream", - "version": "1.0.0", - "description": "Convert a string/Buffer/Uint8Array to a readable stream", - "license": "MIT", - "repository": "sindresorhus/to-readable-stream", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "stream", - "readablestream", - "string", - "buffer", - "uint8array", - "from", - "into", - "to", - "transform", - "convert", - "readable", - "pull" - ], - "devDependencies": { - "ava": "*", - "get-stream": "^3.0.0", - "xo": "*" - } - -,"_resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz" -,"_integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" -,"_from": "to-readable-stream@1.0.0" + "name": "to-readable-stream", + "version": "1.0.0", + "description": "Convert a string/Buffer/Uint8Array to a readable stream", + "license": "MIT", + "repository": "sindresorhus/to-readable-stream", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "stream", + "readablestream", + "string", + "buffer", + "uint8array", + "from", + "into", + "to", + "transform", + "convert", + "readable", + "pull" + ], + "devDependencies": { + "ava": "*", + "get-stream": "^3.0.0", + "xo": "*" + } } \ No newline at end of file diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json index fe98f0685..54d82acde 100644 --- a/node_modules/to-regex-range/package.json +++ b/node_modules/to-regex-range/package.json @@ -85,8 +85,4 @@ ] } } - -,"_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" -,"_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" -,"_from": "to-regex-range@5.0.1" } \ No newline at end of file diff --git a/node_modules/trim-off-newlines/package.json b/node_modules/trim-off-newlines/package.json index 91a1806f6..83b8f3d6a 100644 --- a/node_modules/trim-off-newlines/package.json +++ b/node_modules/trim-off-newlines/package.json @@ -45,8 +45,4 @@ "mocha" ] } - -,"_resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz" -,"_integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=" -,"_from": "trim-off-newlines@1.0.1" } \ No newline at end of file diff --git a/node_modules/tslib/package.json b/node_modules/tslib/package.json index 991aea3b7..7878659d5 100644 --- a/node_modules/tslib/package.json +++ b/node_modules/tslib/package.json @@ -1,33 +1,29 @@ { - "name": "tslib", - "author": "Microsoft Corp.", - "homepage": "https://www.typescriptlang.org/", - "version": "1.11.1", - "license": "Apache-2.0", - "description": "Runtime library for TypeScript helper functions", - "keywords": [ - "TypeScript", - "Microsoft", - "compiler", - "language", - "javascript", - "tslib", - "runtime" - ], - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, - "repository": { - "type": "git", - "url": "https://github.com/Microsoft/tslib.git" - }, - "main": "tslib.js", - "module": "tslib.es6.js", - "jsnext:main": "tslib.es6.js", - "typings": "tslib.d.ts", - "sideEffects": false - -,"_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz" -,"_integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==" -,"_from": "tslib@1.11.1" + "name": "tslib", + "author": "Microsoft Corp.", + "homepage": "https://www.typescriptlang.org/", + "version": "1.11.1", + "license": "Apache-2.0", + "description": "Runtime library for TypeScript helper functions", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript", + "tslib", + "runtime" + ], + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/tslib.git" + }, + "main": "tslib.js", + "module": "tslib.es6.js", + "jsnext:main": "tslib.es6.js", + "typings": "tslib.d.ts", + "sideEffects": false } \ No newline at end of file diff --git a/node_modules/tslint/node_modules/semver/package.json b/node_modules/tslint/node_modules/semver/package.json index 31e12dde0..90e287ecf 100644 --- a/node_modules/tslint/node_modules/semver/package.json +++ b/node_modules/tslint/node_modules/semver/package.json @@ -25,8 +25,4 @@ "tap": { "check-coverage": true } - -,"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" -,"_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" -,"_from": "semver@5.7.1" } \ No newline at end of file diff --git a/node_modules/tslint/package.json b/node_modules/tslint/package.json index 8f918b1d6..02f832328 100644 --- a/node_modules/tslint/package.json +++ b/node_modules/tslint/package.json @@ -1,97 +1,93 @@ { - "name": "tslint", - "version": "6.1.0", - "description": "An extensible static analysis linter for the TypeScript language", - "bin": { - "tslint": "./bin/tslint" - }, - "main": "./lib/index.js", - "typings": "./lib/index.d.ts", - "scripts": { - "clean": "npm-run-all -p clean:core clean:test", - "clean:core": "rimraf lib", - "clean:test": "rimraf build && rimraf test/config/node_modules", - "docs": "node scripts/buildDocs.js", - "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", - "compile:core": "tsc -p src", - "compile:scripts": "tsc -p scripts", - "compile:test": "tsc -p test", - "lint": "npm-run-all -p lint:from-installed lint:from-bin", - "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", - "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", - "lint-fix": "yarn lint:from-installed --fix", - "publish:local": "./scripts/npmPublish.sh", - "test": "npm-run-all test:pre -p test:mocha test:rules", - "test:pre": "cd ./test/config && npm install --no-save", - "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", - "test:rules": "node ./build/test/ruleTestRunner.js", - "verify": "npm-run-all clean compile lint test docs", - "coverage": "rimraf coverage .nyc_output && nyc npm test" - }, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.10.0", - "tsutils": "^2.29.0" - }, - "peerDependencies": { - "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" - }, - "devDependencies": { - "@octokit/rest": "^16.24.3", - "@types/babel__code-frame": "^7.0.1", - "@types/chai": "^3.5.0", - "@types/diff": "^3.2.0", - "@types/glob": "^5.0.30", - "@types/js-yaml": "^3.5.31", - "@types/minimatch": "^2.0.29", - "@types/mkdirp": "^0.5.2", - "@types/mocha": "^5.2.6", - "@types/node": "^7.0.29", - "@types/resolve": "^0.0.4", - "@types/rimraf": "^2.0.2", - "@types/semver": "^5.3.30", - "chai": "^3.5.0", - "husky": "^0.14.3", - "json-stringify-pretty-compact": "^1.2.0", - "mocha": "^6.1.4", - "npm-run-all": "^4.0.2", - "nyc": "^14.1.1", - "prettier": "~1.16.4", - "rimraf": "^2.5.4", - "ts-node": "^3.3.0", - "tslint": "~5.13.0", - "tslint-config-prettier": "^1.18.0", - "tslint-plugin-prettier": "^2.0.1", - "tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative", - "typescript": "~3.8.2", - "yarn-deduplicate": "^1.1.1" - }, - "engines": { - "node": ">=4.8.0" - }, - "homepage": "https://palantir.github.io/tslint", - "repository": { - "type": "git", - "url": "https://github.com/palantir/tslint.git" - }, - "keywords": [ - "cli", - "typescript", - "linter" - ], - "license": "Apache-2.0" - -,"_resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.0.tgz" -,"_integrity": "sha512-fXjYd/61vU6da04E505OZQGb2VCN2Mq3doeWcOIryuG+eqdmFUXTYVwdhnbEu2k46LNLgUYt9bI5icQze/j0bQ==" -,"_from": "tslint@6.1.0" + "name": "tslint", + "version": "6.1.0", + "description": "An extensible static analysis linter for the TypeScript language", + "bin": { + "tslint": "./bin/tslint" + }, + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "scripts": { + "clean": "npm-run-all -p clean:core clean:test", + "clean:core": "rimraf lib", + "clean:test": "rimraf build && rimraf test/config/node_modules", + "docs": "node scripts/buildDocs.js", + "compile": "npm-run-all -p compile:core compile:test -s compile:scripts", + "compile:core": "tsc -p src", + "compile:scripts": "tsc -p scripts", + "compile:test": "tsc -p test", + "lint": "npm-run-all -p lint:from-installed lint:from-bin", + "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame", + "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame", + "lint-fix": "yarn lint:from-installed --fix", + "publish:local": "./scripts/npmPublish.sh", + "test": "npm-run-all test:pre -p test:mocha test:rules", + "test:pre": "cd ./test/config && npm install --no-save", + "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"", + "test:rules": "node ./build/test/ruleTestRunner.js", + "verify": "npm-run-all clean compile lint test docs", + "coverage": "rimraf coverage .nyc_output && nyc npm test" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.10.0", + "tsutils": "^2.29.0" + }, + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev" + }, + "devDependencies": { + "@octokit/rest": "^16.24.3", + "@types/babel__code-frame": "^7.0.1", + "@types/chai": "^3.5.0", + "@types/diff": "^3.2.0", + "@types/glob": "^5.0.30", + "@types/js-yaml": "^3.5.31", + "@types/minimatch": "^2.0.29", + "@types/mkdirp": "^0.5.2", + "@types/mocha": "^5.2.6", + "@types/node": "^7.0.29", + "@types/resolve": "^0.0.4", + "@types/rimraf": "^2.0.2", + "@types/semver": "^5.3.30", + "chai": "^3.5.0", + "husky": "^0.14.3", + "json-stringify-pretty-compact": "^1.2.0", + "mocha": "^6.1.4", + "npm-run-all": "^4.0.2", + "nyc": "^14.1.1", + "prettier": "~1.16.4", + "rimraf": "^2.5.4", + "ts-node": "^3.3.0", + "tslint": "~5.13.0", + "tslint-config-prettier": "^1.18.0", + "tslint-plugin-prettier": "^2.0.1", + "tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative", + "typescript": "~3.8.2", + "yarn-deduplicate": "^1.1.1" + }, + "engines": { + "node": ">=4.8.0" + }, + "homepage": "https://palantir.github.io/tslint", + "repository": { + "type": "git", + "url": "https://github.com/palantir/tslint.git" + }, + "keywords": [ + "cli", + "typescript", + "linter" + ], + "license": "Apache-2.0" } \ No newline at end of file diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json index 71967fb7a..7c72f9465 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -52,8 +52,4 @@ "dependencies": { "tslib": "^1.8.1" } - -,"_resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz" -,"_integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==" -,"_from": "tsutils@2.29.0" } \ No newline at end of file diff --git a/node_modules/typedarray-to-buffer/package.json b/node_modules/typedarray-to-buffer/package.json index afaac5233..208763783 100644 --- a/node_modules/typedarray-to-buffer/package.json +++ b/node_modules/typedarray-to-buffer/package.json @@ -47,8 +47,4 @@ "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" } - -,"_resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" -,"_integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" -,"_from": "typedarray-to-buffer@3.1.5" } \ No newline at end of file diff --git a/node_modules/typescript/package.json b/node_modules/typescript/package.json index 6e6dadab8..c2efe1e26 100644 --- a/node_modules/typescript/package.json +++ b/node_modules/typescript/package.json @@ -1,138 +1,134 @@ { - "name": "typescript", - "author": "Microsoft Corp.", - "homepage": "https://www.typescriptlang.org/", - "version": "3.7.5", - "license": "Apache-2.0", - "description": "TypeScript is a language for application scale JavaScript development", - "keywords": [ - "TypeScript", - "Microsoft", - "compiler", - "language", - "javascript" - ], - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, - "repository": { - "type": "git", - "url": "https://github.com/Microsoft/TypeScript.git" - }, - "main": "./lib/typescript.js", - "typings": "./lib/typescript.d.ts", - "bin": { - "tsc": "./bin/tsc", - "tsserver": "./bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - }, - "devDependencies": { - "@octokit/rest": "latest", - "@types/browserify": "latest", - "@types/chai": "latest", - "@types/convert-source-map": "latest", - "@types/glob": "latest", - "@types/gulp": "^4.0.5", - "@types/gulp-concat": "latest", - "@types/gulp-newer": "latest", - "@types/gulp-rename": "0.0.33", - "@types/gulp-sourcemaps": "0.0.32", - "@types/jake": "latest", - "@types/merge2": "latest", - "@types/microsoft__typescript-etw": "latest", - "@types/minimatch": "latest", - "@types/minimist": "latest", - "@types/mkdirp": "latest", - "@types/mocha": "latest", - "@types/ms": "latest", - "@types/node": "latest", - "@types/node-fetch": "^2.3.4", - "@types/q": "latest", - "@types/source-map-support": "latest", - "@types/through2": "latest", - "@types/travis-fold": "latest", - "@types/xml2js": "^0.4.0", - "@typescript-eslint/eslint-plugin": "2.3.2", - "@typescript-eslint/experimental-utils": "2.3.2", - "@typescript-eslint/parser": "2.3.2", - "async": "latest", - "azure-devops-node-api": "^8.0.0", - "browser-resolve": "^1.11.2", - "browserify": "latest", - "chai": "latest", - "chalk": "latest", - "convert-source-map": "latest", - "del": "5.1.0", - "eslint": "6.5.1", - "eslint-formatter-autolinkable-stylish": "1.0.3", - "eslint-plugin-import": "2.18.2", - "eslint-plugin-jsdoc": "15.9.9", - "eslint-plugin-no-null": "1.0.2", - "fancy-log": "latest", - "fs-extra": "^6.0.1", - "glob": "latest", - "gulp": "^4.0.0", - "gulp-concat": "latest", - "gulp-insert": "latest", - "gulp-newer": "latest", - "gulp-rename": "latest", - "gulp-sourcemaps": "latest", - "istanbul": "latest", - "merge2": "latest", - "minimist": "latest", - "mkdirp": "latest", - "mocha": "latest", - "mocha-fivemat-progress-reporter": "latest", - "ms": "latest", - "node-fetch": "^2.6.0", - "plugin-error": "latest", - "pretty-hrtime": "^1.0.3", - "prex": "^0.4.3", - "q": "latest", - "remove-internal": "^2.9.2", - "simple-git": "^1.113.0", - "source-map-support": "latest", - "through2": "latest", - "travis-fold": "latest", - "typescript": "next", - "vinyl": "latest", - "vinyl-sourcemaps-apply": "latest", - "xml2js": "^0.4.19" - }, - "scripts": { - "prepare": "gulp build-eslint-rules", - "pretest": "gulp tests", - "test": "gulp runtests-parallel --light=false", - "test:eslint-rules": "gulp run-eslint-rules-tests", - "build": "npm run build:compiler && npm run build:tests", - "build:compiler": "gulp local", - "build:tests": "gulp tests", - "start": "node lib/tsc", - "clean": "gulp clean", - "gulp": "gulp", - "jake": "gulp", - "lint": "gulp lint", - "lint:ci": "gulp lint --ci", - "lint:compiler": "gulp lint-compiler", - "lint:scripts": "gulp lint-scripts", - "setup-hooks": "node scripts/link-hooks.js", - "update-costly-tests": "node scripts/costly-tests.js" - }, - "browser": { - "fs": false, - "os": false, - "path": false, - "crypto": false, - "buffer": false, - "@microsoft/typescript-etw": false, - "source-map-support": false, - "inspector": false - }, - "dependencies": {} - -,"_resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.5.tgz" -,"_integrity": "sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==" -,"_from": "typescript@3.7.5" + "name": "typescript", + "author": "Microsoft Corp.", + "homepage": "https://www.typescriptlang.org/", + "version": "3.7.5", + "license": "Apache-2.0", + "description": "TypeScript is a language for application scale JavaScript development", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript" + ], + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/TypeScript.git" + }, + "main": "./lib/typescript.js", + "typings": "./lib/typescript.d.ts", + "bin": { + "tsc": "./bin/tsc", + "tsserver": "./bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + }, + "devDependencies": { + "@octokit/rest": "latest", + "@types/browserify": "latest", + "@types/chai": "latest", + "@types/convert-source-map": "latest", + "@types/glob": "latest", + "@types/gulp": "^4.0.5", + "@types/gulp-concat": "latest", + "@types/gulp-newer": "latest", + "@types/gulp-rename": "0.0.33", + "@types/gulp-sourcemaps": "0.0.32", + "@types/jake": "latest", + "@types/merge2": "latest", + "@types/microsoft__typescript-etw": "latest", + "@types/minimatch": "latest", + "@types/minimist": "latest", + "@types/mkdirp": "latest", + "@types/mocha": "latest", + "@types/ms": "latest", + "@types/node": "latest", + "@types/node-fetch": "^2.3.4", + "@types/q": "latest", + "@types/source-map-support": "latest", + "@types/through2": "latest", + "@types/travis-fold": "latest", + "@types/xml2js": "^0.4.0", + "@typescript-eslint/eslint-plugin": "2.3.2", + "@typescript-eslint/experimental-utils": "2.3.2", + "@typescript-eslint/parser": "2.3.2", + "async": "latest", + "azure-devops-node-api": "^8.0.0", + "browser-resolve": "^1.11.2", + "browserify": "latest", + "chai": "latest", + "chalk": "latest", + "convert-source-map": "latest", + "del": "5.1.0", + "eslint": "6.5.1", + "eslint-formatter-autolinkable-stylish": "1.0.3", + "eslint-plugin-import": "2.18.2", + "eslint-plugin-jsdoc": "15.9.9", + "eslint-plugin-no-null": "1.0.2", + "fancy-log": "latest", + "fs-extra": "^6.0.1", + "glob": "latest", + "gulp": "^4.0.0", + "gulp-concat": "latest", + "gulp-insert": "latest", + "gulp-newer": "latest", + "gulp-rename": "latest", + "gulp-sourcemaps": "latest", + "istanbul": "latest", + "merge2": "latest", + "minimist": "latest", + "mkdirp": "latest", + "mocha": "latest", + "mocha-fivemat-progress-reporter": "latest", + "ms": "latest", + "node-fetch": "^2.6.0", + "plugin-error": "latest", + "pretty-hrtime": "^1.0.3", + "prex": "^0.4.3", + "q": "latest", + "remove-internal": "^2.9.2", + "simple-git": "^1.113.0", + "source-map-support": "latest", + "through2": "latest", + "travis-fold": "latest", + "typescript": "next", + "vinyl": "latest", + "vinyl-sourcemaps-apply": "latest", + "xml2js": "^0.4.19" + }, + "scripts": { + "prepare": "gulp build-eslint-rules", + "pretest": "gulp tests", + "test": "gulp runtests-parallel --light=false", + "test:eslint-rules": "gulp run-eslint-rules-tests", + "build": "npm run build:compiler && npm run build:tests", + "build:compiler": "gulp local", + "build:tests": "gulp tests", + "start": "node lib/tsc", + "clean": "gulp clean", + "gulp": "gulp", + "jake": "gulp", + "lint": "gulp lint", + "lint:ci": "gulp lint --ci", + "lint:compiler": "gulp lint-compiler", + "lint:scripts": "gulp lint-scripts", + "setup-hooks": "node scripts/link-hooks.js", + "update-costly-tests": "node scripts/costly-tests.js" + }, + "browser": { + "fs": false, + "os": false, + "path": false, + "crypto": false, + "buffer": false, + "@microsoft/typescript-etw": false, + "source-map-support": false, + "inspector": false + }, + "dependencies": {} } \ No newline at end of file diff --git a/node_modules/unique-string/package.json b/node_modules/unique-string/package.json index 808e91cf2..0bf04f042 100644 --- a/node_modules/unique-string/package.json +++ b/node_modules/unique-string/package.json @@ -1,44 +1,40 @@ { - "name": "unique-string", - "version": "2.0.0", - "description": "Generate a unique random string", - "license": "MIT", - "repository": "sindresorhus/unique-string", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "unique", - "string", - "random", - "text", - "id", - "identifier", - "slug", - "hex" - ], - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" -,"_integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" -,"_from": "unique-string@2.0.0" + "name": "unique-string", + "version": "2.0.0", + "description": "Generate a unique random string", + "license": "MIT", + "repository": "sindresorhus/unique-string", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "unique", + "string", + "random", + "text", + "id", + "identifier", + "slug", + "hex" + ], + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/universal-user-agent/package.json b/node_modules/universal-user-agent/package.json index 9870ef087..507ae8da8 100644 --- a/node_modules/universal-user-agent/package.json +++ b/node_modules/universal-user-agent/package.json @@ -30,8 +30,4 @@ "types": "dist-types/index.d.ts", "main": "dist-node/index.js", "module": "dist-web/index.js" - -,"_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz" -,"_integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==" -,"_from": "universal-user-agent@5.0.0" } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/ansi-styles/package.json b/node_modules/update-notifier/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/update-notifier/node_modules/ansi-styles/package.json +++ b/node_modules/update-notifier/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/chalk/package.json b/node_modules/update-notifier/node_modules/chalk/package.json index c75d30e94..b68e931e7 100644 --- a/node_modules/update-notifier/node_modules/chalk/package.json +++ b/node_modules/update-notifier/node_modules/chalk/package.json @@ -1,67 +1,63 @@ { - "name": "chalk", - "version": "3.0.0", - "description": "Terminal string styling done right", - "license": "MIT", - "repository": "chalk/chalk", - "main": "source", - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava && tsd", - "bench": "matcha benchmark.js" - }, - "files": [ - "source", - "index.d.ts" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "str", - "ansi", - "style", - "styles", - "tty", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "coveralls": "^3.0.7", - "execa": "^3.2.0", - "import-fresh": "^3.1.0", - "matcha": "^0.7.0", - "nyc": "^14.1.1", - "resolve-from": "^5.0.0", - "tsd": "^0.7.4", - "xo": "^0.25.3" - }, - "xo": { - "rules": { - "unicorn/prefer-string-slice": "off", - "unicorn/prefer-includes": "off" - } - } - -,"_resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" -,"_integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" -,"_from": "chalk@3.0.0" + "name": "chalk", + "version": "3.0.0", + "description": "Terminal string styling done right", + "license": "MIT", + "repository": "chalk/chalk", + "main": "source", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava && tsd", + "bench": "matcha benchmark.js" + }, + "files": [ + "source", + "index.d.ts" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "coveralls": "^3.0.7", + "execa": "^3.2.0", + "import-fresh": "^3.1.0", + "matcha": "^0.7.0", + "nyc": "^14.1.1", + "resolve-from": "^5.0.0", + "tsd": "^0.7.4", + "xo": "^0.25.3" + }, + "xo": { + "rules": { + "unicorn/prefer-string-slice": "off", + "unicorn/prefer-includes": "off" + } + } } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/color-convert/package.json b/node_modules/update-notifier/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/update-notifier/node_modules/color-convert/package.json +++ b/node_modules/update-notifier/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/color-name/package.json b/node_modules/update-notifier/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/update-notifier/node_modules/color-name/package.json +++ b/node_modules/update-notifier/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/has-flag/package.json b/node_modules/update-notifier/node_modules/has-flag/package.json index 5b10a2844..55d0058e4 100644 --- a/node_modules/update-notifier/node_modules/has-flag/package.json +++ b/node_modules/update-notifier/node_modules/has-flag/package.json @@ -1,50 +1,46 @@ { - "name": "has-flag", - "version": "4.0.0", - "description": "Check if argv has a specific flag", - "license": "MIT", - "repository": "sindresorhus/has-flag", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "has", - "check", - "detect", - "contains", - "find", - "flag", - "cli", - "command-line", - "argv", - "process", - "arg", - "args", - "argument", - "arguments", - "getopt", - "minimist", - "optimist" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" -,"_integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" -,"_from": "has-flag@4.0.0" + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/update-notifier/node_modules/supports-color/package.json b/node_modules/update-notifier/node_modules/supports-color/package.json index f0982eb21..79856038d 100644 --- a/node_modules/update-notifier/node_modules/supports-color/package.json +++ b/node_modules/update-notifier/node_modules/supports-color/package.json @@ -1,57 +1,53 @@ { - "name": "supports-color", - "version": "7.1.0", - "description": "Detect whether a terminal supports color", - "license": "MIT", - "repository": "chalk/supports-color", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js", - "browser.js" - ], - "keywords": [ - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "ansi", - "styles", - "tty", - "rgb", - "256", - "shell", - "xterm", - "command-line", - "support", - "supports", - "capability", - "detect", - "truecolor", - "16m" - ], - "dependencies": { - "has-flag": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "xo": "^0.24.0" - }, - "browser": "browser.js" - -,"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" -,"_integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" -,"_from": "supports-color@7.1.0" + "name": "supports-color", + "version": "7.1.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "browser.js" + ], + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "dependencies": { + "has-flag": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" + }, + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/update-notifier/package.json b/node_modules/update-notifier/package.json index 5aa45bd9c..604f5db25 100644 --- a/node_modules/update-notifier/package.json +++ b/node_modules/update-notifier/package.json @@ -1,68 +1,64 @@ { - "name": "update-notifier", - "version": "4.1.0", - "description": "Update notifications for your CLI app", - "license": "BSD-2-Clause", - "repository": "yeoman/update-notifier", - "funding": "https://github.com/yeoman/update-notifier?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava --timeout=20s -s" - }, - "files": [ - "index.js", - "check.js" - ], - "keywords": [ - "npm", - "update", - "updater", - "notify", - "notifier", - "check", - "checker", - "cli", - "module", - "package", - "version" - ], - "dependencies": { - "boxen": "^4.2.0", - "chalk": "^3.0.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.3.1", - "is-npm": "^4.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.0.0", - "pupa": "^2.0.1", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - }, - "devDependencies": { - "ava": "^2.4.0", - "clear-module": "^4.0.0", - "fixture-stdout": "^0.2.1", - "mock-require": "^3.0.3", - "strip-ansi": "^6.0.0", - "xo": "^0.26.1" - }, - "xo": { - "rules": { - "prefer-object-spread": 0 - } - } - -,"_resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.0.tgz" -,"_integrity": "sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew==" -,"_from": "update-notifier@4.1.0" + "name": "update-notifier", + "version": "4.1.0", + "description": "Update notifications for your CLI app", + "license": "BSD-2-Clause", + "repository": "yeoman/update-notifier", + "funding": "https://github.com/yeoman/update-notifier?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava --timeout=20s -s" + }, + "files": [ + "index.js", + "check.js" + ], + "keywords": [ + "npm", + "update", + "updater", + "notify", + "notifier", + "check", + "checker", + "cli", + "module", + "package", + "version" + ], + "dependencies": { + "boxen": "^4.2.0", + "chalk": "^3.0.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.3.1", + "is-npm": "^4.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.0.0", + "pupa": "^2.0.1", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "devDependencies": { + "ava": "^2.4.0", + "clear-module": "^4.0.0", + "fixture-stdout": "^0.2.1", + "mock-require": "^3.0.3", + "strip-ansi": "^6.0.0", + "xo": "^0.26.1" + }, + "xo": { + "rules": { + "prefer-object-spread": 0 + } + } } \ No newline at end of file diff --git a/node_modules/url-parse-lax/package.json b/node_modules/url-parse-lax/package.json index f62c1616c..fb99b48ca 100644 --- a/node_modules/url-parse-lax/package.json +++ b/node_modules/url-parse-lax/package.json @@ -39,8 +39,4 @@ "ava": "*", "xo": "*" } - -,"_resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" -,"_integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" -,"_from": "url-parse-lax@3.0.0" } \ No newline at end of file diff --git a/node_modules/util/package.json b/node_modules/util/package.json index e007ee0db..3ea19135d 100644 --- a/node_modules/util/package.json +++ b/node_modules/util/package.json @@ -32,8 +32,4 @@ "browser": { "./support/isBuffer.js": "./support/isBufferBrowser.js" } - -,"_resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz" -,"_integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==" -,"_from": "util@0.10.4" } \ No newline at end of file diff --git a/node_modules/uuid/package.json b/node_modules/uuid/package.json index 3777855f5..4b23f72c7 100644 --- a/node_modules/uuid/package.json +++ b/node_modules/uuid/package.json @@ -46,8 +46,4 @@ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } - -,"_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" -,"_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" -,"_from": "uuid@3.4.0" } \ No newline at end of file diff --git a/node_modules/validate-npm-package-license/package.json b/node_modules/validate-npm-package-license/package.json index 586f12a17..06ebbfc74 100644 --- a/node_modules/validate-npm-package-license/package.json +++ b/node_modules/validate-npm-package-license/package.json @@ -25,8 +25,4 @@ "scripts": { "test": "defence README.md | replace-require-self | node" } - -,"_resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" -,"_integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" -,"_from": "validate-npm-package-license@3.0.4" } \ No newline at end of file diff --git a/node_modules/wcwidth/package.json b/node_modules/wcwidth/package.json index 12cb1c239..232687f75 100644 --- a/node_modules/wcwidth/package.json +++ b/node_modules/wcwidth/package.json @@ -39,8 +39,4 @@ "url": "https://github.com/timoxley/wcwidth/issues" }, "homepage": "https://github.com/timoxley/wcwidth#readme" - -,"_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" -,"_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" -,"_from": "wcwidth@1.0.1" } \ No newline at end of file diff --git a/node_modules/well-known-symbols/package.json b/node_modules/well-known-symbols/package.json index 83e7f542d..3506ecbc2 100644 --- a/node_modules/well-known-symbols/package.json +++ b/node_modules/well-known-symbols/package.json @@ -46,8 +46,4 @@ ] }, "standard-engine": "@novemberborn/as-i-preach" - -,"_resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz" -,"_integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==" -,"_from": "well-known-symbols@2.0.0" } \ No newline at end of file diff --git a/node_modules/which-module/package.json b/node_modules/which-module/package.json index fc272b5fa..3d784c798 100644 --- a/node_modules/which-module/package.json +++ b/node_modules/which-module/package.json @@ -38,8 +38,4 @@ "standard": "^10.0.2", "standard-version": "^4.0.0" } - -,"_resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" -,"_integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" -,"_from": "which-module@2.0.0" } \ No newline at end of file diff --git a/node_modules/which/package.json b/node_modules/which/package.json index 740862f21..6844ec286 100644 --- a/node_modules/which/package.json +++ b/node_modules/which/package.json @@ -27,8 +27,4 @@ "which.js", "bin/which" ] - -,"_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz" -,"_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" -,"_from": "which@1.3.1" } \ No newline at end of file diff --git a/node_modules/widest-line/package.json b/node_modules/widest-line/package.json index 5795ae553..55d21f276 100644 --- a/node_modules/widest-line/package.json +++ b/node_modules/widest-line/package.json @@ -1,58 +1,54 @@ { - "name": "widest-line", - "version": "3.1.0", - "description": "Get the visual width of the widest line in a string - the number of columns required to display it", - "license": "MIT", - "repository": "sindresorhus/widest-line", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "string", - "character", - "unicode", - "width", - "visual", - "column", - "columns", - "fullwidth", - "full-width", - "full", - "ansi", - "escape", - "codes", - "cli", - "command-line", - "terminal", - "console", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width" - ], - "dependencies": { - "string-width": "^4.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" -,"_integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" -,"_from": "widest-line@3.1.0" + "name": "widest-line", + "version": "3.1.0", + "description": "Get the visual width of the widest line in a string - the number of columns required to display it", + "license": "MIT", + "repository": "sindresorhus/widest-line", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "string", + "character", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "dependencies": { + "string-width": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/windows-release/package.json b/node_modules/windows-release/package.json index c9adabf01..b87232dd6 100644 --- a/node_modules/windows-release/package.json +++ b/node_modules/windows-release/package.json @@ -1,47 +1,43 @@ { - "name": "windows-release", - "version": "3.2.0", - "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", - "license": "MIT", - "repository": "sindresorhus/windows-release", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "os", - "win", - "win32", - "windows", - "operating", - "system", - "platform", - "name", - "title", - "release", - "version" - ], - "dependencies": { - "execa": "^1.0.0" - }, - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz" -,"_integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==" -,"_from": "windows-release@3.2.0" + "name": "windows-release", + "version": "3.2.0", + "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", + "license": "MIT", + "repository": "sindresorhus/windows-release", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "os", + "win", + "win32", + "windows", + "operating", + "system", + "platform", + "name", + "title", + "release", + "version" + ], + "dependencies": { + "execa": "^1.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json index f970a55ac..1a7731952 100644 --- a/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +++ b/node_modules/wrap-ansi/node_modules/ansi-styles/package.json @@ -1,61 +1,57 @@ { - "name": "ansi-styles", - "version": "4.2.1", - "description": "ANSI escape codes for styling strings in the terminal", - "license": "MIT", - "repository": "chalk/ansi-styles", - "funding": "https://github.com/chalk/ansi-styles?sponsor=1", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd", - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "devDependencies": { - "@types/color-convert": "^1.9.0", - "ava": "^2.3.0", - "svg-term-cli": "^2.1.1", - "tsd": "^0.11.0", - "xo": "^0.25.3" - } - -,"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" -,"_integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" -,"_from": "ansi-styles@4.2.1" + "name": "ansi-styles", + "version": "4.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "license": "MIT", + "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd", + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "devDependencies": { + "@types/color-convert": "^1.9.0", + "ava": "^2.3.0", + "svg-term-cli": "^2.1.1", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/color-convert/package.json b/node_modules/wrap-ansi/node_modules/color-convert/package.json index 26354b46e..d169f869b 100644 --- a/node_modules/wrap-ansi/node_modules/color-convert/package.json +++ b/node_modules/wrap-ansi/node_modules/color-convert/package.json @@ -45,8 +45,4 @@ "dependencies": { "color-name": "~1.1.4" } - -,"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" -,"_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" -,"_from": "color-convert@2.0.1" } \ No newline at end of file diff --git a/node_modules/wrap-ansi/node_modules/color-name/package.json b/node_modules/wrap-ansi/node_modules/color-name/package.json index 14739f13f..fecb8dcfb 100644 --- a/node_modules/wrap-ansi/node_modules/color-name/package.json +++ b/node_modules/wrap-ansi/node_modules/color-name/package.json @@ -1,32 +1,28 @@ -{ - "name": "color-name", - "version": "1.1.4", - "description": "A list of color names and its values", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "node test.js" - }, - "repository": { - "type": "git", - "url": "git@github.com:colorjs/color-name.git" - }, - "keywords": [ - "color-name", - "color", - "color-keyword", - "keyword" - ], - "author": "DY ", - "license": "MIT", - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "homepage": "https://github.com/colorjs/color-name" - -,"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -,"_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" -,"_from": "color-name@1.1.4" +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/wrap-ansi/package.json b/node_modules/wrap-ansi/package.json index cd22ae882..821aebb90 100644 --- a/node_modules/wrap-ansi/package.json +++ b/node_modules/wrap-ansi/package.json @@ -1,65 +1,61 @@ { - "name": "wrap-ansi", - "version": "6.2.0", - "description": "Wordwrap a string with ANSI escape codes", - "license": "MIT", - "repository": "chalk/wrap-ansi", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "wrap", - "break", - "wordwrap", - "wordbreak", - "linewrap", - "ansi", - "styles", - "color", - "colour", - "colors", - "terminal", - "console", - "cli", - "string", - "tty", - "escape", - "formatting", - "rgb", - "256", - "shell", - "xterm", - "log", - "logging", - "command-line", - "text" - ], - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "chalk": "^2.4.2", - "coveralls": "^3.0.3", - "has-ansi": "^3.0.0", - "nyc": "^14.1.1", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" -,"_integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" -,"_from": "wrap-ansi@6.2.0" + "name": "wrap-ansi", + "version": "6.2.0", + "description": "Wordwrap a string with ANSI escape codes", + "license": "MIT", + "repository": "chalk/wrap-ansi", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "wrap", + "break", + "wordwrap", + "wordbreak", + "linewrap", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "devDependencies": { + "ava": "^2.1.0", + "chalk": "^2.4.2", + "coveralls": "^3.0.3", + "has-ansi": "^3.0.0", + "nyc": "^14.1.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/wrappy/package.json b/node_modules/wrappy/package.json index afa77fdc3..277d8831b 100644 --- a/node_modules/wrappy/package.json +++ b/node_modules/wrappy/package.json @@ -26,8 +26,4 @@ "url": "https://github.com/npm/wrappy/issues" }, "homepage": "https://github.com/npm/wrappy" - -,"_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" -,"_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" -,"_from": "wrappy@1.0.2" } \ No newline at end of file diff --git a/node_modules/write-file-atomic/package.json b/node_modules/write-file-atomic/package.json index e9740c053..58ff19175 100644 --- a/node_modules/write-file-atomic/package.json +++ b/node_modules/write-file-atomic/package.json @@ -45,8 +45,4 @@ "tap": { "100": true } - -,"_resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" -,"_integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" -,"_from": "write-file-atomic@3.0.3" } \ No newline at end of file diff --git a/node_modules/xdg-basedir/package.json b/node_modules/xdg-basedir/package.json index c1fa79ef9..1028a16cf 100644 --- a/node_modules/xdg-basedir/package.json +++ b/node_modules/xdg-basedir/package.json @@ -1,45 +1,41 @@ { - "name": "xdg-basedir", - "version": "4.0.0", - "description": "Get XDG Base Directory paths", - "license": "MIT", - "repository": "sindresorhus/xdg-basedir", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts" - ], - "keywords": [ - "xdg", - "base", - "directory", - "basedir", - "path", - "data", - "config", - "cache", - "linux", - "unix", - "spec" - ], - "devDependencies": { - "ava": "^1.4.1", - "import-fresh": "^3.0.0", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } - -,"_resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz" -,"_integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" -,"_from": "xdg-basedir@4.0.0" + "name": "xdg-basedir", + "version": "4.0.0", + "description": "Get XDG Base Directory paths", + "license": "MIT", + "repository": "sindresorhus/xdg-basedir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "xdg", + "base", + "directory", + "basedir", + "path", + "data", + "config", + "cache", + "linux", + "unix", + "spec" + ], + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/y18n/package.json b/node_modules/y18n/package.json index 28d76228e..57f8da1ad 100644 --- a/node_modules/y18n/package.json +++ b/node_modules/y18n/package.json @@ -36,8 +36,4 @@ "standard": "^10.0.0-beta.0", "standard-version": "^4.2.0" } - -,"_resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" -,"_integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" -,"_from": "y18n@4.0.0" } \ No newline at end of file diff --git a/node_modules/yargs-parser/package.json b/node_modules/yargs-parser/package.json index 8fc562099..b611d3f6b 100644 --- a/node_modules/yargs-parser/package.json +++ b/node_modules/yargs-parser/package.json @@ -43,8 +43,4 @@ "engines": { "node": ">=6" } - -,"_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz" -,"_integrity": "sha512-hlIPNR3IzC1YuL1c2UwwDKpXlNFBqD1Fswwh1khz5+d8Cq/8yc/Mn0i+rQXduu8hcrFKvO7Eryk+09NecTQAAQ==" -,"_from": "yargs-parser@18.1.2" } \ No newline at end of file diff --git a/node_modules/yargs/package.json b/node_modules/yargs/package.json index c260dec39..745bae01a 100644 --- a/node_modules/yargs/package.json +++ b/node_modules/yargs/package.json @@ -75,8 +75,4 @@ "engines": { "node": ">=8" } - -,"_resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz" -,"_integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==" -,"_from": "yargs@15.3.1" } \ No newline at end of file diff --git a/node_modules/zlib/package.json b/node_modules/zlib/package.json index 3c97a7452..5fa94d181 100644 --- a/node_modules/zlib/package.json +++ b/node_modules/zlib/package.json @@ -1,22 +1,20 @@ { - "name": "zlib", - "description": "Simple, synchronous deflate/inflate for buffers", - "version": "1.0.5", - "homepage": "https://github.com/kkaefer/node-zlib", - "author": "Konstantin Käfer ", - "repository": { - "type": "git", - "url": "git://github.com/kkaefer/node-zlib.git" - }, - "engines": { - "node": ">=0.2.0" - }, - "licenses": [ - { "type": "BSD" } - ], - "main": "./lib/zlib" - -,"_resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz" -,"_integrity": "sha1-bnyXL8NxxkWmr7A6sUdp3vEU/MA=" -,"_from": "zlib@1.0.5" + "name": "zlib", + "description": "Simple, synchronous deflate/inflate for buffers", + "version": "1.0.5", + "homepage": "https://github.com/kkaefer/node-zlib", + "author": "Konstantin Käfer ", + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "engines": { + "node": ">=0.2.0" + }, + "licenses": [ + { + "type": "BSD" + } + ], + "main": "./lib/zlib" } \ No newline at end of file diff --git a/package.json b/package.json index 6a6598995..752860cb9 100644 --- a/package.json +++ b/package.json @@ -52,4 +52,4 @@ "tslint": "^6.1.0", "typescript": "^3.7.5" } -} +} \ No newline at end of file From 5eccb795873a24c95da2168b31e463566abbcc00 Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Fri, 19 Jun 2020 12:07:06 +0200 Subject: [PATCH 09/11] improve regex --- lib/setup-tools.js | 2 +- lib/setup-tools.js.map | 2 +- lib/setup-tools.test.js | 2 +- lib/setup-tools.test.js.map | 2 +- src/setup-tools.test.ts | 2 +- src/setup-tools.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/setup-tools.js b/lib/setup-tools.js index 0e7ee466d..c86581fd2 100644 --- a/lib/setup-tools.js +++ b/lib/setup-tools.js @@ -57,7 +57,7 @@ async function setupCodeQL() { } exports.setupCodeQL = setupCodeQL; function getCodeQLURLVersion(url) { - const match = url.match(/codeql-bundle-([\d+(\.\d+)]+)/); + const match = url.match(/\/codeql-bundle-(.*)\//); if (match === null || match.length < 2) { throw new Error(`Malformed tools url: ${url}. Version could not be inferred`); } diff --git a/lib/setup-tools.js.map b/lib/setup-tools.js.map index d7c20f447..faac02a6f 100644 --- a/lib/setup-tools.js.map +++ b/lib/setup-tools.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAC7B,+CAAiC;AAEjC,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,IAAI;QACA,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,gBAAgB,CAAC,CAAC;QAC9D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;SACxF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC;AAED,SAAgB,mBAAmB,CAAC,GAAW;IAE3C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;IACzD,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;QACpC,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,iCAAiC,CAAC,CAAC;KACjF;IAED,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAEvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE;QACxB,IAAI,CAAC,KAAK,CAAC,kBAAkB,OAAO,gEAAgE,OAAO,GAAG,CAAC,CAAC;QAChH,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;KAChC;IAED,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,CAAC,EAAE;QACJ,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,iDAAiD,OAAO,UAAU,CAAC,CAAC;KACjH;IAED,OAAO,CAAC,CAAC;AACb,CAAC;AApBD,kDAoBC"} \ No newline at end of file +{"version":3,"file":"setup-tools.js","sourceRoot":"","sources":["../src/setup-tools.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAsC;AACtC,+DAAiD;AACjD,2CAA6B;AAC7B,+CAAiC;AAEjC,MAAa,WAAW;IAMpB,YAAY,UAAkB;QAC1B,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC3C,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAC3C,4BAA4B;QAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YAC9B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;YACxB,IAAI,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBAC7B,IAAI,CAAC,GAAG,IAAI,MAAM,CAAC;aACtB;SACJ;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,EAAE;YACrC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;SAC7B;aAAM,IAAI,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;YACtC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;SAC3B;aAAM;YACH,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC/D;IACL,CAAC;CACJ;AAxBD,kCAwBC;AAEM,KAAK,UAAU,WAAW;IAC7B,IAAI;QACA,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,YAAY,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,gBAAgB,CAAC,CAAC;QAC9D,IAAI,YAAY,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,yBAAyB,YAAY,EAAE,CAAC,CAAC;SACvD;aAAM;YACH,MAAM,UAAU,GAAG,MAAM,SAAS,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;YAC3D,MAAM,eAAe,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;YAC/D,YAAY,GAAG,MAAM,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;SACxF;QACD,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;KAE7D;IAAC,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;AACL,CAAC;AAnBD,kCAmBC;AAED,SAAgB,mBAAmB,CAAC,GAAW;IAE3C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAClD,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;QACpC,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,iCAAiC,CAAC,CAAC;KACjF;IAED,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAEvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE;QACxB,IAAI,CAAC,KAAK,CAAC,kBAAkB,OAAO,gEAAgE,OAAO,GAAG,CAAC,CAAC;QAChH,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;KAChC;IAED,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,CAAC,EAAE;QACJ,MAAM,IAAI,KAAK,CAAC,uBAAuB,GAAG,iDAAiD,OAAO,UAAU,CAAC,CAAC;KACjH;IAED,OAAO,CAAC,CAAC;AACb,CAAC;AApBD,kDAoBC"} \ No newline at end of file diff --git a/lib/setup-tools.test.js b/lib/setup-tools.test.js index 8ea59733f..32e52cf4f 100644 --- a/lib/setup-tools.test.js +++ b/lib/setup-tools.test.js @@ -50,7 +50,7 @@ ava_1.default('parse codeql bundle url version', t => { const url = `https://github.com/.../codeql-bundle-${version}/...`; try { const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.assert(parsedVersion, expectedVersion); + t.deepEqual(parsedVersion, expectedVersion); } catch (e) { t.fail(e.message); diff --git a/lib/setup-tools.test.js.map b/lib/setup-tools.test.js.map index 351a88003..558b1f812 100644 --- a/lib/setup-tools.test.js.map +++ b/lib/setup-tools.test.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAAiD;AACjD,8CAAuB;AACvB,gDAAwB;AACxB,2CAA6B;AAE7B,0DAA4C;AAC5C,6CAA+B;AAE/B,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QACzB,IAAI,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YAE/B,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;YAElE,IAAI;gBACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;gBAC1D,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;aAC5C;YAAC,OAAO,CAAC,EAAE;gBACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;aACrB;SACJ;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAAiD;AACjD,8CAAuB;AACvB,gDAAwB;AACxB,2CAA6B;AAE7B,0DAA4C;AAC5C,6CAA+B;AAE/B,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QACzB,IAAI,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YAE/B,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;YAElE,IAAI;gBACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;gBAC1D,CAAC,CAAC,SAAS,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;aAC/C;YAAC,OAAO,CAAC,EAAE;gBACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;aACrB;SACJ;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/src/setup-tools.test.ts b/src/setup-tools.test.ts index b56af0f3c..7cf565142 100644 --- a/src/setup-tools.test.ts +++ b/src/setup-tools.test.ts @@ -57,7 +57,7 @@ test('parse codeql bundle url version', t => { try { const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.assert(parsedVersion, expectedVersion); + t.deepEqual(parsedVersion, expectedVersion); } catch (e) { t.fail(e.message); } diff --git a/src/setup-tools.ts b/src/setup-tools.ts index c9edad923..2ed64c21a 100644 --- a/src/setup-tools.ts +++ b/src/setup-tools.ts @@ -52,7 +52,7 @@ export async function setupCodeQL(): Promise { export function getCodeQLURLVersion(url: string): string { - const match = url.match(/codeql-bundle-([\d+(\.\d+)]+)/); + const match = url.match(/\/codeql-bundle-(.*)\//); if (match === null || match.length < 2) { throw new Error(`Malformed tools url: ${url}. Version could not be inferred`); } From 34c941dc31c846e4be3b30287d099b6ad98d047f Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Fri, 19 Jun 2020 13:27:45 +0200 Subject: [PATCH 10/11] Use Object.entries() instead of checking hasOwnProperty Co-authored-by: Robert --- src/setup-tools.test.ts | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/setup-tools.test.ts b/src/setup-tools.test.ts index 7cf565142..96680b339 100644 --- a/src/setup-tools.test.ts +++ b/src/setup-tools.test.ts @@ -49,18 +49,14 @@ test('parse codeql bundle url version', t => { '1.2.3-beta.1': '1.2.3-beta.1', }; - for (const version in tests) { - if (tests.hasOwnProperty(version)) { - - const expectedVersion = tests[version]; - const url = `https://github.com/.../codeql-bundle-${version}/...`; - - try { - const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.deepEqual(parsedVersion, expectedVersion); - } catch (e) { - t.fail(e.message); - } + for (const [version, expectedVersion] of Object.entries(tests)) { + const url = `https://github.com/.../codeql-bundle-${version}/...`; + + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.deepEqual(parsedVersion, expectedVersion); + } catch (e) { + t.fail(e.message); } } }); From 38c231113e7301c00b157c0370c9d1030f71b82b Mon Sep 17 00:00:00 2001 From: Alex Kalyvitis Date: Fri, 19 Jun 2020 13:41:33 +0200 Subject: [PATCH 11/11] build ts --- lib/setup-tools.test.js | 19 ++++++++----------- lib/setup-tools.test.js.map | 2 +- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/lib/setup-tools.test.js b/lib/setup-tools.test.js index 32e52cf4f..183ec989a 100644 --- a/lib/setup-tools.test.js +++ b/lib/setup-tools.test.js @@ -44,17 +44,14 @@ ava_1.default('parse codeql bundle url version', t => { '1.2.3-alpha': '1.2.3-alpha', '1.2.3-beta.1': '1.2.3-beta.1', }; - for (const version in tests) { - if (tests.hasOwnProperty(version)) { - const expectedVersion = tests[version]; - const url = `https://github.com/.../codeql-bundle-${version}/...`; - try { - const parsedVersion = setupTools.getCodeQLURLVersion(url); - t.deepEqual(parsedVersion, expectedVersion); - } - catch (e) { - t.fail(e.message); - } + for (const [version, expectedVersion] of Object.entries(tests)) { + const url = `https://github.com/.../codeql-bundle-${version}/...`; + try { + const parsedVersion = setupTools.getCodeQLURLVersion(url); + t.deepEqual(parsedVersion, expectedVersion); + } + catch (e) { + t.fail(e.message); } } }); diff --git a/lib/setup-tools.test.js.map b/lib/setup-tools.test.js.map index 558b1f812..079d93c48 100644 --- a/lib/setup-tools.test.js.map +++ b/lib/setup-tools.test.js.map @@ -1 +1 @@ -{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAAiD;AACjD,8CAAuB;AACvB,gDAAwB;AACxB,2CAA6B;AAE7B,0DAA4C;AAC5C,6CAA+B;AAE/B,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,OAAO,IAAI,KAAK,EAAE;QACzB,IAAI,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YAE/B,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;YAElE,IAAI;gBACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;gBAC1D,CAAC,CAAC,SAAS,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;aAC/C;YAAC,OAAO,CAAC,EAAE;gBACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;aACrB;SACJ;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"setup-tools.test.js","sourceRoot":"","sources":["../src/setup-tools.test.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAAiD;AACjD,8CAAuB;AACvB,gDAAwB;AACxB,2CAA6B;AAE7B,0DAA4C;AAC5C,6CAA+B;AAE/B,aAAI,CAAC,8BAA8B,EAAE,KAAK,EAAC,CAAC,EAAC,EAAE;IAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,EAAC,MAAM,EAAC,EAAE;QAEjC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;QAEzC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAE9D,MAAM,QAAQ,GAAG,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACtC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAE5B,cAAI,CAAC,qBAAqB,CAAC;iBACtB,GAAG,CAAC,2BAA2B,OAAO,uBAAuB,CAAC;iBAC9D,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uCAAuC,CAAC,CAAC,CAAC;YAGvF,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,8CAA8C,OAAO,uBAAuB,CAAC;YAE1G,MAAM,UAAU,CAAC,WAAW,EAAE,CAAC;YAE/B,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAC,CAAC,CAAC;SAC1D;QAED,MAAM,cAAc,GAAG,SAAS,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE3D,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,iCAAiC,EAAE,CAAC,CAAC,EAAE;IAExC,MAAM,KAAK,GAAG;QACV,UAAU,EAAE,gBAAgB;QAC5B,YAAY,EAAE,kBAAkB;QAChC,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,OAAO;QAChB,aAAa,EAAE,aAAa;QAC5B,cAAc,EAAE,cAAc;KACjC,CAAC;IAEF,KAAK,MAAM,CAAC,OAAO,EAAE,eAAe,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAC5D,MAAM,GAAG,GAAG,wCAAwC,OAAO,MAAM,CAAC;QAElE,IAAI;YACA,MAAM,aAAa,GAAG,UAAU,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;YAC1D,CAAC,CAAC,SAAS,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;SAC/C;QAAC,OAAO,CAAC,EAAE;YACR,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;SACrB;KACJ;AACL,CAAC,CAAC,CAAC"} \ No newline at end of file