Merge pull request #29 from github/removeNPMAbsolutePaths
Add PR check to remove npm absolute paths
This commit is contained in:
commit
cd95d34497
713 changed files with 13751 additions and 18896 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
name: "Lint, Build & Test"
|
name: "PR checks"
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
|
@ -30,10 +30,38 @@ jobs:
|
||||||
if [ ! -z "$(git status --porcelain)" ]; then
|
if [ ! -z "$(git status --porcelain)" ]; then
|
||||||
# If we get a fail here then the PR needs attention
|
# If we get a fail here then the PR needs attention
|
||||||
>&2 echo "Failed: JavaScript files are not up to date. Run 'npm run-script build' to update"
|
>&2 echo "Failed: JavaScript files are not up to date. Run 'npm run-script build' to update"
|
||||||
|
git status
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "Success: JavaScript files are up to date"
|
echo "Success: JavaScript files are up to date"
|
||||||
|
|
||||||
|
check-node-modules:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Check node modules up to date
|
||||||
|
run: |
|
||||||
|
# Sanity check that repo is clean to start with
|
||||||
|
if [ ! -z "$(git status --porcelain)" ]; then
|
||||||
|
# If we get a fail here then this workflow needs attention...
|
||||||
|
>&2 echo "Failed: Repo should be clean before testing!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Reinstall modules and then clean to remove absolute paths
|
||||||
|
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible
|
||||||
|
npm ci
|
||||||
|
npm run removeNPMAbsolutePaths
|
||||||
|
# Check that repo is still clean
|
||||||
|
if [ ! -z "$(git status --porcelain)" ]; then
|
||||||
|
# If we get a fail here then the PR needs attention
|
||||||
|
>&2 echo "Failed: node_modules are not up to date. Run 'npm ci' and 'npm run removeNPMAbsolutePaths' to update"
|
||||||
|
git status
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Success: node_modules are up to date"
|
||||||
|
|
||||||
npm-test:
|
npm-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
1
node_modules/.bin/removeNPMAbsolutePaths
generated
vendored
Symbolic link
1
node_modules/.bin/removeNPMAbsolutePaths
generated
vendored
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
../removeNPMAbsolutePaths/bin/removeNPMAbsolutePaths
|
||||||
8
node_modules/@actions/http-client/README.md
generated
vendored
8
node_modules/@actions/http-client/README.md
generated
vendored
|
|
@ -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.
|
- Basic, Bearer and PAT Support out of the box. Extensible handlers for others.
|
||||||
- Redirects supported
|
- Redirects supported
|
||||||
|
|
||||||
|
Features and releases [here](./RELEASES.md)
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
@ -49,7 +51,11 @@ export NODE_DEBUG=http
|
||||||
|
|
||||||
## Node support
|
## 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
|
## Contributing
|
||||||
|
|
||||||
|
|
|
||||||
16
node_modules/@actions/http-client/RELEASES.md
generated
vendored
Normal file
16
node_modules/@actions/http-client/RELEASES.md
generated
vendored
Normal file
|
|
@ -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 \<verb>Json() helper methods if not set in the client or parameters.
|
||||||
|
|
||||||
|
## 1.0.5
|
||||||
|
Adds \<verb>Json() helper methods for json over http scenarios.
|
||||||
|
|
||||||
|
## 1.0.4
|
||||||
|
Started to add \<verb>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.
|
||||||
7
node_modules/@actions/http-client/auth.js
generated
vendored
7
node_modules/@actions/http-client/auth.js
generated
vendored
|
|
@ -6,7 +6,9 @@ class BasicCredentialHandler {
|
||||||
this.password = password;
|
this.password = password;
|
||||||
}
|
}
|
||||||
prepareRequest(options) {
|
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
|
// This handler cannot handle 401
|
||||||
canHandleAuthentication(response) {
|
canHandleAuthentication(response) {
|
||||||
|
|
@ -42,7 +44,8 @@ class PersonalAccessTokenCredentialHandler {
|
||||||
// currently implements pre-authorization
|
// currently implements pre-authorization
|
||||||
// TODO: support preAuth = false where it hooks on 401
|
// TODO: support preAuth = false where it hooks on 401
|
||||||
prepareRequest(options) {
|
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
|
// This handler cannot handle 401
|
||||||
canHandleAuthentication(response) {
|
canHandleAuthentication(response) {
|
||||||
|
|
|
||||||
24
node_modules/@actions/http-client/index.d.ts
generated
vendored
24
node_modules/@actions/http-client/index.d.ts
generated
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
/// <reference types="node" />
|
/// <reference types="node" />
|
||||||
import http = require("http");
|
import http = require('http');
|
||||||
import ifm = require('./interfaces');
|
import ifm = require('./interfaces');
|
||||||
export declare enum HttpCodes {
|
export declare enum HttpCodes {
|
||||||
OK = 200,
|
OK = 200,
|
||||||
|
|
@ -23,12 +23,20 @@ export declare enum HttpCodes {
|
||||||
RequestTimeout = 408,
|
RequestTimeout = 408,
|
||||||
Conflict = 409,
|
Conflict = 409,
|
||||||
Gone = 410,
|
Gone = 410,
|
||||||
|
TooManyRequests = 429,
|
||||||
InternalServerError = 500,
|
InternalServerError = 500,
|
||||||
NotImplemented = 501,
|
NotImplemented = 501,
|
||||||
BadGateway = 502,
|
BadGateway = 502,
|
||||||
ServiceUnavailable = 503,
|
ServiceUnavailable = 503,
|
||||||
GatewayTimeout = 504
|
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.
|
* 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
|
* @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;
|
message: http.IncomingMessage;
|
||||||
readBody(): Promise<string>;
|
readBody(): Promise<string>;
|
||||||
}
|
}
|
||||||
export interface ITypedResponse<T> {
|
|
||||||
statusCode: number;
|
|
||||||
result: T | null;
|
|
||||||
headers: Object;
|
|
||||||
}
|
|
||||||
export declare function isHttps(requestUrl: string): boolean;
|
export declare function isHttps(requestUrl: string): boolean;
|
||||||
export declare class HttpClient {
|
export declare class HttpClient {
|
||||||
userAgent: string | undefined;
|
userAgent: string | undefined;
|
||||||
|
|
@ -73,10 +76,10 @@ export declare class HttpClient {
|
||||||
* Gets a typed object from an endpoint
|
* Gets a typed object from an endpoint
|
||||||
* Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise
|
* Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise
|
||||||
*/
|
*/
|
||||||
getJson<T>(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise<ITypedResponse<T>>;
|
getJson<T>(requestUrl: string, additionalHeaders?: ifm.IHeaders): Promise<ifm.ITypedResponse<T>>;
|
||||||
postJson<T>(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise<ITypedResponse<T>>;
|
postJson<T>(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise<ifm.ITypedResponse<T>>;
|
||||||
putJson<T>(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise<ITypedResponse<T>>;
|
putJson<T>(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise<ifm.ITypedResponse<T>>;
|
||||||
patchJson<T>(requestUrl: string, obj: T, additionalHeaders?: ifm.IHeaders): Promise<ITypedResponse<T>>;
|
patchJson<T>(requestUrl: string, obj: any, additionalHeaders?: ifm.IHeaders): Promise<ifm.ITypedResponse<T>>;
|
||||||
/**
|
/**
|
||||||
* Makes a raw http request.
|
* Makes a raw http request.
|
||||||
* All other methods such as get, post, patch, and request ultimately call this.
|
* 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;
|
getAgent(serverUrl: string): http.Agent;
|
||||||
private _prepareRequest;
|
private _prepareRequest;
|
||||||
private _mergeHeaders;
|
private _mergeHeaders;
|
||||||
|
private _getExistingOrDefaultHeader;
|
||||||
private _getAgent;
|
private _getAgent;
|
||||||
private _performExponentialBackoff;
|
private _performExponentialBackoff;
|
||||||
private static dateTimeDeserializer;
|
private static dateTimeDeserializer;
|
||||||
|
|
|
||||||
111
node_modules/@actions/http-client/index.js
generated
vendored
111
node_modules/@actions/http-client/index.js
generated
vendored
|
|
@ -28,12 +28,22 @@ var HttpCodes;
|
||||||
HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout";
|
HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout";
|
||||||
HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict";
|
HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict";
|
||||||
HttpCodes[HttpCodes["Gone"] = 410] = "Gone";
|
HttpCodes[HttpCodes["Gone"] = 410] = "Gone";
|
||||||
|
HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests";
|
||||||
HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError";
|
HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError";
|
||||||
HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented";
|
HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented";
|
||||||
HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway";
|
HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway";
|
||||||
HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable";
|
HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable";
|
||||||
HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout";
|
HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout";
|
||||||
})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {}));
|
})(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.
|
* 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
|
* @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 : '';
|
return proxyUrl ? proxyUrl.href : '';
|
||||||
}
|
}
|
||||||
exports.getProxyUrl = getProxyUrl;
|
exports.getProxyUrl = getProxyUrl;
|
||||||
const HttpRedirectCodes = [HttpCodes.MovedPermanently, HttpCodes.ResourceMoved, HttpCodes.SeeOther, HttpCodes.TemporaryRedirect, HttpCodes.PermanentRedirect];
|
const HttpRedirectCodes = [
|
||||||
const HttpResponseRetryCodes = [HttpCodes.BadGateway, HttpCodes.ServiceUnavailable, HttpCodes.GatewayTimeout];
|
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 RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD'];
|
||||||
const ExponentialBackoffCeiling = 10;
|
const ExponentialBackoffCeiling = 10;
|
||||||
const ExponentialBackoffTimeSlice = 5;
|
const ExponentialBackoffTimeSlice = 5;
|
||||||
|
|
@ -136,22 +156,29 @@ class HttpClient {
|
||||||
* Gets a typed object from an endpoint
|
* Gets a typed object from an endpoint
|
||||||
* Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise
|
* 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);
|
let res = await this.get(requestUrl, additionalHeaders);
|
||||||
return this._processResponse(res, this.requestOptions);
|
return this._processResponse(res, this.requestOptions);
|
||||||
}
|
}
|
||||||
async postJson(requestUrl, obj, additionalHeaders) {
|
async postJson(requestUrl, obj, additionalHeaders = {}) {
|
||||||
let data = JSON.stringify(obj, null, 2);
|
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);
|
let res = await this.post(requestUrl, data, additionalHeaders);
|
||||||
return this._processResponse(res, this.requestOptions);
|
return this._processResponse(res, this.requestOptions);
|
||||||
}
|
}
|
||||||
async putJson(requestUrl, obj, additionalHeaders) {
|
async putJson(requestUrl, obj, additionalHeaders = {}) {
|
||||||
let data = JSON.stringify(obj, null, 2);
|
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);
|
let res = await this.put(requestUrl, data, additionalHeaders);
|
||||||
return this._processResponse(res, this.requestOptions);
|
return this._processResponse(res, this.requestOptions);
|
||||||
}
|
}
|
||||||
async patchJson(requestUrl, obj, additionalHeaders) {
|
async patchJson(requestUrl, obj, additionalHeaders = {}) {
|
||||||
let data = JSON.stringify(obj, null, 2);
|
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);
|
let res = await this.patch(requestUrl, data, additionalHeaders);
|
||||||
return this._processResponse(res, this.requestOptions);
|
return this._processResponse(res, this.requestOptions);
|
||||||
}
|
}
|
||||||
|
|
@ -162,18 +189,22 @@ class HttpClient {
|
||||||
*/
|
*/
|
||||||
async request(verb, requestUrl, data, headers) {
|
async request(verb, requestUrl, data, headers) {
|
||||||
if (this._disposed) {
|
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 parsedUrl = url.parse(requestUrl);
|
||||||
let info = this._prepareRequest(verb, parsedUrl, headers);
|
let info = this._prepareRequest(verb, parsedUrl, headers);
|
||||||
// Only perform retries on reads since writes may not be idempotent.
|
// 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 numTries = 0;
|
||||||
let response;
|
let response;
|
||||||
while (numTries < maxTries) {
|
while (numTries < maxTries) {
|
||||||
response = await this.requestRaw(info, data);
|
response = await this.requestRaw(info, data);
|
||||||
// Check if it's an authentication challenge
|
// 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;
|
let authenticationHandler;
|
||||||
for (let i = 0; i < this.handlers.length; i++) {
|
for (let i = 0; i < this.handlers.length; i++) {
|
||||||
if (this.handlers[i].canHandleAuthentication(response)) {
|
if (this.handlers[i].canHandleAuthentication(response)) {
|
||||||
|
|
@ -191,21 +222,32 @@ class HttpClient {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let redirectsRemaining = this._maxRedirects;
|
let redirectsRemaining = this._maxRedirects;
|
||||||
while (HttpRedirectCodes.indexOf(response.message.statusCode) != -1
|
while (HttpRedirectCodes.indexOf(response.message.statusCode) != -1 &&
|
||||||
&& this._allowRedirects
|
this._allowRedirects &&
|
||||||
&& redirectsRemaining > 0) {
|
redirectsRemaining > 0) {
|
||||||
const redirectUrl = response.message.headers["location"];
|
const redirectUrl = response.message.headers['location'];
|
||||||
if (!redirectUrl) {
|
if (!redirectUrl) {
|
||||||
// if there's no location to redirect to, we won't
|
// if there's no location to redirect to, we won't
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
let parsedRedirectUrl = url.parse(redirectUrl);
|
let parsedRedirectUrl = url.parse(redirectUrl);
|
||||||
if (parsedUrl.protocol == 'https:' && parsedUrl.protocol != parsedRedirectUrl.protocol && !this._allowRedirectDowngrade) {
|
if (parsedUrl.protocol == 'https:' &&
|
||||||
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.");
|
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
|
// we need to finish reading the response before reassigning response
|
||||||
// which will leak the open socket.
|
// which will leak the open socket.
|
||||||
await response.readBody();
|
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
|
// let's make the request with the new redirectUrl
|
||||||
info = this._prepareRequest(verb, parsedRedirectUrl, headers);
|
info = this._prepareRequest(verb, parsedRedirectUrl, headers);
|
||||||
response = await this.requestRaw(info, data);
|
response = await this.requestRaw(info, data);
|
||||||
|
|
@ -256,8 +298,8 @@ class HttpClient {
|
||||||
*/
|
*/
|
||||||
requestRawWithCallback(info, data, onResult) {
|
requestRawWithCallback(info, data, onResult) {
|
||||||
let socket;
|
let socket;
|
||||||
if (typeof (data) === 'string') {
|
if (typeof data === 'string') {
|
||||||
info.options.headers["Content-Length"] = Buffer.byteLength(data, 'utf8');
|
info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8');
|
||||||
}
|
}
|
||||||
let callbackCalled = false;
|
let callbackCalled = false;
|
||||||
let handleResult = (err, res) => {
|
let handleResult = (err, res) => {
|
||||||
|
|
@ -270,7 +312,7 @@ class HttpClient {
|
||||||
let res = new HttpClientResponse(msg);
|
let res = new HttpClientResponse(msg);
|
||||||
handleResult(null, res);
|
handleResult(null, res);
|
||||||
});
|
});
|
||||||
req.on('socket', (sock) => {
|
req.on('socket', sock => {
|
||||||
socket = sock;
|
socket = sock;
|
||||||
});
|
});
|
||||||
// If we ever get disconnected, we want the socket to timeout eventually
|
// If we ever get disconnected, we want the socket to timeout eventually
|
||||||
|
|
@ -285,10 +327,10 @@ class HttpClient {
|
||||||
// res should have headers
|
// res should have headers
|
||||||
handleResult(err, null);
|
handleResult(err, null);
|
||||||
});
|
});
|
||||||
if (data && typeof (data) === 'string') {
|
if (data && typeof data === 'string') {
|
||||||
req.write(data, 'utf8');
|
req.write(data, 'utf8');
|
||||||
}
|
}
|
||||||
if (data && typeof (data) !== 'string') {
|
if (data && typeof data !== 'string') {
|
||||||
data.on('close', function () {
|
data.on('close', function () {
|
||||||
req.end();
|
req.end();
|
||||||
});
|
});
|
||||||
|
|
@ -315,29 +357,40 @@ class HttpClient {
|
||||||
const defaultPort = usingSsl ? 443 : 80;
|
const defaultPort = usingSsl ? 443 : 80;
|
||||||
info.options = {};
|
info.options = {};
|
||||||
info.options.host = info.parsedUrl.hostname;
|
info.options.host = info.parsedUrl.hostname;
|
||||||
info.options.port = info.parsedUrl.port ? parseInt(info.parsedUrl.port) : defaultPort;
|
info.options.port = info.parsedUrl.port
|
||||||
info.options.path = (info.parsedUrl.pathname || '') + (info.parsedUrl.search || '');
|
? parseInt(info.parsedUrl.port)
|
||||||
|
: defaultPort;
|
||||||
|
info.options.path =
|
||||||
|
(info.parsedUrl.pathname || '') + (info.parsedUrl.search || '');
|
||||||
info.options.method = method;
|
info.options.method = method;
|
||||||
info.options.headers = this._mergeHeaders(headers);
|
info.options.headers = this._mergeHeaders(headers);
|
||||||
if (this.userAgent != null) {
|
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);
|
info.options.agent = this._getAgent(info.parsedUrl);
|
||||||
// gives handlers an opportunity to participate
|
// gives handlers an opportunity to participate
|
||||||
if (this.handlers) {
|
if (this.handlers) {
|
||||||
this.handlers.forEach((handler) => {
|
this.handlers.forEach(handler => {
|
||||||
handler.prepareRequest(info.options);
|
handler.prepareRequest(info.options);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
_mergeHeaders(headers) {
|
_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) {
|
if (this.requestOptions && this.requestOptions.headers) {
|
||||||
return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers));
|
return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers));
|
||||||
}
|
}
|
||||||
return 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) {
|
_getAgent(parsedUrl) {
|
||||||
let agent;
|
let agent;
|
||||||
let proxyUrl = pm.getProxyUrl(parsedUrl);
|
let proxyUrl = pm.getProxyUrl(parsedUrl);
|
||||||
|
|
@ -369,7 +422,7 @@ class HttpClient {
|
||||||
proxyAuth: proxyUrl.auth,
|
proxyAuth: proxyUrl.auth,
|
||||||
host: proxyUrl.hostname,
|
host: proxyUrl.hostname,
|
||||||
port: proxyUrl.port
|
port: proxyUrl.port
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
let tunnelAgent;
|
let tunnelAgent;
|
||||||
const overHttps = proxyUrl.protocol === 'https:';
|
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
|
// 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
|
// http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options
|
||||||
// we have to cast it to any and change it directly
|
// 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;
|
return agent;
|
||||||
}
|
}
|
||||||
|
|
@ -457,7 +512,7 @@ class HttpClient {
|
||||||
msg = contents;
|
msg = contents;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
msg = "Failed request: (" + statusCode + ")";
|
msg = 'Failed request: (' + statusCode + ')';
|
||||||
}
|
}
|
||||||
let err = new Error(msg);
|
let err = new Error(msg);
|
||||||
// attach statusCode and body obj (if available) to the error object
|
// attach statusCode and body obj (if available) to the error object
|
||||||
|
|
|
||||||
9
node_modules/@actions/http-client/interfaces.d.ts
generated
vendored
9
node_modules/@actions/http-client/interfaces.d.ts
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/// <reference types="node" />
|
/// <reference types="node" />
|
||||||
import http = require("http");
|
import http = require('http');
|
||||||
import url = require("url");
|
import url = require('url');
|
||||||
export interface IHeaders {
|
export interface IHeaders {
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
|
@ -43,3 +43,8 @@ export interface IRequestOptions {
|
||||||
allowRetries?: boolean;
|
allowRetries?: boolean;
|
||||||
maxRetries?: number;
|
maxRetries?: number;
|
||||||
}
|
}
|
||||||
|
export interface ITypedResponse<T> {
|
||||||
|
statusCode: number;
|
||||||
|
result: T | null;
|
||||||
|
headers: Object;
|
||||||
|
}
|
||||||
|
|
|
||||||
1
node_modules/@actions/http-client/interfaces.js
generated
vendored
1
node_modules/@actions/http-client/interfaces.js
generated
vendored
|
|
@ -1,3 +1,2 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
;
|
|
||||||
|
|
|
||||||
39
node_modules/@actions/http-client/node_modules/tunnel/package.json
generated
vendored
39
node_modules/@actions/http-client/node_modules/tunnel/package.json
generated
vendored
|
|
@ -1,25 +1,7 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "tunnel",
|
||||||
"name": "Koichi Kobayashi",
|
"version": "0.0.6",
|
||||||
"email": "koichik@improvement.jp"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/koichik/node-tunnel/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Node HTTP/HTTPS Agents for tunneling proxies",
|
"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": [
|
"keywords": [
|
||||||
"http",
|
"http",
|
||||||
"https",
|
"https",
|
||||||
|
|
@ -27,15 +9,26 @@
|
||||||
"proxy",
|
"proxy",
|
||||||
"tunnel"
|
"tunnel"
|
||||||
],
|
],
|
||||||
|
"homepage": "https://github.com/koichik/node-tunnel/",
|
||||||
|
"bugs": "https://github.com/koichik/node-tunnel/issues",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"author": "Koichi Kobayashi <koichik@improvement.jp>",
|
||||||
"main": "./index.js",
|
"main": "./index.js",
|
||||||
"name": "tunnel",
|
"directories": {
|
||||||
|
"lib": "./lib"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/koichik/node-tunnel.git"
|
"url": "https://github.com/koichik/node-tunnel.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha"
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
62
node_modules/@actions/http-client/package.json
generated
vendored
62
node_modules/@actions/http-client/package.json
generated
vendored
|
|
@ -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,
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/actions/http-client#readme",
|
|
||||||
"keywords": [
|
|
||||||
"Actions",
|
|
||||||
"Http"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "index.js",
|
|
||||||
"name": "@actions/http-client",
|
"name": "@actions/http-client",
|
||||||
|
"version": "1.0.8",
|
||||||
|
"description": "Actions Http Client",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out",
|
||||||
|
"test": "jest",
|
||||||
|
"format": "prettier --write *.ts && prettier --write **/*.ts",
|
||||||
|
"format-check": "prettier --check *.ts && prettier --check **/*.ts",
|
||||||
|
"audit-check": "npm audit --audit-level=moderate"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/actions/http-client.git"
|
"url": "git+https://github.com/actions/http-client.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"keywords": [
|
||||||
"build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out",
|
"Actions",
|
||||||
"test": "jest"
|
"Http"
|
||||||
|
],
|
||||||
|
"author": "GitHub, Inc.",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/actions/http-client/issues"
|
||||||
},
|
},
|
||||||
"version": "1.0.4"
|
"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"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"tunnel": "0.0.6"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
13
node_modules/@actions/http-client/proxy.js
generated
vendored
13
node_modules/@actions/http-client/proxy.js
generated
vendored
|
|
@ -9,12 +9,10 @@ function getProxyUrl(reqUrl) {
|
||||||
}
|
}
|
||||||
let proxyVar;
|
let proxyVar;
|
||||||
if (usingSsl) {
|
if (usingSsl) {
|
||||||
proxyVar = process.env["https_proxy"] ||
|
proxyVar = process.env['https_proxy'] || process.env['HTTPS_PROXY'];
|
||||||
process.env["HTTPS_PROXY"];
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
proxyVar = process.env["http_proxy"] ||
|
proxyVar = process.env['http_proxy'] || process.env['HTTP_PROXY'];
|
||||||
process.env["HTTP_PROXY"];
|
|
||||||
}
|
}
|
||||||
if (proxyVar) {
|
if (proxyVar) {
|
||||||
proxyUrl = url.parse(proxyVar);
|
proxyUrl = url.parse(proxyVar);
|
||||||
|
|
@ -26,7 +24,7 @@ function checkBypass(reqUrl) {
|
||||||
if (!reqUrl.hostname) {
|
if (!reqUrl.hostname) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
let noProxy = process.env["no_proxy"] || process.env["NO_PROXY"] || '';
|
let noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || '';
|
||||||
if (!noProxy) {
|
if (!noProxy) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
@ -47,7 +45,10 @@ function checkBypass(reqUrl) {
|
||||||
upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`);
|
upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`);
|
||||||
}
|
}
|
||||||
// Compare request host against noproxy
|
// 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)) {
|
if (upperReqHosts.some(x => x === upperNoProxyItem)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
26
node_modules/@babel/helper-member-expression-to-functions/package.json
generated
vendored
26
node_modules/@babel/helper-member-expression-to-functions/package.json
generated
vendored
|
|
@ -1,24 +1,16 @@
|
||||||
{
|
{
|
||||||
"author": {
|
|
||||||
"name": "Justin Ridgewell",
|
|
||||||
"email": "justin@ridgewell.name"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/types": "^7.8.3"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Helper function to replace certain member expressions with function calls",
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/helper-member-expression-to-functions",
|
"name": "@babel/helper-member-expression-to-functions",
|
||||||
|
"version": "7.8.3",
|
||||||
|
"description": "Helper function to replace certain member expressions with function calls",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions",
|
||||||
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions"
|
"dependencies": {
|
||||||
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
32
node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json
generated
vendored
32
node_modules/@babel/helper-module-imports/node_modules/@babel/types/package.json
generated
vendored
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-module-imports/package.json
generated
vendored
30
node_modules/@babel/helper-module-imports/package.json
generated
vendored
|
|
@ -1,28 +1,20 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/helper-module-imports",
|
||||||
"name": "Logan Smyth",
|
"version": "7.8.3",
|
||||||
"email": "loganfsmyth@gmail.com"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/types": "^7.8.3"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel helper functions for inserting module loads",
|
"description": "Babel helper functions for inserting module loads",
|
||||||
"devDependencies": {
|
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||||
"@babel/core": "^7.8.3"
|
|
||||||
},
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"homepage": "https://babeljs.io/",
|
"homepage": "https://babeljs.io/",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/helper-module-imports",
|
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports",
|
||||||
"type": "git",
|
"main": "lib/index.js",
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports"
|
"dependencies": {
|
||||||
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.8.3"
|
||||||
|
},
|
||||||
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json
generated
vendored
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/package.json
generated
vendored
|
|
@ -1,29 +1,21 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/code-frame",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.3",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/highlight": "^7.8.3"
|
"@babel/highlight": "^7.8.3"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
@ -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",
|
"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": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"dependencies": {
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json
generated
vendored
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/package.json
generated
vendored
|
|
@ -1,30 +1,22 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/highlight",
|
||||||
"name": "suchipi",
|
"version": "7.9.0",
|
||||||
"email": "me@suchipi.com"
|
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
||||||
|
"author": "suchipi <me@suchipi.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"js-tokens": "^4.0.0"
|
"js-tokens": "^4.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
60
node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json
generated
vendored
60
node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/package.json
generated
vendored
|
|
@ -1,30 +1,13 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/parser",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.4",
|
||||||
"email": "sebmck@gmail.com"
|
|
||||||
},
|
|
||||||
"bin": {
|
|
||||||
"parser": "bin/babel-parser.js"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A JavaScript parser",
|
"description": "A JavaScript parser",
|
||||||
"devDependencies": {
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
"@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",
|
|
||||||
"homepage": "https://babeljs.io/",
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel",
|
"babel",
|
||||||
"javascript",
|
"javascript",
|
||||||
|
|
@ -33,16 +16,25 @@
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"@babel/parser"
|
"@babel/parser"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-parser",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"name": "@babel/parser",
|
|
||||||
"publishConfig": {
|
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-parser"
|
|
||||||
},
|
|
||||||
"types": "typings/babel-parser.d.ts",
|
"types": "typings/babel-parser.d.ts",
|
||||||
"version": "7.9.4"
|
"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"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"parser": "./bin/babel-parser.js"
|
||||||
|
},
|
||||||
|
"gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json
generated
vendored
30
node_modules/@babel/helper-module-transforms/node_modules/@babel/template/package.json
generated
vendored
|
|
@ -1,27 +1,19 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/template",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.6",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate an AST from a string template.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-template",
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/code-frame": "^7.8.3",
|
"@babel/code-frame": "^7.8.3",
|
||||||
"@babel/parser": "^7.8.6",
|
"@babel/parser": "^7.8.6",
|
||||||
"@babel/types": "^7.8.6"
|
"@babel/types": "^7.8.6"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b"
|
||||||
"description": "Generate an AST from a string template.",
|
|
||||||
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.6"
|
|
||||||
}
|
}
|
||||||
32
node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json
generated
vendored
32
node_modules/@babel/helper-module-transforms/node_modules/@babel/types/package.json
generated
vendored
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-module-transforms/package.json
generated
vendored
30
node_modules/@babel/helper-module-transforms/package.json
generated
vendored
|
|
@ -1,9 +1,15 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/helper-module-transforms",
|
||||||
"name": "Logan Smyth",
|
"version": "7.9.0",
|
||||||
"email": "loganfsmyth@gmail.com"
|
"description": "Babel helper functions for implementing ES6 module transformations",
|
||||||
|
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-module-imports": "^7.8.3",
|
"@babel/helper-module-imports": "^7.8.3",
|
||||||
"@babel/helper-replace-supers": "^7.8.6",
|
"@babel/helper-replace-supers": "^7.8.6",
|
||||||
|
|
@ -13,19 +19,5 @@
|
||||||
"@babel/types": "^7.9.0",
|
"@babel/types": "^7.9.0",
|
||||||
"lodash": "^4.17.13"
|
"lodash": "^4.17.13"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
21
node_modules/@babel/helper-optimise-call-expression/package.json
generated
vendored
21
node_modules/@babel/helper-optimise-call-expression/package.json
generated
vendored
|
|
@ -1,20 +1,15 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/types": "^7.8.3"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Helper function to optimise call expression",
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/helper-optimise-call-expression",
|
"name": "@babel/helper-optimise-call-expression",
|
||||||
|
"version": "7.8.3",
|
||||||
|
"description": "Helper function to optimise call expression",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression",
|
||||||
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"dependencies": {
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json
generated
vendored
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/package.json
generated
vendored
|
|
@ -1,29 +1,21 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/code-frame",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.3",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/highlight": "^7.8.3"
|
"@babel/highlight": "^7.8.3"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
"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"
|
|
||||||
}
|
}
|
||||||
36
node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json
generated
vendored
36
node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/package.json
generated
vendored
|
|
@ -1,35 +1,27 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/generator",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.4",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Turns an AST into code.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/types": "^7.9.0",
|
"@babel/types": "^7.9.0",
|
||||||
"jsesc": "^2.5.1",
|
"jsesc": "^2.5.1",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"source-map": "^0.5.0"
|
"source-map": "^0.5.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Turns an AST into code.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/helper-fixtures": "^7.8.6",
|
"@babel/helper-fixtures": "^7.8.6",
|
||||||
"@babel/parser": "^7.9.4"
|
"@babel/parser": "^7.9.4"
|
||||||
},
|
},
|
||||||
"files": [
|
"gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,22 +1,17 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
"name": "@babel/helper-function-name",
|
||||||
|
"version": "7.8.3",
|
||||||
|
"description": "Helper function to change the property 'name' of every function",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/helper-get-function-arity": "^7.8.3",
|
"@babel/helper-get-function-arity": "^7.8.3",
|
||||||
"@babel/template": "^7.8.3",
|
"@babel/template": "^7.8.3",
|
||||||
"@babel/types": "^7.8.3"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
"description": "Helper function to change the property 'name' of every function",
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.3"
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,20 +1,15 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/types": "^7.8.3"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Helper function to get function arity",
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/helper-get-function-arity",
|
"name": "@babel/helper-get-function-arity",
|
||||||
|
"version": "7.8.3",
|
||||||
|
"description": "Helper function to get function arity",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity",
|
||||||
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"dependencies": {
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
|
|
@ -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",
|
"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": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"dependencies": {
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json
generated
vendored
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/package.json
generated
vendored
|
|
@ -1,30 +1,22 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/highlight",
|
||||||
"name": "suchipi",
|
"version": "7.9.0",
|
||||||
"email": "me@suchipi.com"
|
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
||||||
|
"author": "suchipi <me@suchipi.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"js-tokens": "^4.0.0"
|
"js-tokens": "^4.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
60
node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json
generated
vendored
60
node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/package.json
generated
vendored
|
|
@ -1,30 +1,13 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/parser",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.4",
|
||||||
"email": "sebmck@gmail.com"
|
|
||||||
},
|
|
||||||
"bin": {
|
|
||||||
"parser": "bin/babel-parser.js"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A JavaScript parser",
|
"description": "A JavaScript parser",
|
||||||
"devDependencies": {
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
"@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",
|
|
||||||
"homepage": "https://babeljs.io/",
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel",
|
"babel",
|
||||||
"javascript",
|
"javascript",
|
||||||
|
|
@ -33,16 +16,25 @@
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"@babel/parser"
|
"@babel/parser"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-parser",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"name": "@babel/parser",
|
|
||||||
"publishConfig": {
|
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-parser"
|
|
||||||
},
|
|
||||||
"types": "typings/babel-parser.d.ts",
|
"types": "typings/babel-parser.d.ts",
|
||||||
"version": "7.9.4"
|
"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"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"parser": "./bin/babel-parser.js"
|
||||||
|
},
|
||||||
|
"gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json
generated
vendored
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/template/package.json
generated
vendored
|
|
@ -1,27 +1,19 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/template",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.6",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate an AST from a string template.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-template",
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/code-frame": "^7.8.3",
|
"@babel/code-frame": "^7.8.3",
|
||||||
"@babel/parser": "^7.8.6",
|
"@babel/parser": "^7.8.6",
|
||||||
"@babel/types": "^7.8.6"
|
"@babel/types": "^7.8.6"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b"
|
||||||
"description": "Generate an AST from a string template.",
|
|
||||||
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.6"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json
generated
vendored
30
node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/package.json
generated
vendored
|
|
@ -1,9 +1,15 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/traverse",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/code-frame": "^7.8.3",
|
"@babel/code-frame": "^7.8.3",
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
|
|
@ -15,22 +21,8 @@
|
||||||
"globals": "^11.1.0",
|
"globals": "^11.1.0",
|
||||||
"lodash": "^4.17.13"
|
"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": {
|
"devDependencies": {
|
||||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
32
node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json
generated
vendored
32
node_modules/@babel/helper-replace-supers/node_modules/@babel/types/package.json
generated
vendored
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
90
node_modules/@babel/helper-replace-supers/node_modules/debug/package.json
generated
vendored
90
node_modules/@babel/helper-replace-supers/node_modules/debug/package.json
generated
vendored
|
|
@ -1,29 +1,44 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "debug",
|
||||||
"name": "TJ Holowaychuk",
|
"version": "4.1.1",
|
||||||
"email": "tj@vision-media.ca"
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git://github.com/visionmedia/debug.git"
|
||||||
},
|
},
|
||||||
"browser": "./src/browser.js",
|
"description": "small debugging utility",
|
||||||
"bugs": {
|
"keywords": [
|
||||||
"url": "https://github.com/visionmedia/debug/issues"
|
"debug",
|
||||||
},
|
"log",
|
||||||
"bundleDependencies": false,
|
"debugger"
|
||||||
"contributors": [
|
|
||||||
{
|
|
||||||
"name": "Nathan Rajlich",
|
|
||||||
"email": "nathan@tootallnate.net",
|
|
||||||
"url": "http://n8.io"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Andrew Rhyne",
|
|
||||||
"email": "rhyneandrew@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
|
"files": [
|
||||||
|
"src",
|
||||||
|
"dist/debug.js",
|
||||||
|
"LICENSE",
|
||||||
|
"README.md"
|
||||||
|
],
|
||||||
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||||||
|
"contributors": [
|
||||||
|
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
|
||||||
|
"Andrew Rhyne <rhyneandrew@gmail.com>"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"lint": "xo",
|
||||||
|
"test": "npm run test:node && npm run test:browser",
|
||||||
|
"test:node": "istanbul cover _mocha -- test.js",
|
||||||
|
"pretest:browser": "npm run build",
|
||||||
|
"test:browser": "karma start --single-run",
|
||||||
|
"prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .",
|
||||||
|
"build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js",
|
||||||
|
"build:test": "babel -d dist test.js",
|
||||||
|
"build": "npm run build:debug && npm run build:test",
|
||||||
|
"clean": "rimraf dist coverage",
|
||||||
|
"test:coverage": "cat ./coverage/lcov.info | coveralls"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ms": "^2.1.1"
|
"ms": "^2.1.1"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "small debugging utility",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.0.0",
|
"@babel/cli": "^7.0.0",
|
||||||
"@babel/core": "^7.0.0",
|
"@babel/core": "^7.0.0",
|
||||||
|
|
@ -42,38 +57,7 @@
|
||||||
"rimraf": "^2.5.4",
|
"rimraf": "^2.5.4",
|
||||||
"xo": "^0.23.0"
|
"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",
|
"main": "./src/index.js",
|
||||||
"name": "debug",
|
"browser": "./src/browser.js",
|
||||||
"repository": {
|
"unpkg": "./dist/debug.js"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
47
node_modules/@babel/helper-replace-supers/node_modules/ms/package.json
generated
vendored
47
node_modules/@babel/helper-replace-supers/node_modules/ms/package.json
generated
vendored
|
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "ms",
|
||||||
"url": "https://github.com/zeit/ms/issues"
|
"version": "2.1.2",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Tiny millisecond conversion utility",
|
"description": "Tiny millisecond conversion utility",
|
||||||
"devDependencies": {
|
"repository": "zeit/ms",
|
||||||
"eslint": "4.12.1",
|
"main": "./index",
|
||||||
"expect.js": "0.3.1",
|
"files": [
|
||||||
"husky": "0.14.3",
|
"index.js"
|
||||||
"lint-staged": "5.0.0",
|
],
|
||||||
"mocha": "4.0.1"
|
"scripts": {
|
||||||
|
"precommit": "lint-staged",
|
||||||
|
"lint": "eslint lib/* bin/*",
|
||||||
|
"test": "mocha tests.js"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "eslint:recommended",
|
"extends": "eslint:recommended",
|
||||||
|
|
@ -19,11 +19,6 @@
|
||||||
"es6": true
|
"es6": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/zeit/ms#readme",
|
|
||||||
"license": "MIT",
|
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.js": [
|
"*.js": [
|
||||||
"npm run lint",
|
"npm run lint",
|
||||||
|
|
@ -31,16 +26,12 @@
|
||||||
"git add"
|
"git add"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"main": "./index",
|
"license": "MIT",
|
||||||
"name": "ms",
|
"devDependencies": {
|
||||||
"repository": {
|
"eslint": "4.12.1",
|
||||||
"type": "git",
|
"expect.js": "0.3.1",
|
||||||
"url": "git+https://github.com/zeit/ms.git"
|
"husky": "0.14.3",
|
||||||
},
|
"lint-staged": "5.0.0",
|
||||||
"scripts": {
|
"mocha": "4.0.1"
|
||||||
"lint": "eslint lib/* bin/*",
|
}
|
||||||
"precommit": "lint-staged",
|
|
||||||
"test": "mocha tests.js"
|
|
||||||
},
|
|
||||||
"version": "2.1.2"
|
|
||||||
}
|
}
|
||||||
226
node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json
generated
vendored
226
node_modules/@babel/helper-replace-supers/node_modules/source-map/package.json
generated
vendored
|
|
@ -1,167 +1,52 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "source-map",
|
||||||
"name": "Nick Fitzgerald",
|
|
||||||
"email": "nfitzgerald@mozilla.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/mozilla/source-map/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Generates and consumes source maps",
|
"description": "Generates and consumes source maps",
|
||||||
"devDependencies": {
|
"version": "0.5.7",
|
||||||
"doctoc": "^0.15.0",
|
"homepage": "https://github.com/mozilla/source-map",
|
||||||
"webpack": "^1.12.0"
|
"author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
|
||||||
},
|
"contributors": [
|
||||||
"engines": {
|
"Tobias Koppers <tobias.koppers@googlemail.com>",
|
||||||
"node": ">=0.10.0"
|
"Duncan Beevers <duncan@dweebd.com>",
|
||||||
|
"Stephen Crane <scrane@mozilla.com>",
|
||||||
|
"Ryan Seddon <seddon.ryan@gmail.com>",
|
||||||
|
"Miles Elam <miles.elam@deem.com>",
|
||||||
|
"Mihai Bazon <mihai.bazon@gmail.com>",
|
||||||
|
"Michael Ficarra <github.public.email@michael.ficarra.me>",
|
||||||
|
"Todd Wolfson <todd@twolfson.com>",
|
||||||
|
"Alexander Solovyov <alexander@solovyov.net>",
|
||||||
|
"Felix Gnass <fgnass@gmail.com>",
|
||||||
|
"Conrad Irwin <conrad.irwin@gmail.com>",
|
||||||
|
"usrbincc <usrbincc@yahoo.com>",
|
||||||
|
"David Glasser <glasser@davidglasser.net>",
|
||||||
|
"Chase Douglas <chase@newrelic.com>",
|
||||||
|
"Evan Wallace <evan.exe@gmail.com>",
|
||||||
|
"Heather Arthur <fayearthur@gmail.com>",
|
||||||
|
"Hugh Kennedy <hughskennedy@gmail.com>",
|
||||||
|
"David Glasser <glasser@davidglasser.net>",
|
||||||
|
"Simon Lydell <simon.lydell@gmail.com>",
|
||||||
|
"Jmeas Smith <jellyes2@gmail.com>",
|
||||||
|
"Michael Z Goddard <mzgoddard@gmail.com>",
|
||||||
|
"azu <azu@users.noreply.github.com>",
|
||||||
|
"John Gozde <john@gozde.ca>",
|
||||||
|
"Adam Kirkton <akirkton@truefitinnovation.com>",
|
||||||
|
"Chris Montgomery <christopher.montgomery@dowjones.com>",
|
||||||
|
"J. Ryan Stinnett <jryans@gmail.com>",
|
||||||
|
"Jack Herrington <jherrington@walmartlabs.com>",
|
||||||
|
"Chris Truter <jeffpalentine@gmail.com>",
|
||||||
|
"Daniel Espeset <daniel@danielespeset.com>",
|
||||||
|
"Jamie Wong <jamie.lf.wong@gmail.com>",
|
||||||
|
"Eddy Bruël <ejpbruel@mozilla.com>",
|
||||||
|
"Hawken Rives <hawkrives@gmail.com>",
|
||||||
|
"Gilad Peleg <giladp007@gmail.com>",
|
||||||
|
"djchie <djchie.dev@gmail.com>",
|
||||||
|
"Gary Ye <garysye@gmail.com>",
|
||||||
|
"Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "http://github.com/mozilla/source-map.git"
|
||||||
},
|
},
|
||||||
|
"main": "./source-map.js",
|
||||||
"files": [
|
"files": [
|
||||||
"source-map.js",
|
"source-map.js",
|
||||||
"lib/",
|
"lib/",
|
||||||
|
|
@ -170,19 +55,18 @@
|
||||||
"dist/source-map.min.js",
|
"dist/source-map.min.js",
|
||||||
"dist/source-map.min.js.map"
|
"dist/source-map.min.js.map"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/mozilla/source-map",
|
"engines": {
|
||||||
"license": "BSD-3-Clause",
|
"node": ">=0.10.0"
|
||||||
"main": "./source-map.js",
|
|
||||||
"name": "source-map",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+ssh://git@github.com/mozilla/source-map.git"
|
|
||||||
},
|
},
|
||||||
|
"license": "BSD-3-Clause",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack --color",
|
|
||||||
"test": "npm run build && node test/run-tests.js",
|
"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"
|
"toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
|
||||||
},
|
},
|
||||||
"typings": "source-map",
|
"devDependencies": {
|
||||||
"version": "0.5.7"
|
"doctoc": "^0.15.0",
|
||||||
|
"webpack": "^1.12.0"
|
||||||
|
},
|
||||||
|
"typings": "source-map"
|
||||||
}
|
}
|
||||||
25
node_modules/@babel/helper-replace-supers/package.json
generated
vendored
25
node_modules/@babel/helper-replace-supers/package.json
generated
vendored
|
|
@ -1,23 +1,18 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
"name": "@babel/helper-replace-supers",
|
||||||
|
"version": "7.8.6",
|
||||||
|
"description": "Helper function to replace supers",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
||||||
"@babel/helper-optimise-call-expression": "^7.8.3",
|
"@babel/helper-optimise-call-expression": "^7.8.3",
|
||||||
"@babel/traverse": "^7.8.6",
|
"@babel/traverse": "^7.8.6",
|
||||||
"@babel/types": "^7.8.6"
|
"@babel/types": "^7.8.6"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b"
|
||||||
"description": "Helper function to replace supers",
|
|
||||||
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.6"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json
generated
vendored
30
node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/package.json
generated
vendored
|
|
@ -1,29 +1,21 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/code-frame",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.3",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/highlight": "^7.8.3"
|
"@babel/highlight": "^7.8.3"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
"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"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json
generated
vendored
30
node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/package.json
generated
vendored
|
|
@ -1,30 +1,22 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/highlight",
|
||||||
"name": "suchipi",
|
"version": "7.9.0",
|
||||||
"email": "me@suchipi.com"
|
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
||||||
|
"author": "suchipi <me@suchipi.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"chalk": "^2.0.0",
|
"chalk": "^2.0.0",
|
||||||
"js-tokens": "^4.0.0"
|
"js-tokens": "^4.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strip-ansi": "^4.0.0"
|
"strip-ansi": "^4.0.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
60
node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json
generated
vendored
60
node_modules/@babel/helper-simple-access/node_modules/@babel/parser/package.json
generated
vendored
|
|
@ -1,30 +1,13 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/parser",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.4",
|
||||||
"email": "sebmck@gmail.com"
|
|
||||||
},
|
|
||||||
"bin": {
|
|
||||||
"parser": "bin/babel-parser.js"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A JavaScript parser",
|
"description": "A JavaScript parser",
|
||||||
"devDependencies": {
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
"@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",
|
|
||||||
"homepage": "https://babeljs.io/",
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel",
|
"babel",
|
||||||
"javascript",
|
"javascript",
|
||||||
|
|
@ -33,16 +16,25 @@
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"@babel/parser"
|
"@babel/parser"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-parser",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"name": "@babel/parser",
|
|
||||||
"publishConfig": {
|
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-parser"
|
|
||||||
},
|
|
||||||
"types": "typings/babel-parser.d.ts",
|
"types": "typings/babel-parser.d.ts",
|
||||||
"version": "7.9.4"
|
"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"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"parser": "./bin/babel-parser.js"
|
||||||
|
},
|
||||||
|
"gitHead": "d3cf5fb5f4b46a1f7e9e33f2d24a466e3ea1e50f"
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json
generated
vendored
30
node_modules/@babel/helper-simple-access/node_modules/@babel/template/package.json
generated
vendored
|
|
@ -1,27 +1,19 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/template",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.8.6",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Generate an AST from a string template.",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-template",
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/code-frame": "^7.8.3",
|
"@babel/code-frame": "^7.8.3",
|
||||||
"@babel/parser": "^7.8.6",
|
"@babel/parser": "^7.8.6",
|
||||||
"@babel/types": "^7.8.6"
|
"@babel/types": "^7.8.6"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b"
|
||||||
"description": "Generate an AST from a string template.",
|
|
||||||
"gitHead": "750d3dde3bd2d390819820fd22c05441da78751b",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.6"
|
|
||||||
}
|
}
|
||||||
32
node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json
generated
vendored
32
node_modules/@babel/helper-simple-access/node_modules/@babel/types/package.json
generated
vendored
|
|
@ -1,32 +1,24 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/types",
|
||||||
"name": "Sebastian McKenzie",
|
"version": "7.9.0",
|
||||||
"email": "sebmck@gmail.com"
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
||||||
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||||
|
"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": {
|
"dependencies": {
|
||||||
"@babel/helper-validator-identifier": "^7.9.0",
|
"@babel/helper-validator-identifier": "^7.9.0",
|
||||||
"lodash": "^4.17.13",
|
"lodash": "^4.17.13",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/generator": "^7.9.0",
|
"@babel/generator": "^7.9.0",
|
||||||
"@babel/parser": "^7.9.0"
|
"@babel/parser": "^7.9.0"
|
||||||
},
|
},
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
"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"
|
|
||||||
}
|
}
|
||||||
30
node_modules/@babel/helper-simple-access/package.json
generated
vendored
30
node_modules/@babel/helper-simple-access/package.json
generated
vendored
|
|
@ -1,26 +1,18 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/helper-simple-access",
|
||||||
"name": "Logan Smyth",
|
"version": "7.8.3",
|
||||||
"email": "loganfsmyth@gmail.com"
|
"description": "Babel helper for ensuring that access to a given value is performed through simple accesses",
|
||||||
|
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||||
|
"homepage": "https://babeljs.io/",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access",
|
||||||
|
"main": "lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/template": "^7.8.3",
|
"@babel/template": "^7.8.3",
|
||||||
"@babel/types": "^7.8.3"
|
"@babel/types": "^7.8.3"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
"description": "Babel helper for ensuring that access to a given value is performed through simple accesses",
|
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.8.3"
|
|
||||||
}
|
}
|
||||||
25
node_modules/@babel/helper-validator-identifier/package.json
generated
vendored
25
node_modules/@babel/helper-validator-identifier/package.json
generated
vendored
|
|
@ -1,22 +1,17 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
"name": "@babel/helper-validator-identifier",
|
||||||
"deprecated": false,
|
"version": "7.9.0",
|
||||||
"description": "Validate identifier/keywords name",
|
"description": "Validate identifier/keywords name",
|
||||||
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-validator-identifier",
|
||||||
|
"license": "MIT",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"main": "./lib/index.js",
|
||||||
|
"exports": "./lib/index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"charcodes": "^0.2.0",
|
"charcodes": "^0.2.0",
|
||||||
"unicode-13.0.0": "^0.8.0"
|
"unicode-13.0.0": "^0.8.0"
|
||||||
},
|
},
|
||||||
"exports": "./lib/index.js",
|
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02"
|
||||||
"gitHead": "8d5e422be27251cfaadf8dd2536b31b4a5024b02",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"version": "7.9.0"
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,22 +1,14 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@babel/helper-plugin-utils",
|
||||||
"name": "Logan Smyth",
|
"version": "7.8.3",
|
||||||
"email": "loganfsmyth@gmail.com"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "General utilities for plugins to use",
|
"description": "General utilities for plugins to use",
|
||||||
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017",
|
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||||
"homepage": "https://babeljs.io/",
|
"homepage": "https://babeljs.io/",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/helper-plugin-utils",
|
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils",
|
||||||
"type": "git",
|
"main": "lib/index.js",
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils"
|
"gitHead": "a7620bd266ae1345975767bbc7abf09034437017"
|
||||||
},
|
|
||||||
"version": "7.8.3"
|
|
||||||
}
|
}
|
||||||
37
node_modules/@babel/plugin-syntax-bigint/package.json
generated
vendored
37
node_modules/@babel/plugin-syntax-bigint/package.json
generated
vendored
|
|
@ -1,28 +1,23 @@
|
||||||
{
|
{
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/helper-plugin-utils": "^7.8.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Allow parsing of BigInt literals",
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/core": "^7.8.0"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"babel-plugin"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"name": "@babel/plugin-syntax-bigint",
|
"name": "@babel/plugin-syntax-bigint",
|
||||||
"peerDependencies": {
|
"version": "7.8.3",
|
||||||
"@babel/core": "^7.0.0-0"
|
"description": "Allow parsing of BigInt literals",
|
||||||
},
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint",
|
||||||
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"main": "lib/index.js",
|
||||||
"type": "git",
|
"keywords": [
|
||||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint"
|
"babel-plugin"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/helper-plugin-utils": "^7.8.0"
|
||||||
},
|
},
|
||||||
"version": "7.8.3"
|
"peerDependencies": {
|
||||||
|
"@babel/core": "^7.0.0-0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.8.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
45
node_modules/@bcoe/v8-coverage/package.json
generated
vendored
45
node_modules/@bcoe/v8-coverage/package.json
generated
vendored
|
|
@ -1,15 +1,22 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@bcoe/v8-coverage",
|
||||||
"name": "Charles Samborski",
|
"version": "0.2.3",
|
||||||
"email": "demurgos@demurgos.net",
|
|
||||||
"url": "https://demurgos.net"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/demurgos/v8-coverage/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Helper functions for V8 coverage files.",
|
"description": "Helper functions for V8 coverage files.",
|
||||||
|
"author": "Charles Samborski <demurgos@demurgos.net> (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"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/chai": "^4.1.4",
|
"@types/chai": "^4.1.4",
|
||||||
"@types/gulp": "^4.0.5",
|
"@types/gulp": "^4.0.5",
|
||||||
|
|
@ -25,10 +32,6 @@
|
||||||
"ts-node": "^8.3.0",
|
"ts-node": "^8.3.0",
|
||||||
"turbo-gulp": "^0.20.1"
|
"turbo-gulp": "^0.20.1"
|
||||||
},
|
},
|
||||||
"homepage": "https://demurgos.github.io/v8-coverage",
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "dist/lib/index",
|
|
||||||
"name": "@bcoe/v8-coverage",
|
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"include": [
|
"include": [
|
||||||
"build/test/lib/**/*.js",
|
"build/test/lib/**/*.js",
|
||||||
|
|
@ -41,17 +44,5 @@
|
||||||
"extension": [
|
"extension": [
|
||||||
".mjs"
|
".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"
|
|
||||||
}
|
}
|
||||||
45
node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json
generated
vendored
45
node_modules/@istanbuljs/load-nyc-config/node_modules/find-up/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/find-up#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"find",
|
"find",
|
||||||
"up",
|
"up",
|
||||||
|
|
@ -49,14 +39,15 @@
|
||||||
"walking",
|
"walking",
|
||||||
"path"
|
"path"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "find-up",
|
"locate-path": "^5.0.0",
|
||||||
"repository": {
|
"path-exists": "^4.0.0"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/sindresorhus/find-up.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.1.0",
|
||||||
},
|
"is-path-inside": "^2.1.0",
|
||||||
"version": "4.1.0"
|
"tempy": "^0.3.0",
|
||||||
|
"tsd": "^0.7.3",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
39
node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json
generated
vendored
39
node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/locate-path#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"locate",
|
"locate",
|
||||||
"path",
|
"path",
|
||||||
|
|
@ -41,14 +34,12 @@
|
||||||
"iterable",
|
"iterable",
|
||||||
"iterator"
|
"iterator"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "locate-path",
|
"p-locate": "^4.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/sindresorhus/locate-path.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^1.4.1",
|
||||||
},
|
"tsd": "^0.7.2",
|
||||||
"version": "5.0.0"
|
"xo": "^0.24.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
45
node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json
generated
vendored
45
node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/p-locate#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"promise",
|
"promise",
|
||||||
"locate",
|
"locate",
|
||||||
|
|
@ -49,14 +39,15 @@
|
||||||
"promises",
|
"promises",
|
||||||
"bluebird"
|
"bluebird"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "p-locate",
|
"p-limit": "^2.2.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/sindresorhus/p-locate.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^1.4.1",
|
||||||
},
|
"delay": "^4.1.0",
|
||||||
"version": "4.1.0"
|
"in-range": "^1.0.0",
|
||||||
|
"time-span": "^3.0.0",
|
||||||
|
"tsd": "^0.7.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
35
node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json
generated
vendored
35
node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists/package.json
generated
vendored
|
|
@ -1,28 +1,24 @@
|
||||||
{
|
{
|
||||||
|
"name": "path-exists",
|
||||||
|
"version": "4.0.0",
|
||||||
|
"description": "Check if a path exists",
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": "sindresorhus/path-exists",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/path-exists#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"path",
|
"path",
|
||||||
"exists",
|
"exists",
|
||||||
|
|
@ -35,14 +31,9 @@
|
||||||
"access",
|
"access",
|
||||||
"stat"
|
"stat"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "path-exists",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/path-exists.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "4.0.0"
|
|
||||||
}
|
}
|
||||||
35
node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json
generated
vendored
35
node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/resolve-from#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"require",
|
"require",
|
||||||
"resolve",
|
"resolve",
|
||||||
|
|
@ -32,14 +28,9 @@
|
||||||
"like",
|
"like",
|
||||||
"import"
|
"import"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "resolve-from",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/resolve-from.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "5.0.0"
|
|
||||||
}
|
}
|
||||||
40
node_modules/@istanbuljs/load-nyc-config/package.json
generated
vendored
40
node_modules/@istanbuljs/load-nyc-config/package.json
generated
vendored
|
|
@ -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": {
|
"bugs": {
|
||||||
"url": "https://github.com/istanbuljs/load-nyc-config/issues"
|
"url": "https://github.com/istanbuljs/load-nyc-config/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"homepage": "https://github.com/istanbuljs/load-nyc-config#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"camelcase": "^5.3.1",
|
"camelcase": "^5.3.1",
|
||||||
"find-up": "^4.1.0",
|
"find-up": "^4.1.0",
|
||||||
"js-yaml": "^3.13.1",
|
"js-yaml": "^3.13.1",
|
||||||
"resolve-from": "^5.0.0"
|
"resolve-from": "^5.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Utility function to load nyc configuration",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"semver": "^6.3.0",
|
"semver": "^6.3.0",
|
||||||
"standard-version": "^7.0.0",
|
"standard-version": "^7.0.0",
|
||||||
"tap": "^14.10.5",
|
"tap": "^14.10.5",
|
||||||
"xo": "^0.25.3"
|
"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": {
|
"xo": {
|
||||||
"ignores": [
|
"ignores": [
|
||||||
"test/fixtures/extends/invalid.*"
|
"test/fixtures/extends/invalid.*"
|
||||||
|
|
|
||||||
38
node_modules/@istanbuljs/schema/package.json
generated
vendored
38
node_modules/@istanbuljs/schema/package.json
generated
vendored
|
|
@ -1,34 +1,30 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "@istanbuljs/schema",
|
||||||
"name": "Corey Farrell"
|
"version": "0.1.2",
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/istanbuljs/schema/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Schemas describing various structures used by nyc and istanbuljs",
|
"description": "Schemas describing various structures used by nyc and istanbuljs",
|
||||||
"devDependencies": {
|
"main": "index.js",
|
||||||
"standard-version": "^7.0.0",
|
"scripts": {
|
||||||
"tap": "^14.6.7",
|
"release": "standard-version --sign",
|
||||||
"xo": "^0.25.3"
|
"pretest": "xo",
|
||||||
|
"test": "tap",
|
||||||
|
"snap": "npm test -- --snapshot"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/istanbuljs/schema#readme",
|
"author": "Corey Farrell",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
|
||||||
"name": "@istanbuljs/schema",
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/istanbuljs/schema.git"
|
"url": "git+https://github.com/istanbuljs/schema.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"bugs": {
|
||||||
"pretest": "xo",
|
"url": "https://github.com/istanbuljs/schema/issues"
|
||||||
"release": "standard-version --sign",
|
|
||||||
"snap": "npm test -- --snapshot",
|
|
||||||
"test": "tap"
|
|
||||||
},
|
},
|
||||||
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
49
node_modules/@jest/console/node_modules/ansi-styles/package.json
generated
vendored
49
node_modules/@jest/console/node_modules/ansi-styles/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"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": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
|
||||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
|
|
@ -52,15 +43,15 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "ansi-styles",
|
"@types/color-name": "^1.1.1",
|
||||||
"repository": {
|
"color-convert": "^2.0.1"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor",
|
"@types/color-convert": "^1.9.0",
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.3.0",
|
||||||
},
|
"svg-term-cli": "^2.1.1",
|
||||||
"version": "4.2.1"
|
"tsd": "^0.11.0",
|
||||||
|
"xo": "^0.25.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
53
node_modules/@jest/console/node_modules/chalk/package.json
generated
vendored
53
node_modules/@jest/console/node_modules/chalk/package.json
generated
vendored
|
|
@ -1,33 +1,21 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "chalk",
|
||||||
"url": "https://github.com/chalk/chalk/issues"
|
"version": "3.0.0",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-styles": "^4.1.0",
|
|
||||||
"supports-color": "^7.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"devDependencies": {
|
"license": "MIT",
|
||||||
"ava": "^2.4.0",
|
"repository": "chalk/chalk",
|
||||||
"coveralls": "^3.0.7",
|
"main": "source",
|
||||||
"execa": "^3.2.0",
|
|
||||||
"import-fresh": "^3.1.0",
|
|
||||||
"matcha": "^0.7.0",
|
|
||||||
"nyc": "^14.1.1",
|
|
||||||
"resolve-from": "^5.0.0",
|
|
||||||
"tsd": "^0.7.4",
|
|
||||||
"xo": "^0.25.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && nyc ava && tsd",
|
||||||
|
"bench": "matcha benchmark.js"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/chalk#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -51,18 +39,21 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"main": "source",
|
"ansi-styles": "^4.1.0",
|
||||||
"name": "chalk",
|
"supports-color": "^7.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/chalk.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"bench": "matcha benchmark.js",
|
"ava": "^2.4.0",
|
||||||
"test": "xo && nyc ava && tsd"
|
"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": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
|
|
|
||||||
52
node_modules/@jest/console/node_modules/color-convert/package.json
generated
vendored
52
node_modules/@jest/console/node_modules/color-convert/package.json
generated
vendored
|
|
@ -1,30 +1,17 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-convert",
|
||||||
"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,
|
|
||||||
"description": "Plain color conversion functions",
|
"description": "Plain color conversion functions",
|
||||||
"devDependencies": {
|
"version": "2.0.1",
|
||||||
"chalk": "^2.4.2",
|
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||||
"xo": "^0.24.0"
|
"license": "MIT",
|
||||||
|
"repository": "Qix-/color-convert",
|
||||||
|
"scripts": {
|
||||||
|
"pretest": "xo",
|
||||||
|
"test": "node test/basic.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=7.0.0"
|
"node": ">=7.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"conversions.js",
|
|
||||||
"route.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -39,22 +26,23 @@
|
||||||
"ansi",
|
"ansi",
|
||||||
"ansi16"
|
"ansi16"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"files": [
|
||||||
"name": "color-convert",
|
"index.js",
|
||||||
"repository": {
|
"conversions.js",
|
||||||
"type": "git",
|
"route.js"
|
||||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
],
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"pretest": "xo",
|
|
||||||
"test": "node test/basic.js"
|
|
||||||
},
|
|
||||||
"version": "2.0.1",
|
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"default-case": 0,
|
"default-case": 0,
|
||||||
"no-inline-comments": 0,
|
"no-inline-comments": 0,
|
||||||
"operator-linebreak": 0
|
"operator-linebreak": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"chalk": "^2.4.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"color-name": "~1.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
33
node_modules/@jest/console/node_modules/color-name/package.json
generated
vendored
33
node_modules/@jest/console/node_modules/color-name/package.json
generated
vendored
|
|
@ -1,33 +1,28 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-name",
|
||||||
"name": "DY",
|
"version": "1.1.4",
|
||||||
"email": "dfcreative@gmail.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/colorjs/color-name/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A list of color names and its values",
|
"description": "A list of color names and its values",
|
||||||
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"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": [
|
"keywords": [
|
||||||
"color-name",
|
"color-name",
|
||||||
"color",
|
"color",
|
||||||
"color-keyword",
|
"color-keyword",
|
||||||
"keyword"
|
"keyword"
|
||||||
],
|
],
|
||||||
|
"author": "DY <dfcreative@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"bugs": {
|
||||||
"name": "color-name",
|
"url": "https://github.com/colorjs/color-name/issues"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+ssh://git@github.com/colorjs/color-name.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"homepage": "https://github.com/colorjs/color-name"
|
||||||
"test": "node test.js"
|
|
||||||
},
|
|
||||||
"version": "1.1.4"
|
|
||||||
}
|
}
|
||||||
35
node_modules/@jest/console/node_modules/has-flag/package.json
generated
vendored
35
node_modules/@jest/console/node_modules/has-flag/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"has",
|
"has",
|
||||||
"check",
|
"check",
|
||||||
|
|
@ -42,14 +38,9 @@
|
||||||
"minimist",
|
"minimist",
|
||||||
"optimist"
|
"optimist"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "has-flag",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "4.0.0"
|
|
||||||
}
|
}
|
||||||
39
node_modules/@jest/console/node_modules/supports-color/package.json
generated
vendored
39
node_modules/@jest/console/node_modules/supports-color/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"browser.js"
|
"browser.js"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -49,14 +41,13 @@
|
||||||
"truecolor",
|
"truecolor",
|
||||||
"16m"
|
"16m"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "supports-color",
|
"has-flag": "^4.0.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/supports-color.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava"
|
"ava": "^1.4.1",
|
||||||
|
"import-fresh": "^3.0.0",
|
||||||
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"version": "7.1.0"
|
"browser": "browser.js"
|
||||||
}
|
}
|
||||||
46
node_modules/@jest/console/package.json
generated
vendored
46
node_modules/@jest/console/package.json
generated
vendored
|
|
@ -1,34 +1,13 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
|
||||||
},
|
|
||||||
"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",
|
"name": "@jest/console",
|
||||||
"publishConfig": {
|
"version": "25.2.3",
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/facebook/jest.git",
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"directory": "packages/jest-console"
|
"directory": "packages/jest-console"
|
||||||
},
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "build/index.js",
|
||||||
"types": "build/index.d.ts",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<3.8": {
|
||||||
|
|
@ -37,5 +16,20 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": "25.2.3"
|
"dependencies": {
|
||||||
|
"@jest/source-map": "^25.2.1",
|
||||||
|
"chalk": "^3.0.0",
|
||||||
|
"jest-util": "^25.2.3",
|
||||||
|
"slash": "^3.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8.3"
|
||||||
|
},
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5"
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/core/node_modules/@jest/types/package.json
generated
vendored
44
node_modules/@jest/core/node_modules/@jest/types/package.json
generated
vendored
|
|
@ -1,34 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@jest/types",
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
"version": "25.2.3",
|
||||||
},
|
"repository": {
|
||||||
"bundleDependencies": false,
|
"type": "git",
|
||||||
"dependencies": {
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"@types/istanbul-lib-coverage": "^2.0.0",
|
"directory": "packages/jest-types"
|
||||||
"@types/istanbul-reports": "^1.1.1",
|
|
||||||
"@types/yargs": "^15.0.0",
|
|
||||||
"chalk": "^3.0.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/node": "*"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.3"
|
"node": ">= 8.3"
|
||||||
},
|
},
|
||||||
"gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5",
|
|
||||||
"homepage": "https://github.com/facebook/jest#readme",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "build/index.js",
|
"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",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<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"
|
||||||
}
|
}
|
||||||
55
node_modules/@jest/core/node_modules/@types/yargs/package.json
generated
vendored
55
node_modules/@jest/core/node_modules/@types/yargs/package.json
generated
vendored
|
|
@ -1,63 +1,66 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@types/yargs",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
"version": "15.0.4",
|
||||||
},
|
"description": "TypeScript definitions for yargs",
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Martin Poelstra",
|
"name": "Martin Poelstra",
|
||||||
"url": "https://github.com/poelstra"
|
"url": "https://github.com/poelstra",
|
||||||
|
"githubUsername": "poelstra"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mizunashi Mana",
|
"name": "Mizunashi Mana",
|
||||||
"url": "https://github.com/mizunashi-mana"
|
"url": "https://github.com/mizunashi-mana",
|
||||||
|
"githubUsername": "mizunashi-mana"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeffery Grajkowski",
|
"name": "Jeffery Grajkowski",
|
||||||
"url": "https://github.com/pushplay"
|
"url": "https://github.com/pushplay",
|
||||||
|
"githubUsername": "pushplay"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeff Kenney",
|
"name": "Jeff Kenney",
|
||||||
"url": "https://github.com/jeffkenney"
|
"url": "https://github.com/jeffkenney",
|
||||||
|
"githubUsername": "jeffkenney"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jimi",
|
"name": "Jimi (Dimitris) Charalampidis",
|
||||||
"url": "Dimitris"
|
"url": "https://github.com/JimiC",
|
||||||
|
"githubUsername": "JimiC"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Steffen Viken Valvåg",
|
"name": "Steffen Viken Valvåg",
|
||||||
"url": "https://github.com/steffenvv"
|
"url": "https://github.com/steffenvv",
|
||||||
|
"githubUsername": "steffenvv"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Emily Marigold Klassen",
|
"name": "Emily Marigold Klassen",
|
||||||
"url": "https://github.com/forivall"
|
"url": "https://github.com/forivall",
|
||||||
|
"githubUsername": "forivall"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ExE Boss",
|
"name": "ExE Boss",
|
||||||
"url": "https://github.com/ExE-Boss"
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Aankhen",
|
"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": "",
|
"main": "",
|
||||||
"name": "@types/yargs",
|
"types": "index.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
"directory": "types/yargs"
|
"directory": "types/yargs"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"typeScriptVersion": "3.0",
|
"dependencies": {
|
||||||
"types": "index.d.ts",
|
"@types/yargs-parser": "*"
|
||||||
|
},
|
||||||
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
||||||
"version": "15.0.4"
|
"typeScriptVersion": "3.0"
|
||||||
}
|
}
|
||||||
49
node_modules/@jest/core/node_modules/ansi-styles/package.json
generated
vendored
49
node_modules/@jest/core/node_modules/ansi-styles/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"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": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
|
||||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
|
|
@ -52,15 +43,15 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "ansi-styles",
|
"@types/color-name": "^1.1.1",
|
||||||
"repository": {
|
"color-convert": "^2.0.1"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor",
|
"@types/color-convert": "^1.9.0",
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.3.0",
|
||||||
},
|
"svg-term-cli": "^2.1.1",
|
||||||
"version": "4.2.1"
|
"tsd": "^0.11.0",
|
||||||
|
"xo": "^0.25.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
75
node_modules/@jest/core/node_modules/braces/package.json
generated
vendored
75
node_modules/@jest/core/node_modules/braces/package.json
generated
vendored
|
|
@ -1,53 +1,42 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "braces",
|
||||||
"name": "Jon Schlinkert",
|
"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.",
|
||||||
"url": "https://github.com/jonschlinkert"
|
"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": {
|
"bugs": {
|
||||||
"url": "https://github.com/micromatch/braces/issues"
|
"url": "https://github.com/micromatch/braces/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"files": [
|
||||||
{
|
"index.js",
|
||||||
"name": "Brian Woodward",
|
"lib"
|
||||||
"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"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha",
|
||||||
|
"benchmark": "node benchmark"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fill-range": "^7.0.1"
|
"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": {
|
"devDependencies": {
|
||||||
"ansi-colors": "^3.2.4",
|
"ansi-colors": "^3.2.4",
|
||||||
"bash-path": "^2.0.1",
|
"bash-path": "^2.0.1",
|
||||||
"gulp-format-md": "^2.0.0",
|
"gulp-format-md": "^2.0.0",
|
||||||
"mocha": "^6.1.1"
|
"mocha": "^6.1.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
|
||||||
"node": ">=8"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"lib"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/micromatch/braces",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"alpha",
|
"alpha",
|
||||||
"alphabetical",
|
"alphabetical",
|
||||||
|
|
@ -72,17 +61,6 @@
|
||||||
"ranges",
|
"ranges",
|
||||||
"sh"
|
"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": {
|
"verb": {
|
||||||
"toc": false,
|
"toc": false,
|
||||||
"layout": "default",
|
"layout": "default",
|
||||||
|
|
@ -95,6 +73,5 @@
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"gulp-format-md"
|
"gulp-format-md"
|
||||||
]
|
]
|
||||||
},
|
}
|
||||||
"version": "3.0.2"
|
|
||||||
}
|
}
|
||||||
53
node_modules/@jest/core/node_modules/chalk/package.json
generated
vendored
53
node_modules/@jest/core/node_modules/chalk/package.json
generated
vendored
|
|
@ -1,33 +1,21 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "chalk",
|
||||||
"url": "https://github.com/chalk/chalk/issues"
|
"version": "3.0.0",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-styles": "^4.1.0",
|
|
||||||
"supports-color": "^7.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"devDependencies": {
|
"license": "MIT",
|
||||||
"ava": "^2.4.0",
|
"repository": "chalk/chalk",
|
||||||
"coveralls": "^3.0.7",
|
"main": "source",
|
||||||
"execa": "^3.2.0",
|
|
||||||
"import-fresh": "^3.1.0",
|
|
||||||
"matcha": "^0.7.0",
|
|
||||||
"nyc": "^14.1.1",
|
|
||||||
"resolve-from": "^5.0.0",
|
|
||||||
"tsd": "^0.7.4",
|
|
||||||
"xo": "^0.25.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && nyc ava && tsd",
|
||||||
|
"bench": "matcha benchmark.js"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/chalk#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -51,18 +39,21 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"main": "source",
|
"ansi-styles": "^4.1.0",
|
||||||
"name": "chalk",
|
"supports-color": "^7.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/chalk.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"bench": "matcha benchmark.js",
|
"ava": "^2.4.0",
|
||||||
"test": "xo && nyc ava && tsd"
|
"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": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
|
|
|
||||||
52
node_modules/@jest/core/node_modules/color-convert/package.json
generated
vendored
52
node_modules/@jest/core/node_modules/color-convert/package.json
generated
vendored
|
|
@ -1,30 +1,17 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-convert",
|
||||||
"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,
|
|
||||||
"description": "Plain color conversion functions",
|
"description": "Plain color conversion functions",
|
||||||
"devDependencies": {
|
"version": "2.0.1",
|
||||||
"chalk": "^2.4.2",
|
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||||
"xo": "^0.24.0"
|
"license": "MIT",
|
||||||
|
"repository": "Qix-/color-convert",
|
||||||
|
"scripts": {
|
||||||
|
"pretest": "xo",
|
||||||
|
"test": "node test/basic.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=7.0.0"
|
"node": ">=7.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"conversions.js",
|
|
||||||
"route.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -39,22 +26,23 @@
|
||||||
"ansi",
|
"ansi",
|
||||||
"ansi16"
|
"ansi16"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"files": [
|
||||||
"name": "color-convert",
|
"index.js",
|
||||||
"repository": {
|
"conversions.js",
|
||||||
"type": "git",
|
"route.js"
|
||||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
],
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"pretest": "xo",
|
|
||||||
"test": "node test/basic.js"
|
|
||||||
},
|
|
||||||
"version": "2.0.1",
|
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"default-case": 0,
|
"default-case": 0,
|
||||||
"no-inline-comments": 0,
|
"no-inline-comments": 0,
|
||||||
"operator-linebreak": 0
|
"operator-linebreak": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"chalk": "^2.4.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"color-name": "~1.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
33
node_modules/@jest/core/node_modules/color-name/package.json
generated
vendored
33
node_modules/@jest/core/node_modules/color-name/package.json
generated
vendored
|
|
@ -1,33 +1,28 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-name",
|
||||||
"name": "DY",
|
"version": "1.1.4",
|
||||||
"email": "dfcreative@gmail.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/colorjs/color-name/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A list of color names and its values",
|
"description": "A list of color names and its values",
|
||||||
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"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": [
|
"keywords": [
|
||||||
"color-name",
|
"color-name",
|
||||||
"color",
|
"color",
|
||||||
"color-keyword",
|
"color-keyword",
|
||||||
"keyword"
|
"keyword"
|
||||||
],
|
],
|
||||||
|
"author": "DY <dfcreative@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"bugs": {
|
||||||
"name": "color-name",
|
"url": "https://github.com/colorjs/color-name/issues"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+ssh://git@github.com/colorjs/color-name.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"homepage": "https://github.com/colorjs/color-name"
|
||||||
"test": "node test.js"
|
|
||||||
},
|
|
||||||
"version": "1.1.4"
|
|
||||||
}
|
}
|
||||||
70
node_modules/@jest/core/node_modules/fill-range/package.json
generated
vendored
70
node_modules/@jest/core/node_modules/fill-range/package.json
generated
vendored
|
|
@ -1,49 +1,38 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "fill-range",
|
||||||
"name": "Jon Schlinkert",
|
"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`",
|
||||||
"url": "https://github.com/jonschlinkert"
|
"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": {
|
"bugs": {
|
||||||
"url": "https://github.com/jonschlinkert/fill-range/issues"
|
"url": "https://github.com/jonschlinkert/fill-range/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"files": [
|
||||||
{
|
"index.js"
|
||||||
"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"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"to-regex-range": "^5.0.1"
|
"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": {
|
"devDependencies": {
|
||||||
"gulp-format-md": "^2.0.0",
|
"gulp-format-md": "^2.0.0",
|
||||||
"mocha": "^6.1.1"
|
"mocha": "^6.1.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
|
||||||
"node": ">=8"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"index.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/jonschlinkert/fill-range",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"alpha",
|
"alpha",
|
||||||
"alphabetical",
|
"alphabetical",
|
||||||
|
|
@ -64,16 +53,6 @@
|
||||||
"regex",
|
"regex",
|
||||||
"sh"
|
"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": {
|
"verb": {
|
||||||
"toc": false,
|
"toc": false,
|
||||||
"layout": "default",
|
"layout": "default",
|
||||||
|
|
@ -86,6 +65,5 @@
|
||||||
"lint": {
|
"lint": {
|
||||||
"reflinks": true
|
"reflinks": true
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"version": "7.0.1"
|
|
||||||
}
|
}
|
||||||
35
node_modules/@jest/core/node_modules/has-flag/package.json
generated
vendored
35
node_modules/@jest/core/node_modules/has-flag/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"has",
|
"has",
|
||||||
"check",
|
"check",
|
||||||
|
|
@ -42,14 +38,9 @@
|
||||||
"minimist",
|
"minimist",
|
||||||
"optimist"
|
"optimist"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "has-flag",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "4.0.0"
|
|
||||||
}
|
}
|
||||||
61
node_modules/@jest/core/node_modules/is-number/package.json
generated
vendored
61
node_modules/@jest/core/node_modules/is-number/package.json
generated
vendored
|
|
@ -1,41 +1,35 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "is-number",
|
||||||
"name": "Jon Schlinkert",
|
"description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
|
||||||
"url": "https://github.com/jonschlinkert"
|
"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": {
|
"bugs": {
|
||||||
"url": "https://github.com/jonschlinkert/is-number/issues"
|
"url": "https://github.com/jonschlinkert/is-number/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"files": [
|
||||||
{
|
"index.js"
|
||||||
"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"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"deprecated": false,
|
"main": "index.js",
|
||||||
"description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
|
"engines": {
|
||||||
|
"node": ">=0.12.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ansi": "^0.3.1",
|
"ansi": "^0.3.1",
|
||||||
"benchmark": "^2.1.4",
|
"benchmark": "^2.1.4",
|
||||||
"gulp-format-md": "^1.0.0",
|
"gulp-format-md": "^1.0.0",
|
||||||
"mocha": "^3.5.3"
|
"mocha": "^3.5.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
|
||||||
"node": ">=0.12.0"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"index.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/jonschlinkert/is-number",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"cast",
|
"cast",
|
||||||
"check",
|
"check",
|
||||||
|
|
@ -64,16 +58,6 @@
|
||||||
"typeof",
|
"typeof",
|
||||||
"value"
|
"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": {
|
"verb": {
|
||||||
"toc": false,
|
"toc": false,
|
||||||
"layout": "default",
|
"layout": "default",
|
||||||
|
|
@ -94,6 +78,5 @@
|
||||||
"lint": {
|
"lint": {
|
||||||
"reflinks": true
|
"reflinks": true
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"version": "7.0.0"
|
|
||||||
}
|
}
|
||||||
116
node_modules/@jest/core/node_modules/micromatch/package.json
generated
vendored
116
node_modules/@jest/core/node_modules/micromatch/package.json
generated
vendored
|
|
@ -1,76 +1,44 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "micromatch",
|
||||||
"name": "Jon Schlinkert",
|
"description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
|
||||||
"url": "https://github.com/jonschlinkert"
|
"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 <drpizza@quiscalusmexicanus.org> (https://github.com/drpizza)"
|
||||||
|
],
|
||||||
|
"repository": "micromatch/micromatch",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/micromatch/micromatch/issues"
|
"url": "https://github.com/micromatch/micromatch/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"files": [
|
||||||
{
|
"index.js"
|
||||||
"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"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"braces": "^3.0.1",
|
"braces": "^3.0.1",
|
||||||
"picomatch": "^2.0.5"
|
"picomatch": "^2.0.5"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"fill-range": "^7.0.1",
|
"fill-range": "^7.0.1",
|
||||||
"gulp-format-md": "^2.0.0",
|
"gulp-format-md": "^2.0.0",
|
||||||
|
|
@ -78,13 +46,6 @@
|
||||||
"mocha": "^5.2.0",
|
"mocha": "^5.2.0",
|
||||||
"time-require": "github:jonschlinkert/time-require"
|
"time-require": "github:jonschlinkert/time-require"
|
||||||
},
|
},
|
||||||
"engines": {
|
|
||||||
"node": ">=8"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"index.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/micromatch/micromatch",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bash",
|
"bash",
|
||||||
"bracket",
|
"bracket",
|
||||||
|
|
@ -125,16 +86,6 @@
|
||||||
"star",
|
"star",
|
||||||
"wildcard"
|
"wildcard"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
|
||||||
"main": "index.js",
|
|
||||||
"name": "micromatch",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/micromatch/micromatch.git"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "mocha"
|
|
||||||
},
|
|
||||||
"verb": {
|
"verb": {
|
||||||
"toc": "collapsible",
|
"toc": "collapsible",
|
||||||
"layout": "default",
|
"layout": "default",
|
||||||
|
|
@ -163,6 +114,5 @@
|
||||||
"minimatch",
|
"minimatch",
|
||||||
"multimatch"
|
"multimatch"
|
||||||
]
|
]
|
||||||
},
|
}
|
||||||
"version": "4.0.2"
|
|
||||||
}
|
}
|
||||||
39
node_modules/@jest/core/node_modules/supports-color/package.json
generated
vendored
39
node_modules/@jest/core/node_modules/supports-color/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"browser.js"
|
"browser.js"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -49,14 +41,13 @@
|
||||||
"truecolor",
|
"truecolor",
|
||||||
"16m"
|
"16m"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "supports-color",
|
"has-flag": "^4.0.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/supports-color.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava"
|
"ava": "^1.4.1",
|
||||||
|
"import-fresh": "^3.0.0",
|
||||||
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"version": "7.1.0"
|
"browser": "browser.js"
|
||||||
}
|
}
|
||||||
56
node_modules/@jest/core/node_modules/to-regex-range/package.json
generated
vendored
56
node_modules/@jest/core/node_modules/to-regex-range/package.json
generated
vendored
|
|
@ -1,27 +1,31 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "to-regex-range",
|
||||||
"name": "Jon Schlinkert",
|
"description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.",
|
||||||
"url": "https://github.com/jonschlinkert"
|
"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": {
|
"bugs": {
|
||||||
"url": "https://github.com/micromatch/to-regex-range/issues"
|
"url": "https://github.com/micromatch/to-regex-range/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"files": [
|
||||||
{
|
"index.js"
|
||||||
"name": "Jon Schlinkert",
|
|
||||||
"url": "http://twitter.com/jonschlinkert"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Rouven Weßling",
|
|
||||||
"url": "www.rouvenwessling.de"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"is-number": "^7.0.0"
|
"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": {
|
"devDependencies": {
|
||||||
"fill-range": "^6.0.0",
|
"fill-range": "^6.0.0",
|
||||||
"gulp-format-md": "^2.0.0",
|
"gulp-format-md": "^2.0.0",
|
||||||
|
|
@ -29,13 +33,6 @@
|
||||||
"text-table": "^0.2.0",
|
"text-table": "^0.2.0",
|
||||||
"time-diff": "^0.3.1"
|
"time-diff": "^0.3.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
|
||||||
"node": ">=8.0"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"index.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/micromatch/to-regex-range",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bash",
|
"bash",
|
||||||
"date",
|
"date",
|
||||||
|
|
@ -61,16 +58,6 @@
|
||||||
"regular expression",
|
"regular expression",
|
||||||
"sequence"
|
"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": {
|
"verb": {
|
||||||
"layout": "default",
|
"layout": "default",
|
||||||
"toc": false,
|
"toc": false,
|
||||||
|
|
@ -97,6 +84,5 @@
|
||||||
"repeat-string"
|
"repeat-string"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"version": "5.0.1"
|
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/core/package.json
generated
vendored
44
node_modules/@jest/core/package.json
generated
vendored
|
|
@ -1,8 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@jest/core",
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
"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": {
|
"dependencies": {
|
||||||
"@jest/console": "^25.2.3",
|
"@jest/console": "^25.2.3",
|
||||||
"@jest/reporters": "^25.2.4",
|
"@jest/reporters": "^25.2.4",
|
||||||
|
|
@ -33,8 +41,6 @@
|
||||||
"slash": "^3.0.0",
|
"slash": "^3.0.0",
|
||||||
"strip-ansi": "^6.0.0"
|
"strip-ansi": "^6.0.0"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Delightful JavaScript Testing.",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@jest/test-sequencer": "^25.2.4",
|
"@jest/test-sequencer": "^25.2.4",
|
||||||
"@types/exit": "^0.1.30",
|
"@types/exit": "^0.1.30",
|
||||||
|
|
@ -47,8 +53,16 @@
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.3"
|
"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/",
|
"homepage": "https://jestjs.io/",
|
||||||
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ava",
|
"ava",
|
||||||
"babel",
|
"babel",
|
||||||
|
|
@ -75,24 +89,8 @@
|
||||||
"typescript",
|
"typescript",
|
||||||
"watch"
|
"watch"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
|
||||||
"main": "build/jest.js",
|
|
||||||
"name": "@jest/core",
|
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"repository": {
|
"gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/environment/node_modules/@jest/types/package.json
generated
vendored
44
node_modules/@jest/environment/node_modules/@jest/types/package.json
generated
vendored
|
|
@ -1,34 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@jest/types",
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
"version": "25.2.3",
|
||||||
},
|
"repository": {
|
||||||
"bundleDependencies": false,
|
"type": "git",
|
||||||
"dependencies": {
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"@types/istanbul-lib-coverage": "^2.0.0",
|
"directory": "packages/jest-types"
|
||||||
"@types/istanbul-reports": "^1.1.1",
|
|
||||||
"@types/yargs": "^15.0.0",
|
|
||||||
"chalk": "^3.0.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/node": "*"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.3"
|
"node": ">= 8.3"
|
||||||
},
|
},
|
||||||
"gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5",
|
|
||||||
"homepage": "https://github.com/facebook/jest#readme",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "build/index.js",
|
"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",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<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"
|
||||||
}
|
}
|
||||||
55
node_modules/@jest/environment/node_modules/@types/yargs/package.json
generated
vendored
55
node_modules/@jest/environment/node_modules/@types/yargs/package.json
generated
vendored
|
|
@ -1,63 +1,66 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@types/yargs",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
"version": "15.0.4",
|
||||||
},
|
"description": "TypeScript definitions for yargs",
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Martin Poelstra",
|
"name": "Martin Poelstra",
|
||||||
"url": "https://github.com/poelstra"
|
"url": "https://github.com/poelstra",
|
||||||
|
"githubUsername": "poelstra"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mizunashi Mana",
|
"name": "Mizunashi Mana",
|
||||||
"url": "https://github.com/mizunashi-mana"
|
"url": "https://github.com/mizunashi-mana",
|
||||||
|
"githubUsername": "mizunashi-mana"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeffery Grajkowski",
|
"name": "Jeffery Grajkowski",
|
||||||
"url": "https://github.com/pushplay"
|
"url": "https://github.com/pushplay",
|
||||||
|
"githubUsername": "pushplay"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeff Kenney",
|
"name": "Jeff Kenney",
|
||||||
"url": "https://github.com/jeffkenney"
|
"url": "https://github.com/jeffkenney",
|
||||||
|
"githubUsername": "jeffkenney"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jimi",
|
"name": "Jimi (Dimitris) Charalampidis",
|
||||||
"url": "Dimitris"
|
"url": "https://github.com/JimiC",
|
||||||
|
"githubUsername": "JimiC"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Steffen Viken Valvåg",
|
"name": "Steffen Viken Valvåg",
|
||||||
"url": "https://github.com/steffenvv"
|
"url": "https://github.com/steffenvv",
|
||||||
|
"githubUsername": "steffenvv"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Emily Marigold Klassen",
|
"name": "Emily Marigold Klassen",
|
||||||
"url": "https://github.com/forivall"
|
"url": "https://github.com/forivall",
|
||||||
|
"githubUsername": "forivall"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ExE Boss",
|
"name": "ExE Boss",
|
||||||
"url": "https://github.com/ExE-Boss"
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Aankhen",
|
"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": "",
|
"main": "",
|
||||||
"name": "@types/yargs",
|
"types": "index.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
"directory": "types/yargs"
|
"directory": "types/yargs"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"typeScriptVersion": "3.0",
|
"dependencies": {
|
||||||
"types": "index.d.ts",
|
"@types/yargs-parser": "*"
|
||||||
|
},
|
||||||
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
||||||
"version": "15.0.4"
|
"typeScriptVersion": "3.0"
|
||||||
}
|
}
|
||||||
49
node_modules/@jest/environment/node_modules/ansi-styles/package.json
generated
vendored
49
node_modules/@jest/environment/node_modules/ansi-styles/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"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": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
|
||||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
|
|
@ -52,15 +43,15 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "ansi-styles",
|
"@types/color-name": "^1.1.1",
|
||||||
"repository": {
|
"color-convert": "^2.0.1"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor",
|
"@types/color-convert": "^1.9.0",
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.3.0",
|
||||||
},
|
"svg-term-cli": "^2.1.1",
|
||||||
"version": "4.2.1"
|
"tsd": "^0.11.0",
|
||||||
|
"xo": "^0.25.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
53
node_modules/@jest/environment/node_modules/chalk/package.json
generated
vendored
53
node_modules/@jest/environment/node_modules/chalk/package.json
generated
vendored
|
|
@ -1,33 +1,21 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "chalk",
|
||||||
"url": "https://github.com/chalk/chalk/issues"
|
"version": "3.0.0",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-styles": "^4.1.0",
|
|
||||||
"supports-color": "^7.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"devDependencies": {
|
"license": "MIT",
|
||||||
"ava": "^2.4.0",
|
"repository": "chalk/chalk",
|
||||||
"coveralls": "^3.0.7",
|
"main": "source",
|
||||||
"execa": "^3.2.0",
|
|
||||||
"import-fresh": "^3.1.0",
|
|
||||||
"matcha": "^0.7.0",
|
|
||||||
"nyc": "^14.1.1",
|
|
||||||
"resolve-from": "^5.0.0",
|
|
||||||
"tsd": "^0.7.4",
|
|
||||||
"xo": "^0.25.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && nyc ava && tsd",
|
||||||
|
"bench": "matcha benchmark.js"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/chalk#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -51,18 +39,21 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"main": "source",
|
"ansi-styles": "^4.1.0",
|
||||||
"name": "chalk",
|
"supports-color": "^7.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/chalk.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"bench": "matcha benchmark.js",
|
"ava": "^2.4.0",
|
||||||
"test": "xo && nyc ava && tsd"
|
"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": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
|
|
|
||||||
52
node_modules/@jest/environment/node_modules/color-convert/package.json
generated
vendored
52
node_modules/@jest/environment/node_modules/color-convert/package.json
generated
vendored
|
|
@ -1,30 +1,17 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-convert",
|
||||||
"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,
|
|
||||||
"description": "Plain color conversion functions",
|
"description": "Plain color conversion functions",
|
||||||
"devDependencies": {
|
"version": "2.0.1",
|
||||||
"chalk": "^2.4.2",
|
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||||
"xo": "^0.24.0"
|
"license": "MIT",
|
||||||
|
"repository": "Qix-/color-convert",
|
||||||
|
"scripts": {
|
||||||
|
"pretest": "xo",
|
||||||
|
"test": "node test/basic.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=7.0.0"
|
"node": ">=7.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"conversions.js",
|
|
||||||
"route.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -39,22 +26,23 @@
|
||||||
"ansi",
|
"ansi",
|
||||||
"ansi16"
|
"ansi16"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"files": [
|
||||||
"name": "color-convert",
|
"index.js",
|
||||||
"repository": {
|
"conversions.js",
|
||||||
"type": "git",
|
"route.js"
|
||||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
],
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"pretest": "xo",
|
|
||||||
"test": "node test/basic.js"
|
|
||||||
},
|
|
||||||
"version": "2.0.1",
|
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"default-case": 0,
|
"default-case": 0,
|
||||||
"no-inline-comments": 0,
|
"no-inline-comments": 0,
|
||||||
"operator-linebreak": 0
|
"operator-linebreak": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"chalk": "^2.4.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"color-name": "~1.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
33
node_modules/@jest/environment/node_modules/color-name/package.json
generated
vendored
33
node_modules/@jest/environment/node_modules/color-name/package.json
generated
vendored
|
|
@ -1,33 +1,28 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-name",
|
||||||
"name": "DY",
|
"version": "1.1.4",
|
||||||
"email": "dfcreative@gmail.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/colorjs/color-name/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A list of color names and its values",
|
"description": "A list of color names and its values",
|
||||||
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"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": [
|
"keywords": [
|
||||||
"color-name",
|
"color-name",
|
||||||
"color",
|
"color",
|
||||||
"color-keyword",
|
"color-keyword",
|
||||||
"keyword"
|
"keyword"
|
||||||
],
|
],
|
||||||
|
"author": "DY <dfcreative@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"bugs": {
|
||||||
"name": "color-name",
|
"url": "https://github.com/colorjs/color-name/issues"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+ssh://git@github.com/colorjs/color-name.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"homepage": "https://github.com/colorjs/color-name"
|
||||||
"test": "node test.js"
|
|
||||||
},
|
|
||||||
"version": "1.1.4"
|
|
||||||
}
|
}
|
||||||
35
node_modules/@jest/environment/node_modules/has-flag/package.json
generated
vendored
35
node_modules/@jest/environment/node_modules/has-flag/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"has",
|
"has",
|
||||||
"check",
|
"check",
|
||||||
|
|
@ -42,14 +38,9 @@
|
||||||
"minimist",
|
"minimist",
|
||||||
"optimist"
|
"optimist"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "has-flag",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "4.0.0"
|
|
||||||
}
|
}
|
||||||
39
node_modules/@jest/environment/node_modules/supports-color/package.json
generated
vendored
39
node_modules/@jest/environment/node_modules/supports-color/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"browser.js"
|
"browser.js"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -49,14 +41,13 @@
|
||||||
"truecolor",
|
"truecolor",
|
||||||
"16m"
|
"16m"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "supports-color",
|
"has-flag": "^4.0.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/supports-color.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava"
|
"ava": "^1.4.1",
|
||||||
|
"import-fresh": "^3.0.0",
|
||||||
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"version": "7.1.0"
|
"browser": "browser.js"
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/environment/package.json
generated
vendored
44
node_modules/@jest/environment/package.json
generated
vendored
|
|
@ -1,33 +1,13 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
|
||||||
},
|
|
||||||
"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",
|
"name": "@jest/environment",
|
||||||
"publishConfig": {
|
"version": "25.2.4",
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/facebook/jest.git",
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"directory": "packages/jest-environment"
|
"directory": "packages/jest-environment"
|
||||||
},
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "build/index.js",
|
||||||
"types": "build/index.d.ts",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<3.8": {
|
||||||
|
|
@ -36,5 +16,19 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": "25.2.4"
|
"dependencies": {
|
||||||
|
"@jest/fake-timers": "^25.2.4",
|
||||||
|
"@jest/types": "^25.2.3",
|
||||||
|
"jest-mock": "^25.2.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8.3"
|
||||||
|
},
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68"
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/fake-timers/node_modules/@jest/types/package.json
generated
vendored
44
node_modules/@jest/fake-timers/node_modules/@jest/types/package.json
generated
vendored
|
|
@ -1,34 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@jest/types",
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
"version": "25.2.3",
|
||||||
},
|
"repository": {
|
||||||
"bundleDependencies": false,
|
"type": "git",
|
||||||
"dependencies": {
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"@types/istanbul-lib-coverage": "^2.0.0",
|
"directory": "packages/jest-types"
|
||||||
"@types/istanbul-reports": "^1.1.1",
|
|
||||||
"@types/yargs": "^15.0.0",
|
|
||||||
"chalk": "^3.0.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/node": "*"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.3"
|
"node": ">= 8.3"
|
||||||
},
|
},
|
||||||
"gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5",
|
|
||||||
"homepage": "https://github.com/facebook/jest#readme",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "build/index.js",
|
"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",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<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"
|
||||||
}
|
}
|
||||||
55
node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json
generated
vendored
55
node_modules/@jest/fake-timers/node_modules/@types/yargs/package.json
generated
vendored
|
|
@ -1,63 +1,66 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@types/yargs",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
"version": "15.0.4",
|
||||||
},
|
"description": "TypeScript definitions for yargs",
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Martin Poelstra",
|
"name": "Martin Poelstra",
|
||||||
"url": "https://github.com/poelstra"
|
"url": "https://github.com/poelstra",
|
||||||
|
"githubUsername": "poelstra"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mizunashi Mana",
|
"name": "Mizunashi Mana",
|
||||||
"url": "https://github.com/mizunashi-mana"
|
"url": "https://github.com/mizunashi-mana",
|
||||||
|
"githubUsername": "mizunashi-mana"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeffery Grajkowski",
|
"name": "Jeffery Grajkowski",
|
||||||
"url": "https://github.com/pushplay"
|
"url": "https://github.com/pushplay",
|
||||||
|
"githubUsername": "pushplay"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeff Kenney",
|
"name": "Jeff Kenney",
|
||||||
"url": "https://github.com/jeffkenney"
|
"url": "https://github.com/jeffkenney",
|
||||||
|
"githubUsername": "jeffkenney"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jimi",
|
"name": "Jimi (Dimitris) Charalampidis",
|
||||||
"url": "Dimitris"
|
"url": "https://github.com/JimiC",
|
||||||
|
"githubUsername": "JimiC"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Steffen Viken Valvåg",
|
"name": "Steffen Viken Valvåg",
|
||||||
"url": "https://github.com/steffenvv"
|
"url": "https://github.com/steffenvv",
|
||||||
|
"githubUsername": "steffenvv"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Emily Marigold Klassen",
|
"name": "Emily Marigold Klassen",
|
||||||
"url": "https://github.com/forivall"
|
"url": "https://github.com/forivall",
|
||||||
|
"githubUsername": "forivall"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ExE Boss",
|
"name": "ExE Boss",
|
||||||
"url": "https://github.com/ExE-Boss"
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Aankhen",
|
"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": "",
|
"main": "",
|
||||||
"name": "@types/yargs",
|
"types": "index.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
"directory": "types/yargs"
|
"directory": "types/yargs"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"typeScriptVersion": "3.0",
|
"dependencies": {
|
||||||
"types": "index.d.ts",
|
"@types/yargs-parser": "*"
|
||||||
|
},
|
||||||
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
||||||
"version": "15.0.4"
|
"typeScriptVersion": "3.0"
|
||||||
}
|
}
|
||||||
49
node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json
generated
vendored
49
node_modules/@jest/fake-timers/node_modules/ansi-styles/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"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": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
|
||||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
|
|
@ -52,15 +43,15 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "ansi-styles",
|
"@types/color-name": "^1.1.1",
|
||||||
"repository": {
|
"color-convert": "^2.0.1"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor",
|
"@types/color-convert": "^1.9.0",
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.3.0",
|
||||||
},
|
"svg-term-cli": "^2.1.1",
|
||||||
"version": "4.2.1"
|
"tsd": "^0.11.0",
|
||||||
|
"xo": "^0.25.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
53
node_modules/@jest/fake-timers/node_modules/chalk/package.json
generated
vendored
53
node_modules/@jest/fake-timers/node_modules/chalk/package.json
generated
vendored
|
|
@ -1,33 +1,21 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "chalk",
|
||||||
"url": "https://github.com/chalk/chalk/issues"
|
"version": "3.0.0",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-styles": "^4.1.0",
|
|
||||||
"supports-color": "^7.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"devDependencies": {
|
"license": "MIT",
|
||||||
"ava": "^2.4.0",
|
"repository": "chalk/chalk",
|
||||||
"coveralls": "^3.0.7",
|
"main": "source",
|
||||||
"execa": "^3.2.0",
|
|
||||||
"import-fresh": "^3.1.0",
|
|
||||||
"matcha": "^0.7.0",
|
|
||||||
"nyc": "^14.1.1",
|
|
||||||
"resolve-from": "^5.0.0",
|
|
||||||
"tsd": "^0.7.4",
|
|
||||||
"xo": "^0.25.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && nyc ava && tsd",
|
||||||
|
"bench": "matcha benchmark.js"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/chalk#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -51,18 +39,21 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"main": "source",
|
"ansi-styles": "^4.1.0",
|
||||||
"name": "chalk",
|
"supports-color": "^7.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/chalk.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"bench": "matcha benchmark.js",
|
"ava": "^2.4.0",
|
||||||
"test": "xo && nyc ava && tsd"
|
"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": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
|
|
|
||||||
52
node_modules/@jest/fake-timers/node_modules/color-convert/package.json
generated
vendored
52
node_modules/@jest/fake-timers/node_modules/color-convert/package.json
generated
vendored
|
|
@ -1,30 +1,17 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-convert",
|
||||||
"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,
|
|
||||||
"description": "Plain color conversion functions",
|
"description": "Plain color conversion functions",
|
||||||
"devDependencies": {
|
"version": "2.0.1",
|
||||||
"chalk": "^2.4.2",
|
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||||
"xo": "^0.24.0"
|
"license": "MIT",
|
||||||
|
"repository": "Qix-/color-convert",
|
||||||
|
"scripts": {
|
||||||
|
"pretest": "xo",
|
||||||
|
"test": "node test/basic.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=7.0.0"
|
"node": ">=7.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"conversions.js",
|
|
||||||
"route.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -39,22 +26,23 @@
|
||||||
"ansi",
|
"ansi",
|
||||||
"ansi16"
|
"ansi16"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"files": [
|
||||||
"name": "color-convert",
|
"index.js",
|
||||||
"repository": {
|
"conversions.js",
|
||||||
"type": "git",
|
"route.js"
|
||||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
],
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"pretest": "xo",
|
|
||||||
"test": "node test/basic.js"
|
|
||||||
},
|
|
||||||
"version": "2.0.1",
|
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"default-case": 0,
|
"default-case": 0,
|
||||||
"no-inline-comments": 0,
|
"no-inline-comments": 0,
|
||||||
"operator-linebreak": 0
|
"operator-linebreak": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"chalk": "^2.4.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"color-name": "~1.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
33
node_modules/@jest/fake-timers/node_modules/color-name/package.json
generated
vendored
33
node_modules/@jest/fake-timers/node_modules/color-name/package.json
generated
vendored
|
|
@ -1,33 +1,28 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-name",
|
||||||
"name": "DY",
|
"version": "1.1.4",
|
||||||
"email": "dfcreative@gmail.com"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/colorjs/color-name/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A list of color names and its values",
|
"description": "A list of color names and its values",
|
||||||
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"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": [
|
"keywords": [
|
||||||
"color-name",
|
"color-name",
|
||||||
"color",
|
"color",
|
||||||
"color-keyword",
|
"color-keyword",
|
||||||
"keyword"
|
"keyword"
|
||||||
],
|
],
|
||||||
|
"author": "DY <dfcreative@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"bugs": {
|
||||||
"name": "color-name",
|
"url": "https://github.com/colorjs/color-name/issues"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+ssh://git@github.com/colorjs/color-name.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"homepage": "https://github.com/colorjs/color-name"
|
||||||
"test": "node test.js"
|
|
||||||
},
|
|
||||||
"version": "1.1.4"
|
|
||||||
}
|
}
|
||||||
35
node_modules/@jest/fake-timers/node_modules/has-flag/package.json
generated
vendored
35
node_modules/@jest/fake-timers/node_modules/has-flag/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava && tsd"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"has",
|
"has",
|
||||||
"check",
|
"check",
|
||||||
|
|
@ -42,14 +38,9 @@
|
||||||
"minimist",
|
"minimist",
|
||||||
"optimist"
|
"optimist"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"devDependencies": {
|
||||||
"name": "has-flag",
|
"ava": "^1.4.1",
|
||||||
"repository": {
|
"tsd": "^0.7.2",
|
||||||
"type": "git",
|
"xo": "^0.24.0"
|
||||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
}
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "xo && ava && tsd"
|
|
||||||
},
|
|
||||||
"version": "4.0.0"
|
|
||||||
}
|
}
|
||||||
39
node_modules/@jest/fake-timers/node_modules/supports-color/package.json
generated
vendored
39
node_modules/@jest/fake-timers/node_modules/supports-color/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && ava"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"browser.js"
|
"browser.js"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -49,14 +41,13 @@
|
||||||
"truecolor",
|
"truecolor",
|
||||||
"16m"
|
"16m"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "supports-color",
|
"has-flag": "^4.0.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/supports-color.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"test": "xo && ava"
|
"ava": "^1.4.1",
|
||||||
|
"import-fresh": "^3.0.0",
|
||||||
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"version": "7.1.0"
|
"browser": "browser.js"
|
||||||
}
|
}
|
||||||
50
node_modules/@jest/fake-timers/package.json
generated
vendored
50
node_modules/@jest/fake-timers/package.json
generated
vendored
|
|
@ -1,36 +1,13 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"@jest/types": "^25.2.3",
|
|
||||||
"jest-message-util": "^25.2.4",
|
|
||||||
"jest-mock": "^25.2.3",
|
|
||||||
"jest-util": "^25.2.3",
|
|
||||||
"lolex": "^5.0.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/lolex": "^5.1.0",
|
|
||||||
"@types/node": "*"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 8.3"
|
|
||||||
},
|
|
||||||
"gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68",
|
|
||||||
"homepage": "https://github.com/facebook/jest#readme",
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "build/index.js",
|
|
||||||
"name": "@jest/fake-timers",
|
"name": "@jest/fake-timers",
|
||||||
"publishConfig": {
|
"version": "25.2.4",
|
||||||
"access": "public"
|
|
||||||
},
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/facebook/jest.git",
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"directory": "packages/jest-fake-timers"
|
"directory": "packages/jest-fake-timers"
|
||||||
},
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "build/index.js",
|
||||||
"types": "build/index.d.ts",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<3.8": {
|
||||||
|
|
@ -39,5 +16,22 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": "25.2.4"
|
"dependencies": {
|
||||||
|
"@jest/types": "^25.2.3",
|
||||||
|
"jest-message-util": "^25.2.4",
|
||||||
|
"jest-mock": "^25.2.3",
|
||||||
|
"jest-util": "^25.2.3",
|
||||||
|
"lolex": "^5.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/lolex": "^5.1.0",
|
||||||
|
"@types/node": "*"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8.3"
|
||||||
|
},
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"gitHead": "324938561c608e0e9dddc008e5dde1589d7abc68"
|
||||||
}
|
}
|
||||||
44
node_modules/@jest/reporters/node_modules/@jest/types/package.json
generated
vendored
44
node_modules/@jest/reporters/node_modules/@jest/types/package.json
generated
vendored
|
|
@ -1,34 +1,16 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@jest/types",
|
||||||
"url": "https://github.com/facebook/jest/issues"
|
"version": "25.2.3",
|
||||||
},
|
"repository": {
|
||||||
"bundleDependencies": false,
|
"type": "git",
|
||||||
"dependencies": {
|
"url": "https://github.com/facebook/jest.git",
|
||||||
"@types/istanbul-lib-coverage": "^2.0.0",
|
"directory": "packages/jest-types"
|
||||||
"@types/istanbul-reports": "^1.1.1",
|
|
||||||
"@types/yargs": "^15.0.0",
|
|
||||||
"chalk": "^3.0.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/node": "*"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.3"
|
"node": ">= 8.3"
|
||||||
},
|
},
|
||||||
"gitHead": "6f8bf80c38567ba076ae979af2dedb42b285b2d5",
|
|
||||||
"homepage": "https://github.com/facebook/jest#readme",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "build/index.js",
|
"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",
|
"types": "build/index.d.ts",
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"<3.8": {
|
"<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"
|
||||||
}
|
}
|
||||||
55
node_modules/@jest/reporters/node_modules/@types/yargs/package.json
generated
vendored
55
node_modules/@jest/reporters/node_modules/@types/yargs/package.json
generated
vendored
|
|
@ -1,63 +1,66 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "@types/yargs",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
"version": "15.0.4",
|
||||||
},
|
"description": "TypeScript definitions for yargs",
|
||||||
"bundleDependencies": false,
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Martin Poelstra",
|
"name": "Martin Poelstra",
|
||||||
"url": "https://github.com/poelstra"
|
"url": "https://github.com/poelstra",
|
||||||
|
"githubUsername": "poelstra"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mizunashi Mana",
|
"name": "Mizunashi Mana",
|
||||||
"url": "https://github.com/mizunashi-mana"
|
"url": "https://github.com/mizunashi-mana",
|
||||||
|
"githubUsername": "mizunashi-mana"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeffery Grajkowski",
|
"name": "Jeffery Grajkowski",
|
||||||
"url": "https://github.com/pushplay"
|
"url": "https://github.com/pushplay",
|
||||||
|
"githubUsername": "pushplay"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jeff Kenney",
|
"name": "Jeff Kenney",
|
||||||
"url": "https://github.com/jeffkenney"
|
"url": "https://github.com/jeffkenney",
|
||||||
|
"githubUsername": "jeffkenney"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jimi",
|
"name": "Jimi (Dimitris) Charalampidis",
|
||||||
"url": "Dimitris"
|
"url": "https://github.com/JimiC",
|
||||||
|
"githubUsername": "JimiC"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Steffen Viken Valvåg",
|
"name": "Steffen Viken Valvåg",
|
||||||
"url": "https://github.com/steffenvv"
|
"url": "https://github.com/steffenvv",
|
||||||
|
"githubUsername": "steffenvv"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Emily Marigold Klassen",
|
"name": "Emily Marigold Klassen",
|
||||||
"url": "https://github.com/forivall"
|
"url": "https://github.com/forivall",
|
||||||
|
"githubUsername": "forivall"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ExE Boss",
|
"name": "ExE Boss",
|
||||||
"url": "https://github.com/ExE-Boss"
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Aankhen",
|
"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": "",
|
"main": "",
|
||||||
"name": "@types/yargs",
|
"types": "index.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
"directory": "types/yargs"
|
"directory": "types/yargs"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"typeScriptVersion": "3.0",
|
"dependencies": {
|
||||||
"types": "index.d.ts",
|
"@types/yargs-parser": "*"
|
||||||
|
},
|
||||||
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
"typesPublisherContentHash": "33123d2b50bbbc5d15307f8a14b565cbb797530f625c3087b83b21aceb528536",
|
||||||
"version": "15.0.4"
|
"typeScriptVersion": "3.0"
|
||||||
}
|
}
|
||||||
49
node_modules/@jest/reporters/node_modules/ansi-styles/package.json
generated
vendored
49
node_modules/@jest/reporters/node_modules/ansi-styles/package.json
generated
vendored
|
|
@ -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": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.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": {
|
"engines": {
|
||||||
"node": ">=8"
|
"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": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
|
||||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
|
|
@ -52,15 +43,15 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"name": "ansi-styles",
|
"@types/color-name": "^1.1.1",
|
||||||
"repository": {
|
"color-convert": "^2.0.1"
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor",
|
"@types/color-convert": "^1.9.0",
|
||||||
"test": "xo && ava && tsd"
|
"ava": "^2.3.0",
|
||||||
},
|
"svg-term-cli": "^2.1.1",
|
||||||
"version": "4.2.1"
|
"tsd": "^0.11.0",
|
||||||
|
"xo": "^0.25.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
53
node_modules/@jest/reporters/node_modules/chalk/package.json
generated
vendored
53
node_modules/@jest/reporters/node_modules/chalk/package.json
generated
vendored
|
|
@ -1,33 +1,21 @@
|
||||||
{
|
{
|
||||||
"bugs": {
|
"name": "chalk",
|
||||||
"url": "https://github.com/chalk/chalk/issues"
|
"version": "3.0.0",
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-styles": "^4.1.0",
|
|
||||||
"supports-color": "^7.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"devDependencies": {
|
"license": "MIT",
|
||||||
"ava": "^2.4.0",
|
"repository": "chalk/chalk",
|
||||||
"coveralls": "^3.0.7",
|
"main": "source",
|
||||||
"execa": "^3.2.0",
|
|
||||||
"import-fresh": "^3.1.0",
|
|
||||||
"matcha": "^0.7.0",
|
|
||||||
"nyc": "^14.1.1",
|
|
||||||
"resolve-from": "^5.0.0",
|
|
||||||
"tsd": "^0.7.4",
|
|
||||||
"xo": "^0.25.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "xo && nyc ava && tsd",
|
||||||
|
"bench": "matcha benchmark.js"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/chalk/chalk#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -51,18 +39,21 @@
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"dependencies": {
|
||||||
"main": "source",
|
"ansi-styles": "^4.1.0",
|
||||||
"name": "chalk",
|
"supports-color": "^7.1.0"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/chalk/chalk.git"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"devDependencies": {
|
||||||
"bench": "matcha benchmark.js",
|
"ava": "^2.4.0",
|
||||||
"test": "xo && nyc ava && tsd"
|
"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": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
|
|
|
||||||
52
node_modules/@jest/reporters/node_modules/color-convert/package.json
generated
vendored
52
node_modules/@jest/reporters/node_modules/color-convert/package.json
generated
vendored
|
|
@ -1,30 +1,17 @@
|
||||||
{
|
{
|
||||||
"author": {
|
"name": "color-convert",
|
||||||
"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,
|
|
||||||
"description": "Plain color conversion functions",
|
"description": "Plain color conversion functions",
|
||||||
"devDependencies": {
|
"version": "2.0.1",
|
||||||
"chalk": "^2.4.2",
|
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||||
"xo": "^0.24.0"
|
"license": "MIT",
|
||||||
|
"repository": "Qix-/color-convert",
|
||||||
|
"scripts": {
|
||||||
|
"pretest": "xo",
|
||||||
|
"test": "node test/basic.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=7.0.0"
|
"node": ">=7.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"index.js",
|
|
||||||
"conversions.js",
|
|
||||||
"route.js"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
|
|
@ -39,22 +26,23 @@
|
||||||
"ansi",
|
"ansi",
|
||||||
"ansi16"
|
"ansi16"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"files": [
|
||||||
"name": "color-convert",
|
"index.js",
|
||||||
"repository": {
|
"conversions.js",
|
||||||
"type": "git",
|
"route.js"
|
||||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
],
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"pretest": "xo",
|
|
||||||
"test": "node test/basic.js"
|
|
||||||
},
|
|
||||||
"version": "2.0.1",
|
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"default-case": 0,
|
"default-case": 0,
|
||||||
"no-inline-comments": 0,
|
"no-inline-comments": 0,
|
||||||
"operator-linebreak": 0
|
"operator-linebreak": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"chalk": "^2.4.2",
|
||||||
|
"xo": "^0.24.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"color-name": "~1.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue