Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--node_modules/.gitignore1
-rw-r--r--node_modules/@types/color-name/LICENSE21
-rw-r--r--node_modules/@types/color-name/README.md16
-rw-r--r--node_modules/@types/color-name/index.d.ts161
-rw-r--r--node_modules/@types/color-name/package.json23
-rw-r--r--node_modules/ansi-styles/index.d.ts152
-rw-r--r--node_modules/ansi-styles/package.json3
-rw-r--r--node_modules/ansi-styles/readme.md16
-rw-r--r--package-lock.json117
9 files changed, 208 insertions, 302 deletions
diff --git a/node_modules/.gitignore b/node_modules/.gitignore
index 4d6f8f3ed..de9efb5e8 100644
--- a/node_modules/.gitignore
+++ b/node_modules/.gitignore
@@ -125,6 +125,7 @@ package-lock.json
/jsesc
/json-parse-better-errors
/json-stable-stringify-without-jsonify
+/json5
/lcov-parse
/levn
/load-json-file
diff --git a/node_modules/@types/color-name/LICENSE b/node_modules/@types/color-name/LICENSE
deleted file mode 100644
index 4b1ad51b2..000000000
--- a/node_modules/@types/color-name/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
- MIT License
-
- Copyright (c) Microsoft Corporation. All rights reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE
diff --git a/node_modules/@types/color-name/README.md b/node_modules/@types/color-name/README.md
deleted file mode 100644
index 5c77cba82..000000000
--- a/node_modules/@types/color-name/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Installation
-> `npm install --save @types/color-name`
-
-# Summary
-This package contains type definitions for color-name ( https://github.com/colorjs/color-name ).
-
-# Details
-Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/color-name
-
-Additional Details
- * Last updated: Wed, 13 Feb 2019 16:16:48 GMT
- * Dependencies: none
- * Global values: none
-
-# Credits
-These definitions were written by Junyoung Clare Jang <https://github.com/Ailrun>.
diff --git a/node_modules/@types/color-name/index.d.ts b/node_modules/@types/color-name/index.d.ts
deleted file mode 100644
index b5bff4717..000000000
--- a/node_modules/@types/color-name/index.d.ts
+++ /dev/null
@@ -1,161 +0,0 @@
-// Type definitions for color-name 1.1
-// Project: https://github.com/colorjs/color-name
-// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-/**
- * Tuple of Red, Green, and Blue
- * @example
- * // Red = 55, Green = 70, Blue = 0
- * const rgb: RGB = [55, 70, 0];
- */
-export type RGB = [number, number, number];
-
-export const aliceblue: RGB;
-export const antiquewhite: RGB;
-export const aqua: RGB;
-export const aquamarine: RGB;
-export const azure: RGB;
-export const beige: RGB;
-export const bisque: RGB;
-export const black: RGB;
-export const blanchedalmond: RGB;
-export const blue: RGB;
-export const blueviolet: RGB;
-export const brown: RGB;
-export const burlywood: RGB;
-export const cadetblue: RGB;
-export const chartreuse: RGB;
-export const chocolate: RGB;
-export const coral: RGB;
-export const cornflowerblue: RGB;
-export const cornsilk: RGB;
-export const crimson: RGB;
-export const cyan: RGB;
-export const darkblue: RGB;
-export const darkcyan: RGB;
-export const darkgoldenrod: RGB;
-export const darkgray: RGB;
-export const darkgreen: RGB;
-export const darkgrey: RGB;
-export const darkkhaki: RGB;
-export const darkmagenta: RGB;
-export const darkolivegreen: RGB;
-export const darkorange: RGB;
-export const darkorchid: RGB;
-export const darkred: RGB;
-export const darksalmon: RGB;
-export const darkseagreen: RGB;
-export const darkslateblue: RGB;
-export const darkslategray: RGB;
-export const darkslategrey: RGB;
-export const darkturquoise: RGB;
-export const darkviolet: RGB;
-export const deeppink: RGB;
-export const deepskyblue: RGB;
-export const dimgray: RGB;
-export const dimgrey: RGB;
-export const dodgerblue: RGB;
-export const firebrick: RGB;
-export const floralwhite: RGB;
-export const forestgreen: RGB;
-export const fuchsia: RGB;
-export const gainsboro: RGB;
-export const ghostwhite: RGB;
-export const gold: RGB;
-export const goldenrod: RGB;
-export const gray: RGB;
-export const green: RGB;
-export const greenyellow: RGB;
-export const grey: RGB;
-export const honeydew: RGB;
-export const hotpink: RGB;
-export const indianred: RGB;
-export const indigo: RGB;
-export const ivory: RGB;
-export const khaki: RGB;
-export const lavender: RGB;
-export const lavenderblush: RGB;
-export const lawngreen: RGB;
-export const lemonchiffon: RGB;
-export const lightblue: RGB;
-export const lightcoral: RGB;
-export const lightcyan: RGB;
-export const lightgoldenrodyellow: RGB;
-export const lightgray: RGB;
-export const lightgreen: RGB;
-export const lightgrey: RGB;
-export const lightpink: RGB;
-export const lightsalmon: RGB;
-export const lightseagreen: RGB;
-export const lightskyblue: RGB;
-export const lightslategray: RGB;
-export const lightslategrey: RGB;
-export const lightsteelblue: RGB;
-export const lightyellow: RGB;
-export const lime: RGB;
-export const limegreen: RGB;
-export const linen: RGB;
-export const magenta: RGB;
-export const maroon: RGB;
-export const mediumaquamarine: RGB;
-export const mediumblue: RGB;
-export const mediumorchid: RGB;
-export const mediumpurple: RGB;
-export const mediumseagreen: RGB;
-export const mediumslateblue: RGB;
-export const mediumspringgreen: RGB;
-export const mediumturquoise: RGB;
-export const mediumvioletred: RGB;
-export const midnightblue: RGB;
-export const mintcream: RGB;
-export const mistyrose: RGB;
-export const moccasin: RGB;
-export const navajowhite: RGB;
-export const navy: RGB;
-export const oldlace: RGB;
-export const olive: RGB;
-export const olivedrab: RGB;
-export const orange: RGB;
-export const orangered: RGB;
-export const orchid: RGB;
-export const palegoldenrod: RGB;
-export const palegreen: RGB;
-export const paleturquoise: RGB;
-export const palevioletred: RGB;
-export const papayawhip: RGB;
-export const peachpuff: RGB;
-export const peru: RGB;
-export const pink: RGB;
-export const plum: RGB;
-export const powderblue: RGB;
-export const purple: RGB;
-export const rebeccapurple: RGB;
-export const red: RGB;
-export const rosybrown: RGB;
-export const royalblue: RGB;
-export const saddlebrown: RGB;
-export const salmon: RGB;
-export const sandybrown: RGB;
-export const seagreen: RGB;
-export const seashell: RGB;
-export const sienna: RGB;
-export const silver: RGB;
-export const skyblue: RGB;
-export const slateblue: RGB;
-export const slategray: RGB;
-export const slategrey: RGB;
-export const snow: RGB;
-export const springgreen: RGB;
-export const steelblue: RGB;
-export const tan: RGB;
-export const teal: RGB;
-export const thistle: RGB;
-export const tomato: RGB;
-export const turquoise: RGB;
-export const violet: RGB;
-export const wheat: RGB;
-export const white: RGB;
-export const whitesmoke: RGB;
-export const yellow: RGB;
-export const yellowgreen: RGB;
diff --git a/node_modules/@types/color-name/package.json b/node_modules/@types/color-name/package.json
deleted file mode 100644
index d5e367e14..000000000
--- a/node_modules/@types/color-name/package.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "name": "@types/color-name",
- "version": "1.1.1",
- "description": "TypeScript definitions for color-name",
- "license": "MIT",
- "contributors": [
- {
- "name": "Junyoung Clare Jang",
- "url": "https://github.com/Ailrun",
- "githubUsername": "Ailrun"
- }
- ],
- "main": "",
- "types": "index",
- "repository": {
- "type": "git",
- "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
- },
- "scripts": {},
- "dependencies": {},
- "typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7",
- "typeScriptVersion": "2.0"
-} \ No newline at end of file
diff --git a/node_modules/ansi-styles/index.d.ts b/node_modules/ansi-styles/index.d.ts
index 7e9b2b71b..44a907e58 100644
--- a/node_modules/ansi-styles/index.d.ts
+++ b/node_modules/ansi-styles/index.d.ts
@@ -1,4 +1,152 @@
-import * as cssColors from 'color-name';
+declare type CSSColor =
+ | 'aliceblue'
+ | 'antiquewhite'
+ | 'aqua'
+ | 'aquamarine'
+ | 'azure'
+ | 'beige'
+ | 'bisque'
+ | 'black'
+ | 'blanchedalmond'
+ | 'blue'
+ | 'blueviolet'
+ | 'brown'
+ | 'burlywood'
+ | 'cadetblue'
+ | 'chartreuse'
+ | 'chocolate'
+ | 'coral'
+ | 'cornflowerblue'
+ | 'cornsilk'
+ | 'crimson'
+ | 'cyan'
+ | 'darkblue'
+ | 'darkcyan'
+ | 'darkgoldenrod'
+ | 'darkgray'
+ | 'darkgreen'
+ | 'darkgrey'
+ | 'darkkhaki'
+ | 'darkmagenta'
+ | 'darkolivegreen'
+ | 'darkorange'
+ | 'darkorchid'
+ | 'darkred'
+ | 'darksalmon'
+ | 'darkseagreen'
+ | 'darkslateblue'
+ | 'darkslategray'
+ | 'darkslategrey'
+ | 'darkturquoise'
+ | 'darkviolet'
+ | 'deeppink'
+ | 'deepskyblue'
+ | 'dimgray'
+ | 'dimgrey'
+ | 'dodgerblue'
+ | 'firebrick'
+ | 'floralwhite'
+ | 'forestgreen'
+ | 'fuchsia'
+ | 'gainsboro'
+ | 'ghostwhite'
+ | 'gold'
+ | 'goldenrod'
+ | 'gray'
+ | 'green'
+ | 'greenyellow'
+ | 'grey'
+ | 'honeydew'
+ | 'hotpink'
+ | 'indianred'
+ | 'indigo'
+ | 'ivory'
+ | 'khaki'
+ | 'lavender'
+ | 'lavenderblush'
+ | 'lawngreen'
+ | 'lemonchiffon'
+ | 'lightblue'
+ | 'lightcoral'
+ | 'lightcyan'
+ | 'lightgoldenrodyellow'
+ | 'lightgray'
+ | 'lightgreen'
+ | 'lightgrey'
+ | 'lightpink'
+ | 'lightsalmon'
+ | 'lightseagreen'
+ | 'lightskyblue'
+ | 'lightslategray'
+ | 'lightslategrey'
+ | 'lightsteelblue'
+ | 'lightyellow'
+ | 'lime'
+ | 'limegreen'
+ | 'linen'
+ | 'magenta'
+ | 'maroon'
+ | 'mediumaquamarine'
+ | 'mediumblue'
+ | 'mediumorchid'
+ | 'mediumpurple'
+ | 'mediumseagreen'
+ | 'mediumslateblue'
+ | 'mediumspringgreen'
+ | 'mediumturquoise'
+ | 'mediumvioletred'
+ | 'midnightblue'
+ | 'mintcream'
+ | 'mistyrose'
+ | 'moccasin'
+ | 'navajowhite'
+ | 'navy'
+ | 'oldlace'
+ | 'olive'
+ | 'olivedrab'
+ | 'orange'
+ | 'orangered'
+ | 'orchid'
+ | 'palegoldenrod'
+ | 'palegreen'
+ | 'paleturquoise'
+ | 'palevioletred'
+ | 'papayawhip'
+ | 'peachpuff'
+ | 'peru'
+ | 'pink'
+ | 'plum'
+ | 'powderblue'
+ | 'purple'
+ | 'rebeccapurple'
+ | 'red'
+ | 'rosybrown'
+ | 'royalblue'
+ | 'saddlebrown'
+ | 'salmon'
+ | 'sandybrown'
+ | 'seagreen'
+ | 'seashell'
+ | 'sienna'
+ | 'silver'
+ | 'skyblue'
+ | 'slateblue'
+ | 'slategray'
+ | 'slategrey'
+ | 'snow'
+ | 'springgreen'
+ | 'steelblue'
+ | 'tan'
+ | 'teal'
+ | 'thistle'
+ | 'tomato'
+ | 'turquoise'
+ | 'violet'
+ | 'wheat'
+ | 'white'
+ | 'whitesmoke'
+ | 'yellow'
+ | 'yellowgreen';
declare namespace ansiStyles {
interface ColorConvert {
@@ -21,7 +169,7 @@ declare namespace ansiStyles {
/**
@param keyword - A CSS color name.
*/
- keyword(keyword: keyof typeof cssColors): string;
+ keyword(keyword: CSSColor): string;
/**
The HSL color space.
diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json
index 347b035e1..75393284d 100644
--- a/node_modules/ansi-styles/package.json
+++ b/node_modules/ansi-styles/package.json
@@ -1,6 +1,6 @@
{
"name": "ansi-styles",
- "version": "4.2.1",
+ "version": "4.3.0",
"description": "ANSI escape codes for styling strings in the terminal",
"license": "MIT",
"repository": "chalk/ansi-styles",
@@ -44,7 +44,6 @@
"text"
],
"dependencies": {
- "@types/color-name": "^1.1.1",
"color-convert": "^2.0.1"
},
"devDependencies": {
diff --git a/node_modules/ansi-styles/readme.md b/node_modules/ansi-styles/readme.md
index 2a1ef6546..24883de80 100644
--- a/node_modules/ansi-styles/readme.md
+++ b/node_modules/ansi-styles/readme.md
@@ -145,14 +145,8 @@ style.bgColor.ansi16m.hex('#C0FFEE'); // Hex (RGB) to 16 million color backgroun
- [Sindre Sorhus](https://github.com/sindresorhus)
- [Josh Junon](https://github.com/qix-)
----
-
-<div align="center">
- <b>
- <a href="https://tidelift.com/subscription/pkg/npm-ansi-styles?utm_source=npm-ansi-styles&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
- </b>
- <br>
- <sub>
- Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
- </sub>
-</div>
+## For enterprise
+
+Available as part of the Tidelift Subscription.
+
+The maintainers of `ansi-styles` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-ansi-styles?utm_source=npm-ansi-styles&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
diff --git a/package-lock.json b/package-lock.json
index 4f9d44d90..688e15f79 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -547,12 +547,6 @@
"node": ">= 6"
}
},
- "node_modules/@types/color-name": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
- "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
- "inBundle": true
- },
"node_modules/@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
@@ -660,12 +654,11 @@
}
},
"node_modules/ansi-styles": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
- "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"inBundle": true,
"dependencies": {
- "@types/color-name": "^1.1.1",
"color-convert": "^2.0.1"
},
"engines": {
@@ -1614,20 +1607,20 @@
}
},
"node_modules/es-abstract": {
- "version": "1.17.6",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
- "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
+ "version": "1.17.7",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
+ "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
"dev": true,
"dependencies": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
- "is-callable": "^1.2.0",
- "is-regex": "^1.1.0",
- "object-inspect": "^1.7.0",
+ "is-callable": "^1.2.2",
+ "is-regex": "^1.1.1",
+ "object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
+ "object.assign": "^4.1.1",
"string.prototype.trimend": "^1.0.1",
"string.prototype.trimstart": "^1.0.1"
},
@@ -3344,6 +3337,18 @@
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
"inBundle": true
},
+ "node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
"node_modules/jsonparse": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
@@ -4337,21 +4342,21 @@
}
},
"node_modules/object.assign/node_modules/es-abstract": {
- "version": "1.18.0-next.0",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.0.tgz",
- "integrity": "sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ==",
+ "version": "1.18.0-next.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
+ "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
"dev": true,
"dependencies": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
- "is-callable": "^1.2.0",
+ "is-callable": "^1.2.2",
"is-negative-zero": "^2.0.0",
"is-regex": "^1.1.1",
"object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
+ "object.assign": "^4.1.1",
"string.prototype.trimend": "^1.0.1",
"string.prototype.trimstart": "^1.0.1"
},
@@ -7790,18 +7795,6 @@
"strip-bom": "^3.0.0"
}
},
- "node_modules/tsconfig-paths/node_modules/json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
"node_modules/tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
@@ -8648,11 +8641,6 @@
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
},
- "@types/color-name": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
- "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
- },
"@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
@@ -8727,11 +8715,10 @@
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"ansi-styles": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
- "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "@types/color-name": "^1.1.1",
"color-convert": "^2.0.1"
}
},
@@ -9445,20 +9432,20 @@
}
},
"es-abstract": {
- "version": "1.17.6",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
- "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
+ "version": "1.17.7",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
+ "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
"dev": true,
"requires": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
- "is-callable": "^1.2.0",
- "is-regex": "^1.1.0",
- "object-inspect": "^1.7.0",
+ "is-callable": "^1.2.2",
+ "is-regex": "^1.1.1",
+ "object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
+ "object.assign": "^4.1.1",
"string.prototype.trimend": "^1.0.1",
"string.prototype.trimstart": "^1.0.1"
}
@@ -10764,6 +10751,15 @@
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
},
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
"jsonparse": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
@@ -11496,21 +11492,21 @@
},
"dependencies": {
"es-abstract": {
- "version": "1.18.0-next.0",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.0.tgz",
- "integrity": "sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ==",
+ "version": "1.18.0-next.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
+ "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
"dev": true,
"requires": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
- "is-callable": "^1.2.0",
+ "is-callable": "^1.2.2",
"is-negative-zero": "^2.0.0",
"is-regex": "^1.1.1",
"object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
+ "object.assign": "^4.1.1",
"string.prototype.trimend": "^1.0.1",
"string.prototype.trimstart": "^1.0.1"
}
@@ -14108,17 +14104,6 @@
"json5": "^1.0.1",
"minimist": "^1.2.0",
"strip-bom": "^3.0.0"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- }
}
},
"tunnel-agent": {