diff --git a/node_modules/.bin/removeNPMAbsolutePaths b/node_modules/.bin/removeNPMAbsolutePaths new file mode 120000 index 000000000..b552bccec --- /dev/null +++ b/node_modules/.bin/removeNPMAbsolutePaths @@ -0,0 +1 @@ +../removeNPMAbsolutePaths/bin/removeNPMAbsolutePaths \ No newline at end of file diff --git a/node_modules/@actions/http-client/README.md b/node_modules/@actions/http-client/README.md index 9ef52c27c..be61eb351 100644 --- a/node_modules/@actions/http-client/README.md +++ b/node_modules/@actions/http-client/README.md @@ -18,6 +18,8 @@ A lightweight HTTP client optimized for use with actions, TypeScript with generi - Basic, Bearer and PAT Support out of the box. Extensible handlers for others. - Redirects supported +Features and releases [here](./RELEASES.md) + ## Install ``` @@ -49,7 +51,11 @@ export NODE_DEBUG=http ## Node support -The http-client is built using the latest LTS version of Node 12. We also support the latest LTS for Node 6, 8 and Node 10. +The http-client is built using the latest LTS version of Node 12. It may work on previous node LTS versions but it's tested and officially supported on Node12+. + +## Support and Versioning + +We follow semver and will hold compatibility between major versions and increment the minor version with new features and capabilities (while holding compat). ## Contributing diff --git a/node_modules/@actions/http-client/RELEASES.md b/node_modules/@actions/http-client/RELEASES.md new file mode 100644 index 000000000..79f9a5819 --- /dev/null +++ b/node_modules/@actions/http-client/RELEASES.md @@ -0,0 +1,16 @@ +## Releases + +## 1.0.7 +Update NPM dependencies and add 429 to the list of HttpCodes + +## 1.0.6 +Automatically sends Content-Type and Accept application/json headers for \Json() helper methods if not set in the client or parameters. + +## 1.0.5 +Adds \Json() helper methods for json over http scenarios. + +## 1.0.4 +Started to add \Json() helper methods. Do not use this release for that. Use >= 1.0.5 since there was an issue with types. + +## 1.0.1 to 1.0.3 +Adds proxy support. \ No newline at end of file diff --git a/node_modules/@actions/http-client/auth.js b/node_modules/@actions/http-client/auth.js index 98d22d66d..67a58aa78 100644 --- a/node_modules/@actions/http-client/auth.js +++ b/node_modules/@actions/http-client/auth.js @@ -6,7 +6,9 @@ class BasicCredentialHandler { this.password = password; } prepareRequest(options) { - options.headers['Authorization'] = 'Basic ' + Buffer.from(this.username + ':' + this.password).toString('base64'); + options.headers['Authorization'] = + 'Basic ' + + Buffer.from(this.username + ':' + this.password).toString('base64'); } // This handler cannot handle 401 canHandleAuthentication(response) { @@ -42,7 +44,8 @@ class PersonalAccessTokenCredentialHandler { // currently implements pre-authorization // TODO: support preAuth = false where it hooks on 401 prepareRequest(options) { - options.headers['Authorization'] = 'Basic ' + Buffer.from('PAT:' + this.token).toString('base64'); + options.headers['Authorization'] = + 'Basic ' + Buffer.from('PAT:' + this.token).toString('base64'); } // This handler cannot handle 401 canHandleAuthentication(response) { diff --git a/node_modules/@actions/http-client/index.d.ts b/node_modules/@actions/http-client/index.d.ts index ebc3cf2c1..7cdc11554 100644 --- a/node_modules/@actions/http-client/index.d.ts +++ b/node_modules/@actions/http-client/index.d.ts @@ -1,5 +1,5 @@ /// -import http = require("http"); +import http = require('http'); import ifm = require('./interfaces'); export declare enum HttpCodes { OK = 200, @@ -23,12 +23,20 @@ export declare enum HttpCodes { RequestTimeout = 408, Conflict = 409, Gone = 410, + TooManyRequests = 429, InternalServerError = 500, NotImplemented = 501, BadGateway = 502, ServiceUnavailable = 503, GatewayTimeout = 504 } +export declare enum Headers { + Accept = "accept", + ContentType = "content-type" +} +export declare enum MediaTypes { + ApplicationJson = "application/json" +} /** * Returns the proxy URL, depending upon the supplied url and proxy environment variables. * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com @@ -39,11 +47,6 @@ export declare class HttpClientResponse implements ifm.IHttpClientResponse { message: http.IncomingMessage; readBody(): Promise; } -export interface ITypedResponse { - statusCode: number; - result: T | null; - headers: Object; -} export declare function isHttps(requestUrl: string): boolean; export declare class HttpClient { userAgent: string | undefined; @@ -73,10 +76,10 @@ export declare class HttpClient { * Gets a typed object from an endpoint * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise */ - getJson(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise>; - postJson(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise>; - putJson(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise>; - patchJson(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise>; + getJson(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise>; + postJson(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise>; + putJson(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise>; + patchJson(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise>; /** * Makes a raw http request. * All other methods such as get, post, patch, and request ultimately call this. @@ -108,6 +111,7 @@ export declare class HttpClient { getAgent(serverUrl: string): http.Agent; private _prepareRequest; private _mergeHeaders; + private _getExistingOrDefaultHeader; private _getAgent; private _performExponentialBackoff; private static dateTimeDeserializer; diff --git a/node_modules/@actions/http-client/index.js b/node_modules/@actions/http-client/index.js index 625e568cb..e1930da87 100644 --- a/node_modules/@actions/http-client/index.js +++ b/node_modules/@actions/http-client/index.js @@ -28,12 +28,22 @@ var HttpCodes; HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; + HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; 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 = {})); +var Headers; +(function (Headers) { + Headers["Accept"] = "accept"; + Headers["ContentType"] = "content-type"; +})(Headers = exports.Headers || (exports.Headers = {})); +var MediaTypes; +(function (MediaTypes) { + MediaTypes["ApplicationJson"] = "application/json"; +})(MediaTypes = exports.MediaTypes || (exports.MediaTypes = {})); /** * Returns the proxy URL, depending upon the supplied url and proxy environment variables. * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com @@ -43,8 +53,18 @@ function getProxyUrl(serverUrl) { return proxyUrl ? proxyUrl.href : ''; } exports.getProxyUrl = getProxyUrl; -const HttpRedirectCodes = [HttpCodes.MovedPermanently, HttpCodes.ResourceMoved, HttpCodes.SeeOther, HttpCodes.TemporaryRedirect, HttpCodes.PermanentRedirect]; -const HttpResponseRetryCodes = [HttpCodes.BadGateway, HttpCodes.ServiceUnavailable, HttpCodes.GatewayTimeout]; +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; @@ -136,22 +156,29 @@ class HttpClient { * Gets a typed object from an endpoint * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise */ - async getJson(requestUrl, additionalHeaders) { + async getJson(requestUrl, additionalHeaders = {}) { + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); let res = await this.get(requestUrl, additionalHeaders); return this._processResponse(res, this.requestOptions); } - async postJson(requestUrl, obj, additionalHeaders) { + async postJson(requestUrl, obj, additionalHeaders = {}) { let data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); let res = await this.post(requestUrl, data, additionalHeaders); return this._processResponse(res, this.requestOptions); } - async putJson(requestUrl, obj, additionalHeaders) { + async putJson(requestUrl, obj, additionalHeaders = {}) { let data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); let res = await this.put(requestUrl, data, additionalHeaders); return this._processResponse(res, this.requestOptions); } - async patchJson(requestUrl, obj, additionalHeaders) { + async patchJson(requestUrl, obj, additionalHeaders = {}) { let data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); let res = await this.patch(requestUrl, data, additionalHeaders); return this._processResponse(res, this.requestOptions); } @@ -162,18 +189,22 @@ class HttpClient { */ async request(verb, requestUrl, data, headers) { if (this._disposed) { - throw new Error("Client has already been disposed."); + throw new Error('Client has already been disposed.'); } let parsedUrl = url.parse(requestUrl); let info = this._prepareRequest(verb, parsedUrl, 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 maxTries = this._allowRetries && RetryableHttpVerbs.indexOf(verb) != -1 + ? this._maxRetries + 1 + : 1; let numTries = 0; let response; while (numTries < maxTries) { response = await this.requestRaw(info, data); // Check if it's an authentication challenge - if (response && response.message && response.message.statusCode === HttpCodes.Unauthorized) { + 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)) { @@ -191,21 +222,32 @@ class HttpClient { } } let redirectsRemaining = this._maxRedirects; - while (HttpRedirectCodes.indexOf(response.message.statusCode) != -1 - && this._allowRedirects - && redirectsRemaining > 0) { - const redirectUrl = response.message.headers["location"]; + 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; } let parsedRedirectUrl = url.parse(redirectUrl); - if (parsedUrl.protocol == 'https:' && parsedUrl.protocol != parsedRedirectUrl.protocol && !this._allowRedirectDowngrade) { - throw new Error("Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true."); + if (parsedUrl.protocol == 'https:' && + parsedUrl.protocol != parsedRedirectUrl.protocol && + !this._allowRedirectDowngrade) { + throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); } // we need to finish reading the response before reassigning response // which will leak the open socket. await response.readBody(); + // strip authorization header if redirected to a different hostname + if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { + for (let header in headers) { + // header names are case insensitive + if (header.toLowerCase() === 'authorization') { + delete headers[header]; + } + } + } // let's make the request with the new redirectUrl info = this._prepareRequest(verb, parsedRedirectUrl, headers); response = await this.requestRaw(info, data); @@ -256,8 +298,8 @@ class HttpClient { */ requestRawWithCallback(info, data, onResult) { let socket; - if (typeof (data) === 'string') { - info.options.headers["Content-Length"] = Buffer.byteLength(data, 'utf8'); + if (typeof data === 'string') { + info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8'); } let callbackCalled = false; let handleResult = (err, res) => { @@ -270,7 +312,7 @@ class HttpClient { let res = new HttpClientResponse(msg); handleResult(null, res); }); - req.on('socket', (sock) => { + req.on('socket', sock => { socket = sock; }); // If we ever get disconnected, we want the socket to timeout eventually @@ -285,10 +327,10 @@ class HttpClient { // res should have headers handleResult(err, null); }); - if (data && typeof (data) === 'string') { + if (data && typeof data === 'string') { req.write(data, 'utf8'); } - if (data && typeof (data) !== 'string') { + if (data && typeof data !== 'string') { data.on('close', function () { req.end(); }); @@ -315,29 +357,40 @@ class HttpClient { 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.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); if (this.userAgent != null) { - info.options.headers["user-agent"] = this.userAgent; + info.options.headers['user-agent'] = this.userAgent; } info.options.agent = this._getAgent(info.parsedUrl); // gives handlers an opportunity to participate if (this.handlers) { - this.handlers.forEach((handler) => { + this.handlers.forEach(handler => { handler.prepareRequest(info.options); }); } return info; } _mergeHeaders(headers) { - const lowercaseKeys = obj => Object.keys(obj).reduce((c, k) => (c[k.toLowerCase()] = obj[k], c), {}); + 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 || {}); } + _getExistingOrDefaultHeader(additionalHeaders, header, _default) { + const lowercaseKeys = obj => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); + let clientHeader; + if (this.requestOptions && this.requestOptions.headers) { + clientHeader = lowercaseKeys(this.requestOptions.headers)[header]; + } + return additionalHeaders[header] || clientHeader || _default; + } _getAgent(parsedUrl) { let agent; let proxyUrl = pm.getProxyUrl(parsedUrl); @@ -369,7 +422,7 @@ class HttpClient { proxyAuth: proxyUrl.auth, host: proxyUrl.hostname, port: proxyUrl.port - }, + } }; let tunnelAgent; const overHttps = proxyUrl.protocol === 'https:'; @@ -396,7 +449,9 @@ class HttpClient { // 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 }); + agent.options = Object.assign(agent.options || {}, { + rejectUnauthorized: false + }); } return agent; } @@ -457,7 +512,7 @@ class HttpClient { msg = contents; } else { - msg = "Failed request: (" + statusCode + ")"; + msg = 'Failed request: (' + statusCode + ')'; } let err = new Error(msg); // attach statusCode and body obj (if available) to the error object diff --git a/node_modules/@actions/http-client/interfaces.d.ts b/node_modules/@actions/http-client/interfaces.d.ts index 18fb06a5e..0b348dc01 100644 --- a/node_modules/@actions/http-client/interfaces.d.ts +++ b/node_modules/@actions/http-client/interfaces.d.ts @@ -1,6 +1,6 @@ /// -import http = require("http"); -import url = require("url"); +import http = require('http'); +import url = require('url'); export interface IHeaders { [key: string]: any; } @@ -43,3 +43,8 @@ export interface IRequestOptions { allowRetries?: boolean; maxRetries?: number; } +export interface ITypedResponse { + statusCode: number; + result: T | null; + headers: Object; +} diff --git a/node_modules/@actions/http-client/interfaces.js b/node_modules/@actions/http-client/interfaces.js index 04363ad2b..c8ad2e549 100644 --- a/node_modules/@actions/http-client/interfaces.js +++ b/node_modules/@actions/http-client/interfaces.js @@ -1,3 +1,2 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -; 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 634e199fd..27cce6b48 100644 --- a/node_modules/@actions/http-client/node_modules/tunnel/package.json +++ b/node_modules/@actions/http-client/node_modules/tunnel/package.json @@ -1,25 +1,7 @@ { - "author": { - "name": "Koichi Kobayashi", - "email": "koichik@improvement.jp" - }, - "bugs": { - "url": "https://github.com/koichik/node-tunnel/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -27,15 +9,26 @@ "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" + } } \ 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 c6fc7c5c1..fbfec5f9d 100644 --- a/node_modules/@actions/http-client/package.json +++ b/node_modules/@actions/http-client/package.json @@ -1,39 +1,39 @@ { - "author": { - "name": "GitHub, Inc." - }, - "bugs": { - "url": "https://github.com/actions/http-client/issues" - }, - "bundleDependencies": false, - "dependencies": { - "tunnel": "0.0.6" - }, - "deprecated": false, + "name": "@actions/http-client", + "version": "1.0.8", "description": "Actions Http Client", - "devDependencies": { - "@types/jest": "^24.0.25", - "@types/node": "^12.12.24", - "jest": "^24.9.0", - "proxy": "^1.0.1", - "ts-jest": "^24.3.0", - "typescript": "^3.7.4" + "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" }, - "homepage": "https://github.com/actions/http-client#readme", "keywords": [ "Actions", "Http" ], + "author": "GitHub, Inc.", "license": "MIT", - "main": "index.js", - "name": "@actions/http-client", - "repository": { - "type": "git", - "url": "git+https://github.com/actions/http-client.git" + "bugs": { + "url": "https://github.com/actions/http-client/issues" }, - "scripts": { - "build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out", - "test": "jest" + "homepage": "https://github.com/actions/http-client#readme", + "devDependencies": { + "@types/jest": "^25.1.4", + "@types/node": "^12.12.31", + "jest": "^25.1.0", + "prettier": "^2.0.4", + "proxy": "^1.0.1", + "ts-jest": "^25.2.1", + "typescript": "^3.8.3" }, - "version": "1.0.4" + "dependencies": { + "tunnel": "0.0.6" + } } \ No newline at end of file diff --git a/node_modules/@actions/http-client/proxy.js b/node_modules/@actions/http-client/proxy.js index 7233779e4..06936b392 100644 --- a/node_modules/@actions/http-client/proxy.js +++ b/node_modules/@actions/http-client/proxy.js @@ -9,12 +9,10 @@ function getProxyUrl(reqUrl) { } let proxyVar; if (usingSsl) { - proxyVar = process.env["https_proxy"] || - process.env["HTTPS_PROXY"]; + proxyVar = process.env['https_proxy'] || process.env['HTTPS_PROXY']; } else { - proxyVar = process.env["http_proxy"] || - process.env["HTTP_PROXY"]; + proxyVar = process.env['http_proxy'] || process.env['HTTP_PROXY']; } if (proxyVar) { proxyUrl = url.parse(proxyVar); @@ -26,7 +24,7 @@ function checkBypass(reqUrl) { if (!reqUrl.hostname) { return false; } - let noProxy = process.env["no_proxy"] || process.env["NO_PROXY"] || ''; + let noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; if (!noProxy) { return false; } @@ -47,7 +45,10 @@ function checkBypass(reqUrl) { upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); } // Compare request host against noproxy - for (let upperNoProxyItem of noProxy.split(',').map(x => x.trim().toUpperCase()).filter(x => x)) { + for (let upperNoProxyItem of noProxy + .split(',') + .map(x => x.trim().toUpperCase()) + .filter(x => x)) { if (upperReqHosts.some(x => x === upperNoProxyItem)) { return true; } diff --git a/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/package.json b/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-member-expression-to-functions/package.json b/node_modules/@babel/helper-member-expression-to-functions/package.json index f5734f9d5..82e4a6787 100644 --- a/node_modules/@babel/helper-member-expression-to-functions/package.json +++ b/node_modules/@babel/helper-member-expression-to-functions/package.json @@ -1,24 +1,16 @@ { - "author": { - "name": "Justin Ridgewell", - "email": "justin@ridgewell.name" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-member-expression-to-functions", + "version": "7.8.3", "description": "Helper function to replace certain member expressions with function calls", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-member-expression-to-functions", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions" + "main": "lib/index.js", + "author": "Justin Ridgewell ", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json b/node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-imports/package.json b/node_modules/@babel/helper-module-imports/package.json index 0ad569eb9..64451bb84 100644 --- a/node_modules/@babel/helper-module-imports/package.json +++ b/node_modules/@babel/helper-module-imports/package.json @@ -1,28 +1,20 @@ { - "author": { - "name": "Logan Smyth", - "email": "loganfsmyth@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-module-imports", + "version": "7.8.3", "description": "Babel helper functions for inserting module loads", - "devDependencies": { - "@babel/core": "^7.8.3" - }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "author": "Logan Smyth ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-module-imports", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports", + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" + }, + "devDependencies": { + "@babel/core": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/package.json index 013034cb3..c8805560c 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, - "description": ">", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "license": "MIT", - "main": "lib/index.js", "name": "@babel/helper-split-export-declaration", + "version": "7.8.3", + "description": "", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration", + "license": "MIT", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json index f4ecd5f2a..2cd8265e5 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.9.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, - "deprecated": false, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "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.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json index ce08ec92b..50f9b985f 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json @@ -1,30 +1,13 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/parser", + "version": "7.9.4", "description": "A JavaScript parser", - "devDependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/helper-fixtures": "^7.8.6", - "@babel/helper-validator-identifier": "^7.9.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "files": [ - "bin", - "lib", - "typings" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, "keywords": [ "babel", "javascript", @@ -33,16 +16,25 @@ "ecmascript", "@babel/parser" ], - "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-parser", "main": "lib/index.js", - "name": "@babel/parser", - "publishConfig": { - "access": "public" + "types": "typings/babel-parser.d.ts", + "files": [ + "bin", + "lib", + "typings" + ], + "engines": { + "node": ">=6.0.0" + }, + "devDependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/helper-fixtures": "^7.8.6", + "@babel/helper-validator-identifier": "^7.9.0", + "charcodes": "^0.2.0" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + "bin": { + "parser": "./bin/babel-parser.js" }, - "types": "typings/babel-parser.d.ts", - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json b/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-module-transforms/package.json b/node_modules/@babel/helper-module-transforms/package.json index 32b272fdc..5105b3a94 100644 --- a/node_modules/@babel/helper-module-transforms/package.json +++ b/node_modules/@babel/helper-module-transforms/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Logan Smyth", - "email": "loganfsmyth@gmail.com" + "name": "@babel/helper-module-transforms", + "version": "7.9.0", + "description": "Babel helper functions for implementing ES6 module transformations", + "author": "Logan Smyth ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms", + "main": "lib/index.js", "dependencies": { "@babel/helper-module-imports": "^7.8.3", "@babel/helper-replace-supers": "^7.8.6", @@ -13,19 +19,5 @@ "@babel/types": "^7.9.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "Babel helper functions for implementing ES6 module transformations", - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-module-transforms", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/package.json b/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-optimise-call-expression/package.json b/node_modules/@babel/helper-optimise-call-expression/package.json index 56f24a541..d0aecd100 100644 --- a/node_modules/@babel/helper-optimise-call-expression/package.json +++ b/node_modules/@babel/helper-optimise-call-expression/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-optimise-call-expression", + "version": "7.8.3", "description": "Helper function to optimise call expression", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-optimise-call-expression", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json index b1b1e36fa..725a22c46 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json @@ -1,35 +1,27 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/generator", + "version": "7.9.4", + "description": "Turns an AST into code.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-generator", + "main": "lib/index.js", + "files": [ + "lib" + ], "dependencies": { "@babel/types": "^7.9.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" }, - "deprecated": false, - "description": "Turns an AST into code.", "devDependencies": { "@babel/helper-fixtures": "^7.8.6", "@babel/parser": "^7.9.4" }, - "files": [ - "lib" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/generator", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" - }, - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/package.json index 93313eef7..26a91f0c7 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/package.json @@ -1,22 +1,17 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/helper-get-function-arity": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-function-name", + "version": "7.8.3", "description": "Helper function to change the property 'name' of every function", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-function-name", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + "main": "lib/index.js", + "dependencies": { + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/package.json index 61c213999..119889435 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-get-function-arity", + "version": "7.8.3", "description": "Helper function to get function arity", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-get-function-arity", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/package.json index 013034cb3..c8805560c 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, - "description": ">", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "license": "MIT", - "main": "lib/index.js", "name": "@babel/helper-split-export-declaration", + "version": "7.8.3", + "description": "", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration", + "license": "MIT", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json index f4ecd5f2a..2cd8265e5 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.9.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, - "deprecated": false, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "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.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json index ce08ec92b..50f9b985f 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json @@ -1,30 +1,13 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/parser", + "version": "7.9.4", "description": "A JavaScript parser", - "devDependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/helper-fixtures": "^7.8.6", - "@babel/helper-validator-identifier": "^7.9.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "files": [ - "bin", - "lib", - "typings" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, "keywords": [ "babel", "javascript", @@ -33,16 +16,25 @@ "ecmascript", "@babel/parser" ], - "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-parser", "main": "lib/index.js", - "name": "@babel/parser", - "publishConfig": { - "access": "public" + "types": "typings/babel-parser.d.ts", + "files": [ + "bin", + "lib", + "typings" + ], + "engines": { + "node": ">=6.0.0" + }, + "devDependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/helper-fixtures": "^7.8.6", + "@babel/helper-validator-identifier": "^7.9.0", + "charcodes": "^0.2.0" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + "bin": { + "parser": "./bin/babel-parser.js" }, - "types": "typings/babel-parser.d.ts", - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json index baf3b844f..2a47128eb 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/traverse", + "version": "7.9.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -15,22 +21,8 @@ "globals": "^11.1.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/traverse", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json b/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/debug/package.json b/node_modules/@babel/helper-replace-supers/node_modules/debug/package.json index 7bc94f7f0..a71916fc4 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/debug/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/debug/package.json @@ -1,29 +1,44 @@ { - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" + "name": "debug", + "version": "4.1.1", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" }, - "bundleDependencies": false, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" + ], + "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" }, - "deprecated": false, - "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", @@ -42,38 +57,7 @@ "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" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/ms/package.json b/node_modules/@babel/helper-replace-supers/node_modules/ms/package.json index 7192a30c5..3408eef7c 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/ms/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/ms/package.json @@ -1,16 +1,16 @@ { - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -19,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -31,16 +26,12 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json b/node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json index 9e2674cec..23449cf21 100644 --- a/node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json +++ b/node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json @@ -1,167 +1,52 @@ { - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.5.7", + "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 " ], - "deprecated": false, - "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", "lib/", @@ -170,19 +55,18 @@ "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.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } \ No newline at end of file diff --git a/node_modules/@babel/helper-replace-supers/package.json b/node_modules/@babel/helper-replace-supers/package.json index 8eacc6aa4..a1fc4bf05 100644 --- a/node_modules/@babel/helper-replace-supers/package.json +++ b/node_modules/@babel/helper-replace-supers/package.json @@ -1,23 +1,18 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.8.3", - "@babel/helper-optimise-call-expression": "^7.8.3", - "@babel/traverse": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/helper-replace-supers", + "version": "7.8.6", "description": "Helper function to replace supers", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-replace-supers", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" + "main": "lib/index.js", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.8.3", + "@babel/helper-optimise-call-expression": "^7.8.3", + "@babel/traverse": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json b/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json b/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json index f4ecd5f2a..2cd8265e5 100644 --- a/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json +++ b/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.9.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, - "deprecated": false, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "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.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json b/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json index ce08ec92b..50f9b985f 100644 --- a/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json +++ b/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json @@ -1,30 +1,13 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/parser", + "version": "7.9.4", "description": "A JavaScript parser", - "devDependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/helper-fixtures": "^7.8.6", - "@babel/helper-validator-identifier": "^7.9.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "files": [ - "bin", - "lib", - "typings" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, "keywords": [ "babel", "javascript", @@ -33,16 +16,25 @@ "ecmascript", "@babel/parser" ], - "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-parser", "main": "lib/index.js", - "name": "@babel/parser", - "publishConfig": { - "access": "public" + "types": "typings/babel-parser.d.ts", + "files": [ + "bin", + "lib", + "typings" + ], + "engines": { + "node": ">=6.0.0" + }, + "devDependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/helper-fixtures": "^7.8.6", + "@babel/helper-validator-identifier": "^7.9.0", + "charcodes": "^0.2.0" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + "bin": { + "parser": "./bin/babel-parser.js" }, - "types": "typings/babel-parser.d.ts", - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json b/node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json +++ b/node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json b/node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json +++ b/node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/helper-simple-access/package.json b/node_modules/@babel/helper-simple-access/package.json index 3bcc4160a..4944dd3df 100644 --- a/node_modules/@babel/helper-simple-access/package.json +++ b/node_modules/@babel/helper-simple-access/package.json @@ -1,26 +1,18 @@ { - "author": { - "name": "Logan Smyth", - "email": "loganfsmyth@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/template": "^7.8.3", - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-simple-access", + "version": "7.8.3", "description": "Babel helper for ensuring that access to a given value is performed through simple accesses", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "author": "Logan Smyth ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-simple-access", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access", + "main": "lib/index.js", + "dependencies": { + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/helper-validator-identifier/package.json b/node_modules/@babel/helper-validator-identifier/package.json index bdc69e6c6..82a319f66 100644 --- a/node_modules/@babel/helper-validator-identifier/package.json +++ b/node_modules/@babel/helper-validator-identifier/package.json @@ -1,22 +1,17 @@ { - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/helper-validator-identifier", + "version": "7.9.0", "description": "Validate identifier/keywords name", - "devDependencies": { - "charcodes": "^0.2.0", - "unicode-13.0.0": "^0.8.0" - }, - "exports": "./lib/index.js", - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-validator-identifier", "license": "MIT", - "main": "./lib/index.js", - "name": "@babel/helper-validator-identifier", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-validator-identifier" + "main": "./lib/index.js", + "exports": "./lib/index.js", + "devDependencies": { + "charcodes": "^0.2.0", + "unicode-13.0.0": "^0.8.0" }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/@babel/plugin-syntax-bigint/node_modules/@babel/helper-plugin-utils/package.json b/node_modules/@babel/plugin-syntax-bigint/node_modules/@babel/helper-plugin-utils/package.json index 378cacf16..4c76556d8 100644 --- a/node_modules/@babel/plugin-syntax-bigint/node_modules/@babel/helper-plugin-utils/package.json +++ b/node_modules/@babel/plugin-syntax-bigint/node_modules/@babel/helper-plugin-utils/package.json @@ -1,22 +1,14 @@ { - "author": { - "name": "Logan Smyth", - "email": "loganfsmyth@gmail.com" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/helper-plugin-utils", + "version": "7.8.3", "description": "General utilities for plugins to use", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "author": "Logan Smyth ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-plugin-utils", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils" - }, - "version": "7.8.3" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils", + "main": "lib/index.js", + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/@babel/plugin-syntax-bigint/package.json b/node_modules/@babel/plugin-syntax-bigint/package.json index 315eec143..3bbbf1377 100644 --- a/node_modules/@babel/plugin-syntax-bigint/package.json +++ b/node_modules/@babel/plugin-syntax-bigint/package.json @@ -1,28 +1,23 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "deprecated": false, + "name": "@babel/plugin-syntax-bigint", + "version": "7.8.3", "description": "Allow parsing of BigInt literals", - "devDependencies": { - "@babel/core": "^7.8.0" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint", + "license": "MIT", + "publishConfig": { + "access": "public" }, + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/plugin-syntax-bigint", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, "peerDependencies": { "@babel/core": "^7.0.0-0" }, - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint" - }, - "version": "7.8.3" + "devDependencies": { + "@babel/core": "^7.8.0" + } } \ No newline at end of file diff --git a/node_modules/@bcoe/v8-coverage/package.json b/node_modules/@bcoe/v8-coverage/package.json index 0e925b521..a7d0d3437 100644 --- a/node_modules/@bcoe/v8-coverage/package.json +++ b/node_modules/@bcoe/v8-coverage/package.json @@ -1,15 +1,22 @@ { - "author": { - "name": "Charles Samborski", - "email": "demurgos@demurgos.net", - "url": "https://demurgos.net" + "name": "@bcoe/v8-coverage", + "version": "0.2.3", + "description": "Helper functions for V8 coverage files.", + "author": "Charles Samborski (https://demurgos.net)", + "license": "MIT", + "main": "dist/lib/index", + "types": "dist/lib/index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/demurgos/v8-coverage.git" }, - "bugs": { - "url": "https://github.com/demurgos/v8-coverage/issues" + "homepage": "https://demurgos.github.io/v8-coverage", + "scripts": { + "prepare": "gulp all:tsconfig.json && gulp dist", + "pretest": "gulp lib:build", + "test": "gulp test", + "lint": "gulp :lint:fix" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Helper functions for V8 coverage files.", "devDependencies": { "@types/chai": "^4.1.4", "@types/gulp": "^4.0.5", @@ -25,10 +32,6 @@ "ts-node": "^8.3.0", "turbo-gulp": "^0.20.1" }, - "homepage": "https://demurgos.github.io/v8-coverage", - "license": "MIT", - "main": "dist/lib/index", - "name": "@bcoe/v8-coverage", "nyc": { "include": [ "build/test/lib/**/*.js", @@ -41,17 +44,5 @@ "extension": [ ".mjs" ] - }, - "repository": { - "type": "git", - "url": "git://github.com/demurgos/v8-coverage.git" - }, - "scripts": { - "lint": "gulp :lint:fix", - "prepare": "gulp all:tsconfig.json && gulp dist", - "pretest": "gulp lib:build", - "test": "gulp test" - }, - "types": "dist/lib/index.d.ts", - "version": "0.2.3" + } } \ No newline at end of file diff --git a/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json b/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json index 3c655ffa6..39a30757f 100644 --- a/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "bundleDependencies": false, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "walking", "path" ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "version": "4.1.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/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json b/node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json index 986900cb6..c3cac4f11 100644 --- a/node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-locate": "^4.1.0" - }, - "deprecated": false, - "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", @@ -41,14 +34,12 @@ "iterable", "iterator" ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-locate": "^4.1.0" }, - "version": "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/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json b/node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json index 8a59e550a..24bf49512 100644 --- a/node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-limit": "^2.2.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-limit": "^2.2.0" }, - "version": "4.1.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/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json b/node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json index 60065a59e..90039cc2f 100644 --- a/node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -35,14 +31,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json b/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json index 8660b280f..3d6db83a4 100644 --- a/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/resolve-from/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -32,14 +28,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@istanbuljs/load-nyc-config/package.json b/node_modules/@istanbuljs/load-nyc-config/package.json index 1bfe45942..8bad8592a 100644 --- a/node_modules/@istanbuljs/load-nyc-config/package.json +++ b/node_modules/@istanbuljs/load-nyc-config/package.json @@ -1,40 +1,38 @@ { + "name": "@istanbuljs/load-nyc-config", + "version": "1.0.0", + "description": "Utility function to load nyc configuration", + "main": "index.js", + "scripts": { + "pretest": "xo", + "test": "tap", + "snap": "npm test -- --snapshot", + "release": "standard-version" + }, + "engines": { + "node": ">=8" + }, + "license": "ISC", + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/load-nyc-config.git" + }, "bugs": { "url": "https://github.com/istanbuljs/load-nyc-config/issues" }, - "bundleDependencies": false, + "homepage": "https://github.com/istanbuljs/load-nyc-config#readme", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, - "deprecated": false, - "description": "Utility function to load nyc configuration", "devDependencies": { "semver": "^6.3.0", "standard-version": "^7.0.0", "tap": "^14.10.5", "xo": "^0.25.3" }, - "engines": { - "node": ">=8" - }, - "homepage": "https://github.com/istanbuljs/load-nyc-config#readme", - "license": "ISC", - "main": "index.js", - "name": "@istanbuljs/load-nyc-config", - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/load-nyc-config.git" - }, - "scripts": { - "pretest": "xo", - "release": "standard-version", - "snap": "npm test -- --snapshot", - "test": "tap" - }, - "version": "1.0.0", "xo": { "ignores": [ "test/fixtures/extends/invalid.*" diff --git a/node_modules/@istanbuljs/schema/package.json b/node_modules/@istanbuljs/schema/package.json index 0844f302e..ba9a63e84 100644 --- a/node_modules/@istanbuljs/schema/package.json +++ b/node_modules/@istanbuljs/schema/package.json @@ -1,34 +1,30 @@ { - "author": { - "name": "Corey Farrell" - }, - "bugs": { - "url": "https://github.com/istanbuljs/schema/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@istanbuljs/schema", + "version": "0.1.2", "description": "Schemas describing various structures used by nyc and istanbuljs", - "devDependencies": { - "standard-version": "^7.0.0", - "tap": "^14.6.7", - "xo": "^0.25.3" + "main": "index.js", + "scripts": { + "release": "standard-version --sign", + "pretest": "xo", + "test": "tap", + "snap": "npm test -- --snapshot" }, "engines": { "node": ">=8" }, - "homepage": "https://github.com/istanbuljs/schema#readme", + "author": "Corey Farrell", "license": "MIT", - "main": "index.js", - "name": "@istanbuljs/schema", "repository": { "type": "git", "url": "git+https://github.com/istanbuljs/schema.git" }, - "scripts": { - "pretest": "xo", - "release": "standard-version --sign", - "snap": "npm test -- --snapshot", - "test": "tap" + "bugs": { + "url": "https://github.com/istanbuljs/schema/issues" }, - "version": "0.1.2" + "homepage": "https://github.com/istanbuljs/schema#readme", + "devDependencies": { + "standard-version": "^7.0.0", + "tap": "^14.6.7", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/@jest/console/node_modules/ansi-styles/package.json b/node_modules/@jest/console/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/console/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/console/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/console/node_modules/chalk/package.json b/node_modules/@jest/console/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/console/node_modules/chalk/package.json +++ b/node_modules/@jest/console/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/console/node_modules/color-convert/package.json b/node_modules/@jest/console/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/console/node_modules/color-convert/package.json +++ b/node_modules/@jest/console/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/console/node_modules/color-name/package.json b/node_modules/@jest/console/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/console/node_modules/color-name/package.json +++ b/node_modules/@jest/console/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/console/node_modules/has-flag/package.json b/node_modules/@jest/console/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/console/node_modules/has-flag/package.json +++ b/node_modules/@jest/console/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/console/node_modules/supports-color/package.json b/node_modules/@jest/console/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/console/node_modules/supports-color/package.json +++ b/node_modules/@jest/console/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/console/package.json b/node_modules/@jest/console/package.json index f6293f7a5..d12ab6045 100644 --- a/node_modules/@jest/console/package.json +++ b/node_modules/@jest/console/package.json @@ -1,41 +1,35 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/console", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-console" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/source-map": "^25.2.1", "chalk": "^3.0.0", "jest-util": "^25.2.3", "slash": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/console", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-console" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/@jest/types/package.json b/node_modules/@jest/core/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/core/node_modules/@jest/types/package.json +++ b/node_modules/@jest/core/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/@types/yargs/package.json b/node_modules/@jest/core/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/core/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/core/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/ansi-styles/package.json b/node_modules/@jest/core/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/core/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/core/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/core/node_modules/braces/package.json b/node_modules/@jest/core/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/@jest/core/node_modules/braces/package.json +++ b/node_modules/@jest/core/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/chalk/package.json b/node_modules/@jest/core/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/core/node_modules/chalk/package.json +++ b/node_modules/@jest/core/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/core/node_modules/color-convert/package.json b/node_modules/@jest/core/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/core/node_modules/color-convert/package.json +++ b/node_modules/@jest/core/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/color-name/package.json b/node_modules/@jest/core/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/core/node_modules/color-name/package.json +++ b/node_modules/@jest/core/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/fill-range/package.json b/node_modules/@jest/core/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/@jest/core/node_modules/fill-range/package.json +++ b/node_modules/@jest/core/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/has-flag/package.json b/node_modules/@jest/core/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/core/node_modules/has-flag/package.json +++ b/node_modules/@jest/core/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/is-number/package.json b/node_modules/@jest/core/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/@jest/core/node_modules/is-number/package.json +++ b/node_modules/@jest/core/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/micromatch/package.json b/node_modules/@jest/core/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/@jest/core/node_modules/micromatch/package.json +++ b/node_modules/@jest/core/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/supports-color/package.json b/node_modules/@jest/core/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/core/node_modules/supports-color/package.json +++ b/node_modules/@jest/core/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/core/node_modules/to-regex-range/package.json b/node_modules/@jest/core/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/@jest/core/node_modules/to-regex-range/package.json +++ b/node_modules/@jest/core/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/@jest/core/package.json b/node_modules/@jest/core/package.json index 90c6a4bed..fba97c669 100644 --- a/node_modules/@jest/core/package.json +++ b/node_modules/@jest/core/package.json @@ -1,8 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/core", + "description": "Delightful JavaScript Testing.", + "version": "25.2.4", + "main": "build/jest.js", + "types": "build/jest.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/reporters": "^25.2.4", @@ -33,8 +41,6 @@ "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, - "deprecated": false, - "description": "Delightful JavaScript Testing.", "devDependencies": { "@jest/test-sequencer": "^25.2.4", "@types/exit": "^0.1.30", @@ -47,8 +53,16 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest", + "directory": "packages/jest-core" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, "homepage": "https://jestjs.io/", + "license": "MIT", "keywords": [ "ava", "babel", @@ -75,24 +89,8 @@ "typescript", "watch" ], - "license": "MIT", - "main": "build/jest.js", - "name": "@jest/core", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-core" - }, - "types": "build/jest.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/@jest/types/package.json b/node_modules/@jest/environment/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/environment/node_modules/@jest/types/package.json +++ b/node_modules/@jest/environment/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/@types/yargs/package.json b/node_modules/@jest/environment/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/environment/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/environment/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/ansi-styles/package.json b/node_modules/@jest/environment/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/environment/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/environment/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/environment/node_modules/chalk/package.json b/node_modules/@jest/environment/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/environment/node_modules/chalk/package.json +++ b/node_modules/@jest/environment/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/environment/node_modules/color-convert/package.json b/node_modules/@jest/environment/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/environment/node_modules/color-convert/package.json +++ b/node_modules/@jest/environment/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/color-name/package.json b/node_modules/@jest/environment/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/environment/node_modules/color-name/package.json +++ b/node_modules/@jest/environment/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/has-flag/package.json b/node_modules/@jest/environment/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/environment/node_modules/has-flag/package.json +++ b/node_modules/@jest/environment/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/environment/node_modules/supports-color/package.json b/node_modules/@jest/environment/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/environment/node_modules/supports-color/package.json +++ b/node_modules/@jest/environment/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/environment/package.json b/node_modules/@jest/environment/package.json index e589f3e28..274472d05 100644 --- a/node_modules/@jest/environment/package.json +++ b/node_modules/@jest/environment/package.json @@ -1,40 +1,34 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/environment", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/fake-timers": "^25.2.4", "@jest/types": "^25.2.3", "jest-mock": "^25.2.3" }, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/environment", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/@jest/types/package.json b/node_modules/@jest/fake-timers/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/fake-timers/node_modules/@jest/types/package.json +++ b/node_modules/@jest/fake-timers/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json b/node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json b/node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/fake-timers/node_modules/chalk/package.json b/node_modules/@jest/fake-timers/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/fake-timers/node_modules/chalk/package.json +++ b/node_modules/@jest/fake-timers/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/fake-timers/node_modules/color-convert/package.json b/node_modules/@jest/fake-timers/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/fake-timers/node_modules/color-convert/package.json +++ b/node_modules/@jest/fake-timers/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/color-name/package.json b/node_modules/@jest/fake-timers/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/fake-timers/node_modules/color-name/package.json +++ b/node_modules/@jest/fake-timers/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/has-flag/package.json b/node_modules/@jest/fake-timers/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/fake-timers/node_modules/has-flag/package.json +++ b/node_modules/@jest/fake-timers/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/node_modules/supports-color/package.json b/node_modules/@jest/fake-timers/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/fake-timers/node_modules/supports-color/package.json +++ b/node_modules/@jest/fake-timers/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/fake-timers/package.json b/node_modules/@jest/fake-timers/package.json index 0ecc1200d..302a8c398 100644 --- a/node_modules/@jest/fake-timers/package.json +++ b/node_modules/@jest/fake-timers/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/fake-timers", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-fake-timers" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "jest-message-util": "^25.2.4", @@ -10,7 +23,6 @@ "jest-util": "^25.2.3", "lolex": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/lolex": "^5.1.0", "@types/node": "*" @@ -18,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/fake-timers", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-fake-timers" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/@jest/types/package.json b/node_modules/@jest/reporters/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/reporters/node_modules/@jest/types/package.json +++ b/node_modules/@jest/reporters/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/@types/yargs/package.json b/node_modules/@jest/reporters/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/reporters/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/reporters/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/ansi-styles/package.json b/node_modules/@jest/reporters/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/reporters/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/reporters/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/reporters/node_modules/chalk/package.json b/node_modules/@jest/reporters/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/reporters/node_modules/chalk/package.json +++ b/node_modules/@jest/reporters/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/reporters/node_modules/color-convert/package.json b/node_modules/@jest/reporters/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/reporters/node_modules/color-convert/package.json +++ b/node_modules/@jest/reporters/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/color-name/package.json b/node_modules/@jest/reporters/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/reporters/node_modules/color-name/package.json +++ b/node_modules/@jest/reporters/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/has-flag/package.json b/node_modules/@jest/reporters/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/reporters/node_modules/has-flag/package.json +++ b/node_modules/@jest/reporters/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/reporters/node_modules/supports-color/package.json b/node_modules/@jest/reporters/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/reporters/node_modules/supports-color/package.json +++ b/node_modules/@jest/reporters/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/reporters/package.json b/node_modules/@jest/reporters/package.json index 97f4ff51d..a71aa1b4d 100644 --- a/node_modules/@jest/reporters/package.json +++ b/node_modules/@jest/reporters/package.json @@ -1,8 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/reporters", + "description": "Jest's reporters", + "version": "25.2.4", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^25.2.3", @@ -22,15 +30,12 @@ "jest-resolve": "^25.2.3", "jest-util": "^25.2.3", "jest-worker": "^25.2.1", - "node-notifier": "^6.0.0", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^3.1.0", "terminal-link": "^2.0.0", "v8-to-istanbul": "^4.0.1" }, - "deprecated": false, - "description": "Jest's reporters", "devDependencies": { "@types/exit": "^0.1.30", "@types/glob": "^7.1.1", @@ -43,32 +48,24 @@ "mock-fs": "^4.4.1", "strip-ansi": "^6.0.0" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://jestjs.io/", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/reporters", "optionalDependencies": { "node-notifier": "^6.0.0" }, - "publishConfig": { - "access": "public" + "engines": { + "node": ">= 8.3" }, "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest", "directory": "packages/jest-reporters" }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "homepage": "https://jestjs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/source-map/package.json b/node_modules/@jest/source-map/package.json index 7c9dc7ebf..94034e09d 100644 --- a/node_modules/@jest/source-map/package.json +++ b/node_modules/@jest/source-map/package.json @@ -1,40 +1,34 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/source-map", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-source-map" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.3", "source-map": "^0.6.0" }, - "deprecated": false, "devDependencies": { "@types/graceful-fs": "^4.1.2" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/source-map", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-source-map" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/@jest/types/package.json b/node_modules/@jest/test-result/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/test-result/node_modules/@jest/types/package.json +++ b/node_modules/@jest/test-result/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/@types/yargs/package.json b/node_modules/@jest/test-result/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/test-result/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/test-result/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/ansi-styles/package.json b/node_modules/@jest/test-result/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/test-result/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/test-result/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/test-result/node_modules/chalk/package.json b/node_modules/@jest/test-result/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/test-result/node_modules/chalk/package.json +++ b/node_modules/@jest/test-result/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/test-result/node_modules/color-convert/package.json b/node_modules/@jest/test-result/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/test-result/node_modules/color-convert/package.json +++ b/node_modules/@jest/test-result/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/color-name/package.json b/node_modules/@jest/test-result/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/test-result/node_modules/color-name/package.json +++ b/node_modules/@jest/test-result/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/has-flag/package.json b/node_modules/@jest/test-result/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/test-result/node_modules/has-flag/package.json +++ b/node_modules/@jest/test-result/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/test-result/node_modules/supports-color/package.json b/node_modules/@jest/test-result/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/test-result/node_modules/supports-color/package.json +++ b/node_modules/@jest/test-result/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/test-result/package.json b/node_modules/@jest/test-result/package.json index 00442d76f..f170ce10a 100644 --- a/node_modules/@jest/test-result/package.json +++ b/node_modules/@jest/test-result/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/test-result", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-test-result" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/transform": "^25.2.4", @@ -10,30 +23,11 @@ "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, - "deprecated": false, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/test-result", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-test-result" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/test-sequencer/package.json b/node_modules/@jest/test-sequencer/package.json index 4479f806e..3dfae7a75 100644 --- a/node_modules/@jest/test-sequencer/package.json +++ b/node_modules/@jest/test-sequencer/package.json @@ -1,31 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@jest/test-result": "^25.2.4", - "jest-haste-map": "^25.2.3", - "jest-runner": "^25.2.4", - "jest-runtime": "^25.2.4" - }, - "deprecated": false, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", "name": "@jest/test-sequencer", - "publishConfig": { - "access": "public" - }, + "version": "25.2.4", "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest.git", "directory": "packages/jest-test-sequencer" }, + "license": "MIT", + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -34,5 +16,17 @@ ] } }, - "version": "25.2.4" + "dependencies": { + "@jest/test-result": "^25.2.4", + "jest-haste-map": "^25.2.3", + "jest-runner": "^25.2.4", + "jest-runtime": "^25.2.4" + }, + "engines": { + "node": ">= 8.3" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/@jest/types/package.json b/node_modules/@jest/transform/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/@jest/transform/node_modules/@jest/types/package.json +++ b/node_modules/@jest/transform/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/@types/yargs/package.json b/node_modules/@jest/transform/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/@jest/transform/node_modules/@types/yargs/package.json +++ b/node_modules/@jest/transform/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/ansi-styles/package.json b/node_modules/@jest/transform/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/@jest/transform/node_modules/ansi-styles/package.json +++ b/node_modules/@jest/transform/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/@jest/transform/node_modules/braces/package.json b/node_modules/@jest/transform/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/@jest/transform/node_modules/braces/package.json +++ b/node_modules/@jest/transform/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/chalk/package.json b/node_modules/@jest/transform/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/@jest/transform/node_modules/chalk/package.json +++ b/node_modules/@jest/transform/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/@jest/transform/node_modules/color-convert/package.json b/node_modules/@jest/transform/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/@jest/transform/node_modules/color-convert/package.json +++ b/node_modules/@jest/transform/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/color-name/package.json b/node_modules/@jest/transform/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/@jest/transform/node_modules/color-name/package.json +++ b/node_modules/@jest/transform/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/fill-range/package.json b/node_modules/@jest/transform/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/@jest/transform/node_modules/fill-range/package.json +++ b/node_modules/@jest/transform/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/has-flag/package.json b/node_modules/@jest/transform/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/@jest/transform/node_modules/has-flag/package.json +++ b/node_modules/@jest/transform/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/is-number/package.json b/node_modules/@jest/transform/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/@jest/transform/node_modules/is-number/package.json +++ b/node_modules/@jest/transform/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/micromatch/package.json b/node_modules/@jest/transform/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/@jest/transform/node_modules/micromatch/package.json +++ b/node_modules/@jest/transform/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/supports-color/package.json b/node_modules/@jest/transform/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/@jest/transform/node_modules/supports-color/package.json +++ b/node_modules/@jest/transform/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/@jest/transform/node_modules/to-regex-range/package.json b/node_modules/@jest/transform/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/@jest/transform/node_modules/to-regex-range/package.json +++ b/node_modules/@jest/transform/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/@jest/transform/package.json b/node_modules/@jest/transform/package.json index fb161f2a4..6c096ce4c 100644 --- a/node_modules/@jest/transform/package.json +++ b/node_modules/@jest/transform/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/transform", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-transform" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^25.2.3", @@ -21,7 +34,6 @@ "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__core": "^7.1.0", "@types/convert-source-map": "^1.5.1", @@ -35,26 +47,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/transform", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-transform" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ 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 7587360bc..5add1ac3d 100644 --- a/node_modules/@octokit/auth-token/package.json +++ b/node_modules/@octokit/auth-token/package.json @@ -1,11 +1,28 @@ { + "name": "@octokit/auth-token", + "description": "GitHub API token authentication for browsers and Node.js", + "version": "2.4.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "octokit", + "authentication", + "api" + ], + "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", @@ -20,31 +37,11 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/core/package.json b/node_modules/@octokit/core/package.json index 866d81641..5eab6c145 100644 --- a/node_modules/@octokit/core/package.json +++ b/node_modules/@octokit/core/package.json @@ -1,7 +1,22 @@ { - "bugs": { - "url": "https://github.com/octokit/core.js/issues" - }, + "name": "@octokit/core", + "description": "Extendable client for GitHub's REST & GraphQL APIs", + "version": "2.4.2", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "sdk", + "toolkit" + ], + "repository": "https://github.com/octokit/core.js", "dependencies": { "@octokit/auth-token": "^2.4.0", "@octokit/graphql": "^4.3.1", @@ -10,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", @@ -33,32 +47,11 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/endpoint/package.json b/node_modules/@octokit/endpoint/package.json index 3e86c9f9d..49e716c34 100644 --- a/node_modules/@octokit/endpoint/package.json +++ b/node_modules/@octokit/endpoint/package.json @@ -1,13 +1,33 @@ { + "name": "@octokit/endpoint", + "description": "Turns REST API endpoints into generic request options", + "version": "5.5.3", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "rest" + ], + "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", @@ -21,31 +41,11 @@ "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" } \ 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 2deee01c7..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 @@ -1,11 +1,19 @@ { - "bugs": { - "url": "https://github.com/gr2m/universal-user-agent/issues" - }, + "name": "universal-user-agent", + "description": "Get a user agent string in both browser and node", + "version": "4.0.1", + "license": "ISC", + "files": [ + "dist-*/", + "bin/" + ], + "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", @@ -18,23 +26,8 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/graphql/package.json b/node_modules/@octokit/graphql/package.json index 23e844af8..958b0c83e 100644 --- a/node_modules/@octokit/graphql/package.json +++ b/node_modules/@octokit/graphql/package.json @@ -1,14 +1,33 @@ { + "name": "@octokit/graphql", + "description": "GitHub GraphQL API client for browsers and Node", + "version": "4.3.1", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "graphql" + ], + "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", @@ -25,30 +44,11 @@ "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" } \ 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 a7b9a4f28..2c0d4c9f4 100644 --- a/node_modules/@octokit/plugin-paginate-rest/package.json +++ b/node_modules/@octokit/plugin-paginate-rest/package.json @@ -1,11 +1,24 @@ { - "bugs": { - "url": "https://github.com/octokit/plugin-paginate-rest.js/issues" - }, + "name": "@octokit/plugin-paginate-rest", + "description": "Octokit plugin to paginate REST API endpoint responses", + "version": "2.0.2", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "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", @@ -23,31 +36,11 @@ "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" } \ 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 a828561fb..ff6a0b1d3 100644 --- a/node_modules/@octokit/plugin-request-log/package.json +++ b/node_modules/@octokit/plugin-request-log/package.json @@ -1,9 +1,22 @@ { - "bugs": { - "url": "https://github.com/octokit/plugin-request-log.js/issues" - }, - "dependencies": {}, + "name": "@octokit/plugin-request-log", "description": "Log all requests and request errors", + "version": "1.0.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "repository": "https://github.com/octokit/plugin-request-log.js", + "dependencies": {}, "devDependencies": { "@octokit/core": "^2.1.2", "@pika/pack": "^0.5.0", @@ -21,31 +34,11 @@ "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" } \ 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 fe7208a98..261fbec2b 100644 --- a/node_modules/@octokit/plugin-rest-endpoint-methods/package.json +++ b/node_modules/@octokit/plugin-rest-endpoint-methods/package.json @@ -1,12 +1,25 @@ { - "bugs": { - "url": "https://github.com/octokit/plugin-rest-endpoint-methods.js/issues" - }, + "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/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "github", + "api", + "sdk", + "toolkit" + ], + "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", @@ -34,31 +47,11 @@ "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" } \ 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 d893f98a9..0938401ac 100644 --- a/node_modules/@octokit/request-error/package.json +++ b/node_modules/@octokit/request-error/package.json @@ -1,13 +1,33 @@ { + "name": "@octokit/request-error", + "description": "Error class for Octokit request errors", + "version": "1.2.1", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "error" + ], + "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", @@ -24,31 +44,11 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/request/package.json b/node_modules/@octokit/request/package.json index ac6337941..e14ca5a44 100644 --- a/node_modules/@octokit/request/package.json +++ b/node_modules/@octokit/request/package.json @@ -1,7 +1,28 @@ { + "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/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "api", + "request" + ], + "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", @@ -12,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", @@ -34,31 +54,11 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/rest/package.json b/node_modules/@octokit/rest/package.json index d0f425a47..6cf0f21e4 100644 --- a/node_modules/@octokit/rest/package.json +++ b/node_modules/@octokit/rest/package.json @@ -1,7 +1,20 @@ { - "bugs": { - "url": "https://github.com/octokit/rest.js/issues" - }, + "name": "@octokit/rest", + "description": "GitHub REST API client for Node.js", + "version": "17.1.0", + "license": "MIT", + "files": [ + "dist-*/", + "bin/" + ], + "pika": true, + "sideEffects": false, + "keywords": [ + "octokit", + "github", + "rest", + "api-client" + ], "contributors": [ { "name": "Mike de Boer", @@ -20,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", @@ -45,31 +58,11 @@ "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" } \ No newline at end of file diff --git a/node_modules/@octokit/types/package.json b/node_modules/@octokit/types/package.json index f4a7d9c23..8176f97b4 100644 --- a/node_modules/@octokit/types/package.json +++ b/node_modules/@octokit/types/package.json @@ -1,15 +1,34 @@ { - "author": { - "name": "Gregor Martynus", - "url": "https://twitter.com/gr2m" - }, - "bugs": { - "url": "https://github.com/octokit/types.ts/issues" - }, - "dependencies": { - "@types/node": ">= 8" + "name": "@octokit/types", + "version": "2.5.0", + "publishConfig": { + "access": "public" }, "description": "Shared TypeScript definitions for Octokit projects", + "main": "src/index.ts", + "files": [ + "src/" + ], + "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" + }, + "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", @@ -24,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", @@ -57,19 +59,7 @@ ] ] }, - "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" + } } \ No newline at end of file diff --git a/node_modules/@sinonjs/commons/package.json b/node_modules/@sinonjs/commons/package.json index 5f6931604..1b217b959 100644 --- a/node_modules/@sinonjs/commons/package.json +++ b/node_modules/@sinonjs/commons/package.json @@ -1,14 +1,33 @@ { + "name": "@sinonjs/commons", + "version": "1.7.1", + "description": "Simple functions shared among the sinon end user libraries", + "main": "lib/index.js", + "scripts": { + "lint": "eslint .", + "precommit": "lint-staged", + "test": "mocha --recursive -R dot \"lib/**/*.test.js\"", + "test-check-coverage": "npm run test-coverage && nyc check-coverage --branches 100 --functions 100 --lines 100", + "test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test", + "preversion": "npm run test-check-coverage", + "version": "changes --commits --footer", + "postversion": "git push --follow-tags && npm publish" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sinonjs/commons.git" + }, "author": "", + "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/sinonjs/commons/issues" }, - "bundleDependencies": false, - "dependencies": { - "type-detect": "4.0.8" + "homepage": "https://github.com/sinonjs/commons#readme", + "lint-staged": { + "*.js": [ + "eslint" + ] }, - "deprecated": false, - "description": "Simple functions shared among the sinon end user libraries", "devDependencies": { "@sinonjs/referee-sinon": "6.0.1", "@studio/changes": "^2.0.0", @@ -28,28 +47,7 @@ "nyc": "15.0.0", "prettier": "^1.14.3" }, - "homepage": "https://github.com/sinonjs/commons#readme", - "license": "BSD-3-Clause", - "lint-staged": { - "*.js": [ - "eslint" - ] - }, - "main": "lib/index.js", - "name": "@sinonjs/commons", - "repository": { - "type": "git", - "url": "git+https://github.com/sinonjs/commons.git" - }, - "scripts": { - "lint": "eslint .", - "postversion": "git push --follow-tags && npm publish", - "precommit": "lint-staged", - "preversion": "npm run test-check-coverage", - "test": "mocha --recursive -R dot \"lib/**/*.test.js\"", - "test-check-coverage": "npm run test-coverage && nyc check-coverage --branches 100 --functions 100 --lines 100", - "test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test", - "version": "changes --commits --footer" - }, - "version": "1.7.1" + "dependencies": { + "type-detect": "4.0.8" + } } \ 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 e51c1af26..de213731b 100644 --- a/node_modules/@types/color-name/package.json +++ b/node_modules/@types/color-name/package.json @@ -1,28 +1,23 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "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" + "url": "https://github.com/Ailrun", + "githubUsername": "Ailrun" } ], - "dependencies": {}, - "deprecated": false, - "description": "TypeScript definitions for color-name", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/color-name", + "types": "index", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "typeScriptVersion": "2.0", - "types": "index", + "dependencies": {}, "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7", - "version": "1.1.1" + "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 fc3f8a115..5712e3e9d 100644 --- a/node_modules/@types/jszip/package.json +++ b/node_modules/@types/jszip/package.json @@ -1,35 +1,31 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/jszip", + "version": "3.1.6", + "description": "TypeScript definitions for JSZip", + "license": "MIT", "contributors": [ { "name": "mzeiher", - "url": "https://github.com/mzeiher" + "url": "https://github.com/mzeiher", + "githubUsername": "mzeiher" }, { "name": "forabi", - "url": "https://github.com/forabi" + "url": "https://github.com/forabi", + "githubUsername": "forabi" } ], - "dependencies": { - "@types/node": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for JSZip", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/jszip", + "types": "index", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/jszip" }, "scripts": {}, - "typeScriptVersion": "2.3", - "types": "index", + "dependencies": { + "@types/node": "*" + }, "typesPublisherContentHash": "b39880f7d79a626d32182cc6886711e3db5e4728ace6005cbfd57457fee69d85", - "version": "3.1.6" + "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 7de04b1ad..71fc5eae5 100644 --- a/node_modules/@types/long/package.json +++ b/node_modules/@types/long/package.json @@ -1,27 +1,22 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/long", + "version": "4.0.0", + "description": "TypeScript definitions for long.js", + "license": "MIT", "contributors": [ { "name": "Peter Kooijmans", - "url": "https://github.com/peterkooijmans" + "url": "https://github.com/peterkooijmans", + "githubUsername": "peterkooijmans" } ], - "dependencies": {}, - "deprecated": false, - "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" + "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, - "typeScriptVersion": "2.0", + "dependencies": {}, "typesPublisherContentHash": "cc3246302180c8c161d2e2c0c3f0a419226efa475d2cd5afbe51986d60cd8287", - "version": "4.0.0" + "typeScriptVersion": "2.0" } \ No newline at end of file diff --git a/node_modules/@types/prettier/package.json b/node_modules/@types/prettier/package.json index 57c2c2184..738490670 100644 --- a/node_modules/@types/prettier/package.json +++ b/node_modules/@types/prettier/package.json @@ -1,41 +1,39 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/prettier", + "version": "1.19.1", + "description": "TypeScript definitions for prettier", + "license": "MIT", "contributors": [ { "name": "Ika", - "url": "https://github.com/ikatyang" + "url": "https://github.com/ikatyang", + "githubUsername": "ikatyang" }, { "name": "Ifiok Jr.", - "url": "https://github.com/ifiokjr" + "url": "https://github.com/ifiokjr", + "githubUsername": "ifiokjr" }, { "name": "Florian Keller", - "url": "https://github.com/ffflorian" + "url": "https://github.com/ffflorian", + "githubUsername": "ffflorian" }, { "name": "Sosuke Suzuki", - "url": "https://github.com/sosukesuzuki" + "url": "https://github.com/sosukesuzuki", + "githubUsername": "sosukesuzuki" } ], - "dependencies": {}, - "deprecated": false, - "description": "TypeScript definitions for prettier", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/prettier", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/prettier" }, "scripts": {}, - "typeScriptVersion": "2.8", - "types": "index.d.ts", + "dependencies": {}, "typesPublisherContentHash": "96ef5cd93f13c2840478ad6701394292ed47245d3340dd8315789b0a6892d1e4", - "version": "1.19.1" + "typeScriptVersion": "2.8" } \ No newline at end of file diff --git a/node_modules/acorn-globals/node_modules/acorn/package.json b/node_modules/acorn-globals/node_modules/acorn/package.json index 8f82fb19f..162d37d72 100644 --- a/node_modules/acorn-globals/node_modules/acorn/package.json +++ b/node_modules/acorn-globals/node_modules/acorn/package.json @@ -1,41 +1,38 @@ { - "bin": { - "acorn": "./bin/acorn" - }, - "bugs": { - "url": "https://github.com/acornjs/acorn/issues" - }, + "name": "acorn", "description": "ECMAScript parser", + "homepage": "https://github.com/acornjs/acorn", + "main": "dist/acorn.js", + "module": "dist/acorn.mjs", + "version": "6.4.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", - "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" }, - "version": "6.4.1" + "bin": { + "acorn": "./bin/acorn" + } } \ No newline at end of file diff --git a/node_modules/acorn/package.json b/node_modules/acorn/package.json index 39139962f..40a5beda7 100644 --- a/node_modules/acorn/package.json +++ b/node_modules/acorn/package.json @@ -1,44 +1,39 @@ { - "bin": { - "acorn": "bin/acorn" - }, - "bugs": { - "url": "https://github.com/acornjs/acorn/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "acorn", "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", - "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" + } } \ No newline at end of file diff --git a/node_modules/ansi-escapes/package.json b/node_modules/ansi-escapes/package.json index 7af795b04..d63d316d5 100644 --- a/node_modules/ansi-escapes/package.json +++ b/node_modules/ansi-escapes/package.json @@ -1,33 +1,25 @@ { + "name": "ansi-escapes", + "version": "4.3.1", + "description": "ANSI escape codes for manipulating the terminal", + "license": "MIT", + "repository": "sindresorhus/ansi-escapes", + "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/ansi-escapes/issues" - }, - "bundleDependencies": false, - "dependencies": { - "type-fest": "^0.11.0" - }, - "deprecated": false, - "description": "ANSI escape codes for manipulating the terminal", - "devDependencies": { - "@types/node": "^13.7.7", - "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/ansi-escapes#readme", "keywords": [ "ansi", "terminal", @@ -53,14 +45,13 @@ "iterm", "iterm2" ], - "license": "MIT", - "name": "ansi-escapes", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/ansi-escapes.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "type-fest": "^0.11.0" }, - "version": "4.3.1" + "devDependencies": { + "@types/node": "^13.7.7", + "ava": "^2.1.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/argparse/package.json b/node_modules/argparse/package.json index 12f9cf139..b16de2518 100644 --- a/node_modules/argparse/package.json +++ b/node_modules/argparse/package.json @@ -1,32 +1,7 @@ { - "bugs": { - "url": "https://github.com/nodeca/argparse/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Eugene Shkuropat" - }, - { - "name": "Paul Jacobson" - } - ], - "dependencies": { - "sprintf-js": "~1.0.2" - }, - "deprecated": false, + "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", @@ -34,14 +9,26 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/@jest/types/package.json b/node_modules/babel-jest/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/babel-jest/node_modules/@jest/types/package.json +++ b/node_modules/babel-jest/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/@types/yargs/package.json b/node_modules/babel-jest/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/babel-jest/node_modules/@types/yargs/package.json +++ b/node_modules/babel-jest/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/ansi-styles/package.json b/node_modules/babel-jest/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/babel-jest/node_modules/ansi-styles/package.json +++ b/node_modules/babel-jest/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/babel-jest/node_modules/chalk/package.json b/node_modules/babel-jest/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/babel-jest/node_modules/chalk/package.json +++ b/node_modules/babel-jest/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/babel-jest/node_modules/color-convert/package.json b/node_modules/babel-jest/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/babel-jest/node_modules/color-convert/package.json +++ b/node_modules/babel-jest/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/color-name/package.json b/node_modules/babel-jest/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/babel-jest/node_modules/color-name/package.json +++ b/node_modules/babel-jest/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/has-flag/package.json b/node_modules/babel-jest/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/babel-jest/node_modules/has-flag/package.json +++ b/node_modules/babel-jest/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/babel-jest/node_modules/supports-color/package.json b/node_modules/babel-jest/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/babel-jest/node_modules/supports-color/package.json +++ b/node_modules/babel-jest/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/babel-jest/package.json b/node_modules/babel-jest/package.json index d6be13568..6fb13241b 100644 --- a/node_modules/babel-jest/package.json +++ b/node_modules/babel-jest/package.json @@ -1,8 +1,22 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "babel-jest", + "description": "Jest plugin to use babel for transformation.", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-jest" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/transform": "^25.2.4", "@jest/types": "^25.2.3", @@ -12,37 +26,17 @@ "chalk": "^3.0.0", "slash": "^3.0.0" }, - "deprecated": false, - "description": "Jest plugin to use babel for transformation.", "devDependencies": { "@babel/core": "^7.1.0" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "babel-jest", "peerDependencies": { "@babel/core": "^7.0.0" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-jest" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/babel-plugin-istanbul/package.json b/node_modules/babel-plugin-istanbul/package.json index 2545d842a..446ba4058 100644 --- a/node_modules/babel-plugin-istanbul/package.json +++ b/node_modules/babel-plugin-istanbul/package.json @@ -1,11 +1,13 @@ { - "author": { - "name": "Thai Pangsakulyanont @dtinth" - }, - "bugs": { - "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" - }, - "bundleDependencies": false, + "name": "babel-plugin-istanbul", + "version": "6.0.0", + "author": "Thai Pangsakulyanont @dtinth", + "license": "BSD-3-Clause", + "description": "A babel plugin that adds istanbul instrumentation to ES6 code", + "main": "lib/index.js", + "files": [ + "lib" + ], "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -13,8 +15,6 @@ "istanbul-lib-instrument": "^4.0.0", "test-exclude": "^6.0.0" }, - "deprecated": false, - "description": "A babel plugin that adds istanbul instrumentation to ES6 code", "devDependencies": { "@babel/cli": "^7.7.5", "@babel/core": "^7.7.5", @@ -29,22 +29,29 @@ "standard": "^14.3.1", "standard-version": "^7.1.0" }, - "engines": { - "node": ">=8" + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "babel src --out-dir lib", + "pretest": "standard && npm run release", + "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js", + "prepublish": "npm test && npm run release", + "version": "standard-version" + }, + "standard": { + "ignore": [ + "fixtures/*.js" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" }, - "files": [ - "lib" - ], - "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", "keywords": [ "istanbul", "babel", "plugin", "instrumentation" ], - "license": "BSD-3-Clause", - "main": "lib/index.js", - "name": "babel-plugin-istanbul", "nyc": { "include": [ "src/*.js", @@ -56,22 +63,11 @@ "sourceMap": false, "instrument": false }, - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "prepublish": "npm test && npm run release", - "pretest": "standard && npm run release", - "release": "babel src --out-dir lib", - "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js", - "version": "standard-version" - }, - "standard": { - "ignore": [ - "fixtures/*.js" - ] + "bugs": { + "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" }, - "version": "6.0.0" + "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/babel-plugin-jest-hoist/package.json b/node_modules/babel-plugin-jest-hoist/package.json index 0368cd1ac..bec4f12b6 100644 --- a/node_modules/babel-plugin-jest-hoist/package.json +++ b/node_modules/babel-plugin-jest-hoist/package.json @@ -1,33 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/babel__traverse": "^7.0.6" - }, - "deprecated": false, - "description": "Babel plugin to hoist `jest.disableAutomock`, `jest.enableAutomock`, `jest.unmock`, `jest.mock`, calls above `import` statements. This plugin is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", - "devDependencies": { - "@babel/types": "^7.3.3", - "@types/node": "*" + "name": "babel-plugin-jest-hoist", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-plugin-jest-hoist" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "babel-plugin-jest-hoist", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-plugin-jest-hoist" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -36,5 +19,15 @@ ] } }, - "version": "25.2.1" + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "devDependencies": { + "@babel/types": "^7.3.3", + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/babel-preset-jest/package.json b/node_modules/babel-preset-jest/package.json index 77c4494b1..c21d6d016 100644 --- a/node_modules/babel-preset-jest/package.json +++ b/node_modules/babel-preset-jest/package.json @@ -1,33 +1,26 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "babel-preset-jest", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-preset-jest" }, - "bundleDependencies": false, + "license": "MIT", + "main": "index.js", "dependencies": { "@babel/plugin-syntax-bigint": "^7.0.0", "@babel/plugin-syntax-object-rest-spread": "^7.0.0", "babel-plugin-jest-hoist": "^25.2.1" }, - "deprecated": false, - "description": "> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", - "engines": { - "node": ">= 8.3" - }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "index.js", - "name": "babel-preset-jest", "peerDependencies": { "@babel/core": "^7.0.0" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-preset-jest" - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ 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 953b6c879..ddd5acbe7 100644 --- a/node_modules/before-after-hook/package.json +++ b/node_modules/before-after-hook/package.json @@ -1,12 +1,45 @@ { - "author": { - "name": "Gregor Martynus" + "name": "before-after-hook", + "version": "2.1.0", + "description": "asynchronous before/error/after hooks for internal functionality", + "files": [ + "index.js", + "index.d.ts", + "lib" + ], + "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" }, + "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", @@ -23,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", @@ -46,27 +66,5 @@ ] } ] - }, - "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" + } } \ No newline at end of file diff --git a/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json index c13b8cf6a..a60376465 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +++ b/node_modules/browser-resolve/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/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json b/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json index fe4b408a0..02efa2fc0 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json +++ b/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json @@ -1,4 +1,4 @@ { "name": "deep", "version": "1.2.3" -} +} \ No newline at end of file diff --git a/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json index 6b81dcddf..ddf31dc61 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json +++ b/node_modules/browser-resolve/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/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json index babaac58f..9b72fcb18 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json +++ b/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json @@ -1,3 +1,3 @@ { - "main" : "./lib" -} + "main": "./lib" +} \ No newline at end of file diff --git a/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json index 1592ed393..b3b73da08 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json +++ b/node_modules/browser-resolve/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/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json b/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json index 0967ef424..9e26dfeeb 100644 --- a/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json +++ b/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json @@ -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 4f313ff44..3ea9033b3 100644 --- a/node_modules/builtin-modules/package.json +++ b/node_modules/builtin-modules/package.json @@ -1,28 +1,26 @@ { + "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" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -35,15 +33,8 @@ "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": "*" + } } \ No newline at end of file diff --git a/node_modules/charenc/package.json b/node_modules/charenc/package.json index fbcad571d..80ac698de 100644 --- a/node_modules/charenc/package.json +++ b/node_modules/charenc/package.json @@ -1,31 +1,24 @@ { - "author": { - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": "http://vorb.de" - }, - "bugs": { - "url": "https://github.com/pvorb/node-charenc/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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": "*" + } } \ No newline at end of file diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json index f5ba9937e..2869089cc 100644 --- a/node_modules/cliui/package.json +++ b/node_modules/cliui/package.json @@ -1,12 +1,17 @@ { - "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" }, - "bundleDependencies": false, "config": { "blanket": { "pattern": [ @@ -19,13 +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" }, - "deprecated": false, - "description": "easily create complex multi-column command-line-interfaces", "devDependencies": { "chai": "^4.2.0", "chalk": "^3.0.0", @@ -34,41 +56,10 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/collect-v8-coverage/package.json b/node_modules/collect-v8-coverage/package.json index bb1e69e2e..3e2895e08 100644 --- a/node_modules/collect-v8-coverage/package.json +++ b/node_modules/collect-v8-coverage/package.json @@ -1,12 +1,14 @@ { - "bundleDependencies": false, - "commitlint": { - "extends": [ - "@commitlint/config-conventional" - ] - }, - "deprecated": false, - "description": "Use this module to start and stop the V8 inspector manually and collect precise coverage.", + "name": "collect-v8-coverage", + "version": "1.0.0", + "main": "index.js", + "types": "index.d.ts", + "files": [ + "CHANGELOG.md", + "index.js", + "index.d.ts" + ], + "license": "MIT", "devDependencies": { "@commitlint/cli": "^8.2.0", "@commitlint/config-conventional": "^8.2.0", @@ -17,29 +19,26 @@ "prettier": "^1.19.1", "semantic-release": "^15.13.31" }, - "files": [ - "CHANGELOG.md", - "index.js", - "index.d.ts" - ], - "husky": { - "hooks": { - "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", - "pre-commit": "lint-staged" - } + "prettier": { + "singleQuote": true, + "trailingComma": "all" }, - "license": "MIT", "lint-staged": { "*.{js,ts,md,json}": [ "prettier --write", "git add" ] }, - "main": "index.js", - "name": "collect-v8-coverage", - "prettier": { - "singleQuote": true, - "trailingComma": "all" + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "husky": { + "hooks": { + "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", + "pre-commit": "lint-staged" + } }, "release": { "plugins": [ @@ -50,7 +49,5 @@ "@semantic-release/git", "@semantic-release/github" ] - }, - "types": "index.d.ts", - "version": "1.0.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 3ba05c37e..55a7bcc1c 100644 --- a/node_modules/console-log-level/package.json +++ b/node_modules/console-log-level/package.json @@ -1,24 +1,15 @@ { - "author": { - "name": "Thomas Watson Steen", - "email": "w@tson.dk" - }, - "bugs": { - "url": "https://github.com/watson/console-log-level/issues" - }, - "bundleDependencies": false, - "coordinates": [ - 55.778253, - 12.593208 - ], - "dependencies": {}, - "deprecated": false, + "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", @@ -28,15 +19,19 @@ "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 + ] } \ No newline at end of file diff --git a/node_modules/crypt/package.json b/node_modules/crypt/package.json index d7da64d81..b4b8c991c 100644 --- a/node_modules/crypt/package.json +++ b/node_modules/crypt/package.json @@ -1,29 +1,22 @@ { - "author": { - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": "http://vorb.de" - }, - "bugs": { - "url": "https://github.com/pvorb/node-crypt/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "author": "Paul Vorbach (http://vorb.de)", + "name": "crypt", "description": "utilities for encryption and hashing", - "engines": { - "node": "*" - }, - "homepage": "https://github.com/pvorb/node-crypt#readme", + "tags": [ + "hash", + "security" + ], + "version": "0.0.2", "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" + "bugs": { + "url": "https://github.com/pvorb/node-crypt/issues" + }, + "main": "crypt.js", + "engines": { + "node": "*" + } } \ No newline at end of file diff --git a/node_modules/cssom/package.json b/node_modules/cssom/package.json index 224c2a178..4df6a91db 100644 --- a/node_modules/cssom/package.json +++ b/node_modules/cssom/package.json @@ -1,30 +1,18 @@ { - "author": { - "name": "Nikita Vasilyev", - "email": "me@elv1s.ru" - }, - "bugs": { - "url": "https://github.com/NV/CSSOM/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "cssom", "description": "CSS Object Model implementation and CSS parser", - "files": [ - "lib/" - ], - "homepage": "https://github.com/NV/CSSOM#readme", "keywords": [ "CSS", "CSSOM", "parser", "styleSheet" ], - "license": "MIT", + "version": "0.4.4", + "author": "Nikita Vasilyev ", + "repository": "NV/CSSOM", + "files": [ + "lib/" + ], "main": "./lib/index.js", - "name": "cssom", - "repository": { - "type": "git", - "url": "git+https://github.com/NV/CSSOM.git" - }, - "version": "0.4.4" + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/cssstyle/node_modules/cssom/package.json b/node_modules/cssstyle/node_modules/cssom/package.json index 136ffed43..2161b2126 100644 --- a/node_modules/cssstyle/node_modules/cssom/package.json +++ b/node_modules/cssstyle/node_modules/cssom/package.json @@ -1,30 +1,18 @@ { - "author": { - "name": "Nikita Vasilyev", - "email": "me@elv1s.ru" - }, - "bugs": { - "url": "https://github.com/NV/CSSOM/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "cssom", "description": "CSS Object Model implementation and CSS parser", - "files": [ - "lib/" - ], - "homepage": "https://github.com/NV/CSSOM#readme", "keywords": [ "CSS", "CSSOM", "parser", "styleSheet" ], - "license": "MIT", + "version": "0.3.8", + "author": "Nikita Vasilyev ", + "repository": "NV/CSSOM", + "files": [ + "lib/" + ], "main": "./lib/index.js", - "name": "cssom", - "repository": { - "type": "git", - "url": "git+https://github.com/NV/CSSOM.git" - }, - "version": "0.3.8" + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/cssstyle/package.json b/node_modules/cssstyle/package.json index adc2b9a27..3dbd34b6c 100644 --- a/node_modules/cssstyle/package.json +++ b/node_modules/cssstyle/package.json @@ -1,8 +1,25 @@ { - "bugs": { - "url": "https://github.com/jsdom/cssstyle/issues" - }, - "bundleDependencies": false, + "name": "cssstyle", + "description": "CSSStyleDeclaration Object Model implementation", + "keywords": [ + "CSS", + "CSSStyleDeclaration", + "StyleSheet" + ], + "version": "2.2.0", + "homepage": "https://github.com/jsdom/cssstyle", + "maintainers": [ + { + "name": "Jon Sakas", + "email": "jon.sakas@gmail.com", + "url": "https://jon.sakas.co/" + }, + { + "name": "Rafał Ruciński", + "email": "fatfisz@gmail.com", + "url": "https://fatfisz.com" + } + ], "contributors": [ { "name": "Chad Walker", @@ -10,11 +27,18 @@ "url": "https://github.com/chad3814" } ], + "repository": "jsdom/cssstyle", + "bugs": "https://github.com/jsdom/cssstyle/issues", + "directories": { + "lib": "./lib" + }, + "files": [ + "lib/" + ], + "main": "./lib/CSSStyleDeclaration.js", "dependencies": { "cssom": "~0.3.6" }, - "deprecated": false, - "description": "CSSStyleDeclaration Object Model implementation", "devDependencies": { "babel-generator": "~6.26.1", "babel-traverse": "~6.26.0", @@ -29,40 +53,6 @@ "request": "^2.88.0", "resolve": "~1.11.1" }, - "directories": { - "lib": "./lib" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "lib/" - ], - "homepage": "https://github.com/jsdom/cssstyle", - "keywords": [ - "CSS", - "CSSStyleDeclaration", - "StyleSheet" - ], - "license": "MIT", - "main": "./lib/CSSStyleDeclaration.js", - "maintainers": [ - { - "name": "Jon Sakas", - "email": "jon.sakas@gmail.com", - "url": "https://jon.sakas.co/" - }, - { - "name": "Rafał Ruciński", - "email": "fatfisz@gmail.com", - "url": "https://fatfisz.com" - } - ], - "name": "cssstyle", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/cssstyle.git" - }, "scripts": { "download": "node ./scripts/download_latest_properties.js && eslint lib/allProperties.js --fix", "generate": "run-p generate:*", @@ -75,5 +65,8 @@ "test-ci": "npm run lint && npm run test && codecov", "update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS" }, - "version": "2.2.0" + "license": "MIT", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/deepmerge/package.json b/node_modules/deepmerge/package.json index c5a170c9f..92a783f4c 100644 --- a/node_modules/deepmerge/package.json +++ b/node_modules/deepmerge/package.json @@ -1,28 +1,6 @@ { - "bugs": { - "url": "https://github.com/TehShrike/deepmerge/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "deepmerge", "description": "A library for deep (recursive) merging of Javascript objects", - "devDependencies": { - "@types/node": "^8.10.54", - "is-mergeable-object": "1.1.0", - "is-plain-object": "^2.0.4", - "jsmd": "^1.0.2", - "rollup": "^1.23.1", - "rollup-plugin-commonjs": "^10.1.0", - "rollup-plugin-node-resolve": "^5.2.0", - "tape": "^4.11.0", - "ts-node": "7.0.1", - "typescript": "=2.2.2", - "uglify-js": "^3.6.1" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/TehShrike/deepmerge", "keywords": [ "merge", "deep", @@ -31,18 +9,35 @@ "clone", "recursive" ], - "license": "MIT", - "main": "dist/cjs.js", - "name": "deepmerge", + "version": "4.2.2", + "homepage": "https://github.com/TehShrike/deepmerge", "repository": { "type": "git", "url": "git://github.com/TehShrike/deepmerge.git" }, + "main": "dist/cjs.js", + "engines": { + "node": ">=0.10.0" + }, "scripts": { "build": "rollup -c", - "size": "npm run build && uglifyjs --compress --mangle -- ./dist/umd.js | gzip -c | wc -c", "test": "npm run build && tape test/*.js && jsmd readme.md && npm run test:typescript", - "test:typescript": "tsc --noEmit test/typescript.ts && ts-node test/typescript.ts" + "test:typescript": "tsc --noEmit test/typescript.ts && ts-node test/typescript.ts", + "size": "npm run build && uglifyjs --compress --mangle -- ./dist/umd.js | gzip -c | wc -c" + }, + "devDependencies": { + "@types/node": "^8.10.54", + "is-mergeable-object": "1.1.0", + "is-plain-object": "^2.0.4", + "jsmd": "^1.0.2", + "rollup": "^1.23.1", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-resolve": "^5.2.0", + "tape": "^4.11.0", + "ts-node": "7.0.1", + "typescript": "=2.2.2", + "uglify-js": "^3.6.1" }, - "version": "4.2.2" + "license": "MIT", + "dependencies": {} } \ No newline at end of file diff --git a/node_modules/deprecation/package.json b/node_modules/deprecation/package.json index 5a3409c21..02e6bc9d4 100644 --- a/node_modules/deprecation/package.json +++ b/node_modules/deprecation/package.json @@ -1,38 +1,34 @@ { - "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" + } } \ No newline at end of file diff --git a/node_modules/detect-newline/package.json b/node_modules/detect-newline/package.json index 9556a3857..c473f89d0 100644 --- a/node_modules/detect-newline/package.json +++ b/node_modules/detect-newline/package.json @@ -1,28 +1,24 @@ { + "name": "detect-newline", + "version": "3.1.0", + "description": "Detect the dominant newline character of a string", + "license": "MIT", + "repository": "sindresorhus/detect-newline", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/detect-newline/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Detect the dominant newline character of 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/detect-newline#readme", "keywords": [ "newline", "linebreak", @@ -35,14 +31,9 @@ "character", "char" ], - "license": "MIT", - "name": "detect-newline", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/detect-newline.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.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/diff/package.json b/node_modules/diff/package.json index e99261f2c..4ff484e88 100644 --- a/node_modules/diff/package.json +++ b/node_modules/diff/package.json @@ -1,13 +1,34 @@ { - "browser": "./dist/diff.js", + "name": "diff", + "version": "4.0.2", + "description": "A javascript text diff implementation.", + "keywords": [ + "diff", + "javascript" + ], + "maintainers": [ + "Kevin Decker (http://incaseofstairs.com)" + ], "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" }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "A javascript text diff implementation.", "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", @@ -48,34 +69,5 @@ "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": {} } \ No newline at end of file diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json index eecc5eb31..cb5ad3677 100644 --- a/node_modules/emoji-regex/package.json +++ b/node_modules/emoji-regex/package.json @@ -1,32 +1,10 @@ { - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/emoji-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -38,17 +16,35 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/expect/node_modules/@jest/types/package.json b/node_modules/expect/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/expect/node_modules/@jest/types/package.json +++ b/node_modules/expect/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/expect/node_modules/@types/yargs/package.json b/node_modules/expect/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/expect/node_modules/@types/yargs/package.json +++ b/node_modules/expect/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/expect/node_modules/ansi-styles/package.json b/node_modules/expect/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/expect/node_modules/ansi-styles/package.json +++ b/node_modules/expect/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/expect/node_modules/chalk/package.json b/node_modules/expect/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/expect/node_modules/chalk/package.json +++ b/node_modules/expect/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/expect/node_modules/color-convert/package.json b/node_modules/expect/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/expect/node_modules/color-convert/package.json +++ b/node_modules/expect/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/expect/node_modules/color-name/package.json b/node_modules/expect/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/expect/node_modules/color-name/package.json +++ b/node_modules/expect/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/expect/node_modules/has-flag/package.json b/node_modules/expect/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/expect/node_modules/has-flag/package.json +++ b/node_modules/expect/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/expect/node_modules/jest-get-type/package.json b/node_modules/expect/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/expect/node_modules/jest-get-type/package.json +++ b/node_modules/expect/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/expect/node_modules/supports-color/package.json b/node_modules/expect/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/expect/node_modules/supports-color/package.json +++ b/node_modules/expect/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/expect/package.json b/node_modules/expect/package.json index 1613421eb..fbc25faf7 100644 --- a/node_modules/expect/package.json +++ b/node_modules/expect/package.json @@ -1,9 +1,22 @@ { - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "expect", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/expect" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", "dependencies": { "@jest/types": "^25.2.3", "ansi-styles": "^4.0.0", @@ -12,8 +25,6 @@ "jest-message-util": "^25.2.4", "jest-regex-util": "^25.2.1" }, - "deprecated": false, - "description": "This package exports the `expect` function used in [Jest](https://jestjs.io/). You can find its documentation [on Jest's website](https://jestjs.io/docs/en/expect.html).", "devDependencies": { "@jest/test-utils": "^25.2.1", "chalk": "^3.0.0", @@ -23,26 +34,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "expect", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/expect" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/file-url/package.json b/node_modules/file-url/package.json index d62db4b4b..dbcd4f1b4 100644 --- a/node_modules/file-url/package.json +++ b/node_modules/file-url/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/file-url/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -31,14 +27,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/find-up/package.json b/node_modules/find-up/package.json index 3c655ffa6..39a30757f 100644 --- a/node_modules/find-up/package.json +++ b/node_modules/find-up/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "bundleDependencies": false, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "walking", "path" ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "version": "4.1.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/fsevents/package.json b/node_modules/fsevents/package.json index cf0cd7217..d3b732346 100644 --- a/node_modules/fsevents/package.json +++ b/node_modules/fsevents/package.json @@ -1,7 +1,34 @@ { - "bugs": { - "url": "https://github.com/fsevents/fsevents/issues" + "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" + ], + "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", @@ -24,36 +51,9 @@ "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" } \ No newline at end of file diff --git a/node_modules/gensync/package.json b/node_modules/gensync/package.json index b53fc47ff..634c37d27 100644 --- a/node_modules/gensync/package.json +++ b/node_modules/gensync/package.json @@ -1,21 +1,12 @@ { - "author": { - "name": "Logan Smyth", - "email": "loganfsmyth@gmail.com" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "gensync", + "version": "1.0.0-beta.1", + "license": "MIT", "description": "Allows users to use generators in order to write common functions that can be both sync or async.", - "devDependencies": { - "babel-core": "^6.26.3", - "babel-preset-env": "^1.6.1", - "eslint": "^4.19.1", - "eslint-config-prettier": "^2.9.0", - "eslint-plugin-node": "^6.0.1", - "eslint-plugin-prettier": "^2.6.0", - "flow-bin": "^0.71.0", - "jest": "^22.4.3", - "prettier": "^1.12.1" + "main": "index.js", + "author": "Logan Smyth ", + "scripts": { + "test": "jest" }, "engines": { "node": ">=6.9.0" @@ -27,11 +18,15 @@ "async-await", "callbacks" ], - "license": "MIT", - "main": "index.js", - "name": "gensync", - "scripts": { - "test": "jest" - }, - "version": "1.0.0-beta.1" + "devDependencies": { + "babel-core": "^6.26.3", + "babel-preset-env": "^1.6.1", + "eslint": "^4.19.1", + "eslint-config-prettier": "^2.9.0", + "eslint-plugin-node": "^6.0.1", + "eslint-plugin-prettier": "^2.6.0", + "flow-bin": "^0.71.0", + "jest": "^22.4.3", + "prettier": "^1.12.1" + } } \ No newline at end of file diff --git a/node_modules/html-escaper/cjs/package.json b/node_modules/html-escaper/cjs/package.json index 0292b9956..c9a442261 100644 --- a/node_modules/html-escaper/cjs/package.json +++ b/node_modules/html-escaper/cjs/package.json @@ -1 +1,3 @@ -{"type":"commonjs"} \ No newline at end of file +{ + "type": "commonjs" +} \ No newline at end of file diff --git a/node_modules/html-escaper/package.json b/node_modules/html-escaper/package.json index 7d6f454d8..d02a90ff1 100644 --- a/node_modules/html-escaper/package.json +++ b/node_modules/html-escaper/package.json @@ -1,21 +1,23 @@ { - "author": { - "name": "Andrea Giammarchi" - }, - "bugs": { - "url": "https://github.com/WebReflection/html-escaper/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "html-escaper", + "version": "2.0.2", "description": "fast and safe way to escape and unescape &<>'\" chars", - "devDependencies": { - "ascjs": "^3.1.2", - "coveralls": "^3.0.11", - "istanbul": "^0.4.5", - "rollup": "^2.1.0", - "uglify-js": "^3.8.0" + "main": "./cjs/index.js", + "unpkg": "min.js", + "scripts": { + "build": "npm run cjs && npm run rollup && npm run minify && npm test && npm run size", + "cjs": "ascjs esm cjs", + "coveralls": "cat ./coverage/lcov.info | coveralls", + "minify": "uglifyjs index.js --comments=/^!/ --compress --mangle -o min.js", + "rollup": "rollup --config rollup.config.js", + "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c", + "test": "istanbul cover ./test/index.js" + }, + "module": "./esm/index.js", + "repository": { + "type": "git", + "url": "https://github.com/WebReflection/html-escaper.git" }, - "homepage": "https://github.com/WebReflection/html-escaper", "keywords": [ "html", "escape", @@ -24,23 +26,17 @@ "decode", "entities" ], + "author": "Andrea Giammarchi", "license": "MIT", - "main": "./cjs/index.js", - "module": "./esm/index.js", - "name": "html-escaper", - "repository": { - "type": "git", - "url": "git+https://github.com/WebReflection/html-escaper.git" - }, - "scripts": { - "build": "npm run cjs && npm run rollup && npm run minify && npm test && npm run size", - "cjs": "ascjs esm cjs", - "coveralls": "cat ./coverage/lcov.info | coveralls", - "minify": "uglifyjs index.js --comments=/^!/ --compress --mangle -o min.js", - "rollup": "rollup --config rollup.config.js", - "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c", - "test": "istanbul cover ./test/index.js" + "bugs": { + "url": "https://github.com/WebReflection/html-escaper/issues" }, - "unpkg": "min.js", - "version": "2.0.2" + "homepage": "https://github.com/WebReflection/html-escaper", + "devDependencies": { + "ascjs": "^3.1.2", + "coveralls": "^3.0.11", + "istanbul": "^0.4.5", + "rollup": "^2.1.0", + "uglify-js": "^3.8.0" + } } \ No newline at end of file diff --git a/node_modules/html-escaper/test/package.json b/node_modules/html-escaper/test/package.json index 0292b9956..c9a442261 100644 --- a/node_modules/html-escaper/test/package.json +++ b/node_modules/html-escaper/test/package.json @@ -1 +1,3 @@ -{"type":"commonjs"} \ No newline at end of file +{ + "type": "commonjs" +} \ No newline at end of file diff --git a/node_modules/human-signals/package.json b/node_modules/human-signals/package.json index 114412888..59b387aa1 100644 --- a/node_modules/human-signals/package.json +++ b/node_modules/human-signals/package.json @@ -1,42 +1,20 @@ { - "author": { - "name": "ehmicky", - "email": "ehmicky@gmail.com", - "url": "https://github.com/ehmicky" - }, - "bugs": { - "url": "https://github.com/ehmicky/human-signals/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Human-friendly process signals", - "devDependencies": { - "@ehmicky/dev-tasks": "^0.30.48", - "ajv": "^6.10.2", - "ava": "^2.4.0", - "fast-deep-equal": "^2.0.1", - "gulp": "^4.0.2", - "husky": "^3.0.9", - "test-each": "^1.7.2" - }, - "directories": { - "lib": "src", - "test": "test" - }, - "engines": { - "node": ">=8.12.0" - }, + "name": "human-signals", + "version": "1.1.1", + "main": "build/src/main.js", "files": [ "build/src", "!~" ], - "homepage": "https://git.io/JeluP", + "scripts": { + "test": "gulp test" + }, "husky": { "hooks": { "pre-push": "gulp check --full" } }, + "description": "Human-friendly process signals", "keywords": [ "signal", "signals", @@ -60,14 +38,27 @@ "nodejs" ], "license": "Apache-2.0", - "main": "build/src/main.js", - "name": "human-signals", - "repository": { - "type": "git", - "url": "git+https://github.com/ehmicky/human-signals.git" + "homepage": "https://git.io/JeluP", + "repository": "ehmicky/human-signals", + "bugs": { + "url": "https://github.com/ehmicky/human-signals/issues" }, - "scripts": { - "test": "gulp test" + "author": "ehmicky (https://github.com/ehmicky)", + "directories": { + "lib": "src", + "test": "test" }, - "version": "1.1.1" + "dependencies": {}, + "devDependencies": { + "@ehmicky/dev-tasks": "^0.30.48", + "ajv": "^6.10.2", + "ava": "^2.4.0", + "fast-deep-equal": "^2.0.1", + "gulp": "^4.0.2", + "husky": "^3.0.9", + "test-each": "^1.7.2" + }, + "engines": { + "node": ">=8.12.0" + } } \ No newline at end of file diff --git a/node_modules/import-local/package.json b/node_modules/import-local/package.json index 7b556d9a7..c07a5c4be 100644 --- a/node_modules/import-local/package.json +++ b/node_modules/import-local/package.json @@ -1,4 +1,9 @@ { + "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", @@ -7,31 +12,16 @@ "bin": { "import-local-fixture": "fixtures/cli.js" }, - "bugs": { - "url": "https://github.com/sindresorhus/import-local/issues" - }, - "bundleDependencies": false, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "deprecated": false, - "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", @@ -42,16 +32,17 @@ "prefer", "cli" ], - "license": "MIT", - "name": "import-local", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/import-local.git" + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "2.1.0", + "cpy": "^7.0.1", + "del": "^4.1.1", + "execa": "^2.0.1", + "xo": "^0.24.0" }, - "version": "3.0.2", "xo": { "ignores": [ "fixtures" diff --git a/node_modules/ip-regex/package.json b/node_modules/ip-regex/package.json index 72d66671d..9e3c85732 100644 --- a/node_modules/ip-regex/package.json +++ b/node_modules/ip-regex/package.json @@ -1,26 +1,23 @@ { + "name": "ip-regex", + "version": "2.1.0", + "description": "Regular expression for matching IP addresses (IPv4 & IPv6)", + "license": "MIT", + "repository": "sindresorhus/ip-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/ip-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Regular expression for matching IP addresses (IPv4 & IPv6)", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/ip-regex#readme", "keywords": [ "ip", "ipv6", @@ -38,16 +35,10 @@ "address", "validate" ], - "license": "MIT", - "name": "ip-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/ip-regex.git" - }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.1.0", "xo": { "esnext": true } diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json index c556c1c78..a67414558 100644 --- a/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/is-fullwidth-code-point/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -38,14 +34,9 @@ "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" + "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-plain-object/package.json b/node_modules/is-plain-object/package.json index 8f5509179..986ffab26 100644 --- a/node_modules/is-plain-object/package.json +++ b/node_modules/is-plain-object/package.json @@ -1,32 +1,41 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "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", @@ -36,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", @@ -59,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" + } } \ No newline at end of file diff --git a/node_modules/is-wsl/package.json b/node_modules/is-wsl/package.json index 2581d5b16..5e19b3f67 100644 --- a/node_modules/is-wsl/package.json +++ b/node_modules/is-wsl/package.json @@ -1,30 +1,24 @@ { + "name": "is-wsl", + "version": "2.1.1", + "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", + "license": "MIT", + "repository": "sindresorhus/is-wsl", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-wsl/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", - "devDependencies": { - "ava": "^1.4.1", - "clear-module": "^3.2.0", - "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/is-wsl#readme", "keywords": [ "check", "wsl", @@ -38,14 +32,11 @@ "terminal", "is" ], - "license": "MIT", - "name": "is-wsl", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-wsl.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.1" + "devDependencies": { + "ava": "^1.4.1", + "clear-module": "^3.2.0", + "proxyquire": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json index ea00befc3..c59d1ba3a 100644 --- a/node_modules/isobject/package.json +++ b/node_modules/isobject/package.json @@ -1,49 +1,43 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "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", @@ -58,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": { @@ -95,6 +76,5 @@ "reflinks": [ "verb" ] - }, - "version": "4.0.0" + } } \ No newline at end of file diff --git a/node_modules/istanbul-lib-coverage/package.json b/node_modules/istanbul-lib-coverage/package.json index 3a5bcc763..dc4a11b52 100644 --- a/node_modules/istanbul-lib-coverage/package.json +++ b/node_modules/istanbul-lib-coverage/package.json @@ -1,28 +1,21 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "istanbul-lib-coverage", + "version": "3.0.0", "description": "Data library for istanbul coverage objects", + "author": "Krishnan Anantheswaran ", + "main": "index.js", + "files": [ + "lib", + "index.js" + ], + "scripts": { + "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" + }, "devDependencies": { "chai": "^4.2.0", "mocha": "^6.2.2", "nyc": "^15.0.0-beta.2" }, - "engines": { - "node": ">=8" - }, - "files": [ - "lib", - "index.js" - ], - "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b", - "homepage": "https://istanbul.js.org/", "karmaDeps": { "browserify-istanbul": "^0.2.1", "karma": "^0.13.10", @@ -33,21 +26,23 @@ "karma-phantomjs-launcher": "^0.2.0", "phantomjs": "^1.9.17" }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-coverage" + }, "keywords": [ "istanbul", "coverage", "data" ], "license": "BSD-3-Clause", - "main": "index.js", - "name": "istanbul-lib-coverage", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-coverage" + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "scripts": { - "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" + "homepage": "https://istanbul.js.org/", + "engines": { + "node": ">=8" }, - "version": "3.0.0" + "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json index baf3b844f..2a47128eb 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/traverse", + "version": "7.9.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -15,22 +21,8 @@ "globals": "^11.1.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/traverse", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json index 6b65b84a0..90e287ecf 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "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" + } } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json index fa06ce5de..27acafd1d 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json @@ -1,7 +1,36 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/core", + "version": "7.9.0", + "description": "Babel compiler core.", + "main": "lib/index.js", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-core", + "keywords": [ + "6to5", + "babel", + "classes", + "const", + "es6", + "harmony", + "let", + "modules", + "transpile", + "transpiler", + "var", + "babel-core", + "compiler" + ], + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" }, "browser": { "./lib/config/files/index.js": "./lib/config/files/index-browser.js", @@ -9,7 +38,6 @@ "./src/config/files/index.js": "./src/config/files/index-browser.js", "./src/transform-file.js": "./src/transform-file-browser.js" }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -28,44 +56,8 @@ "semver": "^5.4.1", "source-map": "^0.5.0" }, - "deprecated": false, - "description": "Babel compiler core.", "devDependencies": { "@babel/helper-transform-fixture-test-runner": "^7.8.3" }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "keywords": [ - "6to5", - "babel", - "classes", - "const", - "es6", - "harmony", - "let", - "modules", - "transpile", - "transpiler", - "var", - "babel-core", - "compiler" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/core", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-core" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/generator/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/generator/package.json index b1b1e36fa..725a22c46 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/generator/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/generator/package.json @@ -1,35 +1,27 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/generator", + "version": "7.9.4", + "description": "Turns an AST into code.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-generator", + "main": "lib/index.js", + "files": [ + "lib" + ], "dependencies": { "@babel/types": "^7.9.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" }, - "deprecated": false, - "description": "Turns an AST into code.", "devDependencies": { "@babel/helper-fixtures": "^7.8.6", "@babel/parser": "^7.9.4" }, - "files": [ - "lib" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/generator", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" - }, - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/package.json index 93313eef7..26a91f0c7 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-function-name/package.json @@ -1,22 +1,17 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/helper-get-function-arity": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-function-name", + "version": "7.8.3", "description": "Helper function to change the property 'name' of every function", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-function-name", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + "main": "lib/index.js", + "dependencies": { + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-get-function-arity/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-get-function-arity/package.json index 61c213999..119889435 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-get-function-arity/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-get-function-arity/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-get-function-arity", + "version": "7.8.3", "description": "Helper function to get function arity", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-get-function-arity", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-split-export-declaration/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-split-export-declaration/package.json index 013034cb3..c8805560c 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-split-export-declaration/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, - "description": ">", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "license": "MIT", - "main": "lib/index.js", "name": "@babel/helper-split-export-declaration", + "version": "7.8.3", + "description": "", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration", + "license": "MIT", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/template/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/template/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json index baf3b844f..2a47128eb 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/traverse", + "version": "7.9.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -15,22 +21,8 @@ "globals": "^11.1.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/traverse", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/package.json index 25913b8e5..8500d7aa5 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/helpers/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/helpers", + "version": "7.9.2", + "description": "Collection of helper functions used by Babel transforms.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helpers", + "main": "lib/index.js", "dependencies": { "@babel/template": "^7.8.3", "@babel/traverse": "^7.9.0", "@babel/types": "^7.9.0" }, - "deprecated": false, - "description": "Collection of helper functions used by Babel transforms.", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "2399e0df23cbd574a5ab39822288c438f5380ae8", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helpers", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" - }, - "version": "7.9.2" + "gitHead": "2399e0df23cbd574a5ab39822288c438f5380ae8" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/highlight/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/highlight/package.json index f4ecd5f2a..2cd8265e5 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/highlight/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/highlight/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.9.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, - "deprecated": false, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "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.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/parser/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/parser/package.json index ce08ec92b..50f9b985f 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/parser/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/parser/package.json @@ -1,30 +1,13 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/parser", + "version": "7.9.4", "description": "A JavaScript parser", - "devDependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/helper-fixtures": "^7.8.6", - "@babel/helper-validator-identifier": "^7.9.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "files": [ - "bin", - "lib", - "typings" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, "keywords": [ "babel", "javascript", @@ -33,16 +16,25 @@ "ecmascript", "@babel/parser" ], - "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-parser", "main": "lib/index.js", - "name": "@babel/parser", - "publishConfig": { - "access": "public" + "types": "typings/babel-parser.d.ts", + "files": [ + "bin", + "lib", + "typings" + ], + "engines": { + "node": ">=6.0.0" + }, + "devDependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/helper-fixtures": "^7.8.6", + "@babel/helper-validator-identifier": "^7.9.0", + "charcodes": "^0.2.0" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + "bin": { + "parser": "./bin/babel-parser.js" }, - "types": "typings/babel-parser.d.ts", - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/@babel/types/package.json b/node_modules/istanbul-lib-instrument/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/@babel/types/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/debug/package.json b/node_modules/istanbul-lib-instrument/node_modules/debug/package.json index 7bc94f7f0..a71916fc4 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/debug/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/debug/package.json @@ -1,29 +1,44 @@ { - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" + "name": "debug", + "version": "4.1.1", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" }, - "bundleDependencies": false, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" + ], + "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" }, - "deprecated": false, - "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", @@ -42,38 +57,7 @@ "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" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/json5/package.json b/node_modules/istanbul-lib-instrument/node_modules/json5/package.json index a0a00cb80..425ea05bd 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/json5/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/json5/package.json @@ -1,35 +1,55 @@ { - "author": { - "name": "Aseem Kishore", - "email": "aseem.kishore@gmail.com" + "name": "json5", + "version": "2.1.2", + "description": "JSON for humans.", + "main": "lib/index.js", + "module": "dist/index.mjs", + "bin": "lib/cli.js", + "browser": "dist/index.js", + "files": [ + "lib/", + "dist/" + ], + "engines": { + "node": ">=6" }, - "bin": { - "json5": "lib/cli.js" + "scripts": { + "build": "rollup -c", + "build-package": "node build/package.js", + "build-unicode": "node build/unicode.js", + "coverage": "tap --coverage-report html test", + "lint": "eslint --fix .", + "prepublishOnly": "npm run production", + "preversion": "npm run production", + "production": "npm run lint && npm test && npm run build", + "test": "tap -Rspec --100 test", + "version": "npm run build-package && git add package.json5" }, - "browser": "dist/index.js", - "bugs": { - "url": "https://github.com/json5/json5/issues" + "repository": { + "type": "git", + "url": "git+https://github.com/json5/json5.git" }, - "bundleDependencies": false, + "keywords": [ + "json", + "json5", + "es5", + "es2015", + "ecmascript" + ], + "author": "Aseem Kishore ", "contributors": [ - { - "name": "Max Nanasy", - "email": "max.nanasy@gmail.com" - }, - { - "name": "Andrew Eisenberg", - "email": "andrew@eisenberg.as" - }, - { - "name": "Jordan Tucker", - "email": "jordanbtucker@gmail.com" - } + "Max Nanasy ", + "Andrew Eisenberg ", + "Jordan Tucker " ], + "license": "MIT", + "bugs": { + "url": "https://github.com/json5/json5/issues" + }, + "homepage": "http://json5.org/", "dependencies": { "minimist": "^1.2.5" }, - "deprecated": false, - "description": "JSON for humans.", "devDependencies": { "core-js": "^2.6.5", "eslint": "^5.15.3", @@ -47,41 +67,5 @@ "sinon": "^6.3.5", "tap": "^12.6.0", "unicode-10.0.0": "^0.7.5" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "lib/", - "dist/" - ], - "homepage": "http://json5.org/", - "keywords": [ - "json", - "json5", - "es5", - "es2015", - "ecmascript" - ], - "license": "MIT", - "main": "lib/index.js", - "module": "dist/index.mjs", - "name": "json5", - "repository": { - "type": "git", - "url": "git+https://github.com/json5/json5.git" - }, - "scripts": { - "build": "rollup -c", - "build-package": "node build/package.js", - "build-unicode": "node build/unicode.js", - "coverage": "tap --coverage-report html test", - "lint": "eslint --fix .", - "prepublishOnly": "npm run production", - "preversion": "npm run production", - "production": "npm run lint && npm test && npm run build", - "test": "tap -Rspec --100 test", - "version": "npm run build-package && git add package.json5" - }, - "version": "2.1.2" + } } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/ms/package.json b/node_modules/istanbul-lib-instrument/node_modules/ms/package.json index 7192a30c5..3408eef7c 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/ms/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/ms/package.json @@ -1,16 +1,16 @@ { - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -19,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -31,16 +26,12 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json b/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json index 9e2674cec..23449cf21 100644 --- a/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json +++ b/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json @@ -1,167 +1,52 @@ { - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.5.7", + "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 " ], - "deprecated": false, - "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", "lib/", @@ -170,19 +55,18 @@ "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.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-instrument/package.json b/node_modules/istanbul-lib-instrument/package.json index 334f488f8..3e64e5df5 100644 --- a/node_modules/istanbul-lib-instrument/package.json +++ b/node_modules/istanbul-lib-instrument/package.json @@ -1,12 +1,17 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" + "name": "istanbul-lib-instrument", + "version": "4.0.1", + "description": "Core istanbul API for JS code coverage", + "author": "Krishnan Anantheswaran ", + "main": "dist/index.js", + "files": [ + "dist" + ], + "scripts": { + "release": "babel src --out-dir dist && documentation build -f md -o api.md src", + "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json --require=@babel/register --include=src mocha", + "prepublish": "npm run release" }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.7.5", "@babel/parser": "^7.7.5", @@ -16,8 +21,6 @@ "istanbul-lib-coverage": "^3.0.0", "semver": "^6.3.0" }, - "deprecated": false, - "description": "Core istanbul API for JS code coverage", "devDependencies": { "@babel/cli": "^7.7.5", "@babel/plugin-transform-modules-commonjs": "^7.7.5", @@ -31,32 +34,24 @@ "nopt": "^4.0.1", "nyc": "^15.0.0-beta.2" }, - "engines": { - "node": ">=8" + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "files": [ - "dist" - ], - "gitHead": "4eb43e4325471549d2aa880b5ed2ada475265fcf", "homepage": "https://istanbul.js.org/", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-instrument" + }, "keywords": [ "coverage", "istanbul", "js", "instrumentation" ], - "license": "BSD-3-Clause", - "main": "dist/index.js", - "name": "istanbul-lib-instrument", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-instrument" - }, - "scripts": { - "prepublish": "npm run release", - "release": "babel src --out-dir dist && documentation build -f md -o api.md src", - "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json --require=@babel/register --include=src mocha" + "engines": { + "node": ">=8" }, - "version": "4.0.1" + "gitHead": "4eb43e4325471549d2aa880b5ed2ada475265fcf" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-report/node_modules/has-flag/package.json b/node_modules/istanbul-lib-report/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/istanbul-lib-report/node_modules/has-flag/package.json +++ b/node_modules/istanbul-lib-report/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/istanbul-lib-report/node_modules/supports-color/package.json b/node_modules/istanbul-lib-report/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/istanbul-lib-report/node_modules/supports-color/package.json +++ b/node_modules/istanbul-lib-report/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-report/package.json b/node_modules/istanbul-lib-report/package.json index 772bc8182..0d6f23735 100644 --- a/node_modules/istanbul-lib-report/package.json +++ b/node_modules/istanbul-lib-report/package.json @@ -1,50 +1,45 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" + "name": "istanbul-lib-report", + "version": "3.0.0", + "description": "Base reporting library for istanbul", + "author": "Krishnan Anantheswaran ", + "main": "index.js", + "files": [ + "lib", + "index.js" + ], + "scripts": { + "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" }, - "bundleDependencies": false, "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" }, - "deprecated": false, - "description": "Base reporting library for istanbul", "devDependencies": { "chai": "^4.2.0", "mocha": "^6.2.2", "nyc": "^15.0.0-beta.2", "rimraf": "^3.0.0" }, - "engines": { - "node": ">=8" + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "files": [ - "lib", - "index.js" - ], - "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b", "homepage": "https://istanbul.js.org/", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-report" + }, "keywords": [ "istanbul", "report", "api", "lib" ], - "license": "BSD-3-Clause", - "main": "index.js", - "name": "istanbul-lib-report", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-report" - }, - "scripts": { - "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" + "engines": { + "node": ">=8" }, - "version": "3.0.0" + "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b" } \ No newline at end of file diff --git a/node_modules/istanbul-lib-source-maps/package.json b/node_modules/istanbul-lib-source-maps/package.json index f383405e6..81c500725 100644 --- a/node_modules/istanbul-lib-source-maps/package.json +++ b/node_modules/istanbul-lib-source-maps/package.json @@ -1,34 +1,37 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" + "name": "istanbul-lib-source-maps", + "version": "4.0.0", + "description": "Source maps support for istanbul", + "author": "Krishnan Anantheswaran ", + "main": "index.js", + "files": [ + "lib", + "index.js" + ], + "scripts": { + "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json mocha" }, - "bundleDependencies": false, "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, - "deprecated": false, - "description": "Source maps support for istanbul", "devDependencies": { "chai": "^4.2.0", "mocha": "^6.2.2", "nyc": "^15.0.0-beta.2", "ts-node": "^8.5.4" }, - "engines": { - "node": ">=8" + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "files": [ - "lib", - "index.js" - ], - "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b", "homepage": "https://istanbul.js.org/", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-source-maps" + }, "keywords": [ "istanbul", "sourcemaps", @@ -36,16 +39,8 @@ "source", "maps" ], - "license": "BSD-3-Clause", - "main": "index.js", - "name": "istanbul-lib-source-maps", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-source-maps" - }, - "scripts": { - "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json mocha" + "engines": { + "node": ">=8" }, - "version": "4.0.0" + "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b" } \ No newline at end of file diff --git a/node_modules/istanbul-reports/package.json b/node_modules/istanbul-reports/package.json index 6cef0c874..26caf8bd2 100644 --- a/node_modules/istanbul-reports/package.json +++ b/node_modules/istanbul-reports/package.json @@ -1,18 +1,22 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" + "name": "istanbul-reports", + "version": "3.0.1", + "description": "istanbul reports", + "author": "Krishnan Anantheswaran ", + "main": "index.js", + "files": [ + "index.js", + "lib" + ], + "scripts": { + "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json mocha --recursive", + "prepare": "webpack --config lib/html-spa/webpack.config.js --mode production", + "prepare:watch": "webpack --config lib/html-spa/webpack.config.js --watch --mode development" }, - "bundleDependencies": false, "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" }, - "deprecated": false, - "description": "istanbul reports", "devDependencies": { "@babel/core": "^7.7.5", "@babel/preset-env": "^7.7.5", @@ -28,22 +32,20 @@ "webpack": "^4.41.2", "webpack-cli": "^3.3.10" }, - "engines": { - "node": ">=8" + "license": "BSD-3-Clause", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-reports" }, - "files": [ - "index.js", - "lib" - ], - "gitHead": "df24342395030dc2a40a7ceb0476a9897f3492a3", - "homepage": "https://istanbul.js.org/", "keywords": [ "istanbul", "reports" ], - "license": "BSD-3-Clause", - "main": "index.js", - "name": "istanbul-reports", + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "homepage": "https://istanbul.js.org/", "nyc": { "exclude": [ "lib/html/assets/**", @@ -52,15 +54,8 @@ "test/**" ] }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-reports" - }, - "scripts": { - "prepare": "webpack --config lib/html-spa/webpack.config.js --mode production", - "prepare:watch": "webpack --config lib/html-spa/webpack.config.js --watch --mode development", - "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json mocha --recursive" + "engines": { + "node": ">=8" }, - "version": "3.0.1" + "gitHead": "df24342395030dc2a40a7ceb0476a9897f3492a3" } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/@jest/types/package.json b/node_modules/jest-changed-files/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-changed-files/node_modules/@jest/types/package.json +++ b/node_modules/jest-changed-files/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/@types/yargs/package.json b/node_modules/jest-changed-files/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-changed-files/node_modules/@types/yargs/package.json +++ b/node_modules/jest-changed-files/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/ansi-styles/package.json b/node_modules/jest-changed-files/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-changed-files/node_modules/ansi-styles/package.json +++ b/node_modules/jest-changed-files/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-changed-files/node_modules/chalk/package.json b/node_modules/jest-changed-files/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-changed-files/node_modules/chalk/package.json +++ b/node_modules/jest-changed-files/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-changed-files/node_modules/color-convert/package.json b/node_modules/jest-changed-files/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-changed-files/node_modules/color-convert/package.json +++ b/node_modules/jest-changed-files/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/color-name/package.json b/node_modules/jest-changed-files/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-changed-files/node_modules/color-name/package.json +++ b/node_modules/jest-changed-files/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/cross-spawn/package.json b/node_modules/jest-changed-files/node_modules/cross-spawn/package.json index a5b650211..e122120e0 100644 --- a/node_modules/jest-changed-files/node_modules/cross-spawn/package.json +++ b/node_modules/jest-changed-files/node_modules/cross-spawn/package.json @@ -1,12 +1,51 @@ { - "author": { - "name": "André Cruz", - "email": "andre@moxy.studio" + "name": "cross-spawn", + "version": "7.0.1", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "keywords": [ + "spawn", + "spawnSync", + "windows", + "cross-platform", + "path-ext", + "shebang", + "cmd", + "execute" + ], + "author": "André Cruz ", + "homepage": "https://github.com/moxystudio/node-cross-spawn", + "repository": { + "type": "git", + "url": "git@github.com:moxystudio/node-cross-spawn.git" + }, + "license": "MIT", + "main": "index.js", + "files": [ + "lib" + ], + "scripts": { + "lint": "eslint .", + "test": "jest --env node --coverage", + "prerelease": "npm t && npm run lint", + "release": "standard-version" }, - "bugs": { - "url": "https://github.com/moxystudio/node-cross-spawn/issues" + "husky": { + "hooks": { + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", + "pre-commit": "lint-staged" + } + }, + "standard-version": { + "scripts": { + "posttag": "git push --follow-tags origin master" + } + }, + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ] }, - "bundleDependencies": false, "commitlint": { "extends": [ "@commitlint/config-conventional" @@ -17,8 +56,6 @@ "shebang-command": "^2.0.0", "which": "^2.0.1" }, - "deprecated": false, - "description": "Cross platform child_process#spawn and child_process#spawnSync", "devDependencies": { "@commitlint/cli": "^8.1.0", "@commitlint/config-conventional": "^8.1.0", @@ -36,50 +73,5 @@ }, "engines": { "node": ">= 8" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/moxystudio/node-cross-spawn", - "husky": { - "hooks": { - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", - "pre-commit": "lint-staged" - } - }, - "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": { - "lint": "eslint .", - "prerelease": "npm t && npm run lint", - "release": "standard-version", - "test": "jest --env node --coverage" - }, - "standard-version": { - "scripts": { - "posttag": "git push --follow-tags origin master" - } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/execa/package.json b/node_modules/jest-changed-files/node_modules/execa/package.json index 4d6cfc555..4e833f3f4 100644 --- a/node_modules/jest-changed-files/node_modules/execa/package.json +++ b/node_modules/jest-changed-files/node_modules/execa/package.json @@ -1,48 +1,25 @@ { + "name": "execa", + "version": "3.4.0", + "description": "Process execution for humans", + "license": "MIT", + "repository": "sindresorhus/execa", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/execa/issues" - }, - "bundleDependencies": false, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "p-finally": "^2.0.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "deprecated": false, - "description": "Process execution for humans", - "devDependencies": { - "@types/node": "^12.0.7", - "ava": "^2.1.0", - "coveralls": "^3.0.4", - "get-node": "^5.0.0", - "is-running": "^2.1.0", - "nyc": "^14.1.1", - "p-event": "^4.1.0", - "tempfile": "^3.0.0", - "tsd": "^0.7.3", - "xo": "^0.24.0" - }, "engines": { "node": "^8.12.0 || >=9.7.0" }, + "scripts": { + "test": "xo && nyc ava && tsd" + }, "files": [ "index.js", "index.d.ts", "lib" ], - "homepage": "https://github.com/sindresorhus/execa#readme", "keywords": [ "exec", "child", @@ -60,21 +37,35 @@ "path", "local" ], - "license": "MIT", - "name": "execa", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "devDependencies": { + "@types/node": "^12.0.7", + "ava": "^2.1.0", + "coveralls": "^3.0.4", + "get-node": "^5.0.0", + "is-running": "^2.1.0", + "nyc": "^14.1.1", + "p-event": "^4.1.0", + "tempfile": "^3.0.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, "nyc": { "exclude": [ "**/fixtures/**", "**/test.js", "**/test/**" ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/execa.git" - }, - "scripts": { - "test": "xo && nyc ava && tsd" - }, - "version": "3.4.0" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/get-stream/package.json b/node_modules/jest-changed-files/node_modules/get-stream/package.json index 398c897cb..7c86cfc9f 100644 --- a/node_modules/jest-changed-files/node_modules/get-stream/package.json +++ b/node_modules/jest-changed-files/node_modules/get-stream/package.json @@ -1,34 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/get-stream/issues" - }, - "bundleDependencies": false, - "dependencies": { - "pump": "^3.0.0" - }, - "deprecated": false, - "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", @@ -45,14 +36,14 @@ "array", "object" ], - "license": "MIT", - "name": "get-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/get-stream.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "pump": "^3.0.0" }, - "version": "5.1.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/jest-changed-files/node_modules/has-flag/package.json b/node_modules/jest-changed-files/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-changed-files/node_modules/has-flag/package.json +++ b/node_modules/jest-changed-files/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/is-stream/package.json b/node_modules/jest-changed-files/node_modules/is-stream/package.json index 4569ce1d0..f87e97529 100644 --- a/node_modules/jest-changed-files/node_modules/is-stream/package.json +++ b/node_modules/jest-changed-files/node_modules/is-stream/package.json @@ -1,30 +1,24 @@ { + "name": "is-stream", + "version": "2.0.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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Check if something is a Node.js stream", - "devDependencies": { - "@types/node": "^11.13.6", - "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/is-stream#readme", "keywords": [ "stream", "type", @@ -37,14 +31,11 @@ "detect", "is" ], - "license": "MIT", - "name": "is-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-stream.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.0.0" + "devDependencies": { + "@types/node": "^11.13.6", + "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/jest-changed-files/node_modules/npm-run-path/package.json b/node_modules/jest-changed-files/node_modules/npm-run-path/package.json index 6748df914..7705a79e5 100644 --- a/node_modules/jest-changed-files/node_modules/npm-run-path/package.json +++ b/node_modules/jest-changed-files/node_modules/npm-run-path/package.json @@ -1,31 +1,24 @@ { + "name": "npm-run-path", + "version": "4.0.1", + "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" - }, - "bundleDependencies": false, - "dependencies": { - "path-key": "^3.0.0" - }, - "deprecated": false, - "description": "Get your PATH prepended with locally installed binaries", - "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/npm-run-path#readme", "keywords": [ "npm", "run", @@ -40,14 +33,12 @@ "execute", "executable" ], - "license": "MIT", - "name": "npm-run-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/npm-run-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "path-key": "^3.0.0" }, - "version": "4.0.1" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/p-finally/package.json b/node_modules/jest-changed-files/node_modules/p-finally/package.json index b7500a722..56dd0e035 100644 --- a/node_modules/jest-changed-files/node_modules/p-finally/package.json +++ b/node_modules/jest-changed-files/node_modules/p-finally/package.json @@ -1,26 +1,23 @@ { + "name": "p-finally", + "version": "2.0.1", + "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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", - "devDependencies": { - "ava": "^1.4.1", - "xo": "^0.24.0" - }, "engines": { "node": ">=8" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/p-finally#readme", "keywords": [ "promise", "finally", @@ -35,14 +32,8 @@ "shim", "bluebird" ], - "license": "MIT", - "name": "p-finally", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-finally.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.1" + "devDependencies": { + "ava": "^1.4.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/path-key/package.json b/node_modules/jest-changed-files/node_modules/path-key/package.json index 7c2ea0964..95d21612d 100644 --- a/node_modules/jest-changed-files/node_modules/path-key/package.json +++ b/node_modules/jest-changed-files/node_modules/path-key/package.json @@ -1,29 +1,24 @@ { + "name": "path-key", + "version": "3.1.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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Get the PATH environment variable key cross-platform", - "devDependencies": { - "@types/node": "^11.13.0", - "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-key#readme", "keywords": [ "path", "key", @@ -35,14 +30,10 @@ "cross-platform", "windows" ], - "license": "MIT", - "name": "path-key", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-key.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.1.1" + "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/jest-changed-files/node_modules/shebang-command/package.json b/node_modules/jest-changed-files/node_modules/shebang-command/package.json index 3dc3563bc..3df239d17 100644 --- a/node_modules/jest-changed-files/node_modules/shebang-command/package.json +++ b/node_modules/jest-changed-files/node_modules/shebang-command/package.json @@ -1,43 +1,34 @@ { + "name": "shebang-command", + "version": "2.0.0", + "description": "Get the command from a shebang", + "license": "MIT", + "repository": "kevva/shebang-command", "author": { "name": "Kevin Mårtensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, - "bugs": { - "url": "https://github.com/kevva/shebang-command/issues" - }, - "bundleDependencies": false, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "deprecated": false, - "description": "Get the command from a shebang", - "devDependencies": { - "ava": "^2.3.0", - "xo": "^0.24.0" - }, "engines": { "node": ">=8" }, + "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" - }, - "scripts": { - "test": "xo && ava" + "dependencies": { + "shebang-regex": "^3.0.0" }, - "version": "2.0.0" + "devDependencies": { + "ava": "^2.3.0", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/shebang-regex/package.json b/node_modules/jest-changed-files/node_modules/shebang-regex/package.json index 22a96573a..c59ff7284 100644 --- a/node_modules/jest-changed-files/node_modules/shebang-regex/package.json +++ b/node_modules/jest-changed-files/node_modules/shebang-regex/package.json @@ -1,28 +1,24 @@ { + "name": "shebang-regex", + "version": "3.0.0", + "description": "Regular expression for matching a shebang line", + "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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Regular expression for matching a shebang line", - "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/shebang-regex#readme", "keywords": [ "regex", "regexp", @@ -31,14 +27,9 @@ "test", "line" ], - "license": "MIT", - "name": "shebang-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/shebang-regex.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.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/jest-changed-files/node_modules/supports-color/package.json b/node_modules/jest-changed-files/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-changed-files/node_modules/supports-color/package.json +++ b/node_modules/jest-changed-files/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-changed-files/node_modules/which/package.json b/node_modules/jest-changed-files/node_modules/which/package.json index 32eaa5757..33ce9eed8 100644 --- a/node_modules/jest-changed-files/node_modules/which/package.json +++ b/node_modules/jest-changed-files/node_modules/which/package.json @@ -1,53 +1,43 @@ { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "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": "2.0.2", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" }, + "main": "which.js", "bin": { - "node-which": "bin/node-which" - }, - "bugs": { - "url": "https://github.com/isaacs/node-which/issues" + "node-which": "./bin/node-which" }, - "bundleDependencies": false, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, - "deprecated": false, - "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": "^14.6.9" }, - "engines": { - "node": ">= 8" + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublish": "npm run changelog", + "prechangelog": "bash gen-changelog.sh", + "changelog": "git add CHANGELOG.md", + "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", + "postpublish": "git push origin --follow-tags" }, "files": [ "which.js", "bin/node-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": { - "changelog": "git add CHANGELOG.md", - "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "prechangelog": "bash gen-changelog.sh", - "prepublish": "npm run changelog", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true }, - "version": "2.0.2" + "engines": { + "node": ">= 8" + } } \ No newline at end of file diff --git a/node_modules/jest-changed-files/package.json b/node_modules/jest-changed-files/package.json index 68b0b6964..e4b4b2246 100644 --- a/node_modules/jest-changed-files/package.json +++ b/node_modules/jest-changed-files/package.json @@ -1,31 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@jest/types": "^25.2.3", - "execa": "^3.2.0", - "throat": "^5.0.0" - }, - "deprecated": false, - "description": "A module used internally by Jest to check which files have changed since you last committed in git or hg.", - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", "name": "jest-changed-files", - "publishConfig": { - "access": "public" - }, + "version": "25.2.3", "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest.git", "directory": "packages/jest-changed-files" }, + "license": "MIT", + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -34,5 +16,16 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@jest/types": "^25.2.3", + "execa": "^3.2.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/generator/node_modules/source-map/package.json b/node_modules/jest-circus/node_modules/@babel/generator/node_modules/source-map/package.json index 9e2674cec..23449cf21 100644 --- a/node_modules/jest-circus/node_modules/@babel/generator/node_modules/source-map/package.json +++ b/node_modules/jest-circus/node_modules/@babel/generator/node_modules/source-map/package.json @@ -1,167 +1,52 @@ { - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.5.7", + "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 " ], - "deprecated": false, - "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", "lib/", @@ -170,19 +55,18 @@ "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.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/generator/package.json b/node_modules/jest-circus/node_modules/@babel/generator/package.json index b1b1e36fa..725a22c46 100644 --- a/node_modules/jest-circus/node_modules/@babel/generator/package.json +++ b/node_modules/jest-circus/node_modules/@babel/generator/package.json @@ -1,35 +1,27 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/generator", + "version": "7.9.4", + "description": "Turns an AST into code.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-generator", + "main": "lib/index.js", + "files": [ + "lib" + ], "dependencies": { "@babel/types": "^7.9.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" }, - "deprecated": false, - "description": "Turns an AST into code.", "devDependencies": { "@babel/helper-fixtures": "^7.8.6", "@babel/parser": "^7.9.4" }, - "files": [ - "lib" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/generator", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" - }, - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/code-frame/package.json b/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/code-frame/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json b/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helper-function-name/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helper-function-name/package.json b/node_modules/jest-circus/node_modules/@babel/helper-function-name/package.json index 93313eef7..26a91f0c7 100644 --- a/node_modules/jest-circus/node_modules/@babel/helper-function-name/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helper-function-name/package.json @@ -1,22 +1,17 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/helper-get-function-arity": "^7.8.3", - "@babel/template": "^7.8.3", - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-function-name", + "version": "7.8.3", "description": "Helper function to change the property 'name' of every function", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-function-name", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + "main": "lib/index.js", + "dependencies": { + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helper-get-function-arity/package.json b/node_modules/jest-circus/node_modules/@babel/helper-get-function-arity/package.json index 61c213999..119889435 100644 --- a/node_modules/jest-circus/node_modules/@babel/helper-get-function-arity/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helper-get-function-arity/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, + "name": "@babel/helper-get-function-arity", + "version": "7.8.3", "description": "Helper function to get function arity", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helper-get-function-arity", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helper-split-export-declaration/package.json b/node_modules/jest-circus/node_modules/@babel/helper-split-export-declaration/package.json index 013034cb3..c8805560c 100644 --- a/node_modules/jest-circus/node_modules/@babel/helper-split-export-declaration/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,20 +1,15 @@ { - "bundleDependencies": false, - "dependencies": { - "@babel/types": "^7.8.3" - }, - "deprecated": false, - "description": ">", - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "license": "MIT", - "main": "lib/index.js", "name": "@babel/helper-split-export-declaration", + "version": "7.8.3", + "description": "", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration", + "license": "MIT", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + "main": "lib/index.js", + "dependencies": { + "@babel/types": "^7.8.3" }, - "version": "7.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/code-frame/package.json b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/code-frame/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/template/package.json b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/template/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json index baf3b844f..2a47128eb 100644 --- a/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helpers/node_modules/@babel/traverse/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/traverse", + "version": "7.9.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -15,22 +21,8 @@ "globals": "^11.1.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/traverse", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/helpers/package.json b/node_modules/jest-circus/node_modules/@babel/helpers/package.json index 25913b8e5..8500d7aa5 100644 --- a/node_modules/jest-circus/node_modules/@babel/helpers/package.json +++ b/node_modules/jest-circus/node_modules/@babel/helpers/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/helpers", + "version": "7.9.2", + "description": "Collection of helper functions used by Babel transforms.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helpers", + "main": "lib/index.js", "dependencies": { "@babel/template": "^7.8.3", "@babel/traverse": "^7.9.0", "@babel/types": "^7.9.0" }, - "deprecated": false, - "description": "Collection of helper functions used by Babel transforms.", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "2399e0df23cbd574a5ab39822288c438f5380ae8", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/helpers", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" - }, - "version": "7.9.2" + "gitHead": "2399e0df23cbd574a5ab39822288c438f5380ae8" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/ansi-styles/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/ansi-styles/package.json index 5663ace24..a5eb4ff0f 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/ansi-styles/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/ansi-styles/package.json @@ -1,34 +1,24 @@ { + "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" }, - "ava": { - "require": "babel-polyfill" - }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-convert": "^1.9.0" - }, - "deprecated": false, - "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", @@ -51,15 +41,16 @@ "command-line", "text" ], - "license": "MIT", - "name": "ansi-styles", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/ansi-styles.git" + "dependencies": { + "color-convert": "^1.9.0" }, - "scripts": { - "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" }, - "version": "3.2.1" + "ava": { + "require": "babel-polyfill" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/chalk/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/chalk/package.json index 270fecdc3..aed521aec 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/chalk/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/chalk/package.json @@ -1,37 +1,23 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "deprecated": false, + "name": "chalk", + "version": "2.4.2", "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": "*" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -55,19 +41,24 @@ "command-line", "text" ], - "license": "MIT", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" + "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", - "version": "2.4.2", "xo": { "envs": [ "node", diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-convert/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-convert/package.json index 991f69308..6446c22d5 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-convert/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-convert/package.json @@ -1,28 +1,14 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "1.1.3" - }, - "deprecated": false, + "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", @@ -37,22 +23,24 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-name/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-name/package.json index 87d0e72ec..40d588535 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-name/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/color-name/package.json @@ -1,30 +1,25 @@ { - "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" }, - "bundleDependencies": false, - "deprecated": false, - "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" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/has-flag/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/has-flag/package.json index 1903ff01c..ff188fa37 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/has-flag/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/has-flag/package.json @@ -1,26 +1,23 @@ { + "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" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -40,14 +37,8 @@ "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": "*" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/supports-color/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/supports-color/package.json index 9e4eafa85..efeb00b06 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/supports-color/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^3.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^3.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" }, - "version": "5.5.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/highlight/package.json b/node_modules/jest-circus/node_modules/@babel/highlight/package.json index f4ecd5f2a..2cd8265e5 100644 --- a/node_modules/jest-circus/node_modules/@babel/highlight/package.json +++ b/node_modules/jest-circus/node_modules/@babel/highlight/package.json @@ -1,30 +1,22 @@ { - "author": { - "name": "suchipi", - "email": "me@suchipi.com" + "name": "@babel/highlight", + "version": "7.9.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "author": "suchipi ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-highlight", + "main": "lib/index.js", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, - "deprecated": false, - "description": "Syntax highlight JavaScript strings for output in terminals.", "devDependencies": { "strip-ansi": "^4.0.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "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.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/parser/package.json b/node_modules/jest-circus/node_modules/@babel/parser/package.json index ce08ec92b..50f9b985f 100644 --- a/node_modules/jest-circus/node_modules/@babel/parser/package.json +++ b/node_modules/jest-circus/node_modules/@babel/parser/package.json @@ -1,30 +1,13 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "@babel/parser", + "version": "7.9.4", "description": "A JavaScript parser", - "devDependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/helper-fixtures": "^7.8.6", - "@babel/helper-validator-identifier": "^7.9.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "files": [ - "bin", - "lib", - "typings" - ], - "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, "keywords": [ "babel", "javascript", @@ -33,16 +16,25 @@ "ecmascript", "@babel/parser" ], - "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-parser", "main": "lib/index.js", - "name": "@babel/parser", - "publishConfig": { - "access": "public" + "types": "typings/babel-parser.d.ts", + "files": [ + "bin", + "lib", + "typings" + ], + "engines": { + "node": ">=6.0.0" + }, + "devDependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/helper-fixtures": "^7.8.6", + "@babel/helper-validator-identifier": "^7.9.0", + "charcodes": "^0.2.0" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + "bin": { + "parser": "./bin/babel-parser.js" }, - "types": "typings/babel-parser.d.ts", - "version": "7.9.4" + "gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@babel/types/package.json b/node_modules/jest-circus/node_modules/@babel/types/package.json index 4d0dd6d88..0cc418fa7 100644 --- a/node_modules/jest-circus/node_modules/@babel/types/package.json +++ b/node_modules/jest-circus/node_modules/@babel/types/package.json @@ -1,32 +1,24 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/types", + "version": "7.9.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", + "types": "lib/index.d.ts", "dependencies": { "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" }, - "deprecated": false, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "@babel/generator": "^7.9.0", "@babel/parser": "^7.9.0" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "types": "lib/index.d.ts", - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/console/package.json b/node_modules/jest-circus/node_modules/@jest/console/package.json index f6293f7a5..d12ab6045 100644 --- a/node_modules/jest-circus/node_modules/@jest/console/package.json +++ b/node_modules/jest-circus/node_modules/@jest/console/package.json @@ -1,41 +1,35 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/console", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-console" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/source-map": "^25.2.1", "chalk": "^3.0.0", "jest-util": "^25.2.3", "slash": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/console", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-console" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/environment/package.json b/node_modules/jest-circus/node_modules/@jest/environment/package.json index e589f3e28..274472d05 100644 --- a/node_modules/jest-circus/node_modules/@jest/environment/package.json +++ b/node_modules/jest-circus/node_modules/@jest/environment/package.json @@ -1,40 +1,34 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/environment", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/fake-timers": "^25.2.4", "@jest/types": "^25.2.3", "jest-mock": "^25.2.3" }, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/environment", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/fake-timers/package.json b/node_modules/jest-circus/node_modules/@jest/fake-timers/package.json index 0ecc1200d..302a8c398 100644 --- a/node_modules/jest-circus/node_modules/@jest/fake-timers/package.json +++ b/node_modules/jest-circus/node_modules/@jest/fake-timers/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/fake-timers", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-fake-timers" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "jest-message-util": "^25.2.4", @@ -10,7 +23,6 @@ "jest-util": "^25.2.3", "lolex": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/lolex": "^5.1.0", "@types/node": "*" @@ -18,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/fake-timers", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-fake-timers" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/source-map/package.json b/node_modules/jest-circus/node_modules/@jest/source-map/package.json index 7c9dc7ebf..94034e09d 100644 --- a/node_modules/jest-circus/node_modules/@jest/source-map/package.json +++ b/node_modules/jest-circus/node_modules/@jest/source-map/package.json @@ -1,40 +1,34 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/source-map", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-source-map" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.3", "source-map": "^0.6.0" }, - "deprecated": false, "devDependencies": { "@types/graceful-fs": "^4.1.2" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/source-map", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-source-map" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/test-result/package.json b/node_modules/jest-circus/node_modules/@jest/test-result/package.json index 00442d76f..f170ce10a 100644 --- a/node_modules/jest-circus/node_modules/@jest/test-result/package.json +++ b/node_modules/jest-circus/node_modules/@jest/test-result/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/test-result", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-test-result" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/transform": "^25.2.4", @@ -10,30 +23,11 @@ "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, - "deprecated": false, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/test-result", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-test-result" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/test-sequencer/package.json b/node_modules/jest-circus/node_modules/@jest/test-sequencer/package.json index 4479f806e..3dfae7a75 100644 --- a/node_modules/jest-circus/node_modules/@jest/test-sequencer/package.json +++ b/node_modules/jest-circus/node_modules/@jest/test-sequencer/package.json @@ -1,31 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@jest/test-result": "^25.2.4", - "jest-haste-map": "^25.2.3", - "jest-runner": "^25.2.4", - "jest-runtime": "^25.2.4" - }, - "deprecated": false, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", "name": "@jest/test-sequencer", - "publishConfig": { - "access": "public" - }, + "version": "25.2.4", "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest.git", "directory": "packages/jest-test-sequencer" }, + "license": "MIT", + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -34,5 +16,17 @@ ] } }, - "version": "25.2.4" + "dependencies": { + "@jest/test-result": "^25.2.4", + "jest-haste-map": "^25.2.3", + "jest-runner": "^25.2.4", + "jest-runtime": "^25.2.4" + }, + "engines": { + "node": ">= 8.3" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/transform/package.json b/node_modules/jest-circus/node_modules/@jest/transform/package.json index fb161f2a4..6c096ce4c 100644 --- a/node_modules/jest-circus/node_modules/@jest/transform/package.json +++ b/node_modules/jest-circus/node_modules/@jest/transform/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "@jest/transform", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-transform" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^25.2.3", @@ -21,7 +34,6 @@ "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__core": "^7.1.0", "@types/convert-source-map": "^1.5.1", @@ -35,26 +47,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "@jest/transform", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-transform" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@jest/types/package.json b/node_modules/jest-circus/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-circus/node_modules/@jest/types/package.json +++ b/node_modules/jest-circus/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/@types/yargs/package.json b/node_modules/jest-circus/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-circus/node_modules/@types/yargs/package.json +++ b/node_modules/jest-circus/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/acorn/package.json b/node_modules/jest-circus/node_modules/acorn/package.json index 39139962f..40a5beda7 100644 --- a/node_modules/jest-circus/node_modules/acorn/package.json +++ b/node_modules/jest-circus/node_modules/acorn/package.json @@ -1,44 +1,39 @@ { - "bin": { - "acorn": "bin/acorn" - }, - "bugs": { - "url": "https://github.com/acornjs/acorn/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "acorn", "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", - "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/ansi-regex/package.json b/node_modules/jest-circus/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-circus/node_modules/ansi-regex/package.json +++ b/node_modules/jest-circus/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/ansi-styles/package.json b/node_modules/jest-circus/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-circus/node_modules/ansi-styles/package.json +++ b/node_modules/jest-circus/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-circus/node_modules/anymatch/package.json b/node_modules/jest-circus/node_modules/anymatch/package.json index 4135255fa..aa33dbcdb 100644 --- a/node_modules/jest-circus/node_modules/anymatch/package.json +++ b/node_modules/jest-circus/node_modules/anymatch/package.json @@ -1,30 +1,25 @@ { - "author": { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - "bugs": { - "url": "https://github.com/micromatch/anymatch/issues" - }, - "bundleDependencies": false, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "deprecated": false, + "name": "anymatch", + "version": "3.1.1", "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" ], + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "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" + }, "keywords": [ "match", "any", @@ -39,15 +34,15 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/babel-jest/package.json b/node_modules/jest-circus/node_modules/babel-jest/package.json index d6be13568..6fb13241b 100644 --- a/node_modules/jest-circus/node_modules/babel-jest/package.json +++ b/node_modules/jest-circus/node_modules/babel-jest/package.json @@ -1,8 +1,22 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "babel-jest", + "description": "Jest plugin to use babel for transformation.", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-jest" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/transform": "^25.2.4", "@jest/types": "^25.2.3", @@ -12,37 +26,17 @@ "chalk": "^3.0.0", "slash": "^3.0.0" }, - "deprecated": false, - "description": "Jest plugin to use babel for transformation.", "devDependencies": { "@babel/core": "^7.1.0" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "babel-jest", "peerDependencies": { "@babel/core": "^7.0.0" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-jest" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/babel-plugin-istanbul/package.json b/node_modules/jest-circus/node_modules/babel-plugin-istanbul/package.json index 2545d842a..446ba4058 100644 --- a/node_modules/jest-circus/node_modules/babel-plugin-istanbul/package.json +++ b/node_modules/jest-circus/node_modules/babel-plugin-istanbul/package.json @@ -1,11 +1,13 @@ { - "author": { - "name": "Thai Pangsakulyanont @dtinth" - }, - "bugs": { - "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" - }, - "bundleDependencies": false, + "name": "babel-plugin-istanbul", + "version": "6.0.0", + "author": "Thai Pangsakulyanont @dtinth", + "license": "BSD-3-Clause", + "description": "A babel plugin that adds istanbul instrumentation to ES6 code", + "main": "lib/index.js", + "files": [ + "lib" + ], "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -13,8 +15,6 @@ "istanbul-lib-instrument": "^4.0.0", "test-exclude": "^6.0.0" }, - "deprecated": false, - "description": "A babel plugin that adds istanbul instrumentation to ES6 code", "devDependencies": { "@babel/cli": "^7.7.5", "@babel/core": "^7.7.5", @@ -29,22 +29,29 @@ "standard": "^14.3.1", "standard-version": "^7.1.0" }, - "engines": { - "node": ">=8" + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "release": "babel src --out-dir lib", + "pretest": "standard && npm run release", + "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js", + "prepublish": "npm test && npm run release", + "version": "standard-version" + }, + "standard": { + "ignore": [ + "fixtures/*.js" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" }, - "files": [ - "lib" - ], - "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", "keywords": [ "istanbul", "babel", "plugin", "instrumentation" ], - "license": "BSD-3-Clause", - "main": "lib/index.js", - "name": "babel-plugin-istanbul", "nyc": { "include": [ "src/*.js", @@ -56,22 +63,11 @@ "sourceMap": false, "instrument": false }, - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" - }, - "scripts": { - "coverage": "nyc report --reporter=text-lcov | coveralls", - "prepublish": "npm test && npm run release", - "pretest": "standard && npm run release", - "release": "babel src --out-dir lib", - "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js", - "version": "standard-version" - }, - "standard": { - "ignore": [ - "fixtures/*.js" - ] + "bugs": { + "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" }, - "version": "6.0.0" + "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/babel-plugin-jest-hoist/package.json b/node_modules/jest-circus/node_modules/babel-plugin-jest-hoist/package.json index 0368cd1ac..bec4f12b6 100644 --- a/node_modules/jest-circus/node_modules/babel-plugin-jest-hoist/package.json +++ b/node_modules/jest-circus/node_modules/babel-plugin-jest-hoist/package.json @@ -1,33 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/babel__traverse": "^7.0.6" - }, - "deprecated": false, - "description": "Babel plugin to hoist `jest.disableAutomock`, `jest.enableAutomock`, `jest.unmock`, `jest.mock`, calls above `import` statements. This plugin is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", - "devDependencies": { - "@babel/types": "^7.3.3", - "@types/node": "*" + "name": "babel-plugin-jest-hoist", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-plugin-jest-hoist" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "babel-plugin-jest-hoist", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-plugin-jest-hoist" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -36,5 +19,15 @@ ] } }, - "version": "25.2.1" + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "devDependencies": { + "@babel/types": "^7.3.3", + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/babel-preset-jest/package.json b/node_modules/jest-circus/node_modules/babel-preset-jest/package.json index 77c4494b1..c21d6d016 100644 --- a/node_modules/jest-circus/node_modules/babel-preset-jest/package.json +++ b/node_modules/jest-circus/node_modules/babel-preset-jest/package.json @@ -1,33 +1,26 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "babel-preset-jest", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/babel-preset-jest" }, - "bundleDependencies": false, + "license": "MIT", + "main": "index.js", "dependencies": { "@babel/plugin-syntax-bigint": "^7.0.0", "@babel/plugin-syntax-object-rest-spread": "^7.0.0", "babel-plugin-jest-hoist": "^25.2.1" }, - "deprecated": false, - "description": "> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", - "engines": { - "node": ">= 8.3" - }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "index.js", - "name": "babel-preset-jest", "peerDependencies": { "@babel/core": "^7.0.0" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/babel-preset-jest" - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/braces/package.json b/node_modules/jest-circus/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/jest-circus/node_modules/braces/package.json +++ b/node_modules/jest-circus/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/chalk/package.json b/node_modules/jest-circus/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-circus/node_modules/chalk/package.json +++ b/node_modules/jest-circus/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-circus/node_modules/cliui/package.json b/node_modules/jest-circus/node_modules/cliui/package.json index f5ba9937e..2869089cc 100644 --- a/node_modules/jest-circus/node_modules/cliui/package.json +++ b/node_modules/jest-circus/node_modules/cliui/package.json @@ -1,12 +1,17 @@ { - "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" }, - "bundleDependencies": false, "config": { "blanket": { "pattern": [ @@ -19,13 +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" }, - "deprecated": false, - "description": "easily create complex multi-column command-line-interfaces", "devDependencies": { "chai": "^4.2.0", "chalk": "^3.0.0", @@ -34,41 +56,10 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/color-convert/package.json b/node_modules/jest-circus/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-circus/node_modules/color-convert/package.json +++ b/node_modules/jest-circus/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/color-name/package.json b/node_modules/jest-circus/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-circus/node_modules/color-name/package.json +++ b/node_modules/jest-circus/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/cssom/package.json b/node_modules/jest-circus/node_modules/cssom/package.json index 224c2a178..4df6a91db 100644 --- a/node_modules/jest-circus/node_modules/cssom/package.json +++ b/node_modules/jest-circus/node_modules/cssom/package.json @@ -1,30 +1,18 @@ { - "author": { - "name": "Nikita Vasilyev", - "email": "me@elv1s.ru" - }, - "bugs": { - "url": "https://github.com/NV/CSSOM/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "cssom", "description": "CSS Object Model implementation and CSS parser", - "files": [ - "lib/" - ], - "homepage": "https://github.com/NV/CSSOM#readme", "keywords": [ "CSS", "CSSOM", "parser", "styleSheet" ], - "license": "MIT", + "version": "0.4.4", + "author": "Nikita Vasilyev ", + "repository": "NV/CSSOM", + "files": [ + "lib/" + ], "main": "./lib/index.js", - "name": "cssom", - "repository": { - "type": "git", - "url": "git+https://github.com/NV/CSSOM.git" - }, - "version": "0.4.4" + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/cssstyle/node_modules/cssom/package.json b/node_modules/jest-circus/node_modules/cssstyle/node_modules/cssom/package.json index 136ffed43..2161b2126 100644 --- a/node_modules/jest-circus/node_modules/cssstyle/node_modules/cssom/package.json +++ b/node_modules/jest-circus/node_modules/cssstyle/node_modules/cssom/package.json @@ -1,30 +1,18 @@ { - "author": { - "name": "Nikita Vasilyev", - "email": "me@elv1s.ru" - }, - "bugs": { - "url": "https://github.com/NV/CSSOM/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "cssom", "description": "CSS Object Model implementation and CSS parser", - "files": [ - "lib/" - ], - "homepage": "https://github.com/NV/CSSOM#readme", "keywords": [ "CSS", "CSSOM", "parser", "styleSheet" ], - "license": "MIT", + "version": "0.3.8", + "author": "Nikita Vasilyev ", + "repository": "NV/CSSOM", + "files": [ + "lib/" + ], "main": "./lib/index.js", - "name": "cssom", - "repository": { - "type": "git", - "url": "git+https://github.com/NV/CSSOM.git" - }, - "version": "0.3.8" + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/cssstyle/package.json b/node_modules/jest-circus/node_modules/cssstyle/package.json index adc2b9a27..3dbd34b6c 100644 --- a/node_modules/jest-circus/node_modules/cssstyle/package.json +++ b/node_modules/jest-circus/node_modules/cssstyle/package.json @@ -1,8 +1,25 @@ { - "bugs": { - "url": "https://github.com/jsdom/cssstyle/issues" - }, - "bundleDependencies": false, + "name": "cssstyle", + "description": "CSSStyleDeclaration Object Model implementation", + "keywords": [ + "CSS", + "CSSStyleDeclaration", + "StyleSheet" + ], + "version": "2.2.0", + "homepage": "https://github.com/jsdom/cssstyle", + "maintainers": [ + { + "name": "Jon Sakas", + "email": "jon.sakas@gmail.com", + "url": "https://jon.sakas.co/" + }, + { + "name": "Rafał Ruciński", + "email": "fatfisz@gmail.com", + "url": "https://fatfisz.com" + } + ], "contributors": [ { "name": "Chad Walker", @@ -10,11 +27,18 @@ "url": "https://github.com/chad3814" } ], + "repository": "jsdom/cssstyle", + "bugs": "https://github.com/jsdom/cssstyle/issues", + "directories": { + "lib": "./lib" + }, + "files": [ + "lib/" + ], + "main": "./lib/CSSStyleDeclaration.js", "dependencies": { "cssom": "~0.3.6" }, - "deprecated": false, - "description": "CSSStyleDeclaration Object Model implementation", "devDependencies": { "babel-generator": "~6.26.1", "babel-traverse": "~6.26.0", @@ -29,40 +53,6 @@ "request": "^2.88.0", "resolve": "~1.11.1" }, - "directories": { - "lib": "./lib" - }, - "engines": { - "node": ">=8" - }, - "files": [ - "lib/" - ], - "homepage": "https://github.com/jsdom/cssstyle", - "keywords": [ - "CSS", - "CSSStyleDeclaration", - "StyleSheet" - ], - "license": "MIT", - "main": "./lib/CSSStyleDeclaration.js", - "maintainers": [ - { - "name": "Jon Sakas", - "email": "jon.sakas@gmail.com", - "url": "https://jon.sakas.co/" - }, - { - "name": "Rafał Ruciński", - "email": "fatfisz@gmail.com", - "url": "https://fatfisz.com" - } - ], - "name": "cssstyle", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/cssstyle.git" - }, "scripts": { "download": "node ./scripts/download_latest_properties.js && eslint lib/allProperties.js --fix", "generate": "run-p generate:*", @@ -75,5 +65,8 @@ "test-ci": "npm run lint && npm run test && codecov", "update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS" }, - "version": "2.2.0" + "license": "MIT", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/debug/package.json b/node_modules/jest-circus/node_modules/debug/package.json index 7bc94f7f0..a71916fc4 100644 --- a/node_modules/jest-circus/node_modules/debug/package.json +++ b/node_modules/jest-circus/node_modules/debug/package.json @@ -1,29 +1,44 @@ { - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" + "name": "debug", + "version": "4.1.1", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" }, - "bundleDependencies": false, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" + ], + "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" }, - "deprecated": false, - "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", @@ -42,38 +57,7 @@ "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" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/detect-newline/package.json b/node_modules/jest-circus/node_modules/detect-newline/package.json index 9556a3857..c473f89d0 100644 --- a/node_modules/jest-circus/node_modules/detect-newline/package.json +++ b/node_modules/jest-circus/node_modules/detect-newline/package.json @@ -1,28 +1,24 @@ { + "name": "detect-newline", + "version": "3.1.0", + "description": "Detect the dominant newline character of a string", + "license": "MIT", + "repository": "sindresorhus/detect-newline", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/detect-newline/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Detect the dominant newline character of 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/detect-newline#readme", "keywords": [ "newline", "linebreak", @@ -35,14 +31,9 @@ "character", "char" ], - "license": "MIT", - "name": "detect-newline", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/detect-newline.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "3.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/jest-circus/node_modules/diff-sequences/package.json b/node_modules/jest-circus/node_modules/diff-sequences/package.json index e1c555c4c..494fb3484 100644 --- a/node_modules/jest-circus/node_modules/diff-sequences/package.json +++ b/node_modules/jest-circus/node_modules/diff-sequences/package.json @@ -1,20 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "diff-sequences", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/diff-sequences" }, - "bundleDependencies": false, - "deprecated": false, + "license": "MIT", "description": "Compare items in two sequences to find a longest common subsequence", - "devDependencies": { - "benchmark": "^2.1.4", - "diff": "^4.0.1", - "fast-check": "^1.13.0" - }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "keywords": [ "fast", "linear", @@ -22,20 +15,10 @@ "callback", "diff" ], - "license": "MIT", - "main": "build/index.js", - "name": "diff-sequences", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/diff-sequences" - }, - "scripts": { - "perf": "node --expose-gc perf/index.js" + "engines": { + "node": ">= 8.3" }, + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -44,5 +27,16 @@ ] } }, - "version": "25.2.1" + "scripts": { + "perf": "node --expose-gc perf/index.js" + }, + "devDependencies": { + "benchmark": "^2.1.4", + "diff": "^4.0.1", + "fast-check": "^1.13.0" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/emoji-regex/package.json b/node_modules/jest-circus/node_modules/emoji-regex/package.json index eecc5eb31..cb5ad3677 100644 --- a/node_modules/jest-circus/node_modules/emoji-regex/package.json +++ b/node_modules/jest-circus/node_modules/emoji-regex/package.json @@ -1,32 +1,10 @@ { - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/emoji-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -38,17 +16,35 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/expect/package.json b/node_modules/jest-circus/node_modules/expect/package.json index 1613421eb..fbc25faf7 100644 --- a/node_modules/jest-circus/node_modules/expect/package.json +++ b/node_modules/jest-circus/node_modules/expect/package.json @@ -1,9 +1,22 @@ { - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "expect", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/expect" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", "dependencies": { "@jest/types": "^25.2.3", "ansi-styles": "^4.0.0", @@ -12,8 +25,6 @@ "jest-message-util": "^25.2.4", "jest-regex-util": "^25.2.1" }, - "deprecated": false, - "description": "This package exports the `expect` function used in [Jest](https://jestjs.io/). You can find its documentation [on Jest's website](https://jestjs.io/docs/en/expect.html).", "devDependencies": { "@jest/test-utils": "^25.2.1", "chalk": "^3.0.0", @@ -23,26 +34,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "expect", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/expect" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/fill-range/package.json b/node_modules/jest-circus/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/jest-circus/node_modules/fill-range/package.json +++ b/node_modules/jest-circus/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/find-up/package.json b/node_modules/jest-circus/node_modules/find-up/package.json index 3c655ffa6..39a30757f 100644 --- a/node_modules/jest-circus/node_modules/find-up/package.json +++ b/node_modules/jest-circus/node_modules/find-up/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "bundleDependencies": false, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "walking", "path" ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "version": "4.1.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/jest-circus/node_modules/fsevents/package.json b/node_modules/jest-circus/node_modules/fsevents/package.json index cf0cd7217..d3b732346 100644 --- a/node_modules/jest-circus/node_modules/fsevents/package.json +++ b/node_modules/jest-circus/node_modules/fsevents/package.json @@ -1,7 +1,34 @@ { - "bugs": { - "url": "https://github.com/fsevents/fsevents/issues" + "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" + ], + "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", @@ -24,36 +51,9 @@ "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" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/has-flag/package.json b/node_modules/jest-circus/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-circus/node_modules/has-flag/package.json +++ b/node_modules/jest-circus/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/is-fullwidth-code-point/package.json b/node_modules/jest-circus/node_modules/is-fullwidth-code-point/package.json index c556c1c78..a67414558 100644 --- a/node_modules/jest-circus/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/jest-circus/node_modules/is-fullwidth-code-point/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -38,14 +34,9 @@ "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" + "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/jest-circus/node_modules/is-number/package.json b/node_modules/jest-circus/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/jest-circus/node_modules/is-number/package.json +++ b/node_modules/jest-circus/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-coverage/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-coverage/package.json index 3a5bcc763..dc4a11b52 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-coverage/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-coverage/package.json @@ -1,28 +1,21 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "istanbul-lib-coverage", + "version": "3.0.0", "description": "Data library for istanbul coverage objects", + "author": "Krishnan Anantheswaran ", + "main": "index.js", + "files": [ + "lib", + "index.js" + ], + "scripts": { + "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" + }, "devDependencies": { "chai": "^4.2.0", "mocha": "^6.2.2", "nyc": "^15.0.0-beta.2" }, - "engines": { - "node": ">=8" - }, - "files": [ - "lib", - "index.js" - ], - "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b", - "homepage": "https://istanbul.js.org/", "karmaDeps": { "browserify-istanbul": "^0.2.1", "karma": "^0.13.10", @@ -33,21 +26,23 @@ "karma-phantomjs-launcher": "^0.2.0", "phantomjs": "^1.9.17" }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-coverage" + }, "keywords": [ "istanbul", "coverage", "data" ], "license": "BSD-3-Clause", - "main": "index.js", - "name": "istanbul-lib-coverage", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-coverage" + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "scripts": { - "test": "nyc --nycrc-path=../../monorepo-per-package-full.js mocha" + "homepage": "https://istanbul.js.org/", + "engines": { + "node": ">=8" }, - "version": "3.0.0" + "gitHead": "5319df684b508ff6fb19fe8b9a6147a3c5924e4b" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json index 7508b5b14..253fbbf10 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/code-frame/package.json @@ -1,29 +1,21 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/code-frame", + "version": "7.8.3", + "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" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "dependencies": { "@babel/highlight": "^7.8.3" }, - "deprecated": false, - "description": "Generate errors that contain a code frame that point to source locations.", "devDependencies": { "chalk": "^2.0.0", "strip-ansi": "^4.0.0" }, - "gitHead": "a7620bd266ae1345975767bbc7abf09034437017", - "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.8.3" + "gitHead": "a7620bd266ae1345975767bbc7abf09034437017" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json index a49f5488c..45eaf881d 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/template/package.json @@ -1,27 +1,19 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "bundleDependencies": false, - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6" - }, - "deprecated": false, + "name": "@babel/template", + "version": "7.8.6", "description": "Generate an AST from a string template.", - "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", - "main": "lib/index.js", - "name": "@babel/template", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" }, - "version": "7.8.6" + "gitHead": "750d3dde3bd2d390819820fd22c05441da78751b" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json index baf3b844f..2a47128eb 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/@babel/traverse/package.json @@ -1,9 +1,15 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/traverse", + "version": "7.9.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" }, - "bundleDependencies": false, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -15,22 +21,8 @@ "globals": "^11.1.0", "lodash": "^4.17.13" }, - "deprecated": false, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "@babel/helper-plugin-test-runner": "^7.8.3" }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/traverse", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json index 6b65b84a0..90e287ecf 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json index fa06ce5de..27acafd1d 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/@babel/core/package.json @@ -1,7 +1,36 @@ { - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" + "name": "@babel/core", + "version": "7.9.0", + "description": "Babel compiler core.", + "main": "lib/index.js", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "publishConfig": { + "access": "public" + }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-core", + "keywords": [ + "6to5", + "babel", + "classes", + "const", + "es6", + "harmony", + "let", + "modules", + "transpile", + "transpiler", + "var", + "babel-core", + "compiler" + ], + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" }, "browser": { "./lib/config/files/index.js": "./lib/config/files/index-browser.js", @@ -9,7 +38,6 @@ "./src/config/files/index.js": "./src/config/files/index-browser.js", "./src/transform-file.js": "./src/transform-file-browser.js" }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", @@ -28,44 +56,8 @@ "semver": "^5.4.1", "source-map": "^0.5.0" }, - "deprecated": false, - "description": "Babel compiler core.", "devDependencies": { "@babel/helper-transform-fixture-test-runner": "^7.8.3" }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - }, - "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02", - "homepage": "https://babeljs.io/", - "keywords": [ - "6to5", - "babel", - "classes", - "const", - "es6", - "harmony", - "let", - "modules", - "transpile", - "transpiler", - "var", - "babel-core", - "compiler" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "@babel/core", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-core" - }, - "version": "7.9.0" + "gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json index 9e2674cec..23449cf21 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/node_modules/source-map/package.json @@ -1,167 +1,52 @@ { - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.5.7", + "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 " ], - "deprecated": false, - "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", "lib/", @@ -170,19 +55,18 @@ "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.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/package.json b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/package.json index 334f488f8..3e64e5df5 100644 --- a/node_modules/jest-circus/node_modules/istanbul-lib-instrument/package.json +++ b/node_modules/jest-circus/node_modules/istanbul-lib-instrument/package.json @@ -1,12 +1,17 @@ { - "author": { - "name": "Krishnan Anantheswaran", - "email": "kananthmail-github@yahoo.com" - }, - "bugs": { - "url": "https://github.com/istanbuljs/istanbuljs/issues" + "name": "istanbul-lib-instrument", + "version": "4.0.1", + "description": "Core istanbul API for JS code coverage", + "author": "Krishnan Anantheswaran ", + "main": "dist/index.js", + "files": [ + "dist" + ], + "scripts": { + "release": "babel src --out-dir dist && documentation build -f md -o api.md src", + "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json --require=@babel/register --include=src mocha", + "prepublish": "npm run release" }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.7.5", "@babel/parser": "^7.7.5", @@ -16,8 +21,6 @@ "istanbul-lib-coverage": "^3.0.0", "semver": "^6.3.0" }, - "deprecated": false, - "description": "Core istanbul API for JS code coverage", "devDependencies": { "@babel/cli": "^7.7.5", "@babel/plugin-transform-modules-commonjs": "^7.7.5", @@ -31,32 +34,24 @@ "nopt": "^4.0.1", "nyc": "^15.0.0-beta.2" }, - "engines": { - "node": ">=8" + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" }, - "files": [ - "dist" - ], - "gitHead": "4eb43e4325471549d2aa880b5ed2ada475265fcf", "homepage": "https://istanbul.js.org/", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", + "directory": "packages/istanbul-lib-instrument" + }, "keywords": [ "coverage", "istanbul", "js", "instrumentation" ], - "license": "BSD-3-Clause", - "main": "dist/index.js", - "name": "istanbul-lib-instrument", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git", - "directory": "packages/istanbul-lib-instrument" - }, - "scripts": { - "prepublish": "npm run release", - "release": "babel src --out-dir dist && documentation build -f md -o api.md src", - "test": "nyc --nycrc-path=../../monorepo-per-package-nycrc.json --require=@babel/register --include=src mocha" + "engines": { + "node": ">=8" }, - "version": "4.0.1" + "gitHead": "4eb43e4325471549d2aa880b5ed2ada475265fcf" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-config/package.json b/node_modules/jest-circus/node_modules/jest-config/package.json index 0bf6c73ec..acdb97782 100644 --- a/node_modules/jest-circus/node_modules/jest-config/package.json +++ b/node_modules/jest-circus/node_modules/jest-config/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-config", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-config" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.1.0", "@jest/test-sequencer": "^25.2.4", @@ -23,7 +36,6 @@ "pretty-format": "^25.2.3", "realpath-native": "^2.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__core": "^7.0.4", "@types/glob": "^7.1.1", @@ -32,26 +44,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-config", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-config" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-diff/package.json b/node_modules/jest-circus/node_modules/jest-diff/package.json index bbee85cf7..ff03d7757 100644 --- a/node_modules/jest-circus/node_modules/jest-diff/package.json +++ b/node_modules/jest-circus/node_modules/jest-diff/package.json @@ -1,16 +1,27 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-diff", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-diff" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "chalk": "^3.0.0", "diff-sequences": "^25.2.1", "jest-get-type": "^25.2.1", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Display differences clearly so people can review changes confidently.", "devDependencies": { "@jest/test-utils": "^25.2.1", "strip-ansi": "^6.0.0" @@ -18,26 +29,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-diff", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-diff" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-docblock/package.json b/node_modules/jest-circus/node_modules/jest-docblock/package.json index 63c0bb2e7..7ce5afcb6 100644 --- a/node_modules/jest-circus/node_modules/jest-docblock/package.json +++ b/node_modules/jest-circus/node_modules/jest-docblock/package.json @@ -1,32 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "detect-newline": "^3.0.0" - }, - "deprecated": false, - "description": "`jest-docblock` is a package that can extract and parse a specially-formatted comment called a \"docblock\" at the top of a file.", - "devDependencies": { - "@types/node": "*" - }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", "name": "jest-docblock", - "publishConfig": { - "access": "public" - }, + "version": "25.2.3", "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest.git", "directory": "packages/jest-docblock" }, + "license": "MIT", + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -35,5 +16,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "detect-newline": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "engines": { + "node": ">= 8.3" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-each/package.json b/node_modules/jest-circus/node_modules/jest-each/package.json index 6675ef8a0..efafaa151 100644 --- a/node_modules/jest-circus/node_modules/jest-each/package.json +++ b/node_modules/jest-circus/node_modules/jest-each/package.json @@ -1,12 +1,29 @@ { - "author": { - "name": "Matt Phillips", - "url": "mattphillips" + "name": "jest-each", + "version": "25.2.3", + "description": "Parameterised tests for Jest", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-each" }, - "bundleDependencies": false, + "keywords": [ + "jest", + "parameterised", + "test", + "each" + ], + "author": "Matt Phillips (mattphillips)", + "license": "MIT", "dependencies": { "@jest/types": "^25.2.3", "chalk": "^3.0.0", @@ -14,37 +31,11 @@ "jest-util": "^25.2.3", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Parameterised tests for Jest", "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "keywords": [ - "jest", - "parameterised", - "test", - "each" - ], - "license": "MIT", - "main": "build/index.js", - "name": "jest-each", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-each" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-environment-jsdom/package.json b/node_modules/jest-circus/node_modules/jest-environment-jsdom/package.json index 87d0b5aa3..af3d4116a 100644 --- a/node_modules/jest-circus/node_modules/jest-environment-jsdom/package.json +++ b/node_modules/jest-circus/node_modules/jest-environment-jsdom/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-environment-jsdom", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-jsdom" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/environment": "^25.2.4", "@jest/fake-timers": "^25.2.4", @@ -11,33 +24,14 @@ "jest-util": "^25.2.3", "jsdom": "^15.2.1" }, - "deprecated": false, "devDependencies": { "@types/jsdom": "^12.2.4" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-environment-jsdom", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment-jsdom" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-environment-node/package.json b/node_modules/jest-circus/node_modules/jest-environment-node/package.json index 9f5e14aa2..15ada7a55 100644 --- a/node_modules/jest-circus/node_modules/jest-environment-node/package.json +++ b/node_modules/jest-circus/node_modules/jest-environment-node/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-environment-node", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-node" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/environment": "^25.2.4", "@jest/fake-timers": "^25.2.4", @@ -11,33 +24,14 @@ "jest-util": "^25.2.3", "semver": "^6.3.0" }, - "deprecated": false, "devDependencies": { "@types/semver": "^6.2.1" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-environment-node", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment-node" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-get-type/package.json b/node_modules/jest-circus/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-circus/node_modules/jest-get-type/package.json +++ b/node_modules/jest-circus/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-haste-map/package.json b/node_modules/jest-circus/node_modules/jest-haste-map/package.json index 754aed866..6ce0149f0 100644 --- a/node_modules/jest-circus/node_modules/jest-haste-map/package.json +++ b/node_modules/jest-circus/node_modules/jest-haste-map/package.json @@ -1,13 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-haste-map", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-haste-map" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", - "fsevents": "^2.1.2", "graceful-fs": "^4.2.3", "jest-serializer": "^25.2.1", "jest-util": "^25.2.3", @@ -17,7 +29,6 @@ "walker": "^1.0.7", "which": "^2.0.2" }, - "deprecated": false, "devDependencies": { "@jest/test-utils": "^25.2.1", "@types/anymatch": "^1.3.1", @@ -28,32 +39,14 @@ "@types/sane": "^2.0.0", "@types/which": "^1.3.2" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-haste-map", "optionalDependencies": { "fsevents": "^2.1.2" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-haste-map" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-jasmine2/package.json b/node_modules/jest-circus/node_modules/jest-jasmine2/package.json index 78185ad25..9c72ade9d 100644 --- a/node_modules/jest-circus/node_modules/jest-jasmine2/package.json +++ b/node_modules/jest-circus/node_modules/jest-jasmine2/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-jasmine2", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-jasmine2" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/traverse": "^7.1.0", "@jest/environment": "^25.2.4", @@ -22,7 +35,6 @@ "pretty-format": "^25.2.3", "throat": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__traverse": "^7.0.4", "@types/co": "^4.6.2" @@ -30,26 +42,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-jasmine2", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-jasmine2" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-leak-detector/package.json b/node_modules/jest-circus/node_modules/jest-leak-detector/package.json index 45d55f63c..507327272 100644 --- a/node_modules/jest-circus/node_modules/jest-leak-detector/package.json +++ b/node_modules/jest-circus/node_modules/jest-leak-detector/package.json @@ -1,14 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-leak-detector", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-leak-detector" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "jest-get-type": "^25.2.1", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Module for verifying whether an object has been garbage collected or not.", "devDependencies": { "@types/weak-napi": "^1.0.0", "weak-napi": "^1.0.3" @@ -16,26 +27,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-leak-detector", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-leak-detector" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-matcher-utils/package.json b/node_modules/jest-circus/node_modules/jest-matcher-utils/package.json index 7a5a7221b..91482eb69 100644 --- a/node_modules/jest-circus/node_modules/jest-matcher-utils/package.json +++ b/node_modules/jest-circus/node_modules/jest-matcher-utils/package.json @@ -1,36 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "chalk": "^3.0.0", - "jest-diff": "^25.2.3", - "jest-get-type": "^25.2.1", - "pretty-format": "^25.2.3" - }, - "deprecated": false, + "name": "jest-matcher-utils", "description": "A set of utility functions for expect and related packages", - "devDependencies": { - "@jest/test-utils": "^25.2.1", - "@types/node": "*" + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-matcher-utils" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-matcher-utils", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-matcher-utils" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -39,5 +20,18 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "chalk": "^3.0.0", + "jest-diff": "^25.2.3", + "jest-get-type": "^25.2.1", + "pretty-format": "^25.2.3" + }, + "devDependencies": { + "@jest/test-utils": "^25.2.1", + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-message-util/package.json b/node_modules/jest-circus/node_modules/jest-message-util/package.json index 4b702bb9f..8f0d3b1a0 100644 --- a/node_modules/jest-circus/node_modules/jest-message-util/package.json +++ b/node_modules/jest-circus/node_modules/jest-message-util/package.json @@ -1,8 +1,24 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-message-util", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-message-util" + }, + "engines": { + "node": ">= 8.3" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.0.0", "@jest/test-result": "^25.2.4", @@ -13,34 +29,12 @@ "slash": "^3.0.0", "stack-utils": "^1.0.1" }, - "deprecated": false, "devDependencies": { "@types/babel__code-frame": "^7.0.0", "@types/micromatch": "^4.0.0" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-message-util", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-message-util" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-mock/package.json b/node_modules/jest-circus/node_modules/jest-mock/package.json index 18aaec944..7e6370b09 100644 --- a/node_modules/jest-circus/node_modules/jest-mock/package.json +++ b/node_modules/jest-circus/node_modules/jest-mock/package.json @@ -1,33 +1,22 @@ { - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-mock", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-mock" + }, + "engines": { + "node": ">= 8.3" }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3" }, - "deprecated": false, - "description": "## API", "devDependencies": { "@types/node": "*" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-mock", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-mock" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -36,5 +25,9 @@ ] } }, - "version": "25.2.3" + "browser": "build-es5/index.js", + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-regex-util/package.json b/node_modules/jest-circus/node_modules/jest-regex-util/package.json index 60cdecd7e..8f7fbe997 100644 --- a/node_modules/jest-circus/node_modules/jest-regex-util/package.json +++ b/node_modules/jest-circus/node_modules/jest-regex-util/package.json @@ -1,28 +1,19 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-regex-util", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-regex-util" }, - "bundleDependencies": false, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-regex-util", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-regex-util" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -31,5 +22,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/package.json index 0e1aa6321..5d27586ea 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/package.json @@ -1,18 +1,28 @@ { - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/browserify/resolve/issues" + "name": "resolve", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "version": "1.15.1", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" }, - "bundleDependencies": false, - "dependencies": { - "path-parse": "^1.0.6" + "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" }, - "deprecated": false, - "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", "devDependencies": { "@ljharb/eslint-config": "^16.0.0", "array.prototype.map": "^1.0.2", @@ -22,32 +32,16 @@ "tap": "0.4.13", "tape": "^5.0.0-next.4" }, - "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" + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" }, - "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" + "funding": { + "url": "https://github.com/sponsors/ljharb" }, - "version": "1.15.1" + "dependencies": { + "path-parse": "^1.0.6" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json index c13b8cf6a..a60376465 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json index 2f77720b8..6ba9318a0 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json @@ -1,4 +1,4 @@ { - "name": "baz", - "main": "quux.js" -} + "name": "baz", + "main": "quux.js" +} \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json index bf406f083..291ab03bc 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json index d7f4fc807..d08e00e9d 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json index f51287b9d..a92bfd7b1 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json index b71880417..b3b73da08 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json index 0cf827995..3158504f6 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json index 8508f9d2c..9c6d56b61 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json index 204de51e0..a2bbfff89 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json index f57c3b5f5..f7adacdeb 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json index acfe9e951..f3fffe71c 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json b/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json index 8e1b58591..b6e6d85fd 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/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/jest-circus/node_modules/jest-resolve/package.json b/node_modules/jest-circus/node_modules/jest-resolve/package.json index 9783475d0..73c17db98 100644 --- a/node_modules/jest-circus/node_modules/jest-resolve/package.json +++ b/node_modules/jest-circus/node_modules/jest-resolve/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-resolve", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-resolve" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "browser-resolve": "^1.11.3", @@ -11,7 +24,6 @@ "realpath-native": "^2.0.0", "resolve": "^1.15.1" }, - "deprecated": false, "devDependencies": { "@types/browser-resolve": "^1.11.0", "@types/resolve": "^1.14.0", @@ -20,26 +32,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-resolve", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-resolve" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-runner/package.json b/node_modules/jest-circus/node_modules/jest-runner/package.json index fa4ba569d..4abdf3b54 100644 --- a/node_modules/jest-circus/node_modules/jest-runner/package.json +++ b/node_modules/jest-circus/node_modules/jest-runner/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-runner", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-runner" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/environment": "^25.2.4", @@ -24,7 +37,6 @@ "source-map-support": "^0.5.6", "throat": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/exit": "^0.1.30", "@types/graceful-fs": "^4.1.2", @@ -35,26 +47,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-runner", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-runner" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-runtime/package.json b/node_modules/jest-circus/node_modules/jest-runtime/package.json index 3489b8202..3433edfbc 100644 --- a/node_modules/jest-circus/node_modules/jest-runtime/package.json +++ b/node_modules/jest-circus/node_modules/jest-runtime/package.json @@ -1,11 +1,21 @@ { - "bin": { - "jest-runtime": "bin/jest-runtime.js" + "name": "jest-runtime", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-runtime" }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/environment": "^25.2.4", @@ -33,7 +43,6 @@ "strip-bom": "^4.0.0", "yargs": "^15.3.1" }, - "deprecated": false, "devDependencies": { "@jest/test-utils": "^25.2.1", "@types/exit": "^0.1.30", @@ -43,29 +52,12 @@ "jest-environment-node": "^25.2.4", "jest-snapshot-serializer-raw": "^1.1.0" }, + "bin": "./bin/jest-runtime.js", "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-runtime", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-runtime" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-serializer/package.json b/node_modules/jest-circus/node_modules/jest-serializer/package.json index 2903bbf2c..a42b01945 100644 --- a/node_modules/jest-circus/node_modules/jest-serializer/package.json +++ b/node_modules/jest-circus/node_modules/jest-serializer/package.json @@ -1,29 +1,19 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-serializer", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-serializer" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Module for serializing and deserializing object into memory and disk. By default, the `v8` implementations are used, but if not present, it defaults to `JSON` implementation. Both serializers have the advantage of being able to serialize `Map`, `Set`, `undefined`, `NaN`, etc, although the JSON one does it through a replacer/reviver.", "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-serializer", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-serializer" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -32,5 +22,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-snapshot/package.json b/node_modules/jest-circus/node_modules/jest-snapshot/package.json index ade29f17a..7802d0d13 100644 --- a/node_modules/jest-circus/node_modules/jest-snapshot/package.json +++ b/node_modules/jest-circus/node_modules/jest-snapshot/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-snapshot", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-snapshot" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/types": "^7.0.0", "@jest/types": "^25.2.3", @@ -19,7 +32,6 @@ "pretty-format": "^25.2.3", "semver": "^6.3.0" }, - "deprecated": false, "devDependencies": { "@babel/traverse": "^7.3.4", "@types/natural-compare": "^1.4.0", @@ -32,26 +44,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-snapshot", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-snapshot" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-util/package.json b/node_modules/jest-circus/node_modules/jest-util/package.json index 2fbedd932..52d1ef521 100644 --- a/node_modules/jest-circus/node_modules/jest-util/package.json +++ b/node_modules/jest-circus/node_modules/jest-util/package.json @@ -1,15 +1,27 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-util", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-util" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "chalk": "^3.0.0", "is-ci": "^2.0.0", "make-dir": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/graceful-fs": "^4.1.2", "@types/is-ci": "^2.0.0", @@ -18,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-util", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-util" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-validate/package.json b/node_modules/jest-circus/node_modules/jest-validate/package.json index 8ff6cb3d2..6e60a30b6 100644 --- a/node_modules/jest-circus/node_modules/jest-validate/package.json +++ b/node_modules/jest-circus/node_modules/jest-validate/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-validate", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-validate" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "camelcase": "^5.3.1", @@ -11,34 +24,14 @@ "leven": "^3.1.0", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Generic configuration validation tool that helps you with warnings, errors and deprecation messages as well as showing users examples of correct configuration.", "devDependencies": { "@types/yargs": "^15.0.3" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-validate", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-validate" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jest-worker/package.json b/node_modules/jest-circus/node_modules/jest-worker/package.json index c55408acf..db1f03e16 100644 --- a/node_modules/jest-circus/node_modules/jest-worker/package.json +++ b/node_modules/jest-circus/node_modules/jest-worker/package.json @@ -1,14 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-worker", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-worker" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "merge-stream": "^2.0.0", "supports-color": "^7.0.0" }, - "deprecated": false, - "description": "Module for executing heavy tasks under forked processes in parallel, by providing a `Promise` based interface, minimum overhead, and bound workers.", "devDependencies": { "@types/merge-stream": "^1.1.2", "@types/node": "*", @@ -19,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-worker", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-worker" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/jsdom/package.json b/node_modules/jest-circus/node_modules/jsdom/package.json index 2e393c330..ed8d9e25b 100644 --- a/node_modules/jest-circus/node_modules/jsdom/package.json +++ b/node_modules/jest-circus/node_modules/jsdom/package.json @@ -1,13 +1,23 @@ { - "browser": { - "canvas": false, - "vm": "./lib/jsdom/vm-shim.js", - "./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js" - }, - "bugs": { - "url": "https://github.com/jsdom/jsdom/issues" - }, - "bundleDependencies": false, + "name": "jsdom", + "version": "15.2.1", + "description": "A JavaScript implementation of many web standards", + "keywords": [ + "dom", + "html", + "whatwg", + "w3c" + ], + "maintainers": [ + "Elijah Insua (http://tmpvar.com)", + "Domenic Denicola (https://domenic.me/)", + "Sebastian Mayr (https://blog.smayr.name/)", + "Joris van der Wel ", + "Timothy Gu (https://timothygu.me/)", + "Zirro " + ], + "license": "MIT", + "repository": "jsdom/jsdom", "dependencies": { "abab": "^2.0.0", "acorn": "^7.1.0", @@ -36,8 +46,14 @@ "ws": "^7.0.0", "xml-name-validator": "^3.0.0" }, - "deprecated": false, - "description": "A JavaScript implementation of many web standards", + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + }, "devDependencies": { "benchmark": "^2.1.4", "browserify": "^16.2.3", @@ -65,81 +81,34 @@ "wd": "^1.11.2", "webidl2js": "^10.0.0" }, - "engines": { - "node": ">=8" - }, - "homepage": "https://github.com/jsdom/jsdom#readme", - "keywords": [ - "dom", - "html", - "whatwg", - "w3c" - ], - "license": "MIT", - "main": "./lib/api.js", - "maintainers": [ - { - "name": "Elijah Insua", - "email": "tmpvar@gmail.com", - "url": "http://tmpvar.com" - }, - { - "name": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/" - }, - { - "name": "Sebastian Mayr", - "email": "sebmaster16@gmail.com", - "url": "https://blog.smayr.name/" - }, - { - "name": "Joris van der Wel", - "email": "joris@jorisvanderwel.com" - }, - { - "name": "Timothy Gu", - "email": "timothygu99@gmail.com", - "url": "https://timothygu.me/" - }, - { - "name": "Zirro", - "email": "code@zirro.se" - } - ], - "name": "jsdom", - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - }, - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/jsdom.git" + "browser": { + "canvas": false, + "vm": "./lib/jsdom/vm-shim.js", + "./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js" }, "scripts": { - "benchmark": "node ./benchmark/runner", - "benchmark-browser": "node ./benchmark/runner --bundle", - "convert-idl": "node ./scripts/webidl/convert", - "init-wpt": "git submodule update --init --recursive", - "lint": "eslint . --cache --ext .js,.html", - "lint-is-complete": "eslint-find-rules --unused .eslintrc.json", "prepare": "yarn convert-idl", "pretest": "yarn convert-idl && yarn init-wpt", - "reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt", - "test": "mocha test/index.js", + "test-wpt": "mocha test/web-platform-tests/run-wpts.js", + "test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js", + "test-mocha": "mocha", "test-api": "mocha test/api", - "test-browser": "yarn test-browser-iframe && yarn test-browser-worker", + "test": "mocha test/index.js", "test-browser-iframe": "karma start test/karma.conf.js", "test-browser-worker": "karma start test/karma-webworker.conf.js", - "test-mocha": "mocha", - "test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js", - "test-wpt": "mocha test/web-platform-tests/run-wpts.js", + "test-browser": "yarn test-browser-iframe && yarn test-browser-worker", + "lint": "eslint . --cache --ext .js,.html", + "lint-is-complete": "eslint-find-rules --unused .eslintrc.json", + "init-wpt": "git submodule update --init --recursive", + "reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt", + "update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json", "update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt", - "update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json" + "benchmark": "node ./benchmark/runner", + "benchmark-browser": "node ./benchmark/runner --bundle", + "convert-idl": "node ./scripts/webidl/convert" }, - "version": "15.2.1" + "main": "./lib/api.js", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/json5/package.json b/node_modules/jest-circus/node_modules/json5/package.json index a0a00cb80..425ea05bd 100644 --- a/node_modules/jest-circus/node_modules/json5/package.json +++ b/node_modules/jest-circus/node_modules/json5/package.json @@ -1,35 +1,55 @@ { - "author": { - "name": "Aseem Kishore", - "email": "aseem.kishore@gmail.com" + "name": "json5", + "version": "2.1.2", + "description": "JSON for humans.", + "main": "lib/index.js", + "module": "dist/index.mjs", + "bin": "lib/cli.js", + "browser": "dist/index.js", + "files": [ + "lib/", + "dist/" + ], + "engines": { + "node": ">=6" }, - "bin": { - "json5": "lib/cli.js" + "scripts": { + "build": "rollup -c", + "build-package": "node build/package.js", + "build-unicode": "node build/unicode.js", + "coverage": "tap --coverage-report html test", + "lint": "eslint --fix .", + "prepublishOnly": "npm run production", + "preversion": "npm run production", + "production": "npm run lint && npm test && npm run build", + "test": "tap -Rspec --100 test", + "version": "npm run build-package && git add package.json5" }, - "browser": "dist/index.js", - "bugs": { - "url": "https://github.com/json5/json5/issues" + "repository": { + "type": "git", + "url": "git+https://github.com/json5/json5.git" }, - "bundleDependencies": false, + "keywords": [ + "json", + "json5", + "es5", + "es2015", + "ecmascript" + ], + "author": "Aseem Kishore ", "contributors": [ - { - "name": "Max Nanasy", - "email": "max.nanasy@gmail.com" - }, - { - "name": "Andrew Eisenberg", - "email": "andrew@eisenberg.as" - }, - { - "name": "Jordan Tucker", - "email": "jordanbtucker@gmail.com" - } + "Max Nanasy ", + "Andrew Eisenberg ", + "Jordan Tucker " ], + "license": "MIT", + "bugs": { + "url": "https://github.com/json5/json5/issues" + }, + "homepage": "http://json5.org/", "dependencies": { "minimist": "^1.2.5" }, - "deprecated": false, - "description": "JSON for humans.", "devDependencies": { "core-js": "^2.6.5", "eslint": "^5.15.3", @@ -47,41 +67,5 @@ "sinon": "^6.3.5", "tap": "^12.6.0", "unicode-10.0.0": "^0.7.5" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "lib/", - "dist/" - ], - "homepage": "http://json5.org/", - "keywords": [ - "json", - "json5", - "es5", - "es2015", - "ecmascript" - ], - "license": "MIT", - "main": "lib/index.js", - "module": "dist/index.mjs", - "name": "json5", - "repository": { - "type": "git", - "url": "git+https://github.com/json5/json5.git" - }, - "scripts": { - "build": "rollup -c", - "build-package": "node build/package.js", - "build-unicode": "node build/unicode.js", - "coverage": "tap --coverage-report html test", - "lint": "eslint --fix .", - "prepublishOnly": "npm run production", - "preversion": "npm run production", - "production": "npm run lint && npm test && npm run build", - "test": "tap -Rspec --100 test", - "version": "npm run build-package && git add package.json5" - }, - "version": "2.1.2" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/locate-path/package.json b/node_modules/jest-circus/node_modules/locate-path/package.json index 986900cb6..c3cac4f11 100644 --- a/node_modules/jest-circus/node_modules/locate-path/package.json +++ b/node_modules/jest-circus/node_modules/locate-path/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-locate": "^4.1.0" - }, - "deprecated": false, - "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", @@ -41,14 +34,12 @@ "iterable", "iterator" ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-locate": "^4.1.0" }, - "version": "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/jest-circus/node_modules/make-dir/package.json b/node_modules/jest-circus/node_modules/make-dir/package.json index 0f79f7ea2..f644e281a 100644 --- a/node_modules/jest-circus/node_modules/make-dir/package.json +++ b/node_modules/jest-circus/node_modules/make-dir/package.json @@ -1,39 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/make-dir/issues" - }, - "bundleDependencies": false, - "dependencies": { - "semver": "^6.0.0" - }, - "deprecated": false, - "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", @@ -55,14 +41,19 @@ "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" + "dependencies": { + "semver": "^6.0.0" }, - "version": "3.0.2" + "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/jest-circus/node_modules/micromatch/package.json b/node_modules/jest-circus/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/jest-circus/node_modules/micromatch/package.json +++ b/node_modules/jest-circus/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/ms/package.json b/node_modules/jest-circus/node_modules/ms/package.json index 7192a30c5..3408eef7c 100644 --- a/node_modules/jest-circus/node_modules/ms/package.json +++ b/node_modules/jest-circus/node_modules/ms/package.json @@ -1,16 +1,16 @@ { - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -19,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -31,16 +26,12 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/normalize-path/package.json b/node_modules/jest-circus/node_modules/normalize-path/package.json index 80d7e5908..101634b95 100644 --- a/node_modules/jest-circus/node_modules/normalize-path/package.json +++ b/node_modules/jest-circus/node_modules/normalize-path/package.json @@ -1,36 +1,33 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/normalize-path", "bugs": { "url": "https://github.com/jonschlinkert/normalize-path/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Blaine Bublitz", - "url": "https://twitter.com/BlaineBublitz" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "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", @@ -52,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", @@ -86,6 +73,5 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/p-locate/package.json b/node_modules/jest-circus/node_modules/p-locate/package.json index 8a59e550a..24bf49512 100644 --- a/node_modules/jest-circus/node_modules/p-locate/package.json +++ b/node_modules/jest-circus/node_modules/p-locate/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-limit": "^2.2.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-limit": "^2.2.0" }, - "version": "4.1.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/jest-circus/node_modules/parse5/package.json b/node_modules/jest-circus/node_modules/parse5/package.json index 62faa5fcf..e96f85f28 100644 --- a/node_modules/jest-circus/node_modules/parse5/package.json +++ b/node_modules/jest-circus/node_modules/parse5/package.json @@ -1,19 +1,9 @@ { - "author": { - "name": "Ivan Nikulin", - "email": "ifaaan@gmail.com", - "url": "https://github.com/inikulin" - }, - "bugs": { - "url": "https://github.com/inikulin/parse5/issues" - }, - "bundleDependencies": false, - "contributors": "https://github.com/inikulin/parse5/graphs/contributors", - "deprecated": false, + "name": "parse5", "description": "HTML parser and serializer.", - "files": [ - "lib" - ], + "version": "5.1.0", + "author": "Ivan Nikulin (https://github.com/inikulin)", + "contributors": "https://github.com/inikulin/parse5/graphs/contributors", "homepage": "https://github.com/inikulin/parse5", "keywords": [ "html", @@ -34,10 +24,11 @@ ], "license": "MIT", "main": "./lib/index.js", - "name": "parse5", "repository": { "type": "git", "url": "git://github.com/inikulin/parse5.git" }, - "version": "5.1.0" + "files": [ + "lib" + ] } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/path-exists/package.json b/node_modules/jest-circus/node_modules/path-exists/package.json index 60065a59e..90039cc2f 100644 --- a/node_modules/jest-circus/node_modules/path-exists/package.json +++ b/node_modules/jest-circus/node_modules/path-exists/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -35,14 +31,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/pretty-format/package.json b/node_modules/jest-circus/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-circus/node_modules/pretty-format/package.json +++ b/node_modules/jest-circus/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/realpath-native/package.json b/node_modules/jest-circus/node_modules/realpath-native/package.json index 0086d5e4d..f62dfc625 100644 --- a/node_modules/jest-circus/node_modules/realpath-native/package.json +++ b/node_modules/jest-circus/node_modules/realpath-native/package.json @@ -1,19 +1,26 @@ { - "author": { - "name": "Simen Bekkhus", - "email": "sbekkhus91@gmail.com" - }, - "bugs": { - "url": "https://github.com/SimenB/realpath-native/issues" + "name": "realpath-native", + "version": "2.0.0", + "main": "index.js", + "types": "index.d.ts", + "files": [ + "index.js", + "index.d.ts" + ], + "description": "Use the system's native `realpath`", + "repository": "SimenB/realpath-native", + "author": "Simen Bekkhus ", + "license": "MIT", + "keywords": [ + "realpath" + ], + "engines": { + "node": ">=8" }, - "bundleDependencies": false, - "commitlint": { - "extends": [ - "@commitlint/config-conventional" - ] + "scripts": { + "lint": "eslint .", + "test": "eslint . && ava" }, - "deprecated": false, - "description": "Use the system's native `realpath`", "devDependencies": { "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", @@ -25,18 +32,16 @@ "lint-staged": "^9.5.0", "prettier": "^1.19.1" }, - "engines": { - "node": ">=8" + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "prettier": { + "proseWrap": "always", + "singleQuote": true, + "trailingComma": "es5" }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/SimenB/realpath-native#readme", - "keywords": [ - "realpath" - ], - "license": "MIT", "lint-staged": { "*.js": [ "eslint --fix", @@ -46,22 +51,5 @@ "prettier --write", "git add" ] - }, - "main": "index.js", - "name": "realpath-native", - "prettier": { - "proseWrap": "always", - "singleQuote": true, - "trailingComma": "es5" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/SimenB/realpath-native.git" - }, - "scripts": { - "lint": "eslint .", - "test": "eslint . && ava" - }, - "types": "index.d.ts", - "version": "2.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/semver/package.json b/node_modules/jest-circus/node_modules/semver/package.json index d3268f6a0..a330b56c2 100644 --- a/node_modules/jest-circus/node_modules/semver/package.json +++ b/node_modules/jest-circus/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/slash/package.json b/node_modules/jest-circus/node_modules/slash/package.json index 81cc04d18..c845a31bb 100644 --- a/node_modules/jest-circus/node_modules/slash/package.json +++ b/node_modules/jest-circus/node_modules/slash/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/slash/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -31,14 +27,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/string-width/package.json b/node_modules/jest-circus/node_modules/string-width/package.json index 38993c1e2..8a570010a 100644 --- a/node_modules/jest-circus/node_modules/string-width/package.json +++ b/node_modules/jest-circus/node_modules/string-width/package.json @@ -1,33 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/string-width/issues" - }, - "bundleDependencies": false, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "deprecated": false, - "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", @@ -52,14 +43,14 @@ "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" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" }, - "version": "4.2.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/jest-circus/node_modules/strip-ansi/package.json b/node_modules/jest-circus/node_modules/strip-ansi/package.json index 5db6f68dc..303816b1a 100644 --- a/node_modules/jest-circus/node_modules/strip-ansi/package.json +++ b/node_modules/jest-circus/node_modules/strip-ansi/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "deprecated": false, - "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", @@ -50,14 +43,12 @@ "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" + "dependencies": { + "ansi-regex": "^5.0.0" }, - "version": "6.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/jest-circus/node_modules/strip-bom/package.json b/node_modules/jest-circus/node_modules/strip-bom/package.json index 1c5e41988..e53335264 100644 --- a/node_modules/jest-circus/node_modules/strip-bom/package.json +++ b/node_modules/jest-circus/node_modules/strip-bom/package.json @@ -1,28 +1,24 @@ { + "name": "strip-bom", + "version": "4.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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Strip UTF-8 byte order mark (BOM) from 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/strip-bom#readme", "keywords": [ "strip", "bom", @@ -38,14 +34,9 @@ "text", "string" ], - "license": "MIT", - "name": "strip-bom", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-bom.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.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/jest-circus/node_modules/supports-color/package.json b/node_modules/jest-circus/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-circus/node_modules/supports-color/package.json +++ b/node_modules/jest-circus/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/test-exclude/package.json b/node_modules/jest-circus/node_modules/test-exclude/package.json index 03e7fa82f..aef8587d5 100644 --- a/node_modules/jest-circus/node_modules/test-exclude/package.json +++ b/node_modules/jest-circus/node_modules/test-exclude/package.json @@ -1,19 +1,39 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "name": "test-exclude", + "version": "6.0.0", + "description": "test for inclusion or exclusion of paths using globs", + "main": "index.js", + "files": [ + "*.js", + "!nyc.config.js" + ], + "scripts": { + "release": "standard-version", + "test": "nyc tap", + "snap": "npm test -- --snapshot" }, + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/test-exclude.git" + }, + "keywords": [ + "exclude", + "include", + "glob", + "package", + "config" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/istanbuljs/test-exclude/issues" }, - "bundleDependencies": false, + "homepage": "https://istanbul.js.org/", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, - "deprecated": false, - "description": "test for inclusion or exclusion of paths using globs", "devDependencies": { "nyc": "^15.0.0-beta.3", "standard-version": "^7.0.0", @@ -21,30 +41,5 @@ }, "engines": { "node": ">=8" - }, - "files": [ - "*.js", - "!nyc.config.js" - ], - "homepage": "https://istanbul.js.org/", - "keywords": [ - "exclude", - "include", - "glob", - "package", - "config" - ], - "license": "ISC", - "main": "index.js", - "name": "test-exclude", - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/test-exclude.git" - }, - "scripts": { - "release": "standard-version", - "snap": "npm test -- --snapshot", - "test": "nyc tap" - }, - "version": "6.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/throat/package.json b/node_modules/jest-circus/node_modules/throat/package.json index 1013e3a9b..d3a02c0d7 100644 --- a/node_modules/jest-circus/node_modules/throat/package.json +++ b/node_modules/jest-circus/node_modules/throat/package.json @@ -1,13 +1,21 @@ { - "author": { - "name": "ForbesLindesay" - }, - "bugs": { - "url": "https://github.com/ForbesLindesay/throat/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "throat", + "version": "5.0.0", "description": "Throttle the parallelism of an asynchronous (promise returning) function / functions", + "keywords": [ + "promise", + "aplus", + "then", + "throttle", + "concurrency", + "parallelism", + "limit" + ], + "files": [ + "index.d.ts", + "index.js", + "index.js.flow" + ], "devDependencies": { "coveralls": "^3.0.0", "flow-bin": "^0.73.0", @@ -19,37 +27,21 @@ "testit": "^3.1.0", "typescript": "^3.4.5" }, - "files": [ - "index.d.ts", - "index.js", - "index.js.flow" - ], - "homepage": "https://github.com/ForbesLindesay/throat#readme", "jest": { "testEnvironment": "node" }, - "keywords": [ - "promise", - "aplus", - "then", - "throttle", - "concurrency", - "parallelism", - "limit" - ], - "license": "MIT", - "name": "throat", - "repository": { - "type": "git", - "url": "git+https://github.com/ForbesLindesay/throat.git" - }, "scripts": { - "coverage": "istanbul cover test/index.js", - "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls", + "tsc": "tsc --noEmit", "flow": "flow", "test": "node test/index.js && npm run test:types && node test/browser.js", "test:types": "jest", - "tsc": "tsc --noEmit" + "coverage": "istanbul cover test/index.js", + "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls" + }, + "repository": { + "type": "git", + "url": "https://github.com/ForbesLindesay/throat.git" }, - "version": "5.0.0" + "author": "ForbesLindesay", + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/to-regex-range/package.json b/node_modules/jest-circus/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/jest-circus/node_modules/to-regex-range/package.json +++ b/node_modules/jest-circus/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/tough-cookie/package.json b/node_modules/jest-circus/node_modules/tough-cookie/package.json index e3ab5d738..302e27d6f 100644 --- a/node_modules/jest-circus/node_modules/tough-cookie/package.json +++ b/node_modules/jest-circus/node_modules/tough-cookie/package.json @@ -1,53 +1,38 @@ { "author": { "name": "Jeremy Stashewsky", - "email": "jstash@gmail.com" + "email": "jstash@gmail.com", + "website": "https://github.com/stash" }, - "bugs": { - "url": "https://github.com/salesforce/tough-cookie/issues" - }, - "bundleDependencies": false, "contributors": [ { - "name": "Alexander Savin" + "name": "Alexander Savin", + "website": "https://github.com/apsavin" }, { - "name": "Ian Livingstone" + "name": "Ian Livingstone", + "website": "https://github.com/ianlivingstone" }, { - "name": "Ivan Nikulin" + "name": "Ivan Nikulin", + "website": "https://github.com/inikulin" }, { - "name": "Lalit Kapoor" + "name": "Lalit Kapoor", + "website": "https://github.com/lalitkapoor" }, { - "name": "Sam Thompson" + "name": "Sam Thompson", + "website": "https://github.com/sambthompson" }, { - "name": "Sebastian Mayr" + "name": "Sebastian Mayr", + "website": "https://github.com/Sebmaster" } ], - "dependencies": { - "ip-regex": "^2.1.0", - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "deprecated": false, + "license": "BSD-3-Clause", + "name": "tough-cookie", "description": "RFC6265 Cookies and Cookie Jar for node.js", - "devDependencies": { - "async": "^1.4.2", - "genversion": "^2.1.0", - "nyc": "^11.6.0", - "string.prototype.repeat": "^0.2.0", - "vows": "^0.8.2" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/salesforce/tough-cookie", "keywords": [ "HTTP", "cookie", @@ -58,17 +43,37 @@ "RFC6265", "RFC2965" ], - "license": "BSD-3-Clause", - "main": "./lib/cookie", - "name": "tough-cookie", + "version": "3.0.1", + "homepage": "https://github.com/salesforce/tough-cookie", "repository": { "type": "git", "url": "git://github.com/salesforce/tough-cookie.git" }, + "bugs": { + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + "main": "./lib/cookie", + "files": [ + "lib" + ], "scripts": { - "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js", + "version": "genversion lib/version.js && git add lib/version.js", "test": "vows test/*_test.js", - "version": "genversion lib/version.js && git add lib/version.js" + "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js" + }, + "engines": { + "node": ">=6" + }, + "devDependencies": { + "async": "^1.4.2", + "genversion": "^2.1.0", + "nyc": "^11.6.0", + "string.prototype.repeat": "^0.2.0", + "vows": "^0.8.2" }, - "version": "3.0.1" + "dependencies": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/whatwg-url/package.json b/node_modules/jest-circus/node_modules/whatwg-url/package.json index 9f9e01203..a22a115ef 100644 --- a/node_modules/jest-circus/node_modules/whatwg-url/package.json +++ b/node_modules/jest-circus/node_modules/whatwg-url/package.json @@ -1,19 +1,19 @@ { - "author": { - "name": "Sebastian Mayr", - "email": "github@smayr.name" - }, - "bugs": { - "url": "https://github.com/jsdom/whatwg-url/issues" - }, - "bundleDependencies": false, + "name": "whatwg-url", + "version": "7.1.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "main": "lib/public-api.js", + "files": [ + "lib/" + ], + "author": "Sebastian Mayr ", + "license": "MIT", + "repository": "jsdom/whatwg-url", "dependencies": { "lodash.sortby": "^4.7.0", "tr46": "^1.0.1", "webidl-conversions": "^4.0.2" }, - "deprecated": false, - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", "devDependencies": { "browserify": "^16.2.2", "domexception": "^1.0.1", @@ -23,10 +23,15 @@ "recast": "^0.15.3", "webidl2js": "^9.0.1" }, - "files": [ - "lib/" - ], - "homepage": "https://github.com/jsdom/whatwg-url#readme", + "scripts": { + "build": "node scripts/transform.js && node scripts/convert-idl.js", + "coverage": "jest --coverage", + "lint": "eslint .", + "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", + "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "test": "jest" + }, "jest": { "collectCoverageFrom": [ "lib/**/*.js", @@ -45,22 +50,5 @@ "^/test/testharness.js$", "^/test/web-platform-tests/" ] - }, - "license": "MIT", - "main": "lib/public-api.js", - "name": "whatwg-url", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/whatwg-url.git" - }, - "scripts": { - "build": "node scripts/transform.js && node scripts/convert-idl.js", - "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", - "coverage": "jest --coverage", - "lint": "eslint .", - "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", - "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", - "test": "jest" - }, - "version": "7.1.0" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/which/package.json b/node_modules/jest-circus/node_modules/which/package.json index 32eaa5757..33ce9eed8 100644 --- a/node_modules/jest-circus/node_modules/which/package.json +++ b/node_modules/jest-circus/node_modules/which/package.json @@ -1,53 +1,43 @@ { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "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": "2.0.2", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" }, + "main": "which.js", "bin": { - "node-which": "bin/node-which" - }, - "bugs": { - "url": "https://github.com/isaacs/node-which/issues" + "node-which": "./bin/node-which" }, - "bundleDependencies": false, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, - "deprecated": false, - "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": "^14.6.9" }, - "engines": { - "node": ">= 8" + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublish": "npm run changelog", + "prechangelog": "bash gen-changelog.sh", + "changelog": "git add CHANGELOG.md", + "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", + "postpublish": "git push origin --follow-tags" }, "files": [ "which.js", "bin/node-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": { - "changelog": "git add CHANGELOG.md", - "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "prechangelog": "bash gen-changelog.sh", - "prepublish": "npm run changelog", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true }, - "version": "2.0.2" + "engines": { + "node": ">= 8" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/wrap-ansi/package.json b/node_modules/jest-circus/node_modules/wrap-ansi/package.json index 94924834a..821aebb90 100644 --- a/node_modules/jest-circus/node_modules/wrap-ansi/package.json +++ b/node_modules/jest-circus/node_modules/wrap-ansi/package.json @@ -1,35 +1,23 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/wrap-ansi/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "deprecated": false, - "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", @@ -57,14 +45,17 @@ "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" + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, - "version": "6.2.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/jest-circus/node_modules/write-file-atomic/package.json b/node_modules/jest-circus/node_modules/write-file-atomic/package.json index a25a4447f..58ff19175 100644 --- a/node_modules/jest-circus/node_modules/write-file-atomic/package.json +++ b/node_modules/jest-circus/node_modules/write-file-atomic/package.json @@ -1,21 +1,37 @@ { - "author": { - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org" + "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" }, + "keywords": [ + "writeFile", + "atomic" + ], + "author": "Rebecca Turner (http://re-becca.org)", + "license": "ISC", "bugs": { "url": "https://github.com/npm/write-file-atomic/issues" }, - "bundleDependencies": false, + "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" }, - "deprecated": false, - "description": "Write files in an atomic fashion w/configurable ownership", "devDependencies": { "mkdirp": "^0.5.1", "require-inject": "^1.4.4", @@ -26,29 +42,7 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/ws/package.json b/node_modules/jest-circus/node_modules/ws/package.json index 60ab52463..15597a7d7 100644 --- a/node_modules/jest-circus/node_modules/ws/package.json +++ b/node_modules/jest-circus/node_modules/ws/package.json @@ -1,43 +1,7 @@ { - "author": { - "name": "Einar Otto Stangvik", - "email": "einaros@gmail.com", - "url": "http://2x.io" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/websockets/ws/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ws", + "version": "7.2.3", "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", - "devDependencies": { - "benchmark": "^2.1.4", - "bufferutil": "^4.0.1", - "coveralls": "^3.0.3", - "eslint": "^6.0.0", - "eslint-config-prettier": "^6.0.0", - "eslint-plugin-prettier": "^3.0.1", - "mocha": "^7.0.0", - "nyc": "^15.0.0", - "prettier": "^1.17.0", - "utf-8-validate": "^5.0.2" - }, - "engines": { - "node": ">=8.3.0" - }, - "files": [ - "browser.js", - "index.js", - "lib/*.js" - ], - "greenkeeper": { - "commitMessages": { - "dependencyUpdate": "[pkg] Update ${dependency} to version ${version}", - "devDependencyUpdate": "[pkg] Update ${dependency} to version ${version}" - } - }, - "homepage": "https://github.com/websockets/ws", "keywords": [ "HyBi", "Push", @@ -46,9 +10,26 @@ "WebSockets", "real-time" ], + "homepage": "https://github.com/websockets/ws", + "bugs": "https://github.com/websockets/ws/issues", + "repository": "websockets/ws", + "author": "Einar Otto Stangvik (http://2x.io)", "license": "MIT", "main": "index.js", - "name": "ws", + "browser": "browser.js", + "engines": { + "node": ">=8.3.0" + }, + "files": [ + "browser.js", + "index.js", + "lib/*.js" + ], + "scripts": { + "test": "npm run lint && nyc --reporter=html --reporter=text mocha --throw-deprecation test/*.test.js", + "integration": "npm run lint && mocha --throw-deprecation test/*.integration.js", + "lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\"" + }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" @@ -61,14 +42,22 @@ "optional": true } }, - "repository": { - "type": "git", - "url": "git+https://github.com/websockets/ws.git" - }, - "scripts": { - "integration": "npm run lint && mocha --throw-deprecation test/*.integration.js", - "lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\"", - "test": "npm run lint && nyc --reporter=html --reporter=text mocha --throw-deprecation test/*.test.js" + "devDependencies": { + "benchmark": "^2.1.4", + "bufferutil": "^4.0.1", + "coveralls": "^3.0.3", + "eslint": "^6.0.0", + "eslint-config-prettier": "^6.0.0", + "eslint-plugin-prettier": "^3.0.1", + "mocha": "^7.0.0", + "nyc": "^15.0.0", + "prettier": "^1.17.0", + "utf-8-validate": "^5.0.2" }, - "version": "7.2.3" + "greenkeeper": { + "commitMessages": { + "dependencyUpdate": "[pkg] Update ${dependency} to version ${version}", + "devDependencyUpdate": "[pkg] Update ${dependency} to version ${version}" + } + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/yargs-parser/package.json b/node_modules/jest-circus/node_modules/yargs-parser/package.json index 16fc803f2..b611d3f6b 100644 --- a/node_modules/jest-circus/node_modules/yargs-parser/package.json +++ b/node_modules/jest-circus/node_modules/yargs-parser/package.json @@ -1,32 +1,18 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" - }, - "bugs": { - "url": "https://github.com/yargs/yargs-parser/issues" - }, - "bundleDependencies": false, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "deprecated": false, + "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", @@ -38,18 +24,23 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/node_modules/yargs/package.json b/node_modules/jest-circus/node_modules/yargs/package.json index 9a38598e6..745bae01a 100644 --- a/node_modules/jest-circus/node_modules/yargs/package.json +++ b/node_modules/jest-circus/node_modules/yargs/package.json @@ -1,14 +1,23 @@ { - "bugs": { - "url": "https://github.com/yargs/yargs/issues" - }, - "bundleDependencies": false, + "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", @@ -22,8 +31,6 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.1" }, - "deprecated": false, - "description": "yargs the modern, pirate-themed, successor to optimist.", "devDependencies": { "c8": "^7.0.0", "chai": "^4.2.0", @@ -39,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", @@ -62,22 +72,7 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-circus/package.json b/node_modules/jest-circus/package.json index 62562cd70..cc1f4a2f0 100644 --- a/node_modules/jest-circus/package.json +++ b/node_modules/jest-circus/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-circus", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-circus" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/traverse": "^7.1.0", "@jest/environment": "^25.2.4", @@ -22,8 +35,6 @@ "stack-utils": "^1.0.1", "throat": "^5.0.0" }, - "deprecated": false, - "description": "

jest-circus

The next-gen test runner for Jest

", "devDependencies": { "@babel/core": "^7.1.0", "@babel/register": "^7.0.0", @@ -36,26 +47,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-circus", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-circus" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/@jest/types/package.json b/node_modules/jest-config/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-config/node_modules/@jest/types/package.json +++ b/node_modules/jest-config/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/@types/yargs/package.json b/node_modules/jest-config/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-config/node_modules/@types/yargs/package.json +++ b/node_modules/jest-config/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/ansi-regex/package.json b/node_modules/jest-config/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-config/node_modules/ansi-regex/package.json +++ b/node_modules/jest-config/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/ansi-styles/package.json b/node_modules/jest-config/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-config/node_modules/ansi-styles/package.json +++ b/node_modules/jest-config/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-config/node_modules/braces/package.json b/node_modules/jest-config/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/jest-config/node_modules/braces/package.json +++ b/node_modules/jest-config/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/chalk/package.json b/node_modules/jest-config/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-config/node_modules/chalk/package.json +++ b/node_modules/jest-config/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-config/node_modules/color-convert/package.json b/node_modules/jest-config/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-config/node_modules/color-convert/package.json +++ b/node_modules/jest-config/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/color-name/package.json b/node_modules/jest-config/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-config/node_modules/color-name/package.json +++ b/node_modules/jest-config/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/fill-range/package.json b/node_modules/jest-config/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/jest-config/node_modules/fill-range/package.json +++ b/node_modules/jest-config/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/has-flag/package.json b/node_modules/jest-config/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-config/node_modules/has-flag/package.json +++ b/node_modules/jest-config/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/is-number/package.json b/node_modules/jest-config/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/jest-config/node_modules/is-number/package.json +++ b/node_modules/jest-config/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/jest-get-type/package.json b/node_modules/jest-config/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-config/node_modules/jest-get-type/package.json +++ b/node_modules/jest-config/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/micromatch/package.json b/node_modules/jest-config/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/jest-config/node_modules/micromatch/package.json +++ b/node_modules/jest-config/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/pretty-format/package.json b/node_modules/jest-config/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-config/node_modules/pretty-format/package.json +++ b/node_modules/jest-config/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/supports-color/package.json b/node_modules/jest-config/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-config/node_modules/supports-color/package.json +++ b/node_modules/jest-config/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-config/node_modules/to-regex-range/package.json b/node_modules/jest-config/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/jest-config/node_modules/to-regex-range/package.json +++ b/node_modules/jest-config/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-config/package.json b/node_modules/jest-config/package.json index 0bf6c73ec..acdb97782 100644 --- a/node_modules/jest-config/package.json +++ b/node_modules/jest-config/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-config", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-config" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/core": "^7.1.0", "@jest/test-sequencer": "^25.2.4", @@ -23,7 +36,6 @@ "pretty-format": "^25.2.3", "realpath-native": "^2.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__core": "^7.0.4", "@types/glob": "^7.1.1", @@ -32,26 +44,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-config", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-config" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-docblock/package.json b/node_modules/jest-docblock/package.json index 63c0bb2e7..7ce5afcb6 100644 --- a/node_modules/jest-docblock/package.json +++ b/node_modules/jest-docblock/package.json @@ -1,32 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "detect-newline": "^3.0.0" - }, - "deprecated": false, - "description": "`jest-docblock` is a package that can extract and parse a specially-formatted comment called a \"docblock\" at the top of a file.", - "devDependencies": { - "@types/node": "*" - }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", "name": "jest-docblock", - "publishConfig": { - "access": "public" - }, + "version": "25.2.3", "repository": { "type": "git", - "url": "git+https://github.com/facebook/jest.git", + "url": "https://github.com/facebook/jest.git", "directory": "packages/jest-docblock" }, + "license": "MIT", + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -35,5 +16,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "detect-newline": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "engines": { + "node": ">= 8.3" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/@jest/types/package.json b/node_modules/jest-each/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-each/node_modules/@jest/types/package.json +++ b/node_modules/jest-each/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/@types/yargs/package.json b/node_modules/jest-each/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-each/node_modules/@types/yargs/package.json +++ b/node_modules/jest-each/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/ansi-regex/package.json b/node_modules/jest-each/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-each/node_modules/ansi-regex/package.json +++ b/node_modules/jest-each/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/ansi-styles/package.json b/node_modules/jest-each/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-each/node_modules/ansi-styles/package.json +++ b/node_modules/jest-each/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-each/node_modules/chalk/package.json b/node_modules/jest-each/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-each/node_modules/chalk/package.json +++ b/node_modules/jest-each/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-each/node_modules/color-convert/package.json b/node_modules/jest-each/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-each/node_modules/color-convert/package.json +++ b/node_modules/jest-each/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/color-name/package.json b/node_modules/jest-each/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-each/node_modules/color-name/package.json +++ b/node_modules/jest-each/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/has-flag/package.json b/node_modules/jest-each/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-each/node_modules/has-flag/package.json +++ b/node_modules/jest-each/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/jest-get-type/package.json b/node_modules/jest-each/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-each/node_modules/jest-get-type/package.json +++ b/node_modules/jest-each/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/pretty-format/package.json b/node_modules/jest-each/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-each/node_modules/pretty-format/package.json +++ b/node_modules/jest-each/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-each/node_modules/supports-color/package.json b/node_modules/jest-each/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-each/node_modules/supports-color/package.json +++ b/node_modules/jest-each/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-each/package.json b/node_modules/jest-each/package.json index 6675ef8a0..efafaa151 100644 --- a/node_modules/jest-each/package.json +++ b/node_modules/jest-each/package.json @@ -1,12 +1,29 @@ { - "author": { - "name": "Matt Phillips", - "url": "mattphillips" + "name": "jest-each", + "version": "25.2.3", + "description": "Parameterised tests for Jest", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-each" }, - "bundleDependencies": false, + "keywords": [ + "jest", + "parameterised", + "test", + "each" + ], + "author": "Matt Phillips (mattphillips)", + "license": "MIT", "dependencies": { "@jest/types": "^25.2.3", "chalk": "^3.0.0", @@ -14,37 +31,11 @@ "jest-util": "^25.2.3", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Parameterised tests for Jest", "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "keywords": [ - "jest", - "parameterised", - "test", - "each" - ], - "license": "MIT", - "main": "build/index.js", - "name": "jest-each", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-each" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/@jest/types/package.json b/node_modules/jest-environment-jsdom/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-environment-jsdom/node_modules/@jest/types/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/@types/yargs/package.json b/node_modules/jest-environment-jsdom/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-environment-jsdom/node_modules/@types/yargs/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/ansi-styles/package.json b/node_modules/jest-environment-jsdom/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-environment-jsdom/node_modules/ansi-styles/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-environment-jsdom/node_modules/chalk/package.json b/node_modules/jest-environment-jsdom/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-environment-jsdom/node_modules/chalk/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-environment-jsdom/node_modules/color-convert/package.json b/node_modules/jest-environment-jsdom/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-environment-jsdom/node_modules/color-convert/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/color-name/package.json b/node_modules/jest-environment-jsdom/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-environment-jsdom/node_modules/color-name/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/has-flag/package.json b/node_modules/jest-environment-jsdom/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-environment-jsdom/node_modules/has-flag/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/node_modules/supports-color/package.json b/node_modules/jest-environment-jsdom/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-environment-jsdom/node_modules/supports-color/package.json +++ b/node_modules/jest-environment-jsdom/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-environment-jsdom/package.json b/node_modules/jest-environment-jsdom/package.json index 87d0b5aa3..af3d4116a 100644 --- a/node_modules/jest-environment-jsdom/package.json +++ b/node_modules/jest-environment-jsdom/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-environment-jsdom", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-jsdom" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/environment": "^25.2.4", "@jest/fake-timers": "^25.2.4", @@ -11,33 +24,14 @@ "jest-util": "^25.2.3", "jsdom": "^15.2.1" }, - "deprecated": false, "devDependencies": { "@types/jsdom": "^12.2.4" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-environment-jsdom", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment-jsdom" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/@jest/types/package.json b/node_modules/jest-environment-node/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-environment-node/node_modules/@jest/types/package.json +++ b/node_modules/jest-environment-node/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/@types/yargs/package.json b/node_modules/jest-environment-node/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-environment-node/node_modules/@types/yargs/package.json +++ b/node_modules/jest-environment-node/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/ansi-styles/package.json b/node_modules/jest-environment-node/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-environment-node/node_modules/ansi-styles/package.json +++ b/node_modules/jest-environment-node/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-environment-node/node_modules/chalk/package.json b/node_modules/jest-environment-node/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-environment-node/node_modules/chalk/package.json +++ b/node_modules/jest-environment-node/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-environment-node/node_modules/color-convert/package.json b/node_modules/jest-environment-node/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-environment-node/node_modules/color-convert/package.json +++ b/node_modules/jest-environment-node/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/color-name/package.json b/node_modules/jest-environment-node/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-environment-node/node_modules/color-name/package.json +++ b/node_modules/jest-environment-node/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/has-flag/package.json b/node_modules/jest-environment-node/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-environment-node/node_modules/has-flag/package.json +++ b/node_modules/jest-environment-node/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/semver/package.json b/node_modules/jest-environment-node/node_modules/semver/package.json index d3268f6a0..a330b56c2 100644 --- a/node_modules/jest-environment-node/node_modules/semver/package.json +++ b/node_modules/jest-environment-node/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" + } } \ No newline at end of file diff --git a/node_modules/jest-environment-node/node_modules/supports-color/package.json b/node_modules/jest-environment-node/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-environment-node/node_modules/supports-color/package.json +++ b/node_modules/jest-environment-node/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-environment-node/package.json b/node_modules/jest-environment-node/package.json index 9f5e14aa2..15ada7a55 100644 --- a/node_modules/jest-environment-node/package.json +++ b/node_modules/jest-environment-node/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-environment-node", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-node" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/environment": "^25.2.4", "@jest/fake-timers": "^25.2.4", @@ -11,33 +24,14 @@ "jest-util": "^25.2.3", "semver": "^6.3.0" }, - "deprecated": false, "devDependencies": { "@types/semver": "^6.2.1" }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-environment-node", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-environment-node" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/@jest/types/package.json b/node_modules/jest-haste-map/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-haste-map/node_modules/@jest/types/package.json +++ b/node_modules/jest-haste-map/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/@types/yargs/package.json b/node_modules/jest-haste-map/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-haste-map/node_modules/@types/yargs/package.json +++ b/node_modules/jest-haste-map/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/ansi-styles/package.json b/node_modules/jest-haste-map/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-haste-map/node_modules/ansi-styles/package.json +++ b/node_modules/jest-haste-map/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-haste-map/node_modules/anymatch/package.json b/node_modules/jest-haste-map/node_modules/anymatch/package.json index 4135255fa..aa33dbcdb 100644 --- a/node_modules/jest-haste-map/node_modules/anymatch/package.json +++ b/node_modules/jest-haste-map/node_modules/anymatch/package.json @@ -1,30 +1,25 @@ { - "author": { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - "bugs": { - "url": "https://github.com/micromatch/anymatch/issues" - }, - "bundleDependencies": false, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "deprecated": false, + "name": "anymatch", + "version": "3.1.1", "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" ], + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "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" + }, "keywords": [ "match", "any", @@ -39,15 +34,15 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/braces/package.json b/node_modules/jest-haste-map/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/jest-haste-map/node_modules/braces/package.json +++ b/node_modules/jest-haste-map/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/chalk/package.json b/node_modules/jest-haste-map/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-haste-map/node_modules/chalk/package.json +++ b/node_modules/jest-haste-map/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-haste-map/node_modules/color-convert/package.json b/node_modules/jest-haste-map/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-haste-map/node_modules/color-convert/package.json +++ b/node_modules/jest-haste-map/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/color-name/package.json b/node_modules/jest-haste-map/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-haste-map/node_modules/color-name/package.json +++ b/node_modules/jest-haste-map/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/fill-range/package.json b/node_modules/jest-haste-map/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/jest-haste-map/node_modules/fill-range/package.json +++ b/node_modules/jest-haste-map/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/has-flag/package.json b/node_modules/jest-haste-map/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-haste-map/node_modules/has-flag/package.json +++ b/node_modules/jest-haste-map/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/is-number/package.json b/node_modules/jest-haste-map/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/jest-haste-map/node_modules/is-number/package.json +++ b/node_modules/jest-haste-map/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/micromatch/package.json b/node_modules/jest-haste-map/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/jest-haste-map/node_modules/micromatch/package.json +++ b/node_modules/jest-haste-map/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/normalize-path/package.json b/node_modules/jest-haste-map/node_modules/normalize-path/package.json index 80d7e5908..101634b95 100644 --- a/node_modules/jest-haste-map/node_modules/normalize-path/package.json +++ b/node_modules/jest-haste-map/node_modules/normalize-path/package.json @@ -1,36 +1,33 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/normalize-path", "bugs": { "url": "https://github.com/jonschlinkert/normalize-path/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Blaine Bublitz", - "url": "https://twitter.com/BlaineBublitz" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "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", @@ -52,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", @@ -86,6 +73,5 @@ "lint": { "reflinks": true } - }, - "version": "3.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/supports-color/package.json b/node_modules/jest-haste-map/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-haste-map/node_modules/supports-color/package.json +++ b/node_modules/jest-haste-map/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/to-regex-range/package.json b/node_modules/jest-haste-map/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/jest-haste-map/node_modules/to-regex-range/package.json +++ b/node_modules/jest-haste-map/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/node_modules/which/package.json b/node_modules/jest-haste-map/node_modules/which/package.json index 32eaa5757..33ce9eed8 100644 --- a/node_modules/jest-haste-map/node_modules/which/package.json +++ b/node_modules/jest-haste-map/node_modules/which/package.json @@ -1,53 +1,43 @@ { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "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": "2.0.2", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" }, + "main": "which.js", "bin": { - "node-which": "bin/node-which" - }, - "bugs": { - "url": "https://github.com/isaacs/node-which/issues" + "node-which": "./bin/node-which" }, - "bundleDependencies": false, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, - "deprecated": false, - "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": "^14.6.9" }, - "engines": { - "node": ">= 8" + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublish": "npm run changelog", + "prechangelog": "bash gen-changelog.sh", + "changelog": "git add CHANGELOG.md", + "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", + "postpublish": "git push origin --follow-tags" }, "files": [ "which.js", "bin/node-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": { - "changelog": "git add CHANGELOG.md", - "postchangelog": "git commit -m 'update changelog - '${npm_package_version}", - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "prechangelog": "bash gen-changelog.sh", - "prepublish": "npm run changelog", - "preversion": "npm test", - "test": "tap" - }, "tap": { "check-coverage": true }, - "version": "2.0.2" + "engines": { + "node": ">= 8" + } } \ No newline at end of file diff --git a/node_modules/jest-haste-map/package.json b/node_modules/jest-haste-map/package.json index 754aed866..6ce0149f0 100644 --- a/node_modules/jest-haste-map/package.json +++ b/node_modules/jest-haste-map/package.json @@ -1,13 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-haste-map", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-haste-map" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", - "fsevents": "^2.1.2", "graceful-fs": "^4.2.3", "jest-serializer": "^25.2.1", "jest-util": "^25.2.3", @@ -17,7 +29,6 @@ "walker": "^1.0.7", "which": "^2.0.2" }, - "deprecated": false, "devDependencies": { "@jest/test-utils": "^25.2.1", "@types/anymatch": "^1.3.1", @@ -28,32 +39,14 @@ "@types/sane": "^2.0.0", "@types/which": "^1.3.2" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-haste-map", "optionalDependencies": { "fsevents": "^2.1.2" }, + "engines": { + "node": ">= 8.3" + }, "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-haste-map" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/@jest/types/package.json b/node_modules/jest-jasmine2/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-jasmine2/node_modules/@jest/types/package.json +++ b/node_modules/jest-jasmine2/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/@types/yargs/package.json b/node_modules/jest-jasmine2/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-jasmine2/node_modules/@types/yargs/package.json +++ b/node_modules/jest-jasmine2/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/ansi-regex/package.json b/node_modules/jest-jasmine2/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-jasmine2/node_modules/ansi-regex/package.json +++ b/node_modules/jest-jasmine2/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/ansi-styles/package.json b/node_modules/jest-jasmine2/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-jasmine2/node_modules/ansi-styles/package.json +++ b/node_modules/jest-jasmine2/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-jasmine2/node_modules/chalk/package.json b/node_modules/jest-jasmine2/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-jasmine2/node_modules/chalk/package.json +++ b/node_modules/jest-jasmine2/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-jasmine2/node_modules/color-convert/package.json b/node_modules/jest-jasmine2/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-jasmine2/node_modules/color-convert/package.json +++ b/node_modules/jest-jasmine2/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/color-name/package.json b/node_modules/jest-jasmine2/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-jasmine2/node_modules/color-name/package.json +++ b/node_modules/jest-jasmine2/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/has-flag/package.json b/node_modules/jest-jasmine2/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-jasmine2/node_modules/has-flag/package.json +++ b/node_modules/jest-jasmine2/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/pretty-format/package.json b/node_modules/jest-jasmine2/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-jasmine2/node_modules/pretty-format/package.json +++ b/node_modules/jest-jasmine2/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/node_modules/supports-color/package.json b/node_modules/jest-jasmine2/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-jasmine2/node_modules/supports-color/package.json +++ b/node_modules/jest-jasmine2/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-jasmine2/package.json b/node_modules/jest-jasmine2/package.json index 78185ad25..9c72ade9d 100644 --- a/node_modules/jest-jasmine2/package.json +++ b/node_modules/jest-jasmine2/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-jasmine2", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-jasmine2" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/traverse": "^7.1.0", "@jest/environment": "^25.2.4", @@ -22,7 +35,6 @@ "pretty-format": "^25.2.3", "throat": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/babel__traverse": "^7.0.4", "@types/co": "^4.6.2" @@ -30,26 +42,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-jasmine2", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-jasmine2" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/@jest/types/package.json b/node_modules/jest-leak-detector/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-leak-detector/node_modules/@jest/types/package.json +++ b/node_modules/jest-leak-detector/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/@types/yargs/package.json b/node_modules/jest-leak-detector/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-leak-detector/node_modules/@types/yargs/package.json +++ b/node_modules/jest-leak-detector/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/ansi-regex/package.json b/node_modules/jest-leak-detector/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-leak-detector/node_modules/ansi-regex/package.json +++ b/node_modules/jest-leak-detector/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/ansi-styles/package.json b/node_modules/jest-leak-detector/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-leak-detector/node_modules/ansi-styles/package.json +++ b/node_modules/jest-leak-detector/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-leak-detector/node_modules/chalk/package.json b/node_modules/jest-leak-detector/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-leak-detector/node_modules/chalk/package.json +++ b/node_modules/jest-leak-detector/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-leak-detector/node_modules/color-convert/package.json b/node_modules/jest-leak-detector/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-leak-detector/node_modules/color-convert/package.json +++ b/node_modules/jest-leak-detector/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/color-name/package.json b/node_modules/jest-leak-detector/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-leak-detector/node_modules/color-name/package.json +++ b/node_modules/jest-leak-detector/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/has-flag/package.json b/node_modules/jest-leak-detector/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-leak-detector/node_modules/has-flag/package.json +++ b/node_modules/jest-leak-detector/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/jest-get-type/package.json b/node_modules/jest-leak-detector/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-leak-detector/node_modules/jest-get-type/package.json +++ b/node_modules/jest-leak-detector/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/pretty-format/package.json b/node_modules/jest-leak-detector/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-leak-detector/node_modules/pretty-format/package.json +++ b/node_modules/jest-leak-detector/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/node_modules/supports-color/package.json b/node_modules/jest-leak-detector/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-leak-detector/node_modules/supports-color/package.json +++ b/node_modules/jest-leak-detector/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-leak-detector/package.json b/node_modules/jest-leak-detector/package.json index 45d55f63c..507327272 100644 --- a/node_modules/jest-leak-detector/package.json +++ b/node_modules/jest-leak-detector/package.json @@ -1,14 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-leak-detector", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-leak-detector" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "jest-get-type": "^25.2.1", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Module for verifying whether an object has been garbage collected or not.", "devDependencies": { "@types/weak-napi": "^1.0.0", "weak-napi": "^1.0.3" @@ -16,26 +27,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-leak-detector", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-leak-detector" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/@jest/types/package.json b/node_modules/jest-matcher-utils/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-matcher-utils/node_modules/@jest/types/package.json +++ b/node_modules/jest-matcher-utils/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/@types/yargs/package.json b/node_modules/jest-matcher-utils/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-matcher-utils/node_modules/@types/yargs/package.json +++ b/node_modules/jest-matcher-utils/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/ansi-regex/package.json b/node_modules/jest-matcher-utils/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-matcher-utils/node_modules/ansi-regex/package.json +++ b/node_modules/jest-matcher-utils/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/ansi-styles/package.json b/node_modules/jest-matcher-utils/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-matcher-utils/node_modules/ansi-styles/package.json +++ b/node_modules/jest-matcher-utils/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-matcher-utils/node_modules/chalk/package.json b/node_modules/jest-matcher-utils/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-matcher-utils/node_modules/chalk/package.json +++ b/node_modules/jest-matcher-utils/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-matcher-utils/node_modules/color-convert/package.json b/node_modules/jest-matcher-utils/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-matcher-utils/node_modules/color-convert/package.json +++ b/node_modules/jest-matcher-utils/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/color-name/package.json b/node_modules/jest-matcher-utils/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-matcher-utils/node_modules/color-name/package.json +++ b/node_modules/jest-matcher-utils/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/diff-sequences/package.json b/node_modules/jest-matcher-utils/node_modules/diff-sequences/package.json index e1c555c4c..494fb3484 100644 --- a/node_modules/jest-matcher-utils/node_modules/diff-sequences/package.json +++ b/node_modules/jest-matcher-utils/node_modules/diff-sequences/package.json @@ -1,20 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "diff-sequences", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/diff-sequences" }, - "bundleDependencies": false, - "deprecated": false, + "license": "MIT", "description": "Compare items in two sequences to find a longest common subsequence", - "devDependencies": { - "benchmark": "^2.1.4", - "diff": "^4.0.1", - "fast-check": "^1.13.0" - }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "keywords": [ "fast", "linear", @@ -22,20 +15,10 @@ "callback", "diff" ], - "license": "MIT", - "main": "build/index.js", - "name": "diff-sequences", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/diff-sequences" - }, - "scripts": { - "perf": "node --expose-gc perf/index.js" + "engines": { + "node": ">= 8.3" }, + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -44,5 +27,16 @@ ] } }, - "version": "25.2.1" + "scripts": { + "perf": "node --expose-gc perf/index.js" + }, + "devDependencies": { + "benchmark": "^2.1.4", + "diff": "^4.0.1", + "fast-check": "^1.13.0" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/has-flag/package.json b/node_modules/jest-matcher-utils/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-matcher-utils/node_modules/has-flag/package.json +++ b/node_modules/jest-matcher-utils/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/jest-diff/package.json b/node_modules/jest-matcher-utils/node_modules/jest-diff/package.json index bbee85cf7..ff03d7757 100644 --- a/node_modules/jest-matcher-utils/node_modules/jest-diff/package.json +++ b/node_modules/jest-matcher-utils/node_modules/jest-diff/package.json @@ -1,16 +1,27 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-diff", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-diff" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "chalk": "^3.0.0", "diff-sequences": "^25.2.1", "jest-get-type": "^25.2.1", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Display differences clearly so people can review changes confidently.", "devDependencies": { "@jest/test-utils": "^25.2.1", "strip-ansi": "^6.0.0" @@ -18,26 +29,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-diff", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-diff" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/jest-get-type/package.json b/node_modules/jest-matcher-utils/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-matcher-utils/node_modules/jest-get-type/package.json +++ b/node_modules/jest-matcher-utils/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/pretty-format/package.json b/node_modules/jest-matcher-utils/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-matcher-utils/node_modules/pretty-format/package.json +++ b/node_modules/jest-matcher-utils/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/node_modules/supports-color/package.json b/node_modules/jest-matcher-utils/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-matcher-utils/node_modules/supports-color/package.json +++ b/node_modules/jest-matcher-utils/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-matcher-utils/package.json b/node_modules/jest-matcher-utils/package.json index 7a5a7221b..91482eb69 100644 --- a/node_modules/jest-matcher-utils/package.json +++ b/node_modules/jest-matcher-utils/package.json @@ -1,36 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "chalk": "^3.0.0", - "jest-diff": "^25.2.3", - "jest-get-type": "^25.2.1", - "pretty-format": "^25.2.3" - }, - "deprecated": false, + "name": "jest-matcher-utils", "description": "A set of utility functions for expect and related packages", - "devDependencies": { - "@jest/test-utils": "^25.2.1", - "@types/node": "*" + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-matcher-utils" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-matcher-utils", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-matcher-utils" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -39,5 +20,18 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "chalk": "^3.0.0", + "jest-diff": "^25.2.3", + "jest-get-type": "^25.2.1", + "pretty-format": "^25.2.3" + }, + "devDependencies": { + "@jest/test-utils": "^25.2.1", + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/@jest/types/package.json b/node_modules/jest-message-util/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-message-util/node_modules/@jest/types/package.json +++ b/node_modules/jest-message-util/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/@types/yargs/package.json b/node_modules/jest-message-util/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-message-util/node_modules/@types/yargs/package.json +++ b/node_modules/jest-message-util/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/ansi-styles/package.json b/node_modules/jest-message-util/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-message-util/node_modules/ansi-styles/package.json +++ b/node_modules/jest-message-util/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-message-util/node_modules/braces/package.json b/node_modules/jest-message-util/node_modules/braces/package.json index 2b66eacd4..da327631e 100644 --- a/node_modules/jest-message-util/node_modules/braces/package.json +++ b/node_modules/jest-message-util/node_modules/braces/package.json @@ -1,53 +1,42 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -72,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", @@ -95,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/chalk/package.json b/node_modules/jest-message-util/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-message-util/node_modules/chalk/package.json +++ b/node_modules/jest-message-util/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-message-util/node_modules/color-convert/package.json b/node_modules/jest-message-util/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-message-util/node_modules/color-convert/package.json +++ b/node_modules/jest-message-util/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/color-name/package.json b/node_modules/jest-message-util/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-message-util/node_modules/color-name/package.json +++ b/node_modules/jest-message-util/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/fill-range/package.json b/node_modules/jest-message-util/node_modules/fill-range/package.json index 098262969..c3868058f 100644 --- a/node_modules/jest-message-util/node_modules/fill-range/package.json +++ b/node_modules/jest-message-util/node_modules/fill-range/package.json @@ -1,49 +1,38 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -64,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", @@ -86,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/has-flag/package.json b/node_modules/jest-message-util/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-message-util/node_modules/has-flag/package.json +++ b/node_modules/jest-message-util/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/is-number/package.json b/node_modules/jest-message-util/node_modules/is-number/package.json index ceafedd4f..1749833c1 100644 --- a/node_modules/jest-message-util/node_modules/is-number/package.json +++ b/node_modules/jest-message-util/node_modules/is-number/package.json @@ -1,41 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "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" ], - "deprecated": false, - "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", @@ -64,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", @@ -94,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/micromatch/package.json b/node_modules/jest-message-util/node_modules/micromatch/package.json index bf6868880..0b870b1fe 100644 --- a/node_modules/jest-message-util/node_modules/micromatch/package.json +++ b/node_modules/jest-message-util/node_modules/micromatch/package.json @@ -1,76 +1,44 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -78,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", @@ -125,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", @@ -163,6 +114,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.2" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/supports-color/package.json b/node_modules/jest-message-util/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-message-util/node_modules/supports-color/package.json +++ b/node_modules/jest-message-util/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-message-util/node_modules/to-regex-range/package.json b/node_modules/jest-message-util/node_modules/to-regex-range/package.json index b60f32145..54d82acde 100644 --- a/node_modules/jest-message-util/node_modules/to-regex-range/package.json +++ b/node_modules/jest-message-util/node_modules/to-regex-range/package.json @@ -1,27 +1,31 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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)" + ], + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "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", @@ -29,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", @@ -61,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, @@ -97,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } \ No newline at end of file diff --git a/node_modules/jest-message-util/package.json b/node_modules/jest-message-util/package.json index 4b702bb9f..8f0d3b1a0 100644 --- a/node_modules/jest-message-util/package.json +++ b/node_modules/jest-message-util/package.json @@ -1,8 +1,24 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-message-util", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-message-util" + }, + "engines": { + "node": ">= 8.3" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.0.0", "@jest/test-result": "^25.2.4", @@ -13,34 +29,12 @@ "slash": "^3.0.0", "stack-utils": "^1.0.1" }, - "deprecated": false, "devDependencies": { "@types/babel__code-frame": "^7.0.0", "@types/micromatch": "^4.0.0" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-message-util", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-message-util" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/@jest/types/package.json b/node_modules/jest-mock/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-mock/node_modules/@jest/types/package.json +++ b/node_modules/jest-mock/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/@types/yargs/package.json b/node_modules/jest-mock/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-mock/node_modules/@types/yargs/package.json +++ b/node_modules/jest-mock/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/ansi-styles/package.json b/node_modules/jest-mock/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-mock/node_modules/ansi-styles/package.json +++ b/node_modules/jest-mock/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-mock/node_modules/chalk/package.json b/node_modules/jest-mock/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-mock/node_modules/chalk/package.json +++ b/node_modules/jest-mock/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-mock/node_modules/color-convert/package.json b/node_modules/jest-mock/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-mock/node_modules/color-convert/package.json +++ b/node_modules/jest-mock/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/color-name/package.json b/node_modules/jest-mock/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-mock/node_modules/color-name/package.json +++ b/node_modules/jest-mock/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/has-flag/package.json b/node_modules/jest-mock/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-mock/node_modules/has-flag/package.json +++ b/node_modules/jest-mock/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-mock/node_modules/supports-color/package.json b/node_modules/jest-mock/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-mock/node_modules/supports-color/package.json +++ b/node_modules/jest-mock/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-mock/package.json b/node_modules/jest-mock/package.json index 18aaec944..7e6370b09 100644 --- a/node_modules/jest-mock/package.json +++ b/node_modules/jest-mock/package.json @@ -1,33 +1,22 @@ { - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-mock", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-mock" + }, + "engines": { + "node": ">= 8.3" }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3" }, - "deprecated": false, - "description": "## API", "devDependencies": { "@types/node": "*" }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-mock", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-mock" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -36,5 +25,9 @@ ] } }, - "version": "25.2.3" + "browser": "build-es5/index.js", + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-regex-util/package.json b/node_modules/jest-regex-util/package.json index 60cdecd7e..8f7fbe997 100644 --- a/node_modules/jest-regex-util/package.json +++ b/node_modules/jest-regex-util/package.json @@ -1,28 +1,19 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-regex-util", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-regex-util" }, - "bundleDependencies": false, - "deprecated": false, "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-regex-util", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-regex-util" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -31,5 +22,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/@jest/types/package.json b/node_modules/jest-resolve-dependencies/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/@jest/types/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/@types/yargs/package.json b/node_modules/jest-resolve-dependencies/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/@types/yargs/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/ansi-styles/package.json b/node_modules/jest-resolve-dependencies/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/ansi-styles/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-resolve-dependencies/node_modules/chalk/package.json b/node_modules/jest-resolve-dependencies/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/chalk/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-resolve-dependencies/node_modules/color-convert/package.json b/node_modules/jest-resolve-dependencies/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/color-convert/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/color-name/package.json b/node_modules/jest-resolve-dependencies/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/color-name/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/has-flag/package.json b/node_modules/jest-resolve-dependencies/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/has-flag/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/node_modules/supports-color/package.json b/node_modules/jest-resolve-dependencies/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-resolve-dependencies/node_modules/supports-color/package.json +++ b/node_modules/jest-resolve-dependencies/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-resolve-dependencies/package.json b/node_modules/jest-resolve-dependencies/package.json index 2a19d9e5d..a38bc373e 100644 --- a/node_modules/jest-resolve-dependencies/package.json +++ b/node_modules/jest-resolve-dependencies/package.json @@ -1,14 +1,26 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-resolve-dependencies", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-resolve-dependencies" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "jest-regex-util": "^25.2.1", "jest-snapshot": "^25.2.4" }, - "deprecated": false, "devDependencies": { "jest-haste-map": "^25.2.3", "jest-resolve": "^25.2.3", @@ -17,26 +29,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-resolve-dependencies", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-resolve-dependencies" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/@jest/types/package.json b/node_modules/jest-resolve/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-resolve/node_modules/@jest/types/package.json +++ b/node_modules/jest-resolve/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/@types/yargs/package.json b/node_modules/jest-resolve/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-resolve/node_modules/@types/yargs/package.json +++ b/node_modules/jest-resolve/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/ansi-styles/package.json b/node_modules/jest-resolve/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-resolve/node_modules/ansi-styles/package.json +++ b/node_modules/jest-resolve/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-resolve/node_modules/chalk/package.json b/node_modules/jest-resolve/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-resolve/node_modules/chalk/package.json +++ b/node_modules/jest-resolve/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-resolve/node_modules/color-convert/package.json b/node_modules/jest-resolve/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-resolve/node_modules/color-convert/package.json +++ b/node_modules/jest-resolve/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/color-name/package.json b/node_modules/jest-resolve/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-resolve/node_modules/color-name/package.json +++ b/node_modules/jest-resolve/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/has-flag/package.json b/node_modules/jest-resolve/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-resolve/node_modules/has-flag/package.json +++ b/node_modules/jest-resolve/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/resolve/package.json b/node_modules/jest-resolve/node_modules/resolve/package.json index 0e1aa6321..5d27586ea 100644 --- a/node_modules/jest-resolve/node_modules/resolve/package.json +++ b/node_modules/jest-resolve/node_modules/resolve/package.json @@ -1,18 +1,28 @@ { - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/browserify/resolve/issues" + "name": "resolve", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "version": "1.15.1", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" }, - "bundleDependencies": false, - "dependencies": { - "path-parse": "^1.0.6" + "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" }, - "deprecated": false, - "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", "devDependencies": { "@ljharb/eslint-config": "^16.0.0", "array.prototype.map": "^1.0.2", @@ -22,32 +32,16 @@ "tap": "0.4.13", "tape": "^5.0.0-next.4" }, - "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" + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" }, - "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" + "funding": { + "url": "https://github.com/sponsors/ljharb" }, - "version": "1.15.1" + "dependencies": { + "path-parse": "^1.0.6" + } } \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json index c13b8cf6a..a60376465 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/baz/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json index 2f77720b8..6ba9318a0 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json +++ b/node_modules/jest-resolve/node_modules/resolve/test/resolver/baz/package.json @@ -1,4 +1,4 @@ { - "name": "baz", - "main": "quux.js" -} + "name": "baz", + "main": "quux.js" +} \ No newline at end of file diff --git a/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json index bf406f083..291ab03bc 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/browser_field/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json index d7f4fc807..d08e00e9d 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_main/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json index f51287b9d..a92bfd7b1 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/dot_slash_main/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json index b71880417..b3b73da08 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json index 0cf827995..3158504f6 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/invalid_main/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json index 8508f9d2c..9c6d56b61 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json index 204de51e0..a2bbfff89 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json index f57c3b5f5..f7adacdeb 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json index acfe9e951..f3fffe71c 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json b/node_modules/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json index 8e1b58591..b6e6d85fd 100644 --- a/node_modules/jest-resolve/node_modules/resolve/test/resolver/symlinked/package/package.json +++ b/node_modules/jest-resolve/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/jest-resolve/node_modules/supports-color/package.json b/node_modules/jest-resolve/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-resolve/node_modules/supports-color/package.json +++ b/node_modules/jest-resolve/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-resolve/package.json b/node_modules/jest-resolve/package.json index 9783475d0..73c17db98 100644 --- a/node_modules/jest-resolve/package.json +++ b/node_modules/jest-resolve/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-resolve", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-resolve" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "browser-resolve": "^1.11.3", @@ -11,7 +24,6 @@ "realpath-native": "^2.0.0", "resolve": "^1.15.1" }, - "deprecated": false, "devDependencies": { "@types/browser-resolve": "^1.11.0", "@types/resolve": "^1.14.0", @@ -20,26 +32,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-resolve", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-resolve" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/@jest/types/package.json b/node_modules/jest-runner/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-runner/node_modules/@jest/types/package.json +++ b/node_modules/jest-runner/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/@types/yargs/package.json b/node_modules/jest-runner/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-runner/node_modules/@types/yargs/package.json +++ b/node_modules/jest-runner/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/ansi-styles/package.json b/node_modules/jest-runner/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-runner/node_modules/ansi-styles/package.json +++ b/node_modules/jest-runner/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-runner/node_modules/chalk/package.json b/node_modules/jest-runner/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-runner/node_modules/chalk/package.json +++ b/node_modules/jest-runner/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-runner/node_modules/color-convert/package.json b/node_modules/jest-runner/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-runner/node_modules/color-convert/package.json +++ b/node_modules/jest-runner/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/color-name/package.json b/node_modules/jest-runner/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-runner/node_modules/color-name/package.json +++ b/node_modules/jest-runner/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/has-flag/package.json b/node_modules/jest-runner/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-runner/node_modules/has-flag/package.json +++ b/node_modules/jest-runner/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-runner/node_modules/supports-color/package.json b/node_modules/jest-runner/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-runner/node_modules/supports-color/package.json +++ b/node_modules/jest-runner/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-runner/package.json b/node_modules/jest-runner/package.json index fa4ba569d..4abdf3b54 100644 --- a/node_modules/jest-runner/package.json +++ b/node_modules/jest-runner/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-runner", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-runner" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/environment": "^25.2.4", @@ -24,7 +37,6 @@ "source-map-support": "^0.5.6", "throat": "^5.0.0" }, - "deprecated": false, "devDependencies": { "@types/exit": "^0.1.30", "@types/graceful-fs": "^4.1.2", @@ -35,26 +47,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-runner", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-runner" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/@jest/types/package.json b/node_modules/jest-runtime/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-runtime/node_modules/@jest/types/package.json +++ b/node_modules/jest-runtime/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/@types/yargs/package.json b/node_modules/jest-runtime/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-runtime/node_modules/@types/yargs/package.json +++ b/node_modules/jest-runtime/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/ansi-styles/package.json b/node_modules/jest-runtime/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-runtime/node_modules/ansi-styles/package.json +++ b/node_modules/jest-runtime/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-runtime/node_modules/chalk/package.json b/node_modules/jest-runtime/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-runtime/node_modules/chalk/package.json +++ b/node_modules/jest-runtime/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-runtime/node_modules/color-convert/package.json b/node_modules/jest-runtime/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-runtime/node_modules/color-convert/package.json +++ b/node_modules/jest-runtime/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/color-name/package.json b/node_modules/jest-runtime/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-runtime/node_modules/color-name/package.json +++ b/node_modules/jest-runtime/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/has-flag/package.json b/node_modules/jest-runtime/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-runtime/node_modules/has-flag/package.json +++ b/node_modules/jest-runtime/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-runtime/node_modules/supports-color/package.json b/node_modules/jest-runtime/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-runtime/node_modules/supports-color/package.json +++ b/node_modules/jest-runtime/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-runtime/package.json b/node_modules/jest-runtime/package.json index 3489b8202..3433edfbc 100644 --- a/node_modules/jest-runtime/package.json +++ b/node_modules/jest-runtime/package.json @@ -1,11 +1,21 @@ { - "bin": { - "jest-runtime": "bin/jest-runtime.js" + "name": "jest-runtime", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-runtime" }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/console": "^25.2.3", "@jest/environment": "^25.2.4", @@ -33,7 +43,6 @@ "strip-bom": "^4.0.0", "yargs": "^15.3.1" }, - "deprecated": false, "devDependencies": { "@jest/test-utils": "^25.2.1", "@types/exit": "^0.1.30", @@ -43,29 +52,12 @@ "jest-environment-node": "^25.2.4", "jest-snapshot-serializer-raw": "^1.1.0" }, + "bin": "./bin/jest-runtime.js", "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-runtime", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-runtime" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-serializer/package.json b/node_modules/jest-serializer/package.json index 2903bbf2c..a42b01945 100644 --- a/node_modules/jest-serializer/package.json +++ b/node_modules/jest-serializer/package.json @@ -1,29 +1,19 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-serializer", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-serializer" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Module for serializing and deserializing object into memory and disk. By default, the `v8` implementations are used, but if not present, it defaults to `JSON` implementation. Both serializers have the advantage of being able to serialize `Map`, `Set`, `undefined`, `NaN`, etc, although the JSON one does it through a replacer/reviver.", "devDependencies": { "@types/node": "*" }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-serializer", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-serializer" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -32,5 +22,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/@jest/types/package.json b/node_modules/jest-snapshot/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-snapshot/node_modules/@jest/types/package.json +++ b/node_modules/jest-snapshot/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/@types/yargs/package.json b/node_modules/jest-snapshot/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-snapshot/node_modules/@types/yargs/package.json +++ b/node_modules/jest-snapshot/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/ansi-regex/package.json b/node_modules/jest-snapshot/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-snapshot/node_modules/ansi-regex/package.json +++ b/node_modules/jest-snapshot/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/ansi-styles/package.json b/node_modules/jest-snapshot/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-snapshot/node_modules/ansi-styles/package.json +++ b/node_modules/jest-snapshot/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-snapshot/node_modules/chalk/package.json b/node_modules/jest-snapshot/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-snapshot/node_modules/chalk/package.json +++ b/node_modules/jest-snapshot/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-snapshot/node_modules/color-convert/package.json b/node_modules/jest-snapshot/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-snapshot/node_modules/color-convert/package.json +++ b/node_modules/jest-snapshot/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/color-name/package.json b/node_modules/jest-snapshot/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-snapshot/node_modules/color-name/package.json +++ b/node_modules/jest-snapshot/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/diff-sequences/package.json b/node_modules/jest-snapshot/node_modules/diff-sequences/package.json index e1c555c4c..494fb3484 100644 --- a/node_modules/jest-snapshot/node_modules/diff-sequences/package.json +++ b/node_modules/jest-snapshot/node_modules/diff-sequences/package.json @@ -1,20 +1,13 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "diff-sequences", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/diff-sequences" }, - "bundleDependencies": false, - "deprecated": false, + "license": "MIT", "description": "Compare items in two sequences to find a longest common subsequence", - "devDependencies": { - "benchmark": "^2.1.4", - "diff": "^4.0.1", - "fast-check": "^1.13.0" - }, - "engines": { - "node": ">= 8.3" - }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "keywords": [ "fast", "linear", @@ -22,20 +15,10 @@ "callback", "diff" ], - "license": "MIT", - "main": "build/index.js", - "name": "diff-sequences", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/diff-sequences" - }, - "scripts": { - "perf": "node --expose-gc perf/index.js" + "engines": { + "node": ">= 8.3" }, + "main": "build/index.js", "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -44,5 +27,16 @@ ] } }, - "version": "25.2.1" + "scripts": { + "perf": "node --expose-gc perf/index.js" + }, + "devDependencies": { + "benchmark": "^2.1.4", + "diff": "^4.0.1", + "fast-check": "^1.13.0" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/has-flag/package.json b/node_modules/jest-snapshot/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-snapshot/node_modules/has-flag/package.json +++ b/node_modules/jest-snapshot/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/jest-diff/package.json b/node_modules/jest-snapshot/node_modules/jest-diff/package.json index bbee85cf7..ff03d7757 100644 --- a/node_modules/jest-snapshot/node_modules/jest-diff/package.json +++ b/node_modules/jest-snapshot/node_modules/jest-diff/package.json @@ -1,16 +1,27 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-diff", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-diff" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "chalk": "^3.0.0", "diff-sequences": "^25.2.1", "jest-get-type": "^25.2.1", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Display differences clearly so people can review changes confidently.", "devDependencies": { "@jest/test-utils": "^25.2.1", "strip-ansi": "^6.0.0" @@ -18,26 +29,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-diff", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-diff" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/jest-get-type/package.json b/node_modules/jest-snapshot/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-snapshot/node_modules/jest-get-type/package.json +++ b/node_modules/jest-snapshot/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/pretty-format/package.json b/node_modules/jest-snapshot/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-snapshot/node_modules/pretty-format/package.json +++ b/node_modules/jest-snapshot/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/node_modules/supports-color/package.json b/node_modules/jest-snapshot/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-snapshot/node_modules/supports-color/package.json +++ b/node_modules/jest-snapshot/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-snapshot/package.json b/node_modules/jest-snapshot/package.json index ade29f17a..7802d0d13 100644 --- a/node_modules/jest-snapshot/package.json +++ b/node_modules/jest-snapshot/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-snapshot", + "version": "25.2.4", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-snapshot" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@babel/types": "^7.0.0", "@jest/types": "^25.2.3", @@ -19,7 +32,6 @@ "pretty-format": "^25.2.3", "semver": "^6.3.0" }, - "deprecated": false, "devDependencies": { "@babel/traverse": "^7.3.4", "@types/natural-compare": "^1.4.0", @@ -32,26 +44,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-snapshot", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-snapshot" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/@jest/types/package.json b/node_modules/jest-util/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-util/node_modules/@jest/types/package.json +++ b/node_modules/jest-util/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/@types/yargs/package.json b/node_modules/jest-util/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-util/node_modules/@types/yargs/package.json +++ b/node_modules/jest-util/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/ansi-styles/package.json b/node_modules/jest-util/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-util/node_modules/ansi-styles/package.json +++ b/node_modules/jest-util/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-util/node_modules/chalk/package.json b/node_modules/jest-util/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-util/node_modules/chalk/package.json +++ b/node_modules/jest-util/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-util/node_modules/color-convert/package.json b/node_modules/jest-util/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-util/node_modules/color-convert/package.json +++ b/node_modules/jest-util/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/color-name/package.json b/node_modules/jest-util/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-util/node_modules/color-name/package.json +++ b/node_modules/jest-util/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/has-flag/package.json b/node_modules/jest-util/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-util/node_modules/has-flag/package.json +++ b/node_modules/jest-util/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-util/node_modules/supports-color/package.json b/node_modules/jest-util/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-util/node_modules/supports-color/package.json +++ b/node_modules/jest-util/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-util/package.json b/node_modules/jest-util/package.json index 2fbedd932..52d1ef521 100644 --- a/node_modules/jest-util/package.json +++ b/node_modules/jest-util/package.json @@ -1,15 +1,27 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-util", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-util" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "chalk": "^3.0.0", "is-ci": "^2.0.0", "make-dir": "^3.0.0" }, - "deprecated": false, "devDependencies": { "@types/graceful-fs": "^4.1.2", "@types/is-ci": "^2.0.0", @@ -18,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-util", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-util" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/@jest/types/package.json b/node_modules/jest-validate/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-validate/node_modules/@jest/types/package.json +++ b/node_modules/jest-validate/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/@types/yargs/package.json b/node_modules/jest-validate/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-validate/node_modules/@types/yargs/package.json +++ b/node_modules/jest-validate/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/ansi-regex/package.json b/node_modules/jest-validate/node_modules/ansi-regex/package.json index d0574afde..b6c1efa36 100644 --- a/node_modules/jest-validate/node_modules/ansi-regex/package.json +++ b/node_modules/jest-validate/node_modules/ansi-regex/package.json @@ -1,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.9.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/ansi-styles/package.json b/node_modules/jest-validate/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-validate/node_modules/ansi-styles/package.json +++ b/node_modules/jest-validate/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-validate/node_modules/chalk/package.json b/node_modules/jest-validate/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-validate/node_modules/chalk/package.json +++ b/node_modules/jest-validate/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-validate/node_modules/color-convert/package.json b/node_modules/jest-validate/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-validate/node_modules/color-convert/package.json +++ b/node_modules/jest-validate/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/color-name/package.json b/node_modules/jest-validate/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-validate/node_modules/color-name/package.json +++ b/node_modules/jest-validate/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/has-flag/package.json b/node_modules/jest-validate/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-validate/node_modules/has-flag/package.json +++ b/node_modules/jest-validate/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/jest-get-type/package.json b/node_modules/jest-validate/node_modules/jest-get-type/package.json index 45e63e46a..3625ba433 100644 --- a/node_modules/jest-validate/node_modules/jest-get-type/package.json +++ b/node_modules/jest-validate/node_modules/jest-get-type/package.json @@ -1,26 +1,17 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "jest-get-type", "description": "A utility function to get the type of a value", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "jest-get-type", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-get-type" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -29,5 +20,8 @@ ] } }, - "version": "25.2.1" + "publishConfig": { + "access": "public" + }, + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/pretty-format/package.json b/node_modules/jest-validate/node_modules/pretty-format/package.json index 5e6ac5021..308fe6fae 100644 --- a/node_modules/jest-validate/node_modules/pretty-format/package.json +++ b/node_modules/jest-validate/node_modules/pretty-format/package.json @@ -1,21 +1,30 @@ { - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" + "name": "pretty-format", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" }, - "browser": "build-es5/index.js", - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "license": "MIT", + "description": "Stringify any JavaScript value.", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, + "browser": "build-es5/index.js", + "author": "James Kyle ", "dependencies": { "@jest/types": "^25.2.3", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "deprecated": false, - "description": "Stringify any JavaScript value.", "devDependencies": { "@types/react": "*", "@types/react-is": "^16.7.1", @@ -28,26 +37,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "pretty-format", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/pretty-format" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-validate/node_modules/supports-color/package.json b/node_modules/jest-validate/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-validate/node_modules/supports-color/package.json +++ b/node_modules/jest-validate/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-validate/package.json b/node_modules/jest-validate/package.json index 8ff6cb3d2..6e60a30b6 100644 --- a/node_modules/jest-validate/package.json +++ b/node_modules/jest-validate/package.json @@ -1,8 +1,21 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-validate", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-validate" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/types": "^25.2.3", "camelcase": "^5.3.1", @@ -11,34 +24,14 @@ "leven": "^3.1.0", "pretty-format": "^25.2.3" }, - "deprecated": false, - "description": "Generic configuration validation tool that helps you with warnings, errors and deprecation messages as well as showing users examples of correct configuration.", "devDependencies": { "@types/yargs": "^15.0.3" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-validate", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-validate" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.3" + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/@jest/types/package.json b/node_modules/jest-watcher/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest-watcher/node_modules/@jest/types/package.json +++ b/node_modules/jest-watcher/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/@types/yargs/package.json b/node_modules/jest-watcher/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest-watcher/node_modules/@types/yargs/package.json +++ b/node_modules/jest-watcher/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/ansi-styles/package.json b/node_modules/jest-watcher/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest-watcher/node_modules/ansi-styles/package.json +++ b/node_modules/jest-watcher/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest-watcher/node_modules/chalk/package.json b/node_modules/jest-watcher/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest-watcher/node_modules/chalk/package.json +++ b/node_modules/jest-watcher/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest-watcher/node_modules/color-convert/package.json b/node_modules/jest-watcher/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest-watcher/node_modules/color-convert/package.json +++ b/node_modules/jest-watcher/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/color-name/package.json b/node_modules/jest-watcher/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest-watcher/node_modules/color-name/package.json +++ b/node_modules/jest-watcher/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/has-flag/package.json b/node_modules/jest-watcher/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-watcher/node_modules/has-flag/package.json +++ b/node_modules/jest-watcher/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-watcher/node_modules/supports-color/package.json b/node_modules/jest-watcher/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-watcher/node_modules/supports-color/package.json +++ b/node_modules/jest-watcher/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-watcher/package.json b/node_modules/jest-watcher/package.json index eef75734d..8faa1b5b3 100644 --- a/node_modules/jest-watcher/package.json +++ b/node_modules/jest-watcher/package.json @@ -1,8 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-watcher", + "description": "Delightful JavaScript Testing.", + "version": "25.2.4", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/test-result": "^25.2.4", "@jest/types": "^25.2.3", @@ -11,34 +19,24 @@ "jest-util": "^25.2.3", "string-length": "^3.1.0" }, - "deprecated": false, - "description": "Delightful JavaScript Testing.", "devDependencies": { "@types/node": "*" }, + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest", + "directory": "packages/jest-watcher" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", "homepage": "https://jestjs.io/", "license": "MIT", - "main": "build/index.js", - "name": "jest-watcher", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-watcher" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest-worker/node_modules/has-flag/package.json b/node_modules/jest-worker/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest-worker/node_modules/has-flag/package.json +++ b/node_modules/jest-worker/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest-worker/node_modules/supports-color/package.json b/node_modules/jest-worker/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest-worker/node_modules/supports-color/package.json +++ b/node_modules/jest-worker/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest-worker/package.json b/node_modules/jest-worker/package.json index c55408acf..db1f03e16 100644 --- a/node_modules/jest-worker/package.json +++ b/node_modules/jest-worker/package.json @@ -1,14 +1,25 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-worker", + "version": "25.2.1", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-worker" + }, + "license": "MIT", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "merge-stream": "^2.0.0", "supports-color": "^7.0.0" }, - "deprecated": false, - "description": "Module for executing heavy tasks under forked processes in parallel, by providing a `Promise` based interface, minimum overhead, and bound workers.", "devDependencies": { "@types/merge-stream": "^1.1.2", "@types/node": "*", @@ -19,26 +30,8 @@ "engines": { "node": ">= 8.3" }, - "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357", - "homepage": "https://github.com/facebook/jest#readme", - "license": "MIT", - "main": "build/index.js", - "name": "jest-worker", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-worker" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.1" + "gitHead": "a679390828b6c30aeaa547d8c4dc9aed6531e357" } \ No newline at end of file diff --git a/node_modules/jest/node_modules/@jest/types/package.json b/node_modules/jest/node_modules/@jest/types/package.json index 1329af644..e5edddb23 100644 --- a/node_modules/jest/node_modules/@jest/types/package.json +++ b/node_modules/jest/node_modules/@jest/types/package.json @@ -1,34 +1,16 @@ { - "bugs": { - "url": "https://github.com/facebook/jest/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "deprecated": false, - "devDependencies": { - "@types/node": "*" + "name": "@jest/types", + "version": "25.2.3", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest.git", + "directory": "packages/jest-types" }, "engines": { "node": ">= 8.3" }, - "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5", - "homepage": "https://github.com/facebook/jest#readme", "license": "MIT", "main": "build/index.js", - "name": "@jest/types", - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-types" - }, "types": "build/index.d.ts", "typesVersions": { "<3.8": { @@ -37,5 +19,17 @@ ] } }, - "version": "25.2.3" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "devDependencies": { + "@types/node": "*" + }, + "publishConfig": { + "access": "public" + }, + "gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5" } \ No newline at end of file diff --git a/node_modules/jest/node_modules/@types/yargs/package.json b/node_modules/jest/node_modules/@types/yargs/package.json index d42938d36..bdfd0463d 100644 --- a/node_modules/jest/node_modules/@types/yargs/package.json +++ b/node_modules/jest/node_modules/@types/yargs/package.json @@ -1,63 +1,66 @@ { - "bugs": { - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" - }, - "bundleDependencies": false, + "name": "@types/yargs", + "version": "15.0.4", + "description": "TypeScript definitions for yargs", + "license": "MIT", "contributors": [ { "name": "Martin Poelstra", - "url": "https://github.com/poelstra" + "url": "https://github.com/poelstra", + "githubUsername": "poelstra" }, { "name": "Mizunashi Mana", - "url": "https://github.com/mizunashi-mana" + "url": "https://github.com/mizunashi-mana", + "githubUsername": "mizunashi-mana" }, { "name": "Jeffery Grajkowski", - "url": "https://github.com/pushplay" + "url": "https://github.com/pushplay", + "githubUsername": "pushplay" }, { "name": "Jeff Kenney", - "url": "https://github.com/jeffkenney" + "url": "https://github.com/jeffkenney", + "githubUsername": "jeffkenney" }, { - "name": "Jimi", - "url": "Dimitris" + "name": "Jimi (Dimitris) Charalampidis", + "url": "https://github.com/JimiC", + "githubUsername": "JimiC" }, { "name": "Steffen Viken Valvåg", - "url": "https://github.com/steffenvv" + "url": "https://github.com/steffenvv", + "githubUsername": "steffenvv" }, { "name": "Emily Marigold Klassen", - "url": "https://github.com/forivall" + "url": "https://github.com/forivall", + "githubUsername": "forivall" }, { "name": "ExE Boss", - "url": "https://github.com/ExE-Boss" + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" }, { "name": "Aankhen", - "url": "https://github.com/Aankhen" + "url": "https://github.com/Aankhen", + "githubUsername": "Aankhen" } ], - "dependencies": { - "@types/yargs-parser": "*" - }, - "deprecated": false, - "description": "TypeScript definitions for yargs", - "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", - "license": "MIT", "main": "", - "name": "@types/yargs", + "types": "index.d.ts", "repository": { "type": "git", - "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/yargs" }, "scripts": {}, - "typeScriptVersion": "3.0", - "types": "index.d.ts", + "dependencies": { + "@types/yargs-parser": "*" + }, "typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536", - "version": "15.0.4" + "typeScriptVersion": "3.0" } \ No newline at end of file diff --git a/node_modules/jest/node_modules/ansi-styles/package.json b/node_modules/jest/node_modules/ansi-styles/package.json index 2b0aef0e4..1a7731952 100644 --- a/node_modules/jest/node_modules/ansi-styles/package.json +++ b/node_modules/jest/node_modules/ansi-styles/package.json @@ -1,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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/jest/node_modules/chalk/package.json b/node_modules/jest/node_modules/chalk/package.json index b6219713c..b68e931e7 100644 --- a/node_modules/jest/node_modules/chalk/package.json +++ b/node_modules/jest/node_modules/chalk/package.json @@ -1,33 +1,21 @@ { - "bugs": { - "url": "https://github.com/chalk/chalk/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "deprecated": false, + "name": "chalk", + "version": "3.0.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" - }, + "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" ], - "homepage": "https://github.com/chalk/chalk#readme", "keywords": [ "color", "colour", @@ -51,18 +39,21 @@ "command-line", "text" ], - "license": "MIT", - "main": "source", - "name": "chalk", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/chalk.git" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "scripts": { - "bench": "matcha benchmark.js", - "test": "xo && nyc ava && tsd" + "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" }, - "version": "3.0.0", "xo": { "rules": { "unicorn/prefer-string-slice": "off", diff --git a/node_modules/jest/node_modules/color-convert/package.json b/node_modules/jest/node_modules/color-convert/package.json index 427616bd0..d169f869b 100644 --- a/node_modules/jest/node_modules/color-convert/package.json +++ b/node_modules/jest/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ No newline at end of file diff --git a/node_modules/jest/node_modules/color-name/package.json b/node_modules/jest/node_modules/color-name/package.json index 07b8f6ece..fecb8dcfb 100644 --- a/node_modules/jest/node_modules/color-name/package.json +++ b/node_modules/jest/node_modules/color-name/package.json @@ -1,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "homepage": "https://github.com/colorjs/color-name" } \ No newline at end of file diff --git a/node_modules/jest/node_modules/has-flag/package.json b/node_modules/jest/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/jest/node_modules/has-flag/package.json +++ b/node_modules/jest/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/jest/node_modules/jest-cli/package.json b/node_modules/jest/node_modules/jest-cli/package.json index 428495371..6d84cf09f 100644 --- a/node_modules/jest/node_modules/jest-cli/package.json +++ b/node_modules/jest/node_modules/jest-cli/package.json @@ -1,11 +1,16 @@ { - "bin": { - "jest": "bin/jest.js" - }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest-cli", + "description": "Delightful JavaScript Testing.", + "version": "25.2.4", + "main": "build/index.js", + "types": "build/index.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/core": "^25.2.4", "@jest/test-result": "^25.2.4", @@ -21,8 +26,6 @@ "realpath-native": "^2.0.0", "yargs": "^15.3.1" }, - "deprecated": false, - "description": "Delightful JavaScript Testing.", "devDependencies": { "@jest/test-utils": "^25.2.1", "@types/exit": "^0.1.30", @@ -30,11 +33,22 @@ "@types/prompts": "^2.0.1", "@types/yargs": "^15.0.0" }, + "bin": { + "jest": "./bin/jest.js" + }, "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest", + "directory": "packages/jest-cli" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, "homepage": "https://jestjs.io/", + "license": "MIT", "keywords": [ "ava", "babel", @@ -61,24 +75,8 @@ "typescript", "watch" ], - "license": "MIT", - "main": "build/index.js", - "name": "jest-cli", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git", - "directory": "packages/jest-cli" - }, - "types": "build/index.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ No newline at end of file diff --git a/node_modules/jest/node_modules/supports-color/package.json b/node_modules/jest/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/jest/node_modules/supports-color/package.json +++ b/node_modules/jest/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/jest/package.json b/node_modules/jest/package.json index 65282b454..ad4209d82 100644 --- a/node_modules/jest/package.json +++ b/node_modules/jest/package.json @@ -1,23 +1,31 @@ { - "bin": { - "jest": "bin/jest.js" - }, - "bugs": { - "url": "https://github.com/facebook/jest/issues" + "name": "jest", + "description": "Delightful JavaScript Testing.", + "version": "25.2.4", + "main": "build/jest.js", + "types": "build/jest.d.ts", + "typesVersions": { + "<3.8": { + "build/*": [ + "build/ts3.4/*" + ] + } }, - "bundleDependencies": false, "dependencies": { "@jest/core": "^25.2.4", "import-local": "^3.0.2", "jest-cli": "^25.2.4" }, - "deprecated": false, - "description": "Delightful JavaScript Testing.", + "bin": "./bin/jest.js", "engines": { "node": ">= 8.3" }, - "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68", + "repository": { + "type": "git", + "url": "https://github.com/facebook/jest" + }, "homepage": "https://jestjs.io/", + "license": "MIT", "keywords": [ "ava", "babel", @@ -44,23 +52,8 @@ "typescript", "watch" ], - "license": "MIT", - "main": "build/jest.js", - "name": "jest", "publishConfig": { "access": "public" }, - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/jest.git" - }, - "types": "build/jest.d.ts", - "typesVersions": { - "<3.8": { - "build/*": [ - "build/ts3.4/*" - ] - } - }, - "version": "25.2.4" + "gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68" } \ 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 03d154ee7..55d445995 100644 --- a/node_modules/js-yaml/node_modules/esprima/package.json +++ b/node_modules/js-yaml/node_modules/esprima/package.json @@ -1,18 +1,39 @@ { + "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" + ], + "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" }, - "bundleDependencies": false, - "deprecated": false, - "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "license": "BSD-2-Clause", "devDependencies": { "codecov.io": "~0.1.6", "escomplex-js": "1.2.0", @@ -41,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", @@ -57,58 +70,43 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json index c779b0b6e..dbaa43e0c 100644 --- a/node_modules/js-yaml/package.json +++ b/node_modules/js-yaml/package.json @@ -1,38 +1,35 @@ { - "author": { - "name": "Vladimir Zapparov", - "email": "dervus.grim@gmail.com" - }, + "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)" + ], + "license": "MIT", + "repository": "nodeca/js-yaml", + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" + ], "bin": { "js-yaml": "bin/js-yaml.js" }, - "bugs": { - "url": "https://github.com/nodeca/js-yaml/issues" - }, - "bundleDependencies": false, - "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" }, - "deprecated": false, - "description": "YAML 1.2 parser and serializer", "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", @@ -44,27 +41,7 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/jsdom/node_modules/tough-cookie/package.json b/node_modules/jsdom/node_modules/tough-cookie/package.json index e3ab5d738..302e27d6f 100644 --- a/node_modules/jsdom/node_modules/tough-cookie/package.json +++ b/node_modules/jsdom/node_modules/tough-cookie/package.json @@ -1,53 +1,38 @@ { "author": { "name": "Jeremy Stashewsky", - "email": "jstash@gmail.com" + "email": "jstash@gmail.com", + "website": "https://github.com/stash" }, - "bugs": { - "url": "https://github.com/salesforce/tough-cookie/issues" - }, - "bundleDependencies": false, "contributors": [ { - "name": "Alexander Savin" + "name": "Alexander Savin", + "website": "https://github.com/apsavin" }, { - "name": "Ian Livingstone" + "name": "Ian Livingstone", + "website": "https://github.com/ianlivingstone" }, { - "name": "Ivan Nikulin" + "name": "Ivan Nikulin", + "website": "https://github.com/inikulin" }, { - "name": "Lalit Kapoor" + "name": "Lalit Kapoor", + "website": "https://github.com/lalitkapoor" }, { - "name": "Sam Thompson" + "name": "Sam Thompson", + "website": "https://github.com/sambthompson" }, { - "name": "Sebastian Mayr" + "name": "Sebastian Mayr", + "website": "https://github.com/Sebmaster" } ], - "dependencies": { - "ip-regex": "^2.1.0", - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "deprecated": false, + "license": "BSD-3-Clause", + "name": "tough-cookie", "description": "RFC6265 Cookies and Cookie Jar for node.js", - "devDependencies": { - "async": "^1.4.2", - "genversion": "^2.1.0", - "nyc": "^11.6.0", - "string.prototype.repeat": "^0.2.0", - "vows": "^0.8.2" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/salesforce/tough-cookie", "keywords": [ "HTTP", "cookie", @@ -58,17 +43,37 @@ "RFC6265", "RFC2965" ], - "license": "BSD-3-Clause", - "main": "./lib/cookie", - "name": "tough-cookie", + "version": "3.0.1", + "homepage": "https://github.com/salesforce/tough-cookie", "repository": { "type": "git", "url": "git://github.com/salesforce/tough-cookie.git" }, + "bugs": { + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + "main": "./lib/cookie", + "files": [ + "lib" + ], "scripts": { - "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js", + "version": "genversion lib/version.js && git add lib/version.js", "test": "vows test/*_test.js", - "version": "genversion lib/version.js && git add lib/version.js" + "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js" + }, + "engines": { + "node": ">=6" + }, + "devDependencies": { + "async": "^1.4.2", + "genversion": "^2.1.0", + "nyc": "^11.6.0", + "string.prototype.repeat": "^0.2.0", + "vows": "^0.8.2" }, - "version": "3.0.1" + "dependencies": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } } \ No newline at end of file diff --git a/node_modules/jsdom/package.json b/node_modules/jsdom/package.json index 2e393c330..ed8d9e25b 100644 --- a/node_modules/jsdom/package.json +++ b/node_modules/jsdom/package.json @@ -1,13 +1,23 @@ { - "browser": { - "canvas": false, - "vm": "./lib/jsdom/vm-shim.js", - "./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js" - }, - "bugs": { - "url": "https://github.com/jsdom/jsdom/issues" - }, - "bundleDependencies": false, + "name": "jsdom", + "version": "15.2.1", + "description": "A JavaScript implementation of many web standards", + "keywords": [ + "dom", + "html", + "whatwg", + "w3c" + ], + "maintainers": [ + "Elijah Insua (http://tmpvar.com)", + "Domenic Denicola (https://domenic.me/)", + "Sebastian Mayr (https://blog.smayr.name/)", + "Joris van der Wel ", + "Timothy Gu (https://timothygu.me/)", + "Zirro " + ], + "license": "MIT", + "repository": "jsdom/jsdom", "dependencies": { "abab": "^2.0.0", "acorn": "^7.1.0", @@ -36,8 +46,14 @@ "ws": "^7.0.0", "xml-name-validator": "^3.0.0" }, - "deprecated": false, - "description": "A JavaScript implementation of many web standards", + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + }, "devDependencies": { "benchmark": "^2.1.4", "browserify": "^16.2.3", @@ -65,81 +81,34 @@ "wd": "^1.11.2", "webidl2js": "^10.0.0" }, - "engines": { - "node": ">=8" - }, - "homepage": "https://github.com/jsdom/jsdom#readme", - "keywords": [ - "dom", - "html", - "whatwg", - "w3c" - ], - "license": "MIT", - "main": "./lib/api.js", - "maintainers": [ - { - "name": "Elijah Insua", - "email": "tmpvar@gmail.com", - "url": "http://tmpvar.com" - }, - { - "name": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/" - }, - { - "name": "Sebastian Mayr", - "email": "sebmaster16@gmail.com", - "url": "https://blog.smayr.name/" - }, - { - "name": "Joris van der Wel", - "email": "joris@jorisvanderwel.com" - }, - { - "name": "Timothy Gu", - "email": "timothygu99@gmail.com", - "url": "https://timothygu.me/" - }, - { - "name": "Zirro", - "email": "code@zirro.se" - } - ], - "name": "jsdom", - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - }, - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/jsdom.git" + "browser": { + "canvas": false, + "vm": "./lib/jsdom/vm-shim.js", + "./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js" }, "scripts": { - "benchmark": "node ./benchmark/runner", - "benchmark-browser": "node ./benchmark/runner --bundle", - "convert-idl": "node ./scripts/webidl/convert", - "init-wpt": "git submodule update --init --recursive", - "lint": "eslint . --cache --ext .js,.html", - "lint-is-complete": "eslint-find-rules --unused .eslintrc.json", "prepare": "yarn convert-idl", "pretest": "yarn convert-idl && yarn init-wpt", - "reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt", - "test": "mocha test/index.js", + "test-wpt": "mocha test/web-platform-tests/run-wpts.js", + "test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js", + "test-mocha": "mocha", "test-api": "mocha test/api", - "test-browser": "yarn test-browser-iframe && yarn test-browser-worker", + "test": "mocha test/index.js", "test-browser-iframe": "karma start test/karma.conf.js", "test-browser-worker": "karma start test/karma-webworker.conf.js", - "test-mocha": "mocha", - "test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js", - "test-wpt": "mocha test/web-platform-tests/run-wpts.js", + "test-browser": "yarn test-browser-iframe && yarn test-browser-worker", + "lint": "eslint . --cache --ext .js,.html", + "lint-is-complete": "eslint-find-rules --unused .eslintrc.json", + "init-wpt": "git submodule update --init --recursive", + "reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt", + "update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json", "update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt", - "update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json" + "benchmark": "node ./benchmark/runner", + "benchmark-browser": "node ./benchmark/runner --bundle", + "convert-idl": "node ./scripts/webidl/convert" }, - "version": "15.2.1" + "main": "./lib/api.js", + "engines": { + "node": ">=8" + } } \ No newline at end of file diff --git a/node_modules/kind-of/package.json b/node_modules/kind-of/package.json index b277b6e9f..04b8719fb 100644 --- a/node_modules/kind-of/package.json +++ b/node_modules/kind-of/package.json @@ -1,48 +1,35 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "kind-of", + "description": "Get the native type of a value.", + "version": "6.0.3", + "homepage": "https://github.com/jonschlinkert/kind-of", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "David Fox-Powell (https://dtothefp.github.io/me)", + "James (https://twitter.com/aretecode)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Ken Sheedlo (kensheedlo.com)", + "laggingreflex (https://github.com/laggingreflex)", + "Miguel Mota (https://miguelmota.com)", + "Peter deHaan (http://about.me/peterdehaan)", + "tunnckoCore (https://i.am.charlike.online)" + ], + "repository": "jonschlinkert/kind-of", "bugs": { "url": "https://github.com/jonschlinkert/kind-of/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "David Fox-Powell", - "url": "https://dtothefp.github.io/me" - }, - { - "name": "James", - "url": "https://twitter.com/aretecode" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Ken Sheedlo", - "url": "kensheedlo.com" - }, - { - "name": "laggingreflex", - "url": "https://github.com/laggingreflex" - }, - { - "name": "Miguel Mota", - "url": "https://miguelmota.com" - }, - { - "name": "Peter deHaan", - "url": "http://about.me/peterdehaan" - }, - { - "name": "tunnckoCore", - "url": "https://i.am.charlike.online" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "description": "Get the native type of a value.", + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha", + "prepublish": "browserify -o browser.js -e index.js -s index --bare" + }, "devDependencies": { "benchmarked": "^2.0.0", "browserify": "^14.4.0", @@ -50,13 +37,6 @@ "mocha": "^4.0.1", "write": "^1.0.3" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/kind-of", "keywords": [ "arguments", "array", @@ -80,17 +60,6 @@ "typeof", "types" ], - "license": "MIT", - "main": "index.js", - "name": "kind-of", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/kind-of.git" - }, - "scripts": { - "prepublish": "browserify -o browser.js -e index.js -s index --bare", - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -115,6 +84,5 @@ "typeof", "verb" ] - }, - "version": "6.0.3" + } } \ No newline at end of file diff --git a/node_modules/locate-path/package.json b/node_modules/locate-path/package.json index 986900cb6..c3cac4f11 100644 --- a/node_modules/locate-path/package.json +++ b/node_modules/locate-path/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-locate": "^4.1.0" - }, - "deprecated": false, - "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", @@ -41,14 +34,12 @@ "iterable", "iterator" ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-locate": "^4.1.0" }, - "version": "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/lolex/package.json b/node_modules/lolex/package.json index b33ee6e46..97359733d 100644 --- a/node_modules/lolex/package.json +++ b/node_modules/lolex/package.json @@ -1,16 +1,39 @@ { - "author": { - "name": "Christian Johansen" + "name": "lolex", + "description": "Fake JavaScript timers", + "version": "5.1.2", + "homepage": "http://github.com/sinonjs/lolex", + "author": "Christian Johansen", + "repository": { + "type": "git", + "url": "http://github.com/sinonjs/lolex.git" }, "bugs": { + "mail": "christian@cjohansen.no", "url": "http://github.com/sinonjs/lolex/issues" }, - "bundleDependencies": false, - "dependencies": { - "@sinonjs/commons": "^1.7.0" + "license": "BSD-3-Clause", + "scripts": { + "lint": "eslint .", + "test-node": "mocha test/ integration-test/ -R dot --check-leaks", + "test-headless": "mochify --no-detect-globals --timeout=10000", + "test-check-coverage": "npm run test-coverage && nyc check-coverage", + "test-cloud": "mochify --wd --no-detect-globals --timeout=10000", + "test-coverage": "nyc --all --reporter text --reporter html --reporter lcovonly npm run test-node", + "test": "npm run lint && npm run test-node && npm run test-headless", + "bundle": "browserify --no-detect-globals -s lolex -o lolex.js src/lolex-src.js", + "prepublishOnly": "npm run bundle", + "preversion": "./scripts/preversion.sh", + "version": "./scripts/version.sh", + "postversion": "./scripts/postversion.sh" }, - "deprecated": false, - "description": "Fake JavaScript timers", + "lint-staged": { + "*.js": "eslint" + }, + "files": [ + "src/", + "lolex.js" + ], "devDependencies": { "@sinonjs/referee-sinon": "5.0.0", "browserify": "16.5.0", @@ -49,23 +72,16 @@ ] } }, - "files": [ - "src/", - "lolex.js" - ], - "homepage": "http://github.com/sinonjs/lolex", + "module": "./lolex.js", + "main": "./src/lolex-src.js", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + }, "husky": { "hooks": { "pre-commit": "run-p lint test-node" } }, - "license": "BSD-3-Clause", - "lint-staged": { - "*.js": "eslint" - }, - "main": "./src/lolex-src.js", - "module": "./lolex.js", - "name": "lolex", "nyc": { "branches": 85, "lines": 92, @@ -76,24 +92,5 @@ "coverage/**", "lolex.js" ] - }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/sinonjs/lolex.git" - }, - "scripts": { - "bundle": "browserify --no-detect-globals -s lolex -o lolex.js src/lolex-src.js", - "lint": "eslint .", - "postversion": "./scripts/postversion.sh", - "prepublishOnly": "npm run bundle", - "preversion": "./scripts/preversion.sh", - "test": "npm run lint && npm run test-node && npm run test-headless", - "test-check-coverage": "npm run test-coverage && nyc check-coverage", - "test-cloud": "mochify --wd --no-detect-globals --timeout=10000", - "test-coverage": "nyc --all --reporter text --reporter html --reporter lcovonly npm run test-node", - "test-headless": "mochify --no-detect-globals --timeout=10000", - "test-node": "mocha test/ integration-test/ -R dot --check-leaks", - "version": "./scripts/version.sh" - }, - "version": "5.1.2" + } } \ No newline at end of file diff --git a/node_modules/long/package.json b/node_modules/long/package.json index d6234e3c6..922ef794d 100644 --- a/node_modules/long/package.json +++ b/node_modules/long/package.json @@ -1,18 +1,28 @@ { - "author": { - "name": "Daniel Wirtz", - "email": "dcode@dcode.io" + "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" }, - "bundleDependencies": false, + "keywords": [ + "math" + ], "dependencies": {}, - "deprecated": false, - "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", @@ -20,21 +30,5 @@ "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" + ] } \ No newline at end of file diff --git a/node_modules/macos-release/package.json b/node_modules/macos-release/package.json index e84b21198..78bde8578 100644 --- a/node_modules/macos-release/package.json +++ b/node_modules/macos-release/package.json @@ -1,26 +1,24 @@ { + "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" }, - "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", @@ -33,14 +31,9 @@ "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" + "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 d3268f6a0..a330b56c2 100644 --- a/node_modules/make-dir/node_modules/semver/package.json +++ b/node_modules/make-dir/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" + } } \ No newline at end of file diff --git a/node_modules/make-dir/package.json b/node_modules/make-dir/package.json index 0f79f7ea2..f644e281a 100644 --- a/node_modules/make-dir/package.json +++ b/node_modules/make-dir/package.json @@ -1,39 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/make-dir/issues" - }, - "bundleDependencies": false, - "dependencies": { - "semver": "^6.0.0" - }, - "deprecated": false, - "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", @@ -55,14 +41,19 @@ "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" + "dependencies": { + "semver": "^6.0.0" }, - "version": "3.0.2" + "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/make-error/package.json b/node_modules/make-error/package.json index 8d57d52f1..d5a4fa893 100644 --- a/node_modules/make-error/package.json +++ b/node_modules/make-error/package.json @@ -1,42 +1,9 @@ { - "author": { - "name": "Julien Fontanet", - "email": "julien.fontanet@isonoe.net" - }, - "bugs": { - "url": "https://github.com/JsCommunity/make-error/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "make-error", + "version": "1.3.6", + "main": "index.js", + "license": "ISC", "description": "Make your own error types!", - "devDependencies": { - "browserify": "^16.2.3", - "eslint": "^6.5.1", - "eslint-config-prettier": "^6.4.0", - "eslint-config-standard": "^14.1.0", - "eslint-plugin-import": "^2.14.0", - "eslint-plugin-node": "^10.0.0", - "eslint-plugin-promise": "^4.0.1", - "eslint-plugin-standard": "^4.0.0", - "husky": "^3.0.9", - "jest": "^24", - "prettier": "^1.14.3", - "uglify-js": "^3.3.2" - }, - "files": [ - "dist/", - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/JsCommunity/make-error", - "husky": { - "hooks": { - "commit-msg": "npm run test" - } - }, - "jest": { - "testEnvironment": "node" - }, "keywords": [ "create", "custom", @@ -51,13 +18,30 @@ "make", "subclass" ], - "license": "ISC", - "main": "index.js", - "name": "make-error", + "homepage": "https://github.com/JsCommunity/make-error", + "bugs": "https://github.com/JsCommunity/make-error/issues", + "author": "Julien Fontanet ", "repository": { "type": "git", "url": "git://github.com/JsCommunity/make-error.git" }, + "devDependencies": { + "browserify": "^16.2.3", + "eslint": "^6.5.1", + "eslint-config-prettier": "^6.4.0", + "eslint-config-standard": "^14.1.0", + "eslint-plugin-import": "^2.14.0", + "eslint-plugin-node": "^10.0.0", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-standard": "^4.0.0", + "husky": "^3.0.9", + "jest": "^24", + "prettier": "^1.14.3", + "uglify-js": "^3.3.2" + }, + "jest": { + "testEnvironment": "node" + }, "scripts": { "dev-test": "jest --watch", "format": "prettier --write '**'", @@ -65,5 +49,14 @@ "pretest": "eslint --ignore-path .gitignore .", "test": "jest" }, - "version": "1.3.6" + "files": [ + "dist/", + "index.js", + "index.d.ts" + ], + "husky": { + "hooks": { + "commit-msg": "npm run test" + } + } } \ No newline at end of file diff --git a/node_modules/md5/package.json b/node_modules/md5/package.json index f374c403b..fdcac15a4 100644 --- a/node_modules/md5/package.json +++ b/node_modules/md5/package.json @@ -1,45 +1,36 @@ { - "author": { - "name": "Paul Vorbach", - "email": "paul@vorba.ch", - "url": "http://paul.vorba.ch" + "name": "md5", + "description": "js function for hashing messages with MD5", + "version": "2.2.1", + "author": "Paul Vorbach (http://paul.vorba.ch)", + "contributors": [ + "salba" + ], + "tags": [ + "md5", + "hash", + "encryption", + "message digest" + ], + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-md5.git" }, "bugs": { "url": "https://github.com/pvorb/node-md5/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "salba" - } - ], + "main": "md5.js", + "scripts": { + "test": "mocha" + }, "dependencies": { "charenc": "~0.0.1", "crypt": "~0.0.1", "is-buffer": "~1.1.1" }, - "deprecated": false, - "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" } \ No newline at end of file diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json index cc764d1d2..cddfcb379 100644 --- a/node_modules/mimic-fn/package.json +++ b/node_modules/mimic-fn/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/mimic-fn/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -38,14 +34,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json index 6c9aeceb3..6d7171689 100644 --- a/node_modules/minimist/package.json +++ b/node_modules/minimist/package.json @@ -1,37 +1,16 @@ { - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" - }, - "bugs": { - "url": "https://github.com/substack/minimist/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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", @@ -46,5 +25,21 @@ "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" } \ No newline at end of file diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json index c92cb4544..b335f1ae0 100644 --- a/node_modules/mkdirp/package.json +++ b/node_modules/mkdirp/package.json @@ -1,46 +1,34 @@ { - "author": { - "name": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net" + "name": "mkdirp", + "description": "Recursively mkdir, like `mkdir -p`", + "version": "0.5.4", + "publishConfig": { + "tag": "legacy" }, - "bin": { - "mkdirp": "bin/cmd.js" + "author": "James Halliday (http://substack.net)", + "main": "index.js", + "keywords": [ + "mkdir", + "directory" + ], + "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" }, - "bundleDependencies": false, "dependencies": { "minimist": "^1.2.5" }, - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "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" + ] } \ No newline at end of file diff --git a/node_modules/node-fetch/package.json b/node_modules/node-fetch/package.json index caf8822cd..78a30d35a 100644 --- a/node_modules/node-fetch/package.json +++ b/node_modules/node-fetch/package.json @@ -1,13 +1,41 @@ { - "author": { - "name": "David Frank" - }, + "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" + ], + "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" + }, + "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", @@ -34,35 +62,5 @@ "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": {} } \ No newline at end of file diff --git a/node_modules/node-notifier/node_modules/semver/package.json b/node_modules/node-notifier/node_modules/semver/package.json index d3268f6a0..a330b56c2 100644 --- a/node_modules/node-notifier/node_modules/semver/package.json +++ b/node_modules/node-notifier/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" + } } \ No newline at end of file diff --git a/node_modules/node-notifier/package.json b/node_modules/node-notifier/package.json index ac50b6806..b751c439a 100644 --- a/node_modules/node-notifier/package.json +++ b/node_modules/node-notifier/package.json @@ -1,20 +1,41 @@ { - "author": { - "name": "Mikael Brevik" + "name": "node-notifier", + "version": "6.0.0", + "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "main": "index.js", + "scripts": { + "pretest": "npm run lint", + "test": "jest", + "example": "node ./example/message.js", + "example:mac": "node ./example/advanced.js", + "example:mac:input": "node ./example/macInput.js", + "example:windows": "node ./example/toaster.js", + "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js" }, - "bugs": { - "url": "https://github.com/mikaelbr/node-notifier/issues" + "jest": { + "testRegex": "/test/[^_]*.js", + "testEnvironment": "node", + "setupFilesAfterEnv": [ + "./test/_test-matchers.js" + ] }, - "bundleDependencies": false, - "dependencies": { - "growly": "^1.3.0", - "is-wsl": "^2.1.1", - "semver": "^6.3.0", - "shellwords": "^0.1.1", - "which": "^1.3.1" + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" }, - "deprecated": false, - "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "keywords": [ + "notification center", + "mac os x 10.8", + "notify", + "terminal-notifier", + "notify-send", + "growl", + "windows 8 notification", + "toaster", + "notification" + ], + "author": "Mikael Brevik", + "license": "MIT", "devDependencies": { "eslint": "^6.4.0", "eslint-config-semistandard": "^15.0.0", @@ -28,55 +49,30 @@ "lint-staged": "^9.3.0", "prettier": "^1.18.2" }, - "directories": { - "example": "example", - "test": "test" + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" }, - "homepage": "https://github.com/mikaelbr/node-notifier#readme", "husky": { "hooks": { "pre-commit": "lint-staged" } }, - "jest": { - "testRegex": "/test/[^_]*.js", - "testEnvironment": "node", - "setupFilesAfterEnv": [ - "./test/_test-matchers.js" - ] - }, - "keywords": [ - "notification center", - "mac os x 10.8", - "notify", - "terminal-notifier", - "notify-send", - "growl", - "windows 8 notification", - "toaster", - "notification" - ], - "license": "MIT", "lint-staged": { "*.{js,json,css,md}": [ "prettier --write", "git add" ] }, - "main": "index.js", - "name": "node-notifier", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" - }, - "scripts": { - "example": "node ./example/message.js", - "example:mac": "node ./example/advanced.js", - "example:mac:input": "node ./example/macInput.js", - "example:windows": "node ./example/toaster.js", - "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js", - "pretest": "npm run lint", - "test": "jest" + "bugs": { + "url": "https://github.com/mikaelbr/node-notifier/issues" }, - "version": "6.0.0" + "homepage": "https://github.com/mikaelbr/node-notifier#readme", + "directories": { + "example": "example", + "test": "test" + } } \ No newline at end of file diff --git a/node_modules/onetime/package.json b/node_modules/onetime/package.json index 3b9293f2b..19a7f198c 100644 --- a/node_modules/onetime/package.json +++ b/node_modules/onetime/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/onetime/issues" - }, - "bundleDependencies": false, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "deprecated": false, - "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", @@ -38,14 +31,12 @@ "called", "prevent" ], - "license": "MIT", - "name": "onetime", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/onetime.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "mimic-fn": "^2.1.0" }, - "version": "5.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/os-name/package.json b/node_modules/os-name/package.json index 98c5c8c2d..3418bf392 100644 --- a/node_modules/os-name/package.json +++ b/node_modules/os-name/package.json @@ -1,31 +1,24 @@ { + "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" }, - "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", @@ -39,14 +32,14 @@ "windows", "linux" ], - "license": "MIT", - "name": "os-name", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/os-name.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" }, - "version": "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-each-series/package.json b/node_modules/p-each-series/package.json index 5023a2020..fce3ac38f 100644 --- a/node_modules/p-each-series/package.json +++ b/node_modules/p-each-series/package.json @@ -1,30 +1,24 @@ { + "name": "p-each-series", + "version": "2.1.0", + "description": "Iterate over promises serially", + "license": "MIT", + "repository": "sindresorhus/p-each-series", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-each-series/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Iterate over promises serially", - "devDependencies": { - "ava": "^1.4.1", - "delay": "^4.1.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-each-series#readme", "keywords": [ "promise", "foreach", @@ -43,14 +37,11 @@ "series", "bluebird" ], - "license": "MIT", - "name": "p-each-series", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-each-series.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "2.1.0" + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.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-locate/package.json b/node_modules/p-locate/package.json index 8a59e550a..24bf49512 100644 --- a/node_modules/p-locate/package.json +++ b/node_modules/p-locate/package.json @@ -1,34 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "bundleDependencies": false, - "dependencies": { - "p-limit": "^2.2.0" - }, - "deprecated": false, - "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", @@ -49,14 +39,15 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "p-limit": "^2.2.0" }, - "version": "4.1.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/parse5/package.json b/node_modules/parse5/package.json index 62faa5fcf..e96f85f28 100644 --- a/node_modules/parse5/package.json +++ b/node_modules/parse5/package.json @@ -1,19 +1,9 @@ { - "author": { - "name": "Ivan Nikulin", - "email": "ifaaan@gmail.com", - "url": "https://github.com/inikulin" - }, - "bugs": { - "url": "https://github.com/inikulin/parse5/issues" - }, - "bundleDependencies": false, - "contributors": "https://github.com/inikulin/parse5/graphs/contributors", - "deprecated": false, + "name": "parse5", "description": "HTML parser and serializer.", - "files": [ - "lib" - ], + "version": "5.1.0", + "author": "Ivan Nikulin (https://github.com/inikulin)", + "contributors": "https://github.com/inikulin/parse5/graphs/contributors", "homepage": "https://github.com/inikulin/parse5", "keywords": [ "html", @@ -34,10 +24,11 @@ ], "license": "MIT", "main": "./lib/index.js", - "name": "parse5", "repository": { "type": "git", "url": "git://github.com/inikulin/parse5.git" }, - "version": "5.1.0" + "files": [ + "lib" + ] } \ No newline at end of file diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json index 60065a59e..90039cc2f 100644 --- a/node_modules/path-exists/package.json +++ b/node_modules/path-exists/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -35,14 +31,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index e708bb3ee..882d1dff3 100755 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,14 +1,30 @@ { - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "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" }, - "bundleDependencies": false, - "deprecated": false, - "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.", + "license": "MIT", + "files": [ + "index.js", + "lib" + ], + "main": "index.js", + "engines": { + "node": ">=8.6" + }, + "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" + }, "devDependencies": { "eslint": "^6.8.0", "fill-range": "^7.0.1", @@ -17,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", @@ -41,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, @@ -84,6 +77,5 @@ "nanomatch", "picomatch" ] - }, - "version": "2.2.2" + } } \ No newline at end of file diff --git a/node_modules/pkg-dir/package.json b/node_modules/pkg-dir/package.json index 473d80a8e..6759a9ce7 100644 --- a/node_modules/pkg-dir/package.json +++ b/node_modules/pkg-dir/package.json @@ -1,32 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/pkg-dir/issues" - }, - "bundleDependencies": false, - "dependencies": { - "find-up": "^4.0.0" - }, - "deprecated": false, - "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", @@ -52,14 +44,13 @@ "walking", "path" ], - "license": "MIT", - "name": "pkg-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pkg-dir.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "find-up": "^4.0.0" }, - "version": "4.2.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/prompts/package.json b/node_modules/prompts/package.json index 9c22c707c..6ca6c9431 100644 --- a/node_modules/prompts/package.json +++ b/node_modules/prompts/package.json @@ -1,36 +1,26 @@ { + "name": "prompts", + "version": "2.3.2", + "description": "Lightweight, beautiful and user-friendly prompts", + "license": "MIT", + "repository": "terkelg/prompts", + "main": "index.js", "author": { "name": "Terkel Gjervig", "email": "terkel@terkel.com", "url": "https://terkel.com" }, - "bugs": { - "url": "https://github.com/terkelg/prompts/issues" - }, - "bundleDependencies": false, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.4" - }, - "deprecated": false, - "description": "Lightweight, beautiful and user-friendly prompts", - "devDependencies": { - "@babel/cli": "^7.8.4", - "@babel/core": "^7.8.7", - "@babel/plugin-proposal-object-rest-spread": "^7.8.3", - "@babel/preset-env": "^7.8.7", - "tap-spec": "^5.0.0", - "tape": "^4.13.2" - }, - "engines": { - "node": ">= 6" - }, "files": [ "lib", "dist", "index.js" ], - "homepage": "https://github.com/terkelg/prompts#readme", + "scripts": { + "start": "node lib/index.js", + "build": "babel lib -d dist", + "prepublishOnly": "npm run build", + "test": "tape test/*.js | tap-spec" + }, "keywords": [ "ui", "prompts", @@ -45,18 +35,19 @@ "ask", "interact" ], - "license": "MIT", - "main": "index.js", - "name": "prompts", - "repository": { - "type": "git", - "url": "git+https://github.com/terkelg/prompts.git" + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.4" }, - "scripts": { - "build": "babel lib -d dist", - "prepublishOnly": "npm run build", - "start": "node lib/index.js", - "test": "tape test/*.js | tap-spec" + "devDependencies": { + "@babel/cli": "^7.8.4", + "@babel/core": "^7.8.7", + "@babel/plugin-proposal-object-rest-spread": "^7.8.3", + "@babel/preset-env": "^7.8.7", + "tap-spec": "^5.0.0", + "tape": "^4.13.2" }, - "version": "2.3.2" + "engines": { + "node": ">= 6" + } } \ No newline at end of file diff --git a/node_modules/realpath-native/package.json b/node_modules/realpath-native/package.json index 0086d5e4d..f62dfc625 100644 --- a/node_modules/realpath-native/package.json +++ b/node_modules/realpath-native/package.json @@ -1,19 +1,26 @@ { - "author": { - "name": "Simen Bekkhus", - "email": "sbekkhus91@gmail.com" - }, - "bugs": { - "url": "https://github.com/SimenB/realpath-native/issues" + "name": "realpath-native", + "version": "2.0.0", + "main": "index.js", + "types": "index.d.ts", + "files": [ + "index.js", + "index.d.ts" + ], + "description": "Use the system's native `realpath`", + "repository": "SimenB/realpath-native", + "author": "Simen Bekkhus ", + "license": "MIT", + "keywords": [ + "realpath" + ], + "engines": { + "node": ">=8" }, - "bundleDependencies": false, - "commitlint": { - "extends": [ - "@commitlint/config-conventional" - ] + "scripts": { + "lint": "eslint .", + "test": "eslint . && ava" }, - "deprecated": false, - "description": "Use the system's native `realpath`", "devDependencies": { "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", @@ -25,18 +32,16 @@ "lint-staged": "^9.5.0", "prettier": "^1.19.1" }, - "engines": { - "node": ">=8" + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "prettier": { + "proseWrap": "always", + "singleQuote": true, + "trailingComma": "es5" }, - "files": [ - "index.js", - "index.d.ts" - ], - "homepage": "https://github.com/SimenB/realpath-native#readme", - "keywords": [ - "realpath" - ], - "license": "MIT", "lint-staged": { "*.js": [ "eslint --fix", @@ -46,22 +51,5 @@ "prettier --write", "git add" ] - }, - "main": "index.js", - "name": "realpath-native", - "prettier": { - "proseWrap": "always", - "singleQuote": true, - "trailingComma": "es5" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/SimenB/realpath-native.git" - }, - "scripts": { - "lint": "eslint .", - "test": "eslint . && ava" - }, - "types": "index.d.ts", - "version": "2.0.0" + } } \ No newline at end of file diff --git a/node_modules/removeNPMAbsolutePaths/LICENSE b/node_modules/removeNPMAbsolutePaths/LICENSE new file mode 100644 index 000000000..ccf737007 --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Juanjo Diaz + +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/removeNPMAbsolutePaths/README.md b/node_modules/removeNPMAbsolutePaths/README.md new file mode 100644 index 000000000..5904ddcc5 --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/README.md @@ -0,0 +1,69 @@ +[![NPM version][npm-image]][npm-url] +[![build status][travis-image]][travis-url] +[![Test coverage][coveralls-image]][coveralls-url] +[![Downloads][downloads-image]][downloads-url] + +# removeNPMAbsolutePaths + +removeNPMAbsolutePaths is a small utility to remove the fields that npm adds to the modules in `node_modules` containing local aboslute paths. + +It has been noted that the `package.json` of modules in the `node_modules` folder contain some extra fields like `_args` and `where` which contain the absolute path of the module. According to NPM those fields are not even used. + +The problem comes when you are planning to package your application using electron, NW.js or similar and distribute it. You might not want to distribute files containing absolute paths within your computer. + +A feature request has been raised to NPM to fix this issue but they have made clear they don't plan to fix this. + - https://github.com/npm/npm/issues/12110 (feature request) + - https://github.com/npm/npm/issues/10393 (discussion about the topic) + +## Using removeNPMAbsolutePaths + +removeNPMAbsolutePaths simply loop through all the files in the given folder, open the files called `package.json` and remove all the fields starting with an underscore (`_`). + +You can install removeNPMAbsolutePaths globally and use it from the command line +```sh +$ npm install -g removeNPMAbsolutePaths +$ removeNPMAbsolutePaths '' +``` +or use it from whithin your code +```javascript +var removeNPMAbsolutePaths = require('removeNPMAbsolutePaths'); +removeNPMAbsolutePaths('') + .then(results => results.forEach(result => { + // Print only information about files that couldn't be processed + if (!result.success) { + console.log(result.err.message); + } + })) + .catch(err => console.log(err.message)); +``` +Using `removeNPMAbsolutePaths` from within Javascript returns a promise containing information about all the folders and files processed and whether they where successfully processed and rewritten or not. + +### Options +removeNPMAbsolutePaths can be configured using tags. Tags can be added to the command line commands: +```sh +$ removeNPMAbsolutePaths '' --force --fields _where _args +``` +or passed programmatically in an options object +```javascript +removeNPMAbsolutePaths('', { force: true, fields: ['_where', '_args']}); +``` + +#### force +removeNPMAbsolutePaths only rewrite to disk the files that it modifies. Passing the `--force` tag will rewritte all the files even if they haven't been modfied. This might be useful if you want all the package.json files to have always exactly the same styling for example for hashing. + +#### fields +removeNPMAbsolutePaths by default removes all fields starting with `_`. Passing the `--fields` tag followed by a list of field names you want removed will cause it to remove only those ones you list. This might be useful if only some of the fields in package.json are bothering you. + + +## License +MIT + + +[npm-image]: https://img.shields.io/npm/v/removeNPMAbsolutePaths.svg?style=flat-square +[npm-url]: https://www.npmjs.com/package/removeNPMAbsolutePaths +[travis-image]: https://img.shields.io/travis/juanjoDiaz/removeNPMAbsolutePaths/master.svg?style=flat-square +[travis-url]: https://travis-ci.org/juanjoDiaz/removeNPMAbsolutePaths +[coveralls-image]: https://img.shields.io/coveralls/juanjoDiaz/removeNPMAbsolutePaths/master.svg?style=flat-square +[coveralls-url]: https://coveralls.io/github/juanjoDiaz/removeNPMAbsolutePaths?branch=master +[downloads-image]: https://img.shields.io/npm/dm/removeNPMAbsolutePaths.svg?style=flat-square +[downloads-url]: https://www.npmjs.com/package/removeNPMAbsolutePaths diff --git a/node_modules/removeNPMAbsolutePaths/bin/removeNPMAbsolutePaths b/node_modules/removeNPMAbsolutePaths/bin/removeNPMAbsolutePaths new file mode 100755 index 000000000..ad94cd336 --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/bin/removeNPMAbsolutePaths @@ -0,0 +1,30 @@ +#!/usr/bin/env node + +/* eslint-disable no-console */ + +'use strict'; + +const cli = require('../src/cli'); +const removeNPMAbsolutePaths = require('../src/removeNPMAbsolutePaths'); + +async function main() { + try { + const args = await cli.parseArguments(process.argv.slice(2)); + + if (args.ignored.length) { + console.warn(`The following options are unknown and will be ignored:\n${args.ignored.join('\n')}`); + } + + const results = await removeNPMAbsolutePaths(args.path, args.opts); + + results.forEach((result) => { + if (!result.success) { + console.log(result.err.message); + } + }); + } catch (err) { + console.error(err.message); + } +} + +main(); diff --git a/node_modules/removeNPMAbsolutePaths/package.json b/node_modules/removeNPMAbsolutePaths/package.json new file mode 100644 index 000000000..28ccddcaa --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/package.json @@ -0,0 +1,52 @@ +{ + "name": "removeNPMAbsolutePaths", + "version": "2.0.0", + "description": "Remove the fields containing local aboslute paths created by NPM", + "keywords": [ + "npm", + "modules" + ], + "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" + }, + "bugs": { + "url": "https://github.com/removeNPMAbsolutePaths/issues", + "email": "juanjo.diazmo@gmail.com" + }, + "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", + "coveralls": "^3.0.5", + "eslint": "^6.0.1", + "eslint-config-airbnb-base": "^13.2.0", + "eslint-plugin-import": "^2.18.0", + "mocha": "^6.1.4", + "nyc": "^14.1.1", + "sinon": "^7.3.2", + "sinon-chai": "^3.3.0" + }, + "engines": { + "node": ">=4.0.0" + } +} \ No newline at end of file diff --git a/node_modules/removeNPMAbsolutePaths/src/cli.js b/node_modules/removeNPMAbsolutePaths/src/cli.js new file mode 100644 index 000000000..41fb2f52c --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/src/cli.js @@ -0,0 +1,51 @@ +'use strict'; + +const defaultOpts = { + force: false, +}; + +function parseArguments(args) { + if (args.length < 1) { + throw new Error('Missing path.\nThe first argument should be the path to a directory or a package.json file.'); + } + + const path = args[0]; + const opts = { ...defaultOpts }; + + const ignored = []; + + for (let i = 1; i < args.length; i += 1) { + const arg = args[i]; + switch (arg) { + case '--force': + opts.force = true; + break; + case '--fields': + if (opts.fields) { + throw new Error('Duplicated argument: --fields.\nThe --fields flag has been detected twice.'); + } + + opts.fields = []; + while (args[i + 1] && args[i + 1].slice(0, 2) !== '--') { + opts.fields.push(args[i += 1]); + } + + if (opts.fields && opts.fields.length === 0) { + throw new Error('Invalid argument usage: --fields.\nThe --fields flag should be followed by the specific fields that should be removed but none was found.'); + } + break; + default: + ignored.push(arg); + break; + } + } + + return { + path, + opts, + ignored, + }; +} + +module.exports.defaultOpts = defaultOpts; +module.exports.parseArguments = parseArguments; diff --git a/node_modules/removeNPMAbsolutePaths/src/errno.js b/node_modules/removeNPMAbsolutePaths/src/errno.js new file mode 100644 index 000000000..d5ba94315 --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/src/errno.js @@ -0,0 +1,310 @@ +'use strict'; + +const all = [ + { + errno: -2, + code: 'ENOENT', + description: 'No such file or directory', + }, + { + errno: -1, + code: 'UNKNOWN', + description: 'Unknown error', + }, + { + errno: 0, + code: 'OK', + description: 'Success', + }, + { + errno: 1, + code: 'EOF', + description: 'End of file', + }, + { + errno: 2, + code: 'EADDRINFO', + description: 'Getaddrinfo error', + }, + { + errno: 3, + code: 'EACCES', + description: 'Permission denied', + }, + { + errno: 4, + code: 'EAGAIN', + description: 'Resource temporarily unavailable', + }, + { + errno: 5, + code: 'EADDRINUSE', + description: 'Address already in use', + }, + { + errno: 6, + code: 'EADDRNOTAVAIL', + description: 'Address not available', + }, + { + errno: 7, + code: 'EAFNOSUPPORT', + description: 'Address family not supported', + }, + { + errno: 8, + code: 'EALREADY', + description: 'Connection already in progress', + }, + { + errno: 9, + code: 'EBADF', + description: 'Bad file descriptor', + }, + { + errno: 10, + code: 'EBUSY', + description: 'Resource busy or locked', + }, + { + errno: 11, + code: 'ECONNABORTED', + description: 'Software caused connection abort', + }, + { + errno: 12, + code: 'ECONNREFUSED', + description: 'Connection refused', + }, + { + errno: 13, + code: 'ECONNRESET', + description: 'Connection reset by peer', + }, + { + errno: 14, + code: 'EDESTADDRREQ', + description: 'Destination address required', + }, + { + errno: 15, + code: 'EFAULT', + description: 'Bad address in system call argument', + }, + { + errno: 16, + code: 'EHOSTUNREACH', + description: 'Host is unreachable', + }, + { + errno: 17, + code: 'EINTR', + description: 'Interrupted system call', + }, + { + errno: 18, + code: 'EINVAL', + description: 'Invalid argument', + }, + { + errno: 19, + code: 'EISCONN', + description: 'Socket is already connected', + }, + { + errno: 20, + code: 'EMFILE', + description: 'Too many open files', + }, + { + errno: 21, + code: 'EMSGSIZE', + description: 'Message too long', + }, + { + errno: 22, + code: 'ENETDOWN', + description: 'Network is down', + }, + { + errno: 23, + code: 'ENETUNREACH', + description: 'Network is unreachable', + }, + { + errno: 24, + code: 'ENFILE', + description: 'File table overflow', + }, + { + errno: 25, + code: 'ENOBUFS', + description: 'No buffer space available', + }, + { + errno: 26, + code: 'ENOMEM', + description: 'Not enough memory', + }, + { + errno: 27, + code: 'ENOTDIR', + description: 'Not a directory', + }, + { + errno: 28, + code: 'EISDIR', + description: 'Illegal operation on a directory', + }, + { + errno: 29, + code: 'ENONET', + description: 'Machine is not on the network', + }, + { + errno: 31, + code: 'ENOTCONN', + description: 'Socket is not connected', + }, + { + errno: 32, + code: 'ENOTSOCK', + description: 'Socket operation on non-socket', + }, + { + errno: 33, + code: 'ENOTSUP', + description: 'Operation not supported on socket', + }, + { + errno: 34, + code: 'ENOENT', + description: 'No such file or directory', + }, + { + errno: 35, + code: 'ENOSYS', + description: 'Function not implemented', + }, + { + errno: 36, + code: 'EPIPE', + description: 'Broken pipe', + }, + { + errno: 37, + code: 'EPROTO', + description: 'Protocol error', + }, + { + errno: 38, + code: 'EPROTONOSUPPORT', + description: 'Protocol not supported', + }, + { + errno: 39, + code: 'EPROTOTYPE', + description: 'Protocol wrong type for socket', + }, + { + errno: 40, + code: 'ETIMEDOUT', + description: 'Connection timed out', + }, + { + errno: 41, + code: 'ECHARSET', + description: 'Invalid Unicode character', + }, + { + errno: 42, + code: 'EAIFAMNOSUPPORT', + description: 'Address family for hostname not supported', + }, + { + errno: 44, + code: 'EAISERVICE', + description: 'Servname not supported for ai_socktype', + }, + { + errno: 45, + code: 'EAISOCKTYPE', + description: 'Ai_socktype not supported', + }, + { + errno: 46, + code: 'ESHUTDOWN', + description: 'Cannot send after transport endpoint shutdown', + }, + { + errno: 47, + code: 'EEXIST', + description: 'File already exists', + }, + { + errno: 48, + code: 'ESRCH', + description: 'No such process', + }, + { + errno: 49, + code: 'ENAMETOOLONG', + description: 'Name too long', + }, + { + errno: 50, + code: 'EPERM', + description: 'Operation not permitted', + }, + { + errno: 51, + code: 'ELOOP', + description: 'Too many symbolic links encountered', + }, + { + errno: 52, + code: 'EXDEV', + description: 'Cross-device link not permitted', + }, + { + errno: 53, + code: 'ENOTEMPTY', + description: 'Directory not empty', + }, + { + errno: 54, + code: 'ENOSPC', + description: 'No space left on device', + }, + { + errno: 55, + code: 'EIO', + description: 'I/O error', + }, + { + errno: 56, + code: 'EROFS', + description: 'Read-only file system', + }, + { + errno: 57, + code: 'ENODEV', + description: 'No such device', + }, + { + errno: 58, + code: 'ESPIPE', + description: 'Invalid seek', + }, + { + errno: 59, + code: 'ECANCELED', + description: 'Operation canceled', + }, +]; + +module.exports = {}; + +all.forEach((error) => { + module.exports[error.errno] = error.description; +}); diff --git a/node_modules/removeNPMAbsolutePaths/src/removeNPMAbsolutePaths.js b/node_modules/removeNPMAbsolutePaths/src/removeNPMAbsolutePaths.js new file mode 100644 index 000000000..da7690e31 --- /dev/null +++ b/node_modules/removeNPMAbsolutePaths/src/removeNPMAbsolutePaths.js @@ -0,0 +1,137 @@ +'use strict'; + +const path = require('path'); +const { + stat, readdir, readFile, writeFile, +} = require('fs'); +const { promisify } = require('util'); +const errno = require('./errno'); + +const statAsync = promisify(stat); +const readdirAsync = promisify(readdir); +const readFileAsync = promisify(readFile); +const writeFileAsync = promisify(writeFile); + +class ProcessingError extends Error { + constructor(message, err) { + super(message + ((err && err.errno) ? ` (${errno[err.errno]})` : '')); + this.cause = err; + } +} + +async function getStats(filePath) { + try { + return await statAsync(filePath); + } catch (err) { + throw new ProcessingError(`Can't read directory/file at "${filePath}"`, err); + } +} + +async function processFile(filePath, opts) { + try { + let data; + try { + data = await readFileAsync(filePath, 'utf8'); + } catch (err) { + throw new ProcessingError(`Can't read file at "${filePath}"`, err); + } + + let shouldWriteFile = false; + let obj; + try { + obj = JSON.parse(data); + } catch (err) { + throw new ProcessingError(`Malformed package.json file at "${filePath}"`, err); + } + + Object.keys(obj).forEach((key) => { + const shouldBeDeleted = opts.fields ? (opts.fields.indexOf(key) !== -1) : (key[0] === '_'); + if (shouldBeDeleted) { + delete obj[key]; + shouldWriteFile = true; + } + }); + + if (shouldWriteFile || opts.force) { + try { + await writeFileAsync(filePath, JSON.stringify(obj, null, ' ')); + } catch (err) { + throw new ProcessingError(`Can't write processed file to "${filePath}"`, err); + } + + return { filePath, rewritten: true, success: true }; + } + + return { filePath, rewritten: false, success: true }; + } catch (err) { + return { filePath, err, success: false }; + } +} + +async function processDir(dirPath, opts) { + try { + let files; + try { + files = await readdirAsync(dirPath); + } catch (err) { + throw new ProcessingError(`Can't read directory at "${dirPath}"`, err); + } + + const results = await Promise.all(files.map(async (fileName) => { + const filePath = path.join(dirPath, fileName); + + const stats = await getStats(filePath); + + if (stats.isDirectory()) { + return processDir(filePath, opts); + } + + if (fileName === 'package.json') { + return processFile(filePath, opts); + } + + return undefined; + })); + + return results.reduce((arr, value) => { + if (!value) { + return arr; + } + + if (value.constructor === Array) { + return arr.concat(value); + } + + arr.push(value); + return arr; + }, [{ dirPath, success: true }]); + } catch (err) { + return [{ dirPath, err, success: false }]; + } +} + +async function removeNPMAbsolutePaths(filePath, opts) { + opts = opts || {}; // eslint-disable-line no-param-reassign + + if (!filePath) { + throw new ProcessingError('Missing path.\nThe first argument should be the path to a directory or a package.json file.'); + } + + if (opts.fields && (opts.fields.constructor !== Array || opts.fields.length === 0)) { + throw new ProcessingError('Invalid option: fields.\nThe fields option should be an array cotaining the names of the specific fields that should be removed.'); + } + + const stats = await getStats(filePath); + + if (stats.isDirectory()) { + return processDir(filePath, opts); + } + + if (path.basename(filePath) === 'package.json') { + return [await processFile(filePath, opts)]; + } + + throw new Error('Invalid path provided. The path should be a directory or a package.json file.'); +} + +module.exports = removeNPMAbsolutePaths; diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json index ddc12bb5d..a7d509c0f 100644 --- a/node_modules/resolve-cwd/package.json +++ b/node_modules/resolve-cwd/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/resolve-cwd/issues" - }, - "bundleDependencies": false, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "deprecated": false, - "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", @@ -39,14 +32,12 @@ "directory", "import" ], - "license": "MIT", - "name": "resolve-cwd", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/resolve-cwd.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "resolve-from": "^5.0.0" }, - "version": "3.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 8660b280f..3d6db83a4 100644 --- a/node_modules/resolve-from/package.json +++ b/node_modules/resolve-from/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/resolve-from/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -32,14 +28,9 @@ "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" + "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/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/rimraf/package.json b/node_modules/rimraf/package.json index 036517586..56eb03067 100644 --- a/node_modules/rimraf/package.json +++ b/node_modules/rimraf/package.json @@ -1,47 +1,32 @@ { - "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" }, - "bundleDependencies": false, + "bin": "./bin.js", "dependencies": { "glob": "^7.1.3" }, - "deprecated": false, - "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" + } } \ No newline at end of file diff --git a/node_modules/saxes/package.json b/node_modules/saxes/package.json index 3b53ce4b2..8d4c3b3c6 100644 --- a/node_modules/saxes/package.json +++ b/node_modules/saxes/package.json @@ -1,17 +1,30 @@ { - "author": { - "name": "Louis-Dominique Dubeau", - "email": "ldd@lddubeau.com" - }, - "bugs": { - "url": "https://github.com/lddubeau/saxes/issues" + "name": "saxes", + "description": "An evented streaming XML parser in JavaScript", + "author": "Louis-Dominique Dubeau ", + "version": "3.1.11", + "main": "lib/saxes.js", + "types": "lib/saxes.d.ts", + "license": "ISC", + "engines": { + "node": ">=8" }, - "bundleDependencies": false, - "dependencies": { - "xmlchars": "^2.1.1" + "scripts": { + "test": "mocha --delay", + "posttest": "eslint test/*.js lib/*.js", + "preversion": "npm test", + "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" }, - "deprecated": false, - "description": "An evented streaming XML parser in JavaScript", + "repository": "https://github.com/lddubeau/saxes.git", + "files": [ + "lib/saxes.js", + "lib/saxes.d.ts", + "LICENSE", + "README.md", + "CHANGELOG.md" + ], "devDependencies": { "@commitlint/cli": "^8.0.0", "@commitlint/config-angular": "^8.0.0", @@ -24,37 +37,12 @@ "renovate-config-lddubeau": "^1.0.0", "xml-conformance-suite": "^1.2.0" }, - "engines": { - "node": ">=8" + "dependencies": { + "xmlchars": "^2.1.1" }, - "files": [ - "lib/saxes.js", - "lib/saxes.d.ts", - "LICENSE", - "README.md", - "CHANGELOG.md" - ], - "homepage": "https://github.com/lddubeau/saxes#readme", "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } - }, - "license": "ISC", - "main": "lib/saxes.js", - "name": "saxes", - "repository": { - "type": "git", - "url": "git+https://github.com/lddubeau/saxes.git" - }, - "scripts": { - "postpublish": "git push origin --follow-tags", - "posttest": "eslint test/*.js lib/*.js", - "postversion": "npm publish", - "preversion": "npm test", - "test": "mocha --delay", - "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" - }, - "types": "lib/saxes.d.ts", - "version": "3.1.11" + } } \ No newline at end of file diff --git a/node_modules/sisteransi/package.json b/node_modules/sisteransi/package.json index 996aa73d3..87e19f62c 100755 --- a/node_modules/sisteransi/package.json +++ b/node_modules/sisteransi/package.json @@ -1,23 +1,25 @@ { + "name": "sisteransi", + "version": "1.0.5", + "description": "ANSI escape codes for some terminal swag", + "main": "src/index.js", + "license": "MIT", "author": { "name": "Terkel Gjervig", "email": "terkel@terkel.com", "url": "https://terkel.com" }, - "bugs": { - "url": "https://github.com/terkelg/sisteransi/issues" + "scripts": { + "test": "tape test/*.js | tap-spec" }, - "bundleDependencies": false, - "deprecated": false, - "description": "ANSI escape codes for some terminal swag", - "devDependencies": { - "tap-spec": "^5.0.0", - "tape": "^4.13.2" + "repository": { + "type": "git", + "url": "https://github.com/terkelg/sisteransi" }, "files": [ "src" ], - "homepage": "https://github.com/terkelg/sisteransi#readme", + "types": "./src/sisteransi.d.ts", "keywords": [ "ansi", "escape codes", @@ -25,16 +27,8 @@ "terminal", "style" ], - "license": "MIT", - "main": "src/index.js", - "name": "sisteransi", - "repository": { - "type": "git", - "url": "git+https://github.com/terkelg/sisteransi.git" - }, - "scripts": { - "test": "tape test/*.js | tap-spec" - }, - "types": "./src/sisteransi.d.ts", - "version": "1.0.5" + "devDependencies": { + "tap-spec": "^5.0.0", + "tape": "^4.13.2" + } } \ No newline at end of file diff --git a/node_modules/slash/package.json b/node_modules/slash/package.json index 81cc04d18..c845a31bb 100644 --- a/node_modules/slash/package.json +++ b/node_modules/slash/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/slash/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -31,14 +27,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json index da639c615..b49b1926d 100644 --- a/node_modules/sprintf-js/package.json +++ b/node_modules/sprintf-js/package.json @@ -1,31 +1,22 @@ { - "author": { - "name": "Alexandru Marasteanu", - "email": "hello@alexei.ro", - "url": "http://alexei.ro/" - }, - "bugs": { - "url": "https://github.com/alexei/sprintf.js/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "sprintf-js", + "version": "1.0.3", "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", + "author": "Alexandru Marasteanu (http://alexei.ro/)", "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" + "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-length/node_modules/strip-ansi/package.json b/node_modules/string-length/node_modules/strip-ansi/package.json index 0c379e41c..8da283c17 100644 --- a/node_modules/string-length/node_modules/strip-ansi/package.json +++ b/node_modules/string-length/node_modules/strip-ansi/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "deprecated": false, - "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", @@ -50,14 +43,12 @@ "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" + "dependencies": { + "ansi-regex": "^4.1.0" }, - "version": "5.2.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/string-length/package.json b/node_modules/string-length/package.json index 994ac585b..e78cdf3b2 100644 --- a/node_modules/string-length/package.json +++ b/node_modules/string-length/package.json @@ -1,32 +1,24 @@ { + "name": "string-length", + "version": "3.1.0", + "description": "Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes", + "license": "MIT", + "repository": "sindresorhus/string-length", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/string-length/issues" - }, - "bundleDependencies": false, - "dependencies": { - "astral-regex": "^1.0.0", - "strip-ansi": "^5.2.0" - }, - "deprecated": false, - "description": "Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes", - "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-length#readme", "keywords": [ "unicode", "string", @@ -41,14 +33,13 @@ "escape", "codes" ], - "license": "MIT", - "name": "string-length", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/string-length.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" }, - "version": "3.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/string-width/package.json b/node_modules/string-width/package.json index 38993c1e2..8a570010a 100644 --- a/node_modules/string-width/package.json +++ b/node_modules/string-width/package.json @@ -1,33 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/string-width/issues" - }, - "bundleDependencies": false, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "deprecated": false, - "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", @@ -52,14 +43,14 @@ "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" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" }, - "version": "4.2.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 d0574afde..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,28 +1,25 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-regex/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -50,15 +47,9 @@ "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" + "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 5db6f68dc..303816b1a 100644 --- a/node_modules/strip-ansi/package.json +++ b/node_modules/strip-ansi/package.json @@ -1,31 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "deprecated": false, - "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", @@ -50,14 +43,12 @@ "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" + "dependencies": { + "ansi-regex": "^5.0.0" }, - "version": "6.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-bom/package.json b/node_modules/strip-bom/package.json index 1c5e41988..e53335264 100644 --- a/node_modules/strip-bom/package.json +++ b/node_modules/strip-bom/package.json @@ -1,28 +1,24 @@ { + "name": "strip-bom", + "version": "4.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" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Strip UTF-8 byte order mark (BOM) from 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/strip-bom#readme", "keywords": [ "strip", "bom", @@ -38,14 +34,9 @@ "text", "string" ], - "license": "MIT", - "name": "strip-bom", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-bom.git" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "version": "4.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/strip-final-newline/package.json b/node_modules/strip-final-newline/package.json index 077fdc46c..f05ea36b8 100644 --- a/node_modules/strip-final-newline/package.json +++ b/node_modules/strip-final-newline/package.json @@ -1,26 +1,23 @@ { + "name": "strip-final-newline", + "version": "2.0.0", + "description": "Strip the final newline character from a string/buffer", + "license": "MIT", + "repository": "sindresorhus/strip-final-newline", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/strip-final-newline/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Strip the final newline character from a string/buffer", - "devDependencies": { - "ava": "^0.25.0", - "xo": "^0.23.0" - }, "engines": { "node": ">=6" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/strip-final-newline#readme", "keywords": [ "strip", "trim", @@ -36,14 +33,8 @@ "string", "buffer" ], - "license": "MIT", - "name": "strip-final-newline", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/strip-final-newline.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "^0.25.0", + "xo": "^0.23.0" + } } \ No newline at end of file diff --git a/node_modules/supports-hyperlinks/node_modules/has-flag/package.json b/node_modules/supports-hyperlinks/node_modules/has-flag/package.json index c71a95689..55d0058e4 100644 --- a/node_modules/supports-hyperlinks/node_modules/has-flag/package.json +++ b/node_modules/supports-hyperlinks/node_modules/has-flag/package.json @@ -1,28 +1,24 @@ { + "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" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "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", @@ -42,14 +38,9 @@ "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" + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } } \ No newline at end of file diff --git a/node_modules/supports-hyperlinks/node_modules/supports-color/package.json b/node_modules/supports-hyperlinks/node_modules/supports-color/package.json index 9da76e0c0..79856038d 100644 --- a/node_modules/supports-hyperlinks/node_modules/supports-color/package.json +++ b/node_modules/supports-hyperlinks/node_modules/supports-color/package.json @@ -1,32 +1,24 @@ { + "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" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0" - }, - "deprecated": false, - "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", @@ -49,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^4.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "^1.4.1", + "import-fresh": "^3.0.0", + "xo": "^0.24.0" }, - "version": "7.1.0" + "browser": "browser.js" } \ No newline at end of file diff --git a/node_modules/supports-hyperlinks/package.json b/node_modules/supports-hyperlinks/package.json index 6a20274d9..6bd44c134 100644 --- a/node_modules/supports-hyperlinks/package.json +++ b/node_modules/supports-hyperlinks/package.json @@ -1,57 +1,48 @@ { + "name": "supports-hyperlinks", + "version": "2.1.0", + "description": "Detect if your terminal emulator supports hyperlinks", + "license": "MIT", + "repository": "jamestalmage/supports-hyperlinks", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/jamestalmage/supports-hyperlinks/issues" - }, - "bundleDependencies": false, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "deprecated": false, - "description": "Detect if your terminal emulator supports hyperlinks", - "devDependencies": { - "ava": "^2.2.0", - "codecov": "^3.5.0", - "nyc": "^14.1.1", - "typescript": "^3.7.2", - "xo": "^0.24.0" - }, "engines": { "node": ">=8" }, + "scripts": { + "prepublishOnly": "npm run create-types", + "test": "xo && nyc ava", + "create-types": "tsc index.js --allowJs --declaration --emitDeclarationOnly" + }, "files": [ "index.js", "browser.js" ], - "homepage": "https://github.com/jamestalmage/supports-hyperlinks#readme", + "browser": "browser.js", "keywords": [ "link", "terminal", "hyperlink", "cli" ], - "license": "MIT", - "name": "supports-hyperlinks", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "devDependencies": { + "ava": "^2.2.0", + "codecov": "^3.5.0", + "nyc": "^14.1.1", + "typescript": "^3.7.2", + "xo": "^0.24.0" + }, "nyc": { "reporter": [ "lcov", "text" ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/jamestalmage/supports-hyperlinks.git" - }, - "scripts": { - "create-types": "tsc index.js --allowJs --declaration --emitDeclarationOnly", - "prepublishOnly": "npm run create-types", - "test": "xo && nyc ava" - }, - "version": "2.1.0" + } } \ No newline at end of file diff --git a/node_modules/terminal-link/package.json b/node_modules/terminal-link/package.json index 969f8c389..e1e104010 100644 --- a/node_modules/terminal-link/package.json +++ b/node_modules/terminal-link/package.json @@ -1,34 +1,25 @@ { + "name": "terminal-link", + "version": "2.1.1", + "description": "Create clickable links in the terminal", + "license": "MIT", + "repository": "sindresorhus/terminal-link", + "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/terminal-link/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "deprecated": false, - "description": "Create clickable links in the terminal", - "devDependencies": { - "ava": "^2.3.0", - "clear-module": "^4.0.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/terminal-link#readme", "keywords": [ "link", "hyperlink", @@ -40,14 +31,14 @@ "console", "command-line" ], - "license": "MIT", - "name": "terminal-link", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/terminal-link.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" }, - "version": "2.1.1" + "devDependencies": { + "ava": "^2.3.0", + "clear-module": "^4.0.0", + "tsd": "^0.11.0", + "xo": "^0.25.3" + } } \ No newline at end of file diff --git a/node_modules/test-exclude/package.json b/node_modules/test-exclude/package.json index 03e7fa82f..aef8587d5 100644 --- a/node_modules/test-exclude/package.json +++ b/node_modules/test-exclude/package.json @@ -1,19 +1,39 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "name": "test-exclude", + "version": "6.0.0", + "description": "test for inclusion or exclusion of paths using globs", + "main": "index.js", + "files": [ + "*.js", + "!nyc.config.js" + ], + "scripts": { + "release": "standard-version", + "test": "nyc tap", + "snap": "npm test -- --snapshot" }, + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/test-exclude.git" + }, + "keywords": [ + "exclude", + "include", + "glob", + "package", + "config" + ], + "author": "Ben Coe ", + "license": "ISC", "bugs": { "url": "https://github.com/istanbuljs/test-exclude/issues" }, - "bundleDependencies": false, + "homepage": "https://istanbul.js.org/", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, - "deprecated": false, - "description": "test for inclusion or exclusion of paths using globs", "devDependencies": { "nyc": "^15.0.0-beta.3", "standard-version": "^7.0.0", @@ -21,30 +41,5 @@ }, "engines": { "node": ">=8" - }, - "files": [ - "*.js", - "!nyc.config.js" - ], - "homepage": "https://istanbul.js.org/", - "keywords": [ - "exclude", - "include", - "glob", - "package", - "config" - ], - "license": "ISC", - "main": "index.js", - "name": "test-exclude", - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/test-exclude.git" - }, - "scripts": { - "release": "standard-version", - "snap": "npm test -- --snapshot", - "test": "nyc tap" - }, - "version": "6.0.0" + } } \ No newline at end of file diff --git a/node_modules/throat/package.json b/node_modules/throat/package.json index 1013e3a9b..d3a02c0d7 100644 --- a/node_modules/throat/package.json +++ b/node_modules/throat/package.json @@ -1,13 +1,21 @@ { - "author": { - "name": "ForbesLindesay" - }, - "bugs": { - "url": "https://github.com/ForbesLindesay/throat/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "throat", + "version": "5.0.0", "description": "Throttle the parallelism of an asynchronous (promise returning) function / functions", + "keywords": [ + "promise", + "aplus", + "then", + "throttle", + "concurrency", + "parallelism", + "limit" + ], + "files": [ + "index.d.ts", + "index.js", + "index.js.flow" + ], "devDependencies": { "coveralls": "^3.0.0", "flow-bin": "^0.73.0", @@ -19,37 +27,21 @@ "testit": "^3.1.0", "typescript": "^3.4.5" }, - "files": [ - "index.d.ts", - "index.js", - "index.js.flow" - ], - "homepage": "https://github.com/ForbesLindesay/throat#readme", "jest": { "testEnvironment": "node" }, - "keywords": [ - "promise", - "aplus", - "then", - "throttle", - "concurrency", - "parallelism", - "limit" - ], - "license": "MIT", - "name": "throat", - "repository": { - "type": "git", - "url": "git+https://github.com/ForbesLindesay/throat.git" - }, "scripts": { - "coverage": "istanbul cover test/index.js", - "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls", + "tsc": "tsc --noEmit", "flow": "flow", "test": "node test/index.js && npm run test:types && node test/browser.js", "test:types": "jest", - "tsc": "tsc --noEmit" + "coverage": "istanbul cover test/index.js", + "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls" + }, + "repository": { + "type": "git", + "url": "https://github.com/ForbesLindesay/throat.git" }, - "version": "5.0.0" + "author": "ForbesLindesay", + "license": "MIT" } \ No newline at end of file diff --git a/node_modules/ts-jest/node_modules/mkdirp/package.json b/node_modules/ts-jest/node_modules/mkdirp/package.json index f0dc7faf9..74fb70779 100644 --- a/node_modules/ts-jest/node_modules/mkdirp/package.json +++ b/node_modules/ts-jest/node_modules/mkdirp/package.json @@ -1,26 +1,8 @@ { - "bin": { - "mkdirp": "bin/cmd.js" - }, - "bugs": { - "url": "https://github.com/isaacs/node-mkdirp/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "mkdirp", "description": "Recursively mkdir, like `mkdir -p`", - "devDependencies": { - "require-inject": "^1.4.4", - "tap": "^14.10.6" - }, - "engines": { - "node": ">=10" - }, - "files": [ - "bin", - "lib", - "index.js" - ], - "homepage": "https://github.com/isaacs/node-mkdirp#readme", + "version": "1.0.3", + "main": "index.js", "keywords": [ "mkdir", "directory", @@ -30,23 +12,33 @@ "recursive", "native" ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", "repository": { "type": "git", - "url": "git+https://github.com/isaacs/node-mkdirp.git" + "url": "https://github.com/isaacs/node-mkdirp.git" }, "scripts": { - "postpublish": "git push origin --follow-tags", - "postversion": "npm publish", - "preversion": "npm test", + "test": "tap", "snap": "tap", - "test": "tap" + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags" }, "tap": { "check-coverage": true, "coverage-map": "map.js" }, - "version": "1.0.3" + "devDependencies": { + "require-inject": "^1.4.4", + "tap": "^14.10.6" + }, + "bin": "bin/cmd.js", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "files": [ + "bin", + "lib", + "index.js" + ] } \ No newline at end of file diff --git a/node_modules/ts-jest/node_modules/semver/package.json b/node_modules/ts-jest/node_modules/semver/package.json index d3268f6a0..a330b56c2 100644 --- a/node_modules/ts-jest/node_modules/semver/package.json +++ b/node_modules/ts-jest/node_modules/semver/package.json @@ -1,37 +1,28 @@ { - "bin": { - "semver": "bin/semver.js" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" + } } \ No newline at end of file diff --git a/node_modules/ts-jest/node_modules/yargs-parser/package.json b/node_modules/ts-jest/node_modules/yargs-parser/package.json index 16fc803f2..b611d3f6b 100644 --- a/node_modules/ts-jest/node_modules/yargs-parser/package.json +++ b/node_modules/ts-jest/node_modules/yargs-parser/package.json @@ -1,32 +1,18 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" - }, - "bugs": { - "url": "https://github.com/yargs/yargs-parser/issues" - }, - "bundleDependencies": false, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "deprecated": false, + "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", @@ -38,18 +24,23 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/ts-jest/package.json b/node_modules/ts-jest/package.json index ffdc926ec..354c7d44b 100644 --- a/node_modules/ts-jest/package.json +++ b/node_modules/ts-jest/package.json @@ -1,33 +1,65 @@ { - "author": { - "name": "Kulshekhar Kabra", - "email": "kulshekhar@users.noreply.github.com", - "url": "https://github.com/kulshekhar" + "name": "ts-jest", + "version": "25.3.0", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "bin": "cli.js", + "description": "A preprocessor with source maps support to help use TypeScript with Jest", + "scripts": { + "prebuild": "node scripts/clean-dist.js", + "build": "tsc -p tsconfig.build.json", + "postbuild": "node scripts/post-build.js", + "build:watch": "tsc -p tsconfig.build.json -w", + "clean": "node scripts/clean.js", + "pretest": "npm run lint", + "test": "run-s -s test:e2e \"test:unit -- {@}\" --", + "test:prepare": "npm run test:e2e -- --prepareOnly", + "test:e2e": "node scripts/e2e.js", + "test:e2e:update-snaphots": "node scripts/e2e.js --updateSnapshot", + "test:unit": "node_modules/.bin/jest", + "test:external": "node scripts/test-external-project.js", + "test:monorepo": "npm run test:external monorepo", + "lint": "run-s lint:ts lint:js", + "lint:js": "node_modules/.bin/eslint . -f stylish", + "lint:ts": "node_modules/.bin/tslint -t stylish --project .", + "lint:fix": "run-s lint:fix:ts lint:fix:js", + "lint:fix:js": "node_modules/.bin/eslint . --fix", + "lint:fix:ts": "node_modules/.bin/tslint --fix --project .", + "typecheck": "node_modules/.bin/tsc -p .", + "doc": "cd docs && bundle exec jekyll serve --livereload", + "doc:link": "git worktree add docs/_site gh-pages", + "doc:unlink": "git worktree prune", + "doc:build": "cd docs && bundle exec jekyll build", + "doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"", + "changelog": "node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0", + "prepare": "npm run build", + "prepublishOnly": "npm run test", + "preversion": "npm run test", + "update:e2e": "node scripts/update-e2e-templates.js", + "version": "npm run changelog && git add CHANGELOG.md" }, - "bin": { - "ts-jest": "cli.js" + "repository": { + "type": "git", + "url": "git+https://github.com/kulshekhar/ts-jest.git" }, + "keywords": [ + "jest", + "typescript", + "sourcemap", + "react", + "testing" + ], + "author": "Kulshekhar Kabra (https://github.com/kulshekhar)", + "contributors": [ + "Huafu Gandon (https://github.com/huafu)", + "Anh Pham (https://github.com/ahnpnl)", + "Gustav Wengel (https://github.com/GeeWee)" + ], + "license": "MIT", "bugs": { "url": "https://github.com/kulshekhar/ts-jest/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Huafu Gandon", - "email": "huafu.gandon@gmail.com", - "url": "https://github.com/huafu" - }, - { - "name": "Anh Pham", - "email": "anhpnnd@gmail.com", - "url": "https://github.com/ahnpnl" - }, - { - "name": "Gustav Wengel", - "email": "gustavwengel@gmail.com", - "url": "https://github.com/GeeWee" - } - ], + "homepage": "https://kulshekhar.github.io/ts-jest", "dependencies": { "bs-logger": "0.x", "buffer-from": "1.x", @@ -40,8 +72,16 @@ "semver": "6.x", "yargs-parser": "^18.1.1" }, - "deprecated": false, - "description": "A preprocessor with source maps support to help use TypeScript with Jest", + "peerDependencies": { + "jest": ">=25 <26" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged", + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", + "post-commit": "git reset" + } + }, "devDependencies": { "@commitlint/cli": "8.x", "@commitlint/config-conventional": "7.x", @@ -83,25 +123,6 @@ "tslint-plugin-prettier": "latest", "typescript": "3.x" }, - "engines": { - "node": ">= 8" - }, - "homepage": "https://kulshekhar.github.io/ts-jest", - "husky": { - "hooks": { - "pre-commit": "lint-staged", - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", - "post-commit": "git reset" - } - }, - "keywords": [ - "jest", - "typescript", - "sourcemap", - "react", - "testing" - ], - "license": "MIT", "lint-staged": { "*.{ts,tsx}": [ "tslint --fix", @@ -112,48 +133,7 @@ "git add" ] }, - "main": "dist/index.js", - "name": "ts-jest", - "peerDependencies": { - "jest": ">=25 <26" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/kulshekhar/ts-jest.git" - }, - "scripts": { - "build": "tsc -p tsconfig.build.json", - "build:watch": "tsc -p tsconfig.build.json -w", - "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", - "clean": "node scripts/clean.js", - "doc": "cd docs && bundle exec jekyll serve --livereload", - "doc:build": "cd docs && bundle exec jekyll build", - "doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"", - "doc:link": "git worktree add docs/_site gh-pages", - "doc:unlink": "git worktree prune", - "lint": "run-s lint:ts lint:js", - "lint:fix": "run-s lint:fix:ts lint:fix:js", - "lint:fix:js": "eslint . --fix", - "lint:fix:ts": "tslint --fix --project .", - "lint:js": "eslint . -f stylish", - "lint:ts": "tslint -t stylish --project .", - "postbuild": "node scripts/post-build.js", - "prebuild": "node scripts/clean-dist.js", - "prepare": "npm run build", - "prepublishOnly": "npm run test", - "pretest": "npm run lint", - "preversion": "npm run test", - "test": "run-s -s test:e2e \"test:unit -- {@}\" --", - "test:e2e": "node scripts/e2e.js", - "test:e2e:update-snaphots": "node scripts/e2e.js --updateSnapshot", - "test:external": "node scripts/test-external-project.js", - "test:monorepo": "npm run test:external monorepo", - "test:prepare": "npm run test:e2e -- --prepareOnly", - "test:unit": "jest", - "typecheck": "tsc -p .", - "update:e2e": "node scripts/update-e2e-templates.js", - "version": "npm run changelog && git add CHANGELOG.md" - }, - "types": "dist/index.d.ts", - "version": "25.3.0" + "engines": { + "node": ">= 8" + } } \ No newline at end of file diff --git a/node_modules/tslib/package.json b/node_modules/tslib/package.json index f84e285ca..7878659d5 100644 --- a/node_modules/tslib/package.json +++ b/node_modules/tslib/package.json @@ -1,15 +1,10 @@ { - "author": { - "name": "Microsoft Corp." - }, - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Runtime library for TypeScript helper functions", + "name": "tslib", + "author": "Microsoft Corp.", "homepage": "https://www.typescriptlang.org/", - "jsnext:main": "tslib.es6.js", + "version": "1.11.1", + "license": "Apache-2.0", + "description": "Runtime library for TypeScript helper functions", "keywords": [ "TypeScript", "Microsoft", @@ -19,15 +14,16 @@ "tslib", "runtime" ], - "license": "Apache-2.0", - "main": "tslib.js", - "module": "tslib.es6.js", - "name": "tslib", + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, "repository": { "type": "git", - "url": "git+https://github.com/Microsoft/tslib.git" + "url": "https://github.com/Microsoft/tslib.git" }, - "sideEffects": false, + "main": "tslib.js", + "module": "tslib.es6.js", + "jsnext:main": "tslib.es6.js", "typings": "tslib.d.ts", - "version": "1.11.1" + "sideEffects": false } \ No newline at end of file diff --git a/node_modules/tslint/package.json b/node_modules/tslint/package.json index 6cb258aae..02f832328 100644 --- a/node_modules/tslint/package.json +++ b/node_modules/tslint/package.json @@ -1,11 +1,33 @@ { + "name": "tslint", + "version": "6.1.0", + "description": "An extensible static analysis linter for the TypeScript language", "bin": { - "tslint": "bin/tslint" + "tslint": "./bin/tslint" }, - "bugs": { - "url": "https://github.com/palantir/tslint/issues" + "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" }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.0.0", "builtin-modules": "^1.1.1", @@ -21,8 +43,9 @@ "tslib": "^1.10.0", "tsutils": "^2.29.0" }, - "deprecated": false, - "description": "An extensible static analysis linter for the TypeScript language", + "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", @@ -57,42 +80,14 @@ "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", - "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" + "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 95134d387..7c72f9465 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -1,16 +1,35 @@ { - "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" }, - "bundleDependencies": false, - "dependencies": { - "tslib": "^1.8.1" + "repository": { + "type": "git", + "url": "https://github.com/ajafff/tsutils" }, - "deprecated": false, - "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", @@ -27,37 +46,10 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/type-detect/package.json b/node_modules/type-detect/package.json index db8276633..71d9abd19 100644 --- a/node_modules/type-detect/package.json +++ b/node_modules/type-detect/package.json @@ -1,61 +1,67 @@ { - "author": { - "name": "Jake Luer", - "email": "jake@alogicalparadox.com", - "url": "http://alogicalparadox.com" + "name": "type-detect", + "description": "Improved typeof detection for node.js and the browser.", + "keywords": [ + "type", + "typeof", + "types" + ], + "license": "MIT", + "author": "Jake Luer (http://alogicalparadox.com)", + "contributors": [ + "Keith Cirkel (https://github.com/keithamus)", + "David Losert (https://github.com/davelosert)", + "Aleksey Shvayka (https://github.com/shvaikalesh)", + "Lucas Fernandes da Costa (https://github.com/lucasfcosta)", + "Grant Snodgrass (https://github.com/meeber)", + "Jeremy Tice (https://github.com/jetpacmonkey)", + "Edward Betts (https://github.com/EdwardBetts)", + "dvlsg (https://github.com/dvlsg)", + "Amila Welihinda (https://github.com/amilajack)", + "Jake Champion (https://github.com/JakeChampion)", + "Miroslav Bajtoš (https://github.com/bajtos)" + ], + "files": [ + "index.js", + "type-detect.js" + ], + "main": "./type-detect.js", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/chaijs/type-detect.git" }, - "bugs": { - "url": "https://github.com/chaijs/type-detect/issues" + "scripts": { + "bench": "node bench", + "build": "rollup -c rollup.conf.js", + "commit-msg": "commitlint -x angular", + "lint": "eslint --ignore-path .gitignore .", + "prepare": "cross-env NODE_ENV=production npm run build", + "semantic-release": "semantic-release pre && npm publish && semantic-release post", + "pretest:node": "cross-env NODE_ENV=test npm run build", + "pretest:browser": "cross-env NODE_ENV=test npm run build", + "test": "npm run test:node && npm run test:browser", + "test:browser": "karma start --singleRun=true", + "test:node": "nyc mocha type-detect.test.js", + "posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage", + "posttest:browser": "npm run upload-coverage", + "upload-coverage": "codecov" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Keith Cirkel", - "url": "https://github.com/keithamus" - }, - { - "name": "David Losert", - "url": "https://github.com/davelosert" - }, - { - "name": "Aleksey Shvayka", - "url": "https://github.com/shvaikalesh" - }, - { - "name": "Lucas Fernandes da Costa", - "url": "https://github.com/lucasfcosta" - }, - { - "name": "Grant Snodgrass", - "url": "https://github.com/meeber" - }, - { - "name": "Jeremy Tice", - "url": "https://github.com/jetpacmonkey" - }, - { - "name": "Edward Betts", - "url": "https://github.com/EdwardBetts" - }, - { - "name": "dvlsg", - "url": "https://github.com/dvlsg" - }, - { - "name": "Amila Welihinda", - "url": "https://github.com/amilajack" + "eslintConfig": { + "env": { + "es6": true }, - { - "name": "Jake Champion", - "url": "https://github.com/JakeChampion" + "extends": [ + "strict/es6" + ], + "globals": { + "HTMLElement": false }, - { - "name": "Miroslav Bajtoš", - "url": "https://github.com/bajtos" + "rules": { + "complexity": 0, + "max-statements": 0, + "prefer-rest-params": 0 } - ], - "deprecated": false, - "description": "Improved typeof detection for node.js and the browser.", + }, "devDependencies": { "@commitlint/cli": "^4.2.2", "benchmark": "^2.1.0", @@ -92,54 +98,5 @@ "engines": { "node": ">=4" }, - "eslintConfig": { - "env": { - "es6": true - }, - "extends": [ - "strict/es6" - ], - "globals": { - "HTMLElement": false - }, - "rules": { - "complexity": 0, - "max-statements": 0, - "prefer-rest-params": 0 - } - }, - "files": [ - "index.js", - "type-detect.js" - ], - "homepage": "https://github.com/chaijs/type-detect#readme", - "keywords": [ - "type", - "typeof", - "types" - ], - "license": "MIT", - "main": "./type-detect.js", - "name": "type-detect", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/chaijs/type-detect.git" - }, - "scripts": { - "bench": "node bench", - "build": "rollup -c rollup.conf.js", - "commit-msg": "commitlint -x angular", - "lint": "eslint --ignore-path .gitignore .", - "posttest:browser": "npm run upload-coverage", - "posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage", - "prepare": "cross-env NODE_ENV=production npm run build", - "pretest:browser": "cross-env NODE_ENV=test npm run build", - "pretest:node": "cross-env NODE_ENV=test npm run build", - "semantic-release": "semantic-release pre && npm publish && semantic-release post", - "test": "npm run test:node && npm run test:browser", - "test:browser": "karma start --singleRun=true", - "test:node": "nyc mocha type-detect.test.js", - "upload-coverage": "codecov" - }, "version": "4.0.8" } \ No newline at end of file diff --git a/node_modules/type-fest/package.json b/node_modules/type-fest/package.json index 998747f17..b714ffdcd 100644 --- a/node_modules/type-fest/package.json +++ b/node_modules/type-fest/package.json @@ -1,33 +1,25 @@ { + "name": "type-fest", + "version": "0.11.0", + "description": "A collection of essential TypeScript types", + "license": "(MIT OR CC0-1.0)", + "repository": "sindresorhus/type-fest", + "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/type-fest/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "A collection of essential TypeScript types", - "devDependencies": { - "@sindresorhus/tsconfig": "^0.7.0", - "@typescript-eslint/eslint-plugin": "2.17.0", - "@typescript-eslint/parser": "2.17.0", - "eslint-config-xo-typescript": "^0.24.1", - "tsd": "^0.7.3", - "typescript": "3.7.5", - "xo": "^0.25.3" - }, "engines": { "node": ">=8" }, + "scripts": { + "test": "xo && tsd" + }, "files": [ "index.d.ts", "source" ], - "funding": "https://github.com/sponsors/sindresorhus", - "homepage": "https://github.com/sindresorhus/type-fest#readme", "keywords": [ "typescript", "ts", @@ -39,17 +31,16 @@ "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" + "devDependencies": { + "@sindresorhus/tsconfig": "^0.7.0", + "@typescript-eslint/eslint-plugin": "2.17.0", + "@typescript-eslint/parser": "2.17.0", + "eslint-config-xo-typescript": "^0.24.1", + "tsd": "^0.7.3", + "typescript": "3.7.5", + "xo": "^0.25.3" }, "types": "index.d.ts", - "version": "0.11.0", "xo": { "extends": "xo-typescript", "extensions": [ diff --git a/node_modules/typedarray-to-buffer/package.json b/node_modules/typedarray-to-buffer/package.json index 6bad0d2b2..208763783 100644 --- a/node_modules/typedarray-to-buffer/package.json +++ b/node_modules/typedarray-to-buffer/package.json @@ -1,4 +1,7 @@ { + "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", @@ -7,12 +10,9 @@ "bugs": { "url": "https://github.com/feross/typedarray-to-buffer/issues" }, - "bundleDependencies": false, "dependencies": { "is-typedarray": "^1.0.0" }, - "deprecated": false, - "description": "Convert a typed array to a Buffer without a copy", "devDependencies": { "airtap": "0.0.4", "standard": "*", @@ -37,7 +37,6 @@ ], "license": "MIT", "main": "index.js", - "name": "typedarray-to-buffer", "repository": { "type": "git", "url": "git://github.com/feross/typedarray-to-buffer.git" @@ -47,6 +46,5 @@ "test-browser": "airtap -- test/*.js", "test-browser-local": "airtap --local -- test/*.js", "test-node": "tape test/*.js" - }, - "version": "3.1.5" + } } \ No newline at end of file diff --git a/node_modules/typescript/package.json b/node_modules/typescript/package.json index 036a60a3f..c2efe1e26 100644 --- a/node_modules/typescript/package.json +++ b/node_modules/typescript/package.json @@ -1,28 +1,33 @@ { - "author": { - "name": "Microsoft Corp." + "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" }, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/TypeScript.git" }, - "browser": { - "fs": false, - "os": false, - "path": false, - "crypto": false, - "buffer": false, - "@microsoft/typescript-etw": false, - "source-map-support": false, - "inspector": false + "main": "./lib/typescript.js", + "typings": "./lib/typescript.d.ts", + "bin": { + "tsc": "./bin/tsc", + "tsserver": "./bin/tsserver" }, - "bugs": { - "url": "https://github.com/Microsoft/TypeScript/issues" + "engines": { + "node": ">=4.2.0" }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "TypeScript is a language for application scale JavaScript development", "devDependencies": { "@octokit/rest": "latest", "@types/browserify": "latest", @@ -96,28 +101,15 @@ "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", @@ -125,14 +117,18 @@ "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" + "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/universal-user-agent/package.json b/node_modules/universal-user-agent/package.json index d75222b42..507ae8da8 100644 --- a/node_modules/universal-user-agent/package.json +++ b/node_modules/universal-user-agent/package.json @@ -1,11 +1,19 @@ { - "bugs": { - "url": "https://github.com/gr2m/universal-user-agent/issues" - }, + "name": "universal-user-agent", + "description": "Get a user agent string in both browser and node", + "version": "5.0.0", + "license": "ISC", + "files": [ + "dist-*/", + "bin/" + ], + "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", @@ -18,23 +26,8 @@ "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" } \ No newline at end of file diff --git a/node_modules/v8-to-istanbul/node_modules/source-map/package.json b/node_modules/v8-to-istanbul/node_modules/source-map/package.json index 2fd7337ed..c05074e1f 100644 --- a/node_modules/v8-to-istanbul/node_modules/source-map/package.json +++ b/node_modules/v8-to-istanbul/node_modules/source-map/package.json @@ -1,206 +1,90 @@ { - "author": { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - "bugs": { - "url": "https://github.com/mozilla/source-map/issues" - }, - "bundleDependencies": false, + "name": "source-map", + "description": "Generates and consumes source maps", + "version": "0.7.3", + "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 " ], - "deprecated": false, - "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "eslint": "^4.19.1", - "live-server": "^1.2.0", - "npm-run-all": "^4.1.2", - "nyc": "^11.7.1", - "watch": "^1.0.2", - "webpack": "^3.10" - }, - "engines": { - "node": ">= 8" + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", + "types": "./source-map.d.ts", "files": [ "source-map.js", "source-map.d.ts", "lib/", "dist/source-map.js" ], - "homepage": "https://github.com/mozilla/source-map", - "license": "BSD-3-Clause", - "main": "./source-map.js", - "name": "source-map", - "nyc": { - "reporter": "html" - }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/mozilla/source-map.git" + "engines": { + "node": ">= 8" }, + "license": "BSD-3-Clause", "scripts": { + "lint": "eslint *.js lib/ test/", + "prebuild": "npm run lint", "build": "webpack --color", - "clean": "rm -rf coverage .nyc_output", + "pretest": "npm run build", + "test": "node test/run-tests.js", + "precoverage": "npm run build", "coverage": "nyc node test/run-tests.js", - "dev": "npm-run-all -p --silent dev:*", + "setup": "mkdir -p coverage && cp -n .waiting.html coverage/index.html || true", "dev:live": "live-server --port=4103 --ignorePattern='(js|css|png)$' coverage", "dev:watch": "watch 'npm run coverage' lib/ test/", - "lint": "eslint *.js lib/ test/", - "prebuild": "npm run lint", - "precoverage": "npm run build", "predev": "npm run setup", - "pretest": "npm run build", - "setup": "mkdir -p coverage && cp -n .waiting.html coverage/index.html || true", - "test": "node test/run-tests.js", + "dev": "npm-run-all -p --silent dev:*", + "clean": "rm -rf coverage .nyc_output", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "types": "./source-map.d.ts", - "typings": "source-map", - "version": "0.7.3" + "devDependencies": { + "doctoc": "^0.15.0", + "eslint": "^4.19.1", + "live-server": "^1.2.0", + "npm-run-all": "^4.1.2", + "nyc": "^11.7.1", + "watch": "^1.0.2", + "webpack": "^3.10" + }, + "nyc": { + "reporter": "html" + }, + "typings": "source-map" } \ No newline at end of file diff --git a/node_modules/v8-to-istanbul/package.json b/node_modules/v8-to-istanbul/package.json index 9a04feace..d57bc1a4f 100644 --- a/node_modules/v8-to-istanbul/package.json +++ b/node_modules/v8-to-istanbul/package.json @@ -1,19 +1,34 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" + "name": "v8-to-istanbul", + "version": "4.1.3", + "description": "convert from v8 coverage format to istanbul's format", + "main": "index.js", + "types": "index.d.ts", + "scripts": { + "fix": "standard --fix", + "snapshot": "TAP_SNAPSHOT=1 tap test/*.js", + "test": "c8 --reporter=html --reporter=text tap --no-coverage --no-esm test/*.js", + "posttest": "standard", + "coverage": "c8 report --reporter=text-lcov | coveralls" }, - "bugs": { - "url": "https://github.com/istanbuljs/v8-to-istanbul/issues" + "repository": "istanbuljs/v8-to-istanbul", + "keywords": [ + "istanbul", + "v8", + "coverage" + ], + "standard": { + "ignore": [ + "**/test/fixtures" + ] }, - "bundleDependencies": false, + "author": "Ben Coe ", + "license": "ISC", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, - "deprecated": false, - "description": "convert from v8 coverage format to istanbul's format", "devDependencies": { "@types/node": "^12.7.11", "c8": "^7.0.0", @@ -29,32 +44,5 @@ "lib/*.js", "index.js", "index.d.ts" - ], - "homepage": "https://github.com/istanbuljs/v8-to-istanbul#readme", - "keywords": [ - "istanbul", - "v8", - "coverage" - ], - "license": "ISC", - "main": "index.js", - "name": "v8-to-istanbul", - "repository": { - "type": "git", - "url": "git+https://github.com/istanbuljs/v8-to-istanbul.git" - }, - "scripts": { - "coverage": "c8 report --reporter=text-lcov | coveralls", - "fix": "standard --fix", - "posttest": "standard", - "snapshot": "TAP_SNAPSHOT=1 tap test/*.js", - "test": "c8 --reporter=html --reporter=text tap --no-coverage --no-esm test/*.js" - }, - "standard": { - "ignore": [ - "**/test/fixtures" - ] - }, - "types": "index.d.ts", - "version": "4.1.3" + ] } \ No newline at end of file diff --git a/node_modules/w3c-xmlserializer/package.json b/node_modules/w3c-xmlserializer/package.json index e88f3228a..c05539b5e 100644 --- a/node_modules/w3c-xmlserializer/package.json +++ b/node_modules/w3c-xmlserializer/package.json @@ -1,43 +1,34 @@ { - "bugs": { - "url": "https://github.com/jsdom/w3c-xmlserializer/issues" - }, - "bundleDependencies": false, + "name": "w3c-xmlserializer", + "description": "A per-spec XML serializer implementation", + "keywords": [ + "dom", + "w3c", + "xml", + "xmlserializer" + ], + "version": "1.1.2", + "license": "MIT", "dependencies": { "domexception": "^1.0.1", "webidl-conversions": "^4.0.2", "xml-name-validator": "^3.0.0" }, - "deprecated": false, - "description": "A per-spec XML serializer implementation", "devDependencies": { "eslint": "^5.15.2", "jest": "^24.5.0", "jsdom": "^14.0.0", "webidl2js": "^9.2.0" }, + "repository": "jsdom/w3c-xmlserializer", "files": [ "lib/" ], - "homepage": "https://github.com/jsdom/w3c-xmlserializer#readme", - "keywords": [ - "dom", - "w3c", - "xml", - "xmlserializer" - ], - "license": "MIT", "main": "lib/index.js", - "name": "w3c-xmlserializer", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/w3c-xmlserializer.git" - }, "scripts": { - "lint": "eslint .", "prepare": "node scripts/convert-idl.js", "pretest": "node scripts/convert-idl.js", - "test": "jest" - }, - "version": "1.1.2" + "test": "jest", + "lint": "eslint ." + } } \ No newline at end of file diff --git a/node_modules/whatwg-url/package.json b/node_modules/whatwg-url/package.json index 9f9e01203..a22a115ef 100644 --- a/node_modules/whatwg-url/package.json +++ b/node_modules/whatwg-url/package.json @@ -1,19 +1,19 @@ { - "author": { - "name": "Sebastian Mayr", - "email": "github@smayr.name" - }, - "bugs": { - "url": "https://github.com/jsdom/whatwg-url/issues" - }, - "bundleDependencies": false, + "name": "whatwg-url", + "version": "7.1.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "main": "lib/public-api.js", + "files": [ + "lib/" + ], + "author": "Sebastian Mayr ", + "license": "MIT", + "repository": "jsdom/whatwg-url", "dependencies": { "lodash.sortby": "^4.7.0", "tr46": "^1.0.1", "webidl-conversions": "^4.0.2" }, - "deprecated": false, - "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", "devDependencies": { "browserify": "^16.2.2", "domexception": "^1.0.1", @@ -23,10 +23,15 @@ "recast": "^0.15.3", "webidl2js": "^9.0.1" }, - "files": [ - "lib/" - ], - "homepage": "https://github.com/jsdom/whatwg-url#readme", + "scripts": { + "build": "node scripts/transform.js && node scripts/convert-idl.js", + "coverage": "jest --coverage", + "lint": "eslint .", + "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", + "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "test": "jest" + }, "jest": { "collectCoverageFrom": [ "lib/**/*.js", @@ -45,22 +50,5 @@ "^/test/testharness.js$", "^/test/web-platform-tests/" ] - }, - "license": "MIT", - "main": "lib/public-api.js", - "name": "whatwg-url", - "repository": { - "type": "git", - "url": "git+https://github.com/jsdom/whatwg-url.git" - }, - "scripts": { - "build": "node scripts/transform.js && node scripts/convert-idl.js", - "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", - "coverage": "jest --coverage", - "lint": "eslint .", - "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", - "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", - "test": "jest" - }, - "version": "7.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 0b45f6269..b87232dd6 100644 --- a/node_modules/windows-release/package.json +++ b/node_modules/windows-release/package.json @@ -1,29 +1,24 @@ { + "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" }, - "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", @@ -37,14 +32,12 @@ "release", "version" ], - "license": "MIT", - "name": "windows-release", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/windows-release.git" - }, - "scripts": { - "test": "xo && ava && tsd" + "dependencies": { + "execa": "^1.0.0" }, - "version": "3.2.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 2b0aef0e4..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,35 +1,26 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "deprecated": false, - "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", @@ -52,15 +43,15 @@ "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" + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" }, - "version": "4.2.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 427616bd0..d169f869b 100644 --- a/node_modules/wrap-ansi/node_modules/color-convert/package.json +++ b/node_modules/wrap-ansi/node_modules/color-convert/package.json @@ -1,30 +1,17 @@ { - "author": { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - "bugs": { - "url": "https://github.com/Qix-/color-convert/issues" - }, - "bundleDependencies": false, - "dependencies": { - "color-name": "~1.1.4" - }, - "deprecated": false, + "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", @@ -39,22 +26,23 @@ "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" } } \ 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 07b8f6ece..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,33 +1,28 @@ { - "author": { - "name": "DY", - "email": "dfcreative@gmail.com" - }, - "bugs": { - "url": "https://github.com/colorjs/color-name/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "color-name", + "version": "1.1.4", "description": "A list of color names and its values", + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/colorjs/color-name", + "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", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/colorjs/color-name.git" - }, - "scripts": { - "test": "node test.js" + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" }, - "version": "1.1.4" + "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 94924834a..821aebb90 100644 --- a/node_modules/wrap-ansi/package.json +++ b/node_modules/wrap-ansi/package.json @@ -1,35 +1,23 @@ { + "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" }, - "bugs": { - "url": "https://github.com/chalk/wrap-ansi/issues" - }, - "bundleDependencies": false, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "deprecated": false, - "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", @@ -57,14 +45,17 @@ "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" + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, - "version": "6.2.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/write-file-atomic/package.json b/node_modules/write-file-atomic/package.json index a25a4447f..58ff19175 100644 --- a/node_modules/write-file-atomic/package.json +++ b/node_modules/write-file-atomic/package.json @@ -1,21 +1,37 @@ { - "author": { - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org" + "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" }, + "keywords": [ + "writeFile", + "atomic" + ], + "author": "Rebecca Turner (http://re-becca.org)", + "license": "ISC", "bugs": { "url": "https://github.com/npm/write-file-atomic/issues" }, - "bundleDependencies": false, + "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" }, - "deprecated": false, - "description": "Write files in an atomic fashion w/configurable ownership", "devDependencies": { "mkdirp": "^0.5.1", "require-inject": "^1.4.4", @@ -26,29 +42,7 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/ws/package.json b/node_modules/ws/package.json index 60ab52463..15597a7d7 100644 --- a/node_modules/ws/package.json +++ b/node_modules/ws/package.json @@ -1,43 +1,7 @@ { - "author": { - "name": "Einar Otto Stangvik", - "email": "einaros@gmail.com", - "url": "http://2x.io" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/websockets/ws/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "name": "ws", + "version": "7.2.3", "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", - "devDependencies": { - "benchmark": "^2.1.4", - "bufferutil": "^4.0.1", - "coveralls": "^3.0.3", - "eslint": "^6.0.0", - "eslint-config-prettier": "^6.0.0", - "eslint-plugin-prettier": "^3.0.1", - "mocha": "^7.0.0", - "nyc": "^15.0.0", - "prettier": "^1.17.0", - "utf-8-validate": "^5.0.2" - }, - "engines": { - "node": ">=8.3.0" - }, - "files": [ - "browser.js", - "index.js", - "lib/*.js" - ], - "greenkeeper": { - "commitMessages": { - "dependencyUpdate": "[pkg] Update ${dependency} to version ${version}", - "devDependencyUpdate": "[pkg] Update ${dependency} to version ${version}" - } - }, - "homepage": "https://github.com/websockets/ws", "keywords": [ "HyBi", "Push", @@ -46,9 +10,26 @@ "WebSockets", "real-time" ], + "homepage": "https://github.com/websockets/ws", + "bugs": "https://github.com/websockets/ws/issues", + "repository": "websockets/ws", + "author": "Einar Otto Stangvik (http://2x.io)", "license": "MIT", "main": "index.js", - "name": "ws", + "browser": "browser.js", + "engines": { + "node": ">=8.3.0" + }, + "files": [ + "browser.js", + "index.js", + "lib/*.js" + ], + "scripts": { + "test": "npm run lint && nyc --reporter=html --reporter=text mocha --throw-deprecation test/*.test.js", + "integration": "npm run lint && mocha --throw-deprecation test/*.integration.js", + "lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\"" + }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" @@ -61,14 +42,22 @@ "optional": true } }, - "repository": { - "type": "git", - "url": "git+https://github.com/websockets/ws.git" - }, - "scripts": { - "integration": "npm run lint && mocha --throw-deprecation test/*.integration.js", - "lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\"", - "test": "npm run lint && nyc --reporter=html --reporter=text mocha --throw-deprecation test/*.test.js" + "devDependencies": { + "benchmark": "^2.1.4", + "bufferutil": "^4.0.1", + "coveralls": "^3.0.3", + "eslint": "^6.0.0", + "eslint-config-prettier": "^6.0.0", + "eslint-plugin-prettier": "^3.0.1", + "mocha": "^7.0.0", + "nyc": "^15.0.0", + "prettier": "^1.17.0", + "utf-8-validate": "^5.0.2" }, - "version": "7.2.3" + "greenkeeper": { + "commitMessages": { + "dependencyUpdate": "[pkg] Update ${dependency} to version ${version}", + "devDependencyUpdate": "[pkg] Update ${dependency} to version ${version}" + } + } } \ No newline at end of file diff --git a/node_modules/xmlchars/package.json b/node_modules/xmlchars/package.json index a0ecce45e..c94cc9d25 100644 --- a/node_modules/xmlchars/package.json +++ b/node_modules/xmlchars/package.json @@ -1,15 +1,16 @@ { - "author": { - "name": "Louis-Dominique Dubeau", - "email": "ldd@lddubeau.com" - }, - "bugs": { - "url": "https://github.com/lddubeau/xmlchars/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, + "name": "xmlchars", + "version": "2.2.0", "description": "Utilities for determining if characters belong to character classes defined by the XML specs.", + "keywords": [ + "XML", + "validation" + ], + "main": "xmlchars.js", + "types": "xmlchars.d.ts", + "repository": "https://github.com/lddubeau/xmlchars.git", + "author": "Louis-Dominique Dubeau ", + "license": "MIT", "devDependencies": { "@commitlint/cli": "^8.1.0", "@commitlint/config-angular": "^8.1.0", @@ -24,40 +25,27 @@ "tslint-config-lddubeau": "^4.1.0", "typescript": "^3.6.2" }, - "homepage": "https://github.com/lddubeau/xmlchars#readme", - "husky": { - "hooks": { - "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS" - } - }, - "keywords": [ - "XML", - "validation" - ], - "license": "MIT", - "main": "xmlchars.js", - "name": "xmlchars", - "repository": { - "type": "git", - "url": "git+https://github.com/lddubeau/xmlchars.git" - }, "scripts": { - "build": "tsc && npm run copy", - "clean": "rm -rf build", "copy": "cp README.md LICENSE build/dist && sed -e'/\"private\": true/d' package.json > build/dist/package.json", - "postpublish": "git push origin --follow-tags", + "build": "tsc && npm run copy", + "pretest": "npm run build", + "test": "mocha", "posttest": "tslint -p tsconfig.json && tslint -p test/tsconfig.json", - "postversion": "npm run xmlchars:publish", "prepack": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'", + "test-install": "npm run test && (test_dir=build/install_dir; rm -rf $test_dir; mkdir -p $test_dir/node_modules; packname=`npm run xmlchars:pack --silent`; (cd $test_dir; npm install ../$packname); rm -rf $test_dir)", + "xmlchars:pack": "cd build/dist/ && (packname=`npm pack --silent`; mv $packname ..; echo $packname)", "prepublishOnly": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'", - "pretest": "npm run build", + "xmlchars:publish": "npm run test-install && (cd build/dist && npm publish)", "preversion": "npm run test-install", - "test": "mocha", - "test-install": "npm run test && (test_dir=build/install_dir; rm -rf $test_dir; mkdir -p $test_dir/node_modules; packname=`npm run xmlchars:pack --silent`; (cd $test_dir; npm install ../$packname); rm -rf $test_dir)", "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", - "xmlchars:pack": "cd build/dist/ && (packname=`npm pack --silent`; mv $packname ..; echo $packname)", - "xmlchars:publish": "npm run test-install && (cd build/dist && npm publish)" + "postversion": "npm run xmlchars:publish", + "postpublish": "git push origin --follow-tags", + "clean": "rm -rf build" }, - "types": "xmlchars.d.ts", - "version": "2.2.0" + "dependencies": {}, + "husky": { + "hooks": { + "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS" + } + } } \ No newline at end of file diff --git a/node_modules/yargs-parser/package.json b/node_modules/yargs-parser/package.json index 16fc803f2..b611d3f6b 100644 --- a/node_modules/yargs-parser/package.json +++ b/node_modules/yargs-parser/package.json @@ -1,32 +1,18 @@ { - "author": { - "name": "Ben Coe", - "email": "ben@npmjs.com" - }, - "bugs": { - "url": "https://github.com/yargs/yargs-parser/issues" - }, - "bundleDependencies": false, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "deprecated": false, + "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", @@ -38,18 +24,23 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/yargs/package.json b/node_modules/yargs/package.json index 9a38598e6..745bae01a 100644 --- a/node_modules/yargs/package.json +++ b/node_modules/yargs/package.json @@ -1,14 +1,23 @@ { - "bugs": { - "url": "https://github.com/yargs/yargs/issues" - }, - "bundleDependencies": false, + "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", @@ -22,8 +31,6 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.1" }, - "deprecated": false, - "description": "yargs the modern, pirate-themed, successor to optimist.", "devDependencies": { "c8": "^7.0.0", "chai": "^4.2.0", @@ -39,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", @@ -62,22 +72,7 @@ "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" + } } \ No newline at end of file diff --git a/node_modules/zlib/package.json b/node_modules/zlib/package.json index f24d38f9a..5fa94d181 100644 --- a/node_modules/zlib/package.json +++ b/node_modules/zlib/package.json @@ -1,28 +1,20 @@ { - "author": { - "name": "Konstantin Käfer", - "email": "kkaefer@gmail.com" - }, - "bugs": { - "url": "https://github.com/kkaefer/node-zlib/issues" - }, - "bundleDependencies": false, - "deprecated": false, + "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" }, - "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" + "main": "./lib/zlib" } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index f3d9d22af..effb87084 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8122,6 +8122,12 @@ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", "dev": true }, + "removeNPMAbsolutePaths": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/removeNPMAbsolutePaths/-/removeNPMAbsolutePaths-2.0.0.tgz", + "integrity": "sha512-Hea7U6iJcD0NE/aqBqxBMPKeKaxjqMNyTTajmH2dH9hhafJ9Tem5r4UeJK8+BdE1MK9lqoOYqNM0Sq9rl1OIbQ==", + "dev": true + }, "repeat-element": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", diff --git a/package.json b/package.json index 00e36b072..937c26a94 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "scripts": { "build": "tsc", "test": "jest", - "lint": "tslint -p . -c tslint.json 'src/**/*.ts'" + "lint": "tslint -p . -c tslint.json 'src/**/*.ts'", + "removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force" }, "license": "MIT", "dependencies": { @@ -34,6 +35,7 @@ "jest-circus": "^25.2.4", "ts-jest": "^25.3.0", "tslint": "^6.1.0", - "typescript": "^3.7.5" + "typescript": "^3.7.5", + "removeNPMAbsolutePaths": "2.0.0" } -} +} \ No newline at end of file