├── __mocks__ └── styleMock.js ├── common ├── index.ts └── constants.ts ├── .gitignore ├── server ├── routes │ ├── index.ts │ ├── define_routes.ts │ └── server_search_route.ts ├── index.ts ├── types.ts └── plugin.ts ├── .vscode └── settings.json ├── public ├── constants.ts ├── milestones_visualization.scss ├── index.ts ├── services.ts ├── types.ts ├── config.ts ├── to_ast.ts ├── milestones_vis_renderer.tsx ├── to_ast.test.ts ├── __snapshots__ │ └── to_ast.test.ts.snap ├── milestones_request_handler.ts ├── milestones_type.ts ├── plugin.ts ├── milestones_visualization.tsx ├── milestones_function.ts └── components │ └── milestones_options.tsx ├── .prettierrc ├── resources └── kibana-milestones-vis.png ├── .eslintrc.js ├── .i18nrc.json ├── .kibana-plugin-helpers.json ├── .editorconfig ├── jest.config.js ├── kibana.json ├── tsconfig.json ├── package.json ├── README.md ├── DEVELOPMENT.md ├── scripts └── ingest_sample_data.js ├── LICENSE.md └── yarn.lock /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants'; 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log* 2 | node_modules 3 | /build/ 4 | /target/ 5 | -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- 1 | export { defineRoutes } from './define_routes'; 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib" 3 | } -------------------------------------------------------------------------------- /public/constants.ts: -------------------------------------------------------------------------------- 1 | export const EXPRESSION_NAME = 'kibana_milestones_vis'; 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "es5", 4 | "printWidth": 100 5 | } 6 | -------------------------------------------------------------------------------- /resources/kibana-milestones-vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterra/kibana-milestones-vis/HEAD/resources/kibana-milestones-vis.png -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ['@elastic/eslint-config-kibana', 'plugin:@elastic/eui/recommended'], 4 | }; 5 | -------------------------------------------------------------------------------- /.i18nrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "prefix": "kibanaMilestonesVis", 3 | "paths": { 4 | "kibanaMilestonesVis": "." 5 | }, 6 | "translations": [ 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /public/milestones_visualization.scss: -------------------------------------------------------------------------------- 1 | @import '../node_modules/d3-milestones/build/d3-milestones'; 2 | 3 | .milestones-vis { 4 | width: 100%; 5 | height: 100%; 6 | margin: 10px; 7 | position: relative; 8 | overflow: scroll; 9 | } 10 | -------------------------------------------------------------------------------- /public/index.ts: -------------------------------------------------------------------------------- 1 | import { PluginInitializerContext } from 'kibana/public'; 2 | import { MilestonesPlugin as Plugin } from './plugin'; 3 | 4 | export function plugin(initializerContext: PluginInitializerContext) { 5 | return new Plugin(initializerContext); 6 | } 7 | -------------------------------------------------------------------------------- /public/services.ts: -------------------------------------------------------------------------------- 1 | import { DataPublicPluginStart } from '../../../src/plugins/data/public'; 2 | import { createGetterSetter } from '../../../src/plugins/kibana_utils/public'; 3 | 4 | export const [getData, setData] = createGetterSetter('Data'); 5 | -------------------------------------------------------------------------------- /.kibana-plugin-helpers.json: -------------------------------------------------------------------------------- 1 | { 2 | "serverSourcePatterns": [ 3 | "package.json", 4 | "yarn.lock", 5 | "tsconfig.json", 6 | "common/**/*", 7 | "public/**/*", 8 | "server/**/*", 9 | "kibana.json", 10 | "target/**/*" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /common/constants.ts: -------------------------------------------------------------------------------- 1 | export const PLUGIN_ID = 'kibanaMilestonesVis'; 2 | export const PLUGIN_NAME = 'Kibana Milestones Visualisation'; 3 | 4 | export const NONE_SELECTED = '--- None selected ---'; 5 | export const SCORE_FIELD = '_score'; 6 | 7 | export const SERVER_SEARCH_ROUTE_PATH = '/api/milestones/search'; 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.{md,asciidoc}] 13 | trim_trailing_whitespace = false 14 | insert_final_newline = false 15 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ 2 | module.exports = { 3 | preset: 'ts-jest', 4 | testEnvironment: 'jsdom', 5 | testMatch: ['**/*.test.{js,ts,tsx}'], 6 | moduleNameMapper: { 7 | '\\.(css|less|sass|scss)$': '/__mocks__/styleMock.js', 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /server/routes/define_routes.ts: -------------------------------------------------------------------------------- 1 | import type { IRouter } from 'kibana/server'; 2 | 3 | import type { DataRequestHandlerContext } from 'src/plugins/data/server'; 4 | 5 | import { defineServerSearchRoute } from './server_search_route'; 6 | 7 | export function defineRoutes(router: IRouter) { 8 | defineServerSearchRoute(router); 9 | } 10 | -------------------------------------------------------------------------------- /public/types.ts: -------------------------------------------------------------------------------- 1 | import { Milestones } from 'react-milestones-vis'; 2 | 3 | type MilestonesProps = Pick< 4 | React.ComponentProps, 5 | 'distribution' | 'aggregateBy' | 'orientation' | 'useLabels' 6 | >; 7 | 8 | export interface MilestonesVisParams extends Required { 9 | indexPatternId: string; 10 | categoryField: string; 11 | labelField: string; 12 | maxDocuments: number; 13 | sortField: string; 14 | sortOrder: 'asc' | 'desc'; 15 | } 16 | -------------------------------------------------------------------------------- /kibana.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "kibanaMilestonesVis", 3 | "version": "7.17.0", 4 | "kibanaVersion": "kibana", 5 | "owner": { 6 | "name": "Walter Rafelsberger ) => { 7 | const milestones = buildExpressionFunction( 8 | EXPRESSION_NAME, 9 | { 10 | ...vis.params, 11 | indexPatternId: vis.data.indexPattern!.id!, 12 | } 13 | ); 14 | 15 | const ast = buildExpression([milestones]); 16 | 17 | return ast.toAst(); 18 | }; 19 | -------------------------------------------------------------------------------- /public/milestones_vis_renderer.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render, unmountComponentAtNode } from 'react-dom'; 3 | import { i18n } from '@kbn/i18n'; 4 | 5 | import type { ExpressionRenderDefinition } from '../../../src/plugins/expressions'; 6 | 7 | import { MilestonesRenderValue } from './milestones_function'; 8 | 9 | import { MilestonesVisualization } from './milestones_visualization'; 10 | 11 | export const getMilestonesVisRenderer = (): ExpressionRenderDefinition => ({ 12 | name: 'kibana_milestones_vis', 13 | displayName: i18n.translate('milestones.vis.visualizationName', { 14 | defaultMessage: 'Milestones', 15 | }), 16 | help: '', 17 | validate: () => undefined, 18 | reuseDomNode: true, 19 | render: async (domNode, config, handlers) => { 20 | handlers.onDestroy(() => { 21 | unmountComponentAtNode(domNode); 22 | }); 23 | 24 | render(, domNode, () => { 25 | handlers.done(); 26 | }); 27 | }, 28 | }); 29 | -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to Elasticsearch B.V. under one or more contributor 3 | * license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright 5 | * ownership. Elasticsearch B.V. licenses this file to you under 6 | * the Apache License, Version 2.0 (the "License"); you may 7 | * not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | import { PluginInitializerContext } from '../../../src/core/server'; 21 | import { KibanaMilestonesVisPlugin } from './plugin'; 22 | 23 | export function plugin(initializerContext: PluginInitializerContext) { 24 | return new KibanaMilestonesVisPlugin(initializerContext); 25 | } 26 | 27 | export { KibanaMilestonesVisPluginSetup, KibanaMilestonesVisPluginStart } from './types'; 28 | -------------------------------------------------------------------------------- /public/to_ast.test.ts: -------------------------------------------------------------------------------- 1 | import type { Vis } from '../../../src/plugins/visualizations/public'; 2 | import { toExpressionAst } from './to_ast'; 3 | import { MilestonesVisParams } from './types'; 4 | 5 | describe('milestones vis toExpressionAst function', () => { 6 | let vis: Vis; 7 | 8 | beforeEach(() => { 9 | vis = { 10 | isHierarchical: () => false, 11 | type: {}, 12 | params: {}, 13 | data: { 14 | indexPattern: { id: '123' }, 15 | aggs: { 16 | getResponseAggs: () => [], 17 | aggs: [], 18 | }, 19 | }, 20 | } as any; 21 | }); 22 | 23 | it('should match snapshot without params', () => { 24 | const actual = toExpressionAst(vis); 25 | expect(actual).toMatchSnapshot(); 26 | }); 27 | 28 | it('should match snapshot params fulfilled', () => { 29 | // set non-default values 30 | vis.params = { 31 | indexPatternId: 'the-index-pattern-id', 32 | distribution: 'top', 33 | categoryField: 'the-category-field', 34 | aggregateBy: 'year', 35 | labelField: 'the-label-field', 36 | maxDocuments: 100, 37 | orientation: 'vertical', 38 | useLabels: false, 39 | sortField: 'the-sort-field', 40 | sortOrder: 'desc', 41 | }; 42 | const actual = toExpressionAst(vis); 43 | expect(actual).toMatchSnapshot(); 44 | }); 45 | }); 46 | -------------------------------------------------------------------------------- /server/types.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to Elasticsearch B.V. under one or more contributor 3 | * license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright 5 | * ownership. Elasticsearch B.V. licenses this file to you under 6 | * the Apache License, Version 2.0 (the "License"); you may 7 | * not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | // Rename PluginStart to something better 21 | import { PluginSetup, PluginStart } from '../../../src/plugins/data/server'; 22 | 23 | export interface KibanaMilestonesVisPluginSetupDeps { 24 | data: PluginSetup; 25 | } 26 | 27 | export interface KibanaMilestonesVisPluginStartDeps { 28 | data: PluginStart; 29 | } 30 | 31 | // eslint-disable-next-line @typescript-eslint/no-empty-interface 32 | export interface KibanaMilestonesVisPluginSetup {} 33 | // eslint-disable-next-line @typescript-eslint/no-empty-interface 34 | export interface KibanaMilestonesVisPluginStart {} 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kibana-milestones-vis", 3 | "version": "7.17.0", 4 | "private": false, 5 | "description": "A d3 based timeline visualization kibana plugin.", 6 | "main": "index.js", 7 | "homepage": "https://github.com/walterra/kibana-milestones-vis", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/walterra/kibana-milestones-vis.git" 11 | }, 12 | "bugs": { 13 | "url": "https://github.com/walterra/kibana-milestones-vis/issues" 14 | }, 15 | "license": "Apache-2.0", 16 | "contributors": [ 17 | "Walter Rafelsberger " 18 | ], 19 | "scripts": { 20 | "build": "yarn plugin-helpers build", 21 | "ingest-sample-data": "node scripts/ingest_sample_data", 22 | "plugin-helpers": "node ../../scripts/plugin_helpers", 23 | "kbn": "node ../../scripts/kbn", 24 | "test": "yarn jest" 25 | }, 26 | "dependencies": { 27 | "d3-collection": "^1.0.7", 28 | "react": "^16.12.0", 29 | "react-dom": "^16.12.0", 30 | "react-milestones-vis": "^0.6.5" 31 | }, 32 | "resolutions": { 33 | "decode-uri-component": "^0.2.1", 34 | "json5": "^2.2.3", 35 | "lodash": "^4.17.21", 36 | "minimatch": "^3.0.5", 37 | "minimist": "^1.2.6" 38 | }, 39 | "devDependencies": { 40 | "@elastic/elasticsearch": "^7.17.0", 41 | "@types/d3-collection": "^1.0.7", 42 | "@types/jest": "^26.0.14", 43 | "jest": "^26.6.3", 44 | "ts-jest": "^26.5.6", 45 | "typescript": "4.1.3" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /public/__snapshots__/to_ast.test.ts.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`milestones vis toExpressionAst function should match snapshot params fulfilled 1`] = ` 4 | Object { 5 | "chain": Array [ 6 | Object { 7 | "arguments": Object { 8 | "categoryField": Array [ 9 | "the-category-field", 10 | ], 11 | "distribution": Array [ 12 | "top", 13 | ], 14 | "indexPatternId": Array [ 15 | "123", 16 | ], 17 | "interval": Array [ 18 | "year", 19 | ], 20 | "labelField": Array [ 21 | "the-label-field", 22 | ], 23 | "maxDocuments": Array [ 24 | 100, 25 | ], 26 | "orientation": Array [ 27 | "vertical", 28 | ], 29 | "showLabels": Array [ 30 | false, 31 | ], 32 | "sortField": Array [ 33 | "the-sort-field", 34 | ], 35 | "sortOrder": Array [ 36 | "desc", 37 | ], 38 | }, 39 | "function": "milestones", 40 | "type": "function", 41 | }, 42 | ], 43 | "type": "expression", 44 | } 45 | `; 46 | 47 | exports[`milestones vis toExpressionAst function should match snapshot without params 1`] = ` 48 | Object { 49 | "chain": Array [ 50 | Object { 51 | "arguments": Object { 52 | "indexPatternId": Array [ 53 | "123", 54 | ], 55 | }, 56 | "function": "milestones", 57 | "type": "function", 58 | }, 59 | ], 60 | "type": "expression", 61 | } 62 | `; 63 | -------------------------------------------------------------------------------- /public/milestones_request_handler.ts: -------------------------------------------------------------------------------- 1 | import { Filter, esQuery, TimeRange, Query } from '../../../src/plugins/data/public'; 2 | 3 | import { NONE_SELECTED, SERVER_SEARCH_ROUTE_PATH } from '../common'; 4 | 5 | import { MilestonesVisualizationDependencies } from './plugin'; 6 | import { getData } from './services'; 7 | import { MilestonesVisParams } from './types'; 8 | 9 | interface MilestonesRequestHandlerParams { 10 | query: Query; 11 | filters: Filter; 12 | timeRange: TimeRange; 13 | visParams: MilestonesVisParams; 14 | } 15 | 16 | export function createMilestonesRequestHandler({ 17 | core: { http, uiSettings }, 18 | }: MilestonesVisualizationDependencies) { 19 | const { indexPatterns } = getData(); 20 | 21 | return async ({ timeRange, filters, query, visParams }: MilestonesRequestHandlerParams) => { 22 | const index = await indexPatterns.get(visParams.indexPatternId); 23 | const esQueryConfigs = esQuery.getEsQueryConfig(uiSettings); 24 | const filtersDsl = esQuery.buildEsQuery(undefined, query, filters, esQueryConfigs); 25 | 26 | if (visParams.labelField === undefined || visParams.labelField === NONE_SELECTED) { 27 | return { 28 | timeFieldName: index.timeFieldName, 29 | data: [], 30 | }; 31 | } 32 | 33 | return await http.post(SERVER_SEARCH_ROUTE_PATH, { 34 | body: JSON.stringify({ 35 | categoryField: visParams.categoryField, 36 | filtersDsl, 37 | index: index.title, 38 | labelField: visParams.labelField, 39 | maxDocuments: visParams.maxDocuments, 40 | sortField: visParams.sortField, 41 | sortOrder: visParams.sortOrder, 42 | timeFieldName: index.timeFieldName, 43 | timeRangeFrom: timeRange.from, 44 | timeRangeTo: timeRange.to, 45 | }), 46 | }); 47 | }; 48 | } 49 | -------------------------------------------------------------------------------- /public/milestones_type.ts: -------------------------------------------------------------------------------- 1 | import { i18n } from '@kbn/i18n'; 2 | 3 | import { DefaultEditorSize } from '../../../src/plugins/vis_default_editor/public'; 4 | // import { VIS_EVENT_TO_TRIGGER } from '../../../src/plugins/visualizations/public'; 5 | // import type { VisGroups } from '../../../src/plugins/visualizations/public'; 6 | import type { VisTypeDefinition } from '../../../src/plugins/visualizations/public'; 7 | 8 | import { milestonesVisConfigDefaults, milestonesVisConfigOptions } from './config'; 9 | import { toExpressionAst } from './to_ast'; 10 | import { MilestonesOptions } from './components/milestones_options'; 11 | import { MilestonesVisParams } from './types'; 12 | 13 | const mapOptionToCollection = (d: T) => ({ text: d, value: d }); 14 | 15 | export const createMilestonesTypeDefinition = (): VisTypeDefinition => ({ 16 | name: 'kibana_milestones_vis', 17 | title: 'Milestones', 18 | icon: 'visTagCloud', 19 | // group: VisGroups.PROMOTED, 20 | // @ts-expect-error 21 | group: 'promoted', 22 | description: i18n.translate('milestones.vis.milestonesDescription', { 23 | defaultMessage: 'A timeline of events with labels.', 24 | }), 25 | visConfig: { 26 | defaults: milestonesVisConfigDefaults, 27 | }, 28 | editorConfig: { 29 | optionsTemplate: MilestonesOptions, 30 | enableAutoApply: true, 31 | defaultSize: DefaultEditorSize.MEDIUM, 32 | collections: { 33 | distributions: milestonesVisConfigOptions.distribution.map(mapOptionToCollection), 34 | aggregateBy: milestonesVisConfigOptions.aggregateBy.map(mapOptionToCollection), 35 | orientation: milestonesVisConfigOptions.orientation.map(mapOptionToCollection), 36 | sortOrder: milestonesVisConfigOptions.sortOrder.map(mapOptionToCollection), 37 | }, 38 | }, 39 | toExpressionAst, 40 | options: { 41 | showIndexSelection: true, 42 | showQueryBar: true, 43 | showFilterBar: true, 44 | }, 45 | getSupportedTriggers: () => { 46 | // return [VIS_EVENT_TO_TRIGGER.applyFilter]; 47 | return ['FILTER_TRIGGER']; 48 | }, 49 | requiresSearch: true, 50 | }); 51 | -------------------------------------------------------------------------------- /public/plugin.ts: -------------------------------------------------------------------------------- 1 | import { PluginInitializerContext, CoreSetup, CoreStart, Plugin } from 'kibana/public'; 2 | 3 | import { DataPublicPluginSetup, DataPublicPluginStart } from '../../../src/plugins/data/public'; 4 | import { Plugin as ExpressionsPublicPlugin } from '../../../src/plugins/expressions/public'; 5 | import { VisualizationsSetup } from '../../../src/plugins/visualizations/public'; 6 | 7 | import { createMilestonesFn } from './milestones_function'; 8 | import { createMilestonesTypeDefinition } from './milestones_type'; 9 | import { getMilestonesVisRenderer } from './milestones_vis_renderer'; 10 | import { setData } from './services'; 11 | 12 | /** @internal */ 13 | export interface MilestonesVisualizationDependencies { 14 | core: CoreSetup; 15 | plugins: { data: DataPublicPluginSetup }; 16 | } 17 | 18 | /** @internal */ 19 | export interface MilestonesPluginSetupDependencies { 20 | data: DataPublicPluginSetup; 21 | expressions: ReturnType; 22 | visualizations: VisualizationsSetup; 23 | } 24 | 25 | /** @internal */ 26 | export interface MilestonesPluginStartDependencies { 27 | data: DataPublicPluginStart; 28 | } 29 | 30 | /** @internal */ 31 | export class MilestonesPlugin implements Plugin { 32 | initializerContext: PluginInitializerContext; 33 | 34 | constructor(initializerContext: PluginInitializerContext) { 35 | this.initializerContext = initializerContext; 36 | } 37 | 38 | public async setup( 39 | core: CoreSetup, 40 | { data, expressions, visualizations }: MilestonesPluginSetupDependencies 41 | ) { 42 | const visualizationDependencies: Readonly = { 43 | core, 44 | plugins: { 45 | data, 46 | }, 47 | }; 48 | 49 | expressions.registerFunction(() => createMilestonesFn(visualizationDependencies)); 50 | expressions.registerRenderer(getMilestonesVisRenderer()); 51 | 52 | visualizations.createBaseVisualization(createMilestonesTypeDefinition()); 53 | } 54 | 55 | public start(core: CoreStart, { data }: MilestonesPluginStartDependencies) { 56 | setData(data); 57 | } 58 | 59 | public stop() {} 60 | } 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Milestones Visualization for Kibana 2 | 3 | ![Movie Timelines](resources/kibana-milestones-vis.png) 4 | 5 | This plugin is a wrapper for the stand-alone library `d3-milestones` (https://github.com/walterra/d3-milestones) to make its functionality available within Kibana. 6 | 7 | ## Installation 8 | 9 | ### Compatibility 10 | 11 | To get a version of this plugin which is compatible with your version of Kibana, have a look at the releases page on GitHub: https://github.com/walterra/kibana-milestones-vis/releases 12 | 13 | The releases of this plugin are synced with Kibana's release cycle. In the "Assets" section of each release you'll find a zipped build of the plugin which you can use. These zip files are named in the following way: `kibanaMilestonesVis-.zip`. The `plugin-version` should match the version of Kibana you're using. 14 | 15 | ### General Installation Pattern 16 | 17 | Run the following from within your Kibana folder: 18 | 19 | ``` 20 | bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.17.0/kibanaMilestonesVis-7.17.0.zip 21 | ``` 22 | 23 | ### Installing by first downloading a zipped release 24 | 25 | - Head over to https://github.com/walterra/kibana-milestones-vis/releases and download the ZIP of the version you want to use, e.g. https://github.com/walterra/kibana-milestones-vis/releases/download/v7.17.0/kibanaMilestonesVis-7.17.0.zip 26 | - Inside your kibana directory, run `bin/kibana-plugin install file:////kibanaMilestonesVis-7.17.0.zip`, then `npm run start` 27 | 28 | ## Usage 29 | 30 | - Create a Kibana index pattern including a time filter. 31 | - Go to `Visualize > Create New Visualization` and choose the Milestones visualization in the Time Series section. 32 | - In the next view, pick the index pattern you created. 33 | - You should end up on the visualization's page where you can tweak it. Make sure you have the right time span selected (upper right corner). 34 | - The visualization works best with sparse data. While there is some optimization going on to distribute labels, you might get irritating results with data which results in too many labels. 35 | 36 | ## Development 37 | 38 | See [DEVELOPMENT.md](DEVELOPMENT.md). 39 | -------------------------------------------------------------------------------- /server/plugin.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to Elasticsearch B.V. under one or more contributor 3 | * license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright 5 | * ownership. Elasticsearch B.V. licenses this file to you under 6 | * the Apache License, Version 2.0 (the "License"); you may 7 | * not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | import type { DataRequestHandlerContext } from 'src/plugins/data/server'; 21 | 22 | import { 23 | PluginInitializerContext, 24 | CoreSetup, 25 | CoreStart, 26 | Plugin, 27 | Logger, 28 | } from '../../../src/core/server'; 29 | 30 | import { 31 | KibanaMilestonesVisPluginSetup, 32 | KibanaMilestonesVisPluginStart, 33 | KibanaMilestonesVisPluginSetupDeps, 34 | KibanaMilestonesVisPluginStartDeps, 35 | } from './types'; 36 | import { defineRoutes } from './routes'; 37 | 38 | export class KibanaMilestonesVisPlugin 39 | implements 40 | Plugin< 41 | KibanaMilestonesVisPluginSetup, 42 | KibanaMilestonesVisPluginStart, 43 | KibanaMilestonesVisPluginSetupDeps, 44 | KibanaMilestonesVisPluginStartDeps 45 | > 46 | { 47 | private readonly logger: Logger; 48 | 49 | constructor(initializerContext: PluginInitializerContext) { 50 | this.logger = initializerContext.logger.get(); 51 | } 52 | 53 | public setup(core: CoreSetup) { 54 | this.logger.debug('kibanaMilestonesVis: Setup'); 55 | const router = core.http.createRouter(); 56 | 57 | core.getStartServices().then(() => { 58 | defineRoutes(router); 59 | }); 60 | 61 | return {}; 62 | } 63 | 64 | public start(core: CoreStart) { 65 | this.logger.debug('kibanaMilestonesVis: Started'); 66 | return {}; 67 | } 68 | 69 | public stop() {} 70 | } 71 | -------------------------------------------------------------------------------- /public/milestones_visualization.tsx: -------------------------------------------------------------------------------- 1 | import React, { FC } from 'react'; 2 | import { nest } from 'd3-collection'; 3 | import { Milestones } from 'react-milestones-vis'; 4 | 5 | import { MilestonesVisParams } from './types'; 6 | 7 | import './milestones_visualization.scss'; 8 | 9 | interface RawDataItem { 10 | category?: string; 11 | timestamp: number; 12 | text: string; 13 | } 14 | 15 | interface DataItem extends RawDataItem { 16 | date: string; 17 | } 18 | 19 | export interface RawVisData { 20 | data: RawDataItem[]; 21 | } 22 | 23 | function timeFormat(timestamp: number) { 24 | const tzoffset = new Date(timestamp).getTimezoneOffset() * 60000; // offset in milliseconds 25 | const localISOTime = new Date(timestamp - tzoffset).toISOString().slice(0, -1); 26 | // e.g. '2015-01-26T06:40:36.181' 27 | return localISOTime; 28 | } 29 | 30 | function isUsingCategories(data: unknown): data is Array> { 31 | return Array.isArray(data) && data.length > 0 && typeof data[0].category !== 'undefined'; 32 | } 33 | 34 | const options = { 35 | mapping_timestamp: 'date', 36 | mapping_text: 'text', 37 | optimize: true, 38 | // e.g. "2015-01-26T06:40:36.181" 39 | parseTime: '%Y-%m-%dT%H:%M:%S.%L', 40 | }; 41 | 42 | interface MilestonesVisualizationProps { 43 | visData: RawVisData; 44 | visParams: MilestonesVisParams; 45 | } 46 | 47 | export const MilestonesVisualization: FC = (props) => { 48 | const { visData, visParams } = props; 49 | 50 | const data = (visData?.data ?? []) 51 | // data prep 52 | .map((d) => { 53 | if (d.text === undefined) { 54 | d.text = ''; 55 | } 56 | const item: DataItem = { 57 | ...d, 58 | date: timeFormat(d.timestamp), 59 | }; 60 | 61 | return item; 62 | }) 63 | // remove duplicates 64 | .reduce((p, c) => { 65 | const exists = p.some((d: DataItem) => d.date === c.date && d.text === c.text); 66 | 67 | if (!exists) { 68 | p.push(c); 69 | } 70 | 71 | return p; 72 | }, []); 73 | 74 | return ( 75 |
76 | >() 80 | .key((d) => d.category) 81 | .entries(data) 82 | : data 83 | } 84 | mapping={{ 85 | category: isUsingCategories(data) ? 'key' : undefined, 86 | entries: isUsingCategories(data) ? 'values' : undefined, 87 | timestamp: options.mapping_timestamp, 88 | text: options.mapping_text, 89 | }} 90 | parseTime={options.parseTime} 91 | useLabels={visParams.useLabels} 92 | distribution={visParams.distribution} 93 | optimize={options.optimize} 94 | orientation={visParams.orientation} 95 | aggregateBy={visParams.aggregateBy} 96 | /> 97 |
98 | ); 99 | }; 100 | -------------------------------------------------------------------------------- /server/routes/server_search_route.ts: -------------------------------------------------------------------------------- 1 | import { get } from 'lodash'; 2 | 3 | import { schema } from '@kbn/config-schema'; 4 | 5 | import type { DataRequestHandlerContext, IEsSearchRequest } from 'src/plugins/data/server'; 6 | import type { IEsSearchResponse } from 'src/plugins/data/common'; 7 | 8 | import type { IRouter } from '../../../../src/core/server'; 9 | 10 | import { NONE_SELECTED, SERVER_SEARCH_ROUTE_PATH } from '../../common'; 11 | 12 | export function defineServerSearchRoute(router: IRouter) { 13 | router.post( 14 | { 15 | path: SERVER_SEARCH_ROUTE_PATH, 16 | validate: { 17 | body: schema.object({ 18 | categoryField: schema.maybe(schema.string()), 19 | filtersDsl: schema.any(), 20 | index: schema.string(), 21 | labelField: schema.string(), 22 | maxDocuments: schema.number(), 23 | sortField: schema.string(), 24 | sortOrder: schema.string(), 25 | timeFieldName: schema.string(), 26 | timeRangeFrom: schema.oneOf([schema.number(), schema.string()]), 27 | timeRangeTo: schema.oneOf([schema.number(), schema.string()]), 28 | }), 29 | }, 30 | }, 31 | async (context, request, response) => { 32 | const { 33 | categoryField, 34 | filtersDsl, 35 | index, 36 | labelField, 37 | maxDocuments, 38 | sortField, 39 | sortOrder, 40 | timeFieldName, 41 | timeRangeFrom, 42 | timeRangeTo, 43 | } = request.body; 44 | 45 | const params = { 46 | index, 47 | body: { 48 | query: { 49 | bool: { 50 | must: [ 51 | filtersDsl, 52 | { 53 | range: { 54 | [timeFieldName]: { 55 | gte: timeRangeFrom, 56 | lt: timeRangeTo, 57 | }, 58 | }, 59 | }, 60 | ], 61 | }, 62 | }, 63 | _source: [ 64 | labelField, 65 | ...(categoryField !== undefined && categoryField !== NONE_SELECTED 66 | ? [categoryField] 67 | : []), 68 | ], 69 | script_fields: { 70 | milestones_timestamp: { 71 | script: { 72 | source: `doc["${timeFieldName}"].value.millis`, 73 | }, 74 | }, 75 | }, 76 | size: maxDocuments, 77 | sort: [{ [sortField]: { order: sortOrder } }], 78 | }, 79 | waitForCompletionTimeout: '5m', 80 | keepAlive: '5m', 81 | }; 82 | 83 | const res = await context.search!.search({ params } as IEsSearchRequest, {}).toPromise(); 84 | 85 | return response.ok({ 86 | body: { 87 | timeFieldName: timeFieldName, 88 | data: (res as IEsSearchResponse).rawResponse.hits.hits.map((hit: any) => ({ 89 | timestamp: hit.fields.milestones_timestamp[0], 90 | text: get(hit._source, labelField), 91 | ...(categoryField !== undefined && categoryField !== NONE_SELECTED 92 | ? { category: get(hit._source, categoryField) } 93 | : {}), 94 | })), 95 | }, 96 | }); 97 | } 98 | ); 99 | } 100 | -------------------------------------------------------------------------------- /public/milestones_function.ts: -------------------------------------------------------------------------------- 1 | import { get } from 'lodash'; 2 | import { i18n } from '@kbn/i18n'; 3 | import type { ExecutionContextSearch } from '../../../src/plugins/data/public'; 4 | import type { Adapters } from '../../../src/plugins/inspector/common'; 5 | import type { 6 | ExecutionContext, 7 | ExpressionFunctionDefinition, 8 | Render, 9 | } from '../../../src/plugins/expressions/public'; 10 | import type { MilestonesVisualizationDependencies } from './plugin'; 11 | import { createMilestonesRequestHandler } from './milestones_request_handler'; 12 | import type { KibanaContext, TimeRange, Query } from '../../../src/plugins/data/public'; 13 | 14 | import { EXPRESSION_NAME } from './constants'; 15 | import type { RawVisData } from './milestones_visualization'; 16 | import type { MilestonesVisParams } from './types'; 17 | 18 | type Input = KibanaContext | { type: 'null' }; 19 | type Output = Promise>; 20 | 21 | export type VisParams = Required; 22 | 23 | export interface MilestonesRenderValue { 24 | visData: RawVisData; 25 | visType: typeof EXPRESSION_NAME; 26 | visParams: VisParams; 27 | } 28 | 29 | export type MilestonesExpressionFunctionDefinition = ExpressionFunctionDefinition< 30 | typeof EXPRESSION_NAME, 31 | Input, 32 | MilestonesVisParams, 33 | Output, 34 | ExecutionContext 35 | >; 36 | 37 | export const createMilestonesFn = ( 38 | dependencies: MilestonesVisualizationDependencies 39 | ): MilestonesExpressionFunctionDefinition => ({ 40 | name: EXPRESSION_NAME, 41 | type: 'render', 42 | inputTypes: ['kibana_context', 'null'], 43 | help: i18n.translate('visTypeMilestones.function.help', { 44 | defaultMessage: 'Milestones visualization', 45 | }), 46 | args: { 47 | indexPatternId: { 48 | types: ['string'], 49 | default: undefined, 50 | help: '', 51 | }, 52 | distribution: { 53 | types: ['string'], 54 | default: 'top-bottom', 55 | help: '', 56 | }, 57 | categoryField: { 58 | types: ['string'], 59 | default: undefined, 60 | help: '', 61 | }, 62 | aggregateBy: { 63 | types: ['string'], 64 | default: 'minute', 65 | help: '', 66 | }, 67 | labelField: { 68 | types: ['string'], 69 | default: undefined, 70 | help: '', 71 | }, 72 | maxDocuments: { 73 | types: ['number'], 74 | default: 10, 75 | help: '', 76 | }, 77 | orientation: { 78 | types: ['string'], 79 | default: 'horizontal', 80 | help: '', 81 | }, 82 | useLabels: { 83 | types: ['boolean'], 84 | default: true, 85 | help: '', 86 | }, 87 | sortField: { 88 | types: ['string'], 89 | default: undefined, 90 | help: '', 91 | }, 92 | sortOrder: { 93 | types: ['string'], 94 | default: undefined, 95 | help: '', 96 | }, 97 | }, 98 | async fn(input, args) { 99 | const milestonesRequestHandler = createMilestonesRequestHandler(dependencies); 100 | 101 | const response = await milestonesRequestHandler({ 102 | timeRange: get(input, 'timeRange') as TimeRange, 103 | query: get(input, 'query') as Query, 104 | filters: get(input, 'filters') as any, 105 | visParams: args, 106 | }); 107 | 108 | return { 109 | type: 'render', 110 | as: EXPRESSION_NAME, 111 | value: { 112 | visData: response, 113 | visType: EXPRESSION_NAME, 114 | visParams: args, 115 | }, 116 | }; 117 | }, 118 | }); 119 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- 1 | # Development 2 | 3 | See the [kibana contributing guide](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md) for instructions setting up your development environment. Once you have completed that, use the following commands. 4 | 5 | ## Scripts 6 | 7 |
8 |
yarn kbn bootstrap
9 |
Execute this to install `node_modules` and setup the dependencies in your plugin and in Kibana.
10 | 11 |
yarn start
12 |
Execute this to start the development version of Kibana to work on your plugin.
13 |
14 | 15 | ## Build and release Process 16 | 17 | This is the process for producing a release for a new minor version that doesn't include any necessary changes due to changing Kibana APIs. 18 | 19 | ```bash 20 | # Move to the directory of your Kibana git checkout 21 | cd ~/dev/kibana-7.x-git/kibana 22 | 23 | # Fetch the latest releases 24 | git fetch --all --tags 25 | 26 | # Check out the release in Kibana 27 | git checkout v7.17.0 28 | 29 | # Switch to updated node-js if necessary 30 | nvm use 31 | 32 | # Run Kibana's bootstrap 33 | yarn kbn bootstrap 34 | 35 | # Create a temporary boilerplate plugin to check dependency updates for plugins 36 | node scripts/generate_plugin plugin_tmp 37 | 38 | # Once the plugin was created, you need to compare the two following files and if necessary update the dependencies in your `package.json` 39 | # plugins/kibana_milestones_vis/package.json 40 | # plugins/plugin_tmp/package.json 41 | 42 | # After checking/updating `package.json`, run bootstrap inside your plugin's directory 43 | cd plugins/kibana_milestones_vis 44 | yarn kbn bootstrap 45 | 46 | # Update all files containing the previous version name to the new name 47 | # kibana-extra/kibana-milestones-vis/package.json 48 | # kibana-extra/kibana-milestones-vis/DEVELOPMENT.md 49 | # kibana-extra/kibana-milestones-vis/README.md 50 | # Do not commit the changes yet, we need to test the release first! 51 | 52 | # Create the distribution build file 53 | yarn build 54 | 55 | # Next, download, install and run the corresponding Elasticsearch 56 | mkdir ~/dev/elasticsearch-7.17.0-release 57 | cd ~/dev/elasticsearch-7.17.0-release 58 | curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.0-darwin-x86_64.tar.gz 59 | gunzip -c elasticsearch-7.17.0-darwin-x86_64.tar.gz | tar xopf - 60 | cd elasticsearch-7.17.0 61 | ./bin/elasticsearch 62 | 63 | # Next, in another terminal tab, download and install the corresponding Kibana release to test the build 64 | mkdir ~/dev/kibana-7.17.0-release 65 | cd ~/dev/kibana-7.17.0-release/ 66 | curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.17.0-darwin-x86_64.tar.gz 67 | gunzip -c kibana-7.17.0-darwin-x86_64.tar.gz | tar xopf - 68 | cd kibana-7.17.0-darwin-x86_64 69 | 70 | # Install the built plugin 71 | ./bin/kibana-plugin install 'file:////kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.17.0.zip' 72 | 73 | # Start Kibana and test the UI if the plugin works. 74 | # Use Kibana's `flights` sample dataset and create a milestones visualization. 75 | ./bin/kibana 76 | 77 | # If everything works, finally the time has come to create the release on Github. 78 | cd ~/dev/kibana-7.x-git/kibana/plugins/kibana_milestones_vis 79 | git add DEVELOPMENT.md 80 | git add README.md 81 | git add package.json 82 | git commit -m "Bump version to 7.17.0." 83 | git tag v7.17.0 84 | git push origin 7.17 85 | git push --tags 86 | 87 | # On Github, edit the new release at 88 | # https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.17.0 89 | # Use `Kibana v7.17.0 compatibility release.` as the release text. 90 | # Add the build file `kibanaMilestonesVis-7.17.0.zip` to the releases' binaries. 91 | 92 | # Almost done! Before the next release, a little cleanup: Just delete the temporary plugin you create so you can create another one for comparison for the next release. 93 | rm -r ~/dev/kibana-7.x-git/kibana/plugins/plugin_tmp 94 | ``` 95 | -------------------------------------------------------------------------------- /public/components/milestones_options.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { EuiPanel } from '@elastic/eui'; 3 | import { i18n } from '@kbn/i18n'; 4 | 5 | import { VisEditorOptionsProps } from '../../../../src/plugins/visualizations/public'; 6 | import { 7 | NumberInputOption, 8 | SelectOption, 9 | SwitchOption, 10 | } from '../../../../src/plugins/vis_default_editor/public'; 11 | import { NONE_SELECTED, SCORE_FIELD } from '../../common'; 12 | import { MilestonesVisParams } from '../types'; 13 | 14 | interface KibanaIndexPatternField { 15 | name: string; 16 | type: string; 17 | } 18 | function MilestonesOptions({ 19 | stateParams, 20 | setValue, 21 | vis, 22 | }: VisEditorOptionsProps) { 23 | if (typeof vis.data.indexPattern === 'undefined') { 24 | return null; 25 | } 26 | 27 | const fieldOptions = [ 28 | { value: NONE_SELECTED, text: NONE_SELECTED }, 29 | ...vis.data.indexPattern.fields 30 | .filter( 31 | (field: KibanaIndexPatternField) => 32 | field.type === 'string' && !['_id', '_index', '_type'].includes(field.name) 33 | ) 34 | .map((field: KibanaIndexPatternField) => ({ value: field.name, text: field.name })), 35 | ]; 36 | 37 | const sortFieldOptions = [ 38 | { value: SCORE_FIELD, text: SCORE_FIELD }, 39 | ...vis.data.indexPattern.fields 40 | .filter( 41 | (field: KibanaIndexPatternField) => 42 | !['_id', '_index', '_score', '_source', '_type'].includes(field.name) 43 | ) 44 | .map((field: KibanaIndexPatternField) => ({ value: field.name, text: field.name })), 45 | ]; 46 | 47 | const sortOrderOptions = [ 48 | { 49 | value: 'asc' as MilestonesVisParams['sortOrder'], 50 | text: i18n.translate('visTypeMilestones.visParams.textSortOrderAscending', { 51 | defaultMessage: 'Ascending', 52 | }), 53 | }, 54 | { 55 | value: 'desc' as MilestonesVisParams['sortOrder'], 56 | text: i18n.translate('visTypeMilestones.visParams.textSortOrderDescending', { 57 | defaultMessage: 'Descending', 58 | }), 59 | }, 60 | ]; 61 | 62 | return ( 63 | 64 | 73 | 74 | 83 | 84 | 93 | 94 | 103 | 104 | 113 | 114 | { 121 | setValue(paramName, value || 0); 122 | }} 123 | /> 124 | 125 | 134 | 135 | 144 | 145 | 153 | 154 | ); 155 | } 156 | 157 | export { MilestonesOptions }; 158 | -------------------------------------------------------------------------------- /scripts/ingest_sample_data.js: -------------------------------------------------------------------------------- 1 | const { Client } = require('@elastic/elasticsearch'); 2 | const client = new Client({ node: 'http://localhost:9200' }); 3 | const dataCovid19 = require('../node_modules/d3-milestones/src/stories/assets/covid19.json'); 4 | const dataLotr = require('../node_modules/d3-milestones/src/stories/assets/lotr.json'); 5 | const dataMilestonesEvents = require('../node_modules/d3-milestones/src/stories/assets/milestones-events.json'); 6 | const dataMilestones = require('../node_modules/d3-milestones/src/stories/assets/milestones.json'); 7 | const dataOsCategoryLabels = require('../node_modules/d3-milestones/src/stories/assets/os-category-labels.json'); 8 | const dataUltimaSeries = require('../node_modules/d3-milestones/src/stories/assets/ultima-series.json'); 9 | const dataVikings = require('../node_modules/d3-milestones/src/stories/assets/vikings.json'); 10 | 11 | const datasets = [ 12 | { 13 | index: 'kmv-covid-19', 14 | mappings: { 15 | properties: { 16 | date: { type: 'date' }, 17 | title: { type: 'text' }, 18 | }, 19 | }, 20 | data: dataCovid19, 21 | }, 22 | { 23 | index: 'kmv-lotr', 24 | mappings: { 25 | properties: { 26 | timestamp: { type: 'date', format: 'dd.MM.yyyy||strict_date_optional_time ||epoch_millis' }, 27 | character: { type: 'keyword' }, 28 | text: { type: 'text' }, 29 | }, 30 | }, 31 | data: dataLotr, 32 | }, 33 | { 34 | index: 'kmv-milestones', 35 | mappings: { 36 | properties: { 37 | timestamp: { 38 | type: 'date', 39 | format: `yyyy.MM.dd'T'HH:mm||strict_date_optional_time ||epoch_millis`, 40 | }, 41 | detail: { type: 'keyword' }, 42 | giturl: { type: 'keyword' }, 43 | }, 44 | }, 45 | data: dataMilestones, 46 | }, 47 | { 48 | index: 'kmv-milestones-events', 49 | mappings: { 50 | properties: { 51 | timestamp: { 52 | type: 'date', 53 | format: `yyyy.MM.dd'T'HH:mm||strict_date_optional_time ||epoch_millis`, 54 | }, 55 | detail: { type: 'keyword' }, 56 | }, 57 | }, 58 | data: dataMilestonesEvents, 59 | }, 60 | { 61 | index: 'kmv-os-category-labels', 62 | mappings: { 63 | properties: { 64 | year: { 65 | type: 'date', 66 | format: 'yyyy||strict_date_optional_time ||epoch_millis', 67 | }, 68 | title: { type: 'keyword' }, 69 | system: { type: 'keyword' }, 70 | }, 71 | }, 72 | data: dataOsCategoryLabels, 73 | transform: (data) => { 74 | return data.reduce((p, c) => { 75 | c.versions.forEach((version) => { 76 | p.push({ 77 | ...version, 78 | system: c.system, 79 | }); 80 | }); 81 | return p; 82 | }, []); 83 | }, 84 | }, 85 | { 86 | index: 'kmv-ultima-series', 87 | mappings: { 88 | properties: { 89 | year: { 90 | type: 'date', 91 | format: 'yyyy||strict_date_optional_time ||epoch_millis', 92 | }, 93 | cover: { type: 'keyword' }, 94 | title: { type: 'keyword' }, 95 | }, 96 | }, 97 | data: dataUltimaSeries, 98 | }, 99 | { 100 | index: 'kmv-vikings', 101 | mappings: { 102 | properties: { 103 | year: { 104 | type: 'date', 105 | format: 'yyyy||strict_date_optional_time ||epoch_millis', 106 | }, 107 | title: { type: 'text' }, 108 | }, 109 | }, 110 | data: dataVikings, 111 | transform: (data) => { 112 | return data.map((d) => ({ 113 | ...d, 114 | year: `${d.year}`.padStart(4, '0'), 115 | })); 116 | }, 117 | }, 118 | ]; 119 | 120 | async function run({ index, mappings, data, transform }) { 121 | const indexExists = await client.indices.exists({ index }); 122 | 123 | if (indexExists.body === true) { 124 | await client.indices.delete({ index }); 125 | } 126 | 127 | await client.indices.create( 128 | { 129 | index, 130 | body: { 131 | mappings, 132 | }, 133 | }, 134 | { ignore: [400] } 135 | ); 136 | 137 | const transformedData = transform !== undefined ? transform(data) : data; 138 | 139 | const body = transformedData.flatMap((doc) => [{ index: { _index: index } }, doc]); 140 | 141 | const { body: bulkResponse } = await client.bulk({ refresh: true, body }); 142 | 143 | if (bulkResponse.errors) { 144 | const erroredDocuments = []; 145 | // The items array has the same order of the dataset we just indexed. 146 | // The presence of the `error` key indicates that the operation 147 | // that we did for the document has failed. 148 | bulkResponse.items.forEach((action, i) => { 149 | const operation = Object.keys(action)[0]; 150 | if (action[operation].error) { 151 | erroredDocuments.push({ 152 | // If the status is 429 it means that you can retry the document, 153 | // otherwise it's very likely a mapping error, and you should 154 | // fix the document before to try it again. 155 | status: action[operation].status, 156 | error: action[operation].error, 157 | operation: body[i * 2], 158 | document: body[i * 2 + 1], 159 | }); 160 | } 161 | }); 162 | console.log(erroredDocuments); 163 | } 164 | 165 | const { body: count } = await client.count({ index }); 166 | console.log(count); 167 | } 168 | 169 | datasets.forEach((dataset) => { 170 | run(dataset).catch(console.log); 171 | }); 172 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | https://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | Copyright 2013-2018 Docker, Inc. 180 | 181 | Licensed under the Apache License, Version 2.0 (the "License"); 182 | you may not use this file except in compliance with the License. 183 | You may obtain a copy of the License at 184 | 185 | https://www.apache.org/licenses/LICENSE-2.0 186 | 187 | Unless required by applicable law or agreed to in writing, software 188 | distributed under the License is distributed on an "AS IS" BASIS, 189 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 190 | See the License for the specific language governing permissions and 191 | limitations under the License. 192 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": 6 | version "7.16.7" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 8 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 9 | dependencies: 10 | "@babel/highlight" "^7.16.7" 11 | 12 | "@babel/compat-data@^7.16.4": 13 | version "7.16.4" 14 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz" 15 | integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== 16 | 17 | "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.5": 18 | version "7.16.7" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.7.tgz#db990f931f6d40cb9b87a0dc7d2adc749f1dcbcf" 20 | integrity sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA== 21 | dependencies: 22 | "@babel/code-frame" "^7.16.7" 23 | "@babel/generator" "^7.16.7" 24 | "@babel/helper-compilation-targets" "^7.16.7" 25 | "@babel/helper-module-transforms" "^7.16.7" 26 | "@babel/helpers" "^7.16.7" 27 | "@babel/parser" "^7.16.7" 28 | "@babel/template" "^7.16.7" 29 | "@babel/traverse" "^7.16.7" 30 | "@babel/types" "^7.16.7" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.16.7": 39 | version "7.16.7" 40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.7.tgz#b42bf46a3079fa65e1544135f32e7958f048adbb" 41 | integrity sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg== 42 | dependencies: 43 | "@babel/types" "^7.16.7" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-compilation-targets@^7.16.7": 48 | version "7.16.7" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" 50 | integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== 51 | dependencies: 52 | "@babel/compat-data" "^7.16.4" 53 | "@babel/helper-validator-option" "^7.16.7" 54 | browserslist "^4.17.5" 55 | semver "^6.3.0" 56 | 57 | "@babel/helper-environment-visitor@^7.16.7": 58 | version "7.16.7" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" 60 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== 61 | dependencies: 62 | "@babel/types" "^7.16.7" 63 | 64 | "@babel/helper-function-name@^7.16.7": 65 | version "7.16.7" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f" 67 | integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== 68 | dependencies: 69 | "@babel/helper-get-function-arity" "^7.16.7" 70 | "@babel/template" "^7.16.7" 71 | "@babel/types" "^7.16.7" 72 | 73 | "@babel/helper-get-function-arity@^7.16.7": 74 | version "7.16.7" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" 76 | integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== 77 | dependencies: 78 | "@babel/types" "^7.16.7" 79 | 80 | "@babel/helper-hoist-variables@^7.16.7": 81 | version "7.16.7" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" 83 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 84 | dependencies: 85 | "@babel/types" "^7.16.7" 86 | 87 | "@babel/helper-module-imports@^7.16.7": 88 | version "7.16.7" 89 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 90 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 91 | dependencies: 92 | "@babel/types" "^7.16.7" 93 | 94 | "@babel/helper-module-transforms@^7.16.7": 95 | version "7.16.7" 96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41" 97 | integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng== 98 | dependencies: 99 | "@babel/helper-environment-visitor" "^7.16.7" 100 | "@babel/helper-module-imports" "^7.16.7" 101 | "@babel/helper-simple-access" "^7.16.7" 102 | "@babel/helper-split-export-declaration" "^7.16.7" 103 | "@babel/helper-validator-identifier" "^7.16.7" 104 | "@babel/template" "^7.16.7" 105 | "@babel/traverse" "^7.16.7" 106 | "@babel/types" "^7.16.7" 107 | 108 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": 109 | version "7.16.7" 110 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" 111 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== 112 | 113 | "@babel/helper-simple-access@^7.16.7": 114 | version "7.16.7" 115 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" 116 | integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== 117 | dependencies: 118 | "@babel/types" "^7.16.7" 119 | 120 | "@babel/helper-split-export-declaration@^7.16.7": 121 | version "7.16.7" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 123 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 124 | dependencies: 125 | "@babel/types" "^7.16.7" 126 | 127 | "@babel/helper-validator-identifier@^7.16.7": 128 | version "7.16.7" 129 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 130 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 131 | 132 | "@babel/helper-validator-option@^7.16.7": 133 | version "7.16.7" 134 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 135 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 136 | 137 | "@babel/helpers@^7.16.7": 138 | version "7.16.7" 139 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.7.tgz#7e3504d708d50344112767c3542fc5e357fffefc" 140 | integrity sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw== 141 | dependencies: 142 | "@babel/template" "^7.16.7" 143 | "@babel/traverse" "^7.16.7" 144 | "@babel/types" "^7.16.7" 145 | 146 | "@babel/highlight@^7.16.7": 147 | version "7.16.7" 148 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b" 149 | integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw== 150 | dependencies: 151 | "@babel/helper-validator-identifier" "^7.16.7" 152 | chalk "^2.0.0" 153 | js-tokens "^4.0.0" 154 | 155 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7": 156 | version "7.16.7" 157 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.7.tgz#d372dda9c89fcec340a82630a9f533f2fe15877e" 158 | integrity sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA== 159 | 160 | "@babel/plugin-syntax-async-generators@^7.8.4": 161 | version "7.8.4" 162 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" 163 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 164 | dependencies: 165 | "@babel/helper-plugin-utils" "^7.8.0" 166 | 167 | "@babel/plugin-syntax-bigint@^7.8.3": 168 | version "7.8.3" 169 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" 170 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 171 | dependencies: 172 | "@babel/helper-plugin-utils" "^7.8.0" 173 | 174 | "@babel/plugin-syntax-class-properties@^7.8.3": 175 | version "7.12.13" 176 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" 177 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 178 | dependencies: 179 | "@babel/helper-plugin-utils" "^7.12.13" 180 | 181 | "@babel/plugin-syntax-import-meta@^7.8.3": 182 | version "7.10.4" 183 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" 184 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 185 | dependencies: 186 | "@babel/helper-plugin-utils" "^7.10.4" 187 | 188 | "@babel/plugin-syntax-json-strings@^7.8.3": 189 | version "7.8.3" 190 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" 191 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 192 | dependencies: 193 | "@babel/helper-plugin-utils" "^7.8.0" 194 | 195 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 196 | version "7.10.4" 197 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" 198 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 199 | dependencies: 200 | "@babel/helper-plugin-utils" "^7.10.4" 201 | 202 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 203 | version "7.8.3" 204 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" 205 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 206 | dependencies: 207 | "@babel/helper-plugin-utils" "^7.8.0" 208 | 209 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 210 | version "7.10.4" 211 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" 212 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 213 | dependencies: 214 | "@babel/helper-plugin-utils" "^7.10.4" 215 | 216 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 217 | version "7.8.3" 218 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" 219 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 220 | dependencies: 221 | "@babel/helper-plugin-utils" "^7.8.0" 222 | 223 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 224 | version "7.8.3" 225 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" 226 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 227 | dependencies: 228 | "@babel/helper-plugin-utils" "^7.8.0" 229 | 230 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 231 | version "7.8.3" 232 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" 233 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 234 | dependencies: 235 | "@babel/helper-plugin-utils" "^7.8.0" 236 | 237 | "@babel/plugin-syntax-top-level-await@^7.8.3": 238 | version "7.14.5" 239 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" 240 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 241 | dependencies: 242 | "@babel/helper-plugin-utils" "^7.14.5" 243 | 244 | "@babel/template@^7.16.7", "@babel/template@^7.3.3": 245 | version "7.16.7" 246 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 247 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 248 | dependencies: 249 | "@babel/code-frame" "^7.16.7" 250 | "@babel/parser" "^7.16.7" 251 | "@babel/types" "^7.16.7" 252 | 253 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.16.7": 254 | version "7.16.7" 255 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.7.tgz#dac01236a72c2560073658dd1a285fe4e0865d76" 256 | integrity sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ== 257 | dependencies: 258 | "@babel/code-frame" "^7.16.7" 259 | "@babel/generator" "^7.16.7" 260 | "@babel/helper-environment-visitor" "^7.16.7" 261 | "@babel/helper-function-name" "^7.16.7" 262 | "@babel/helper-hoist-variables" "^7.16.7" 263 | "@babel/helper-split-export-declaration" "^7.16.7" 264 | "@babel/parser" "^7.16.7" 265 | "@babel/types" "^7.16.7" 266 | debug "^4.1.0" 267 | globals "^11.1.0" 268 | 269 | "@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 270 | version "7.16.7" 271 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.7.tgz#4ed19d51f840ed4bd5645be6ce40775fecf03159" 272 | integrity sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg== 273 | dependencies: 274 | "@babel/helper-validator-identifier" "^7.16.7" 275 | to-fast-properties "^2.0.0" 276 | 277 | "@bcoe/v8-coverage@^0.2.3": 278 | version "0.2.3" 279 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" 280 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 281 | 282 | "@cnakazawa/watch@^1.0.3": 283 | version "1.0.4" 284 | resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz" 285 | integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== 286 | dependencies: 287 | exec-sh "^0.3.2" 288 | minimist "^1.2.0" 289 | 290 | "@elastic/elasticsearch@^7.17.0": 291 | version "7.17.0" 292 | resolved "https://registry.yarnpkg.com/@elastic/elasticsearch/-/elasticsearch-7.17.0.tgz#589fb219234cf1b0da23744e82b1d25e2fe9a797" 293 | integrity sha512-5QLPCjd0uLmLj1lSuKSThjNpq39f6NmlTy9ROLFwG5gjyTgpwSqufDeYG/Fm43Xs05uF7WcscoO7eguI3HuuYA== 294 | dependencies: 295 | debug "^4.3.1" 296 | hpagent "^0.1.1" 297 | ms "^2.1.3" 298 | secure-json-parse "^2.4.0" 299 | 300 | "@istanbuljs/load-nyc-config@^1.0.0": 301 | version "1.1.0" 302 | resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" 303 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 304 | dependencies: 305 | camelcase "^5.3.1" 306 | find-up "^4.1.0" 307 | get-package-type "^0.1.0" 308 | js-yaml "^3.13.1" 309 | resolve-from "^5.0.0" 310 | 311 | "@istanbuljs/schema@^0.1.2": 312 | version "0.1.3" 313 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" 314 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 315 | 316 | "@jest/console@^26.6.2": 317 | version "26.6.2" 318 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2" 319 | integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== 320 | dependencies: 321 | "@jest/types" "^26.6.2" 322 | "@types/node" "*" 323 | chalk "^4.0.0" 324 | jest-message-util "^26.6.2" 325 | jest-util "^26.6.2" 326 | slash "^3.0.0" 327 | 328 | "@jest/core@^26.6.3": 329 | version "26.6.3" 330 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad" 331 | integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== 332 | dependencies: 333 | "@jest/console" "^26.6.2" 334 | "@jest/reporters" "^26.6.2" 335 | "@jest/test-result" "^26.6.2" 336 | "@jest/transform" "^26.6.2" 337 | "@jest/types" "^26.6.2" 338 | "@types/node" "*" 339 | ansi-escapes "^4.2.1" 340 | chalk "^4.0.0" 341 | exit "^0.1.2" 342 | graceful-fs "^4.2.4" 343 | jest-changed-files "^26.6.2" 344 | jest-config "^26.6.3" 345 | jest-haste-map "^26.6.2" 346 | jest-message-util "^26.6.2" 347 | jest-regex-util "^26.0.0" 348 | jest-resolve "^26.6.2" 349 | jest-resolve-dependencies "^26.6.3" 350 | jest-runner "^26.6.3" 351 | jest-runtime "^26.6.3" 352 | jest-snapshot "^26.6.2" 353 | jest-util "^26.6.2" 354 | jest-validate "^26.6.2" 355 | jest-watcher "^26.6.2" 356 | micromatch "^4.0.2" 357 | p-each-series "^2.1.0" 358 | rimraf "^3.0.0" 359 | slash "^3.0.0" 360 | strip-ansi "^6.0.0" 361 | 362 | "@jest/environment@^26.6.2": 363 | version "26.6.2" 364 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c" 365 | integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== 366 | dependencies: 367 | "@jest/fake-timers" "^26.6.2" 368 | "@jest/types" "^26.6.2" 369 | "@types/node" "*" 370 | jest-mock "^26.6.2" 371 | 372 | "@jest/fake-timers@^26.6.2": 373 | version "26.6.2" 374 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad" 375 | integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== 376 | dependencies: 377 | "@jest/types" "^26.6.2" 378 | "@sinonjs/fake-timers" "^6.0.1" 379 | "@types/node" "*" 380 | jest-message-util "^26.6.2" 381 | jest-mock "^26.6.2" 382 | jest-util "^26.6.2" 383 | 384 | "@jest/globals@^26.6.2": 385 | version "26.6.2" 386 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a" 387 | integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== 388 | dependencies: 389 | "@jest/environment" "^26.6.2" 390 | "@jest/types" "^26.6.2" 391 | expect "^26.6.2" 392 | 393 | "@jest/reporters@^26.6.2": 394 | version "26.6.2" 395 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6" 396 | integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== 397 | dependencies: 398 | "@bcoe/v8-coverage" "^0.2.3" 399 | "@jest/console" "^26.6.2" 400 | "@jest/test-result" "^26.6.2" 401 | "@jest/transform" "^26.6.2" 402 | "@jest/types" "^26.6.2" 403 | chalk "^4.0.0" 404 | collect-v8-coverage "^1.0.0" 405 | exit "^0.1.2" 406 | glob "^7.1.2" 407 | graceful-fs "^4.2.4" 408 | istanbul-lib-coverage "^3.0.0" 409 | istanbul-lib-instrument "^4.0.3" 410 | istanbul-lib-report "^3.0.0" 411 | istanbul-lib-source-maps "^4.0.0" 412 | istanbul-reports "^3.0.2" 413 | jest-haste-map "^26.6.2" 414 | jest-resolve "^26.6.2" 415 | jest-util "^26.6.2" 416 | jest-worker "^26.6.2" 417 | slash "^3.0.0" 418 | source-map "^0.6.0" 419 | string-length "^4.0.1" 420 | terminal-link "^2.0.0" 421 | v8-to-istanbul "^7.0.0" 422 | optionalDependencies: 423 | node-notifier "^8.0.0" 424 | 425 | "@jest/source-map@^26.6.2": 426 | version "26.6.2" 427 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535" 428 | integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== 429 | dependencies: 430 | callsites "^3.0.0" 431 | graceful-fs "^4.2.4" 432 | source-map "^0.6.0" 433 | 434 | "@jest/test-result@^26.6.2": 435 | version "26.6.2" 436 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18" 437 | integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== 438 | dependencies: 439 | "@jest/console" "^26.6.2" 440 | "@jest/types" "^26.6.2" 441 | "@types/istanbul-lib-coverage" "^2.0.0" 442 | collect-v8-coverage "^1.0.0" 443 | 444 | "@jest/test-sequencer@^26.6.3": 445 | version "26.6.3" 446 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17" 447 | integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== 448 | dependencies: 449 | "@jest/test-result" "^26.6.2" 450 | graceful-fs "^4.2.4" 451 | jest-haste-map "^26.6.2" 452 | jest-runner "^26.6.3" 453 | jest-runtime "^26.6.3" 454 | 455 | "@jest/transform@^26.6.2": 456 | version "26.6.2" 457 | resolved "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz" 458 | integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== 459 | dependencies: 460 | "@babel/core" "^7.1.0" 461 | "@jest/types" "^26.6.2" 462 | babel-plugin-istanbul "^6.0.0" 463 | chalk "^4.0.0" 464 | convert-source-map "^1.4.0" 465 | fast-json-stable-stringify "^2.0.0" 466 | graceful-fs "^4.2.4" 467 | jest-haste-map "^26.6.2" 468 | jest-regex-util "^26.0.0" 469 | jest-util "^26.6.2" 470 | micromatch "^4.0.2" 471 | pirates "^4.0.1" 472 | slash "^3.0.0" 473 | source-map "^0.6.1" 474 | write-file-atomic "^3.0.0" 475 | 476 | "@jest/types@^26.6.2": 477 | version "26.6.2" 478 | resolved "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz" 479 | integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== 480 | dependencies: 481 | "@types/istanbul-lib-coverage" "^2.0.0" 482 | "@types/istanbul-reports" "^3.0.0" 483 | "@types/node" "*" 484 | "@types/yargs" "^15.0.0" 485 | chalk "^4.0.0" 486 | 487 | "@sinonjs/commons@^1.7.0": 488 | version "1.8.3" 489 | resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz" 490 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 491 | dependencies: 492 | type-detect "4.0.8" 493 | 494 | "@sinonjs/fake-timers@^6.0.1": 495 | version "6.0.1" 496 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" 497 | integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== 498 | dependencies: 499 | "@sinonjs/commons" "^1.7.0" 500 | 501 | "@tootallnate/once@1": 502 | version "1.1.2" 503 | resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" 504 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 505 | 506 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 507 | version "7.1.18" 508 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" 509 | integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== 510 | dependencies: 511 | "@babel/parser" "^7.1.0" 512 | "@babel/types" "^7.0.0" 513 | "@types/babel__generator" "*" 514 | "@types/babel__template" "*" 515 | "@types/babel__traverse" "*" 516 | 517 | "@types/babel__generator@*": 518 | version "7.6.4" 519 | resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz" 520 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 521 | dependencies: 522 | "@babel/types" "^7.0.0" 523 | 524 | "@types/babel__template@*": 525 | version "7.4.1" 526 | resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" 527 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 528 | dependencies: 529 | "@babel/parser" "^7.1.0" 530 | "@babel/types" "^7.0.0" 531 | 532 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 533 | version "7.14.2" 534 | resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz" 535 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 536 | dependencies: 537 | "@babel/types" "^7.3.0" 538 | 539 | "@types/d3-collection@^1.0.7": 540 | version "1.0.10" 541 | resolved "https://registry.yarnpkg.com/@types/d3-collection/-/d3-collection-1.0.10.tgz#bca161e336156968f267c077f7f2bfa8ff224e58" 542 | integrity sha512-54Fdv8u5JbuXymtmXm2SYzi1x/Svt+jfWBU5junkhrCewL92VjqtCBDn97coBRVwVFmYNnVTNDyV8gQyPYfm+A== 543 | 544 | "@types/graceful-fs@^4.1.2": 545 | version "4.1.5" 546 | resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" 547 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 548 | dependencies: 549 | "@types/node" "*" 550 | 551 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 552 | version "2.0.4" 553 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz" 554 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 555 | 556 | "@types/istanbul-lib-report@*": 557 | version "3.0.0" 558 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 559 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 560 | dependencies: 561 | "@types/istanbul-lib-coverage" "*" 562 | 563 | "@types/istanbul-reports@^3.0.0": 564 | version "3.0.1" 565 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz" 566 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 567 | dependencies: 568 | "@types/istanbul-lib-report" "*" 569 | 570 | "@types/jest@^26.0.14": 571 | version "26.0.22" 572 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.22.tgz#8308a1debdf1b807aa47be2838acdcd91e88fbe6" 573 | integrity sha512-eeWwWjlqxvBxc4oQdkueW5OF/gtfSceKk4OnOAGlUSwS/liBRtZppbJuz1YkgbrbfGOoeBHun9fOvXnjNwrSOw== 574 | dependencies: 575 | jest-diff "^26.0.0" 576 | pretty-format "^26.0.0" 577 | 578 | "@types/node@*": 579 | version "17.0.5" 580 | resolved "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz" 581 | integrity sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw== 582 | 583 | "@types/normalize-package-data@^2.4.0": 584 | version "2.4.1" 585 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz" 586 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 587 | 588 | "@types/prettier@^2.0.0": 589 | version "2.4.2" 590 | resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz" 591 | integrity sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA== 592 | 593 | "@types/stack-utils@^2.0.0": 594 | version "2.0.1" 595 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz" 596 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 597 | 598 | "@types/yargs-parser@*": 599 | version "20.2.1" 600 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz" 601 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 602 | 603 | "@types/yargs@^15.0.0": 604 | version "15.0.14" 605 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz" 606 | integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== 607 | dependencies: 608 | "@types/yargs-parser" "*" 609 | 610 | abab@^2.0.3, abab@^2.0.5: 611 | version "2.0.5" 612 | resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" 613 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 614 | 615 | acorn-globals@^6.0.0: 616 | version "6.0.0" 617 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" 618 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 619 | dependencies: 620 | acorn "^7.1.1" 621 | acorn-walk "^7.1.1" 622 | 623 | acorn-walk@^7.1.1: 624 | version "7.2.0" 625 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" 626 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 627 | 628 | acorn@^7.1.1: 629 | version "7.4.1" 630 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" 631 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 632 | 633 | acorn@^8.2.4: 634 | version "8.7.0" 635 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz" 636 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 637 | 638 | agent-base@6: 639 | version "6.0.2" 640 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" 641 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 642 | dependencies: 643 | debug "4" 644 | 645 | ansi-escapes@^4.2.1: 646 | version "4.3.2" 647 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" 648 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 649 | dependencies: 650 | type-fest "^0.21.3" 651 | 652 | ansi-regex@^5.0.0, ansi-regex@^5.0.1: 653 | version "5.0.1" 654 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 655 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 656 | 657 | ansi-styles@^3.2.1: 658 | version "3.2.1" 659 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 660 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 661 | dependencies: 662 | color-convert "^1.9.0" 663 | 664 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 665 | version "4.3.0" 666 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 667 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 668 | dependencies: 669 | color-convert "^2.0.1" 670 | 671 | anymatch@^2.0.0: 672 | version "2.0.0" 673 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" 674 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 675 | dependencies: 676 | micromatch "^3.1.4" 677 | normalize-path "^2.1.1" 678 | 679 | anymatch@^3.0.3: 680 | version "3.1.2" 681 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" 682 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 683 | dependencies: 684 | normalize-path "^3.0.0" 685 | picomatch "^2.0.4" 686 | 687 | argparse@^1.0.7: 688 | version "1.0.10" 689 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" 690 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 691 | dependencies: 692 | sprintf-js "~1.0.2" 693 | 694 | arr-diff@^4.0.0: 695 | version "4.0.0" 696 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" 697 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 698 | 699 | arr-flatten@^1.1.0: 700 | version "1.1.0" 701 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" 702 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 703 | 704 | arr-union@^3.1.0: 705 | version "3.1.0" 706 | resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" 707 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 708 | 709 | array-unique@^0.3.2: 710 | version "0.3.2" 711 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" 712 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 713 | 714 | assign-symbols@^1.0.0: 715 | version "1.0.0" 716 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" 717 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 718 | 719 | asynckit@^0.4.0: 720 | version "0.4.0" 721 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" 722 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 723 | 724 | atob@^2.1.2: 725 | version "2.1.2" 726 | resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" 727 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 728 | 729 | babel-jest@^26.6.3: 730 | version "26.6.3" 731 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" 732 | integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== 733 | dependencies: 734 | "@jest/transform" "^26.6.2" 735 | "@jest/types" "^26.6.2" 736 | "@types/babel__core" "^7.1.7" 737 | babel-plugin-istanbul "^6.0.0" 738 | babel-preset-jest "^26.6.2" 739 | chalk "^4.0.0" 740 | graceful-fs "^4.2.4" 741 | slash "^3.0.0" 742 | 743 | babel-plugin-istanbul@^6.0.0: 744 | version "6.1.1" 745 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" 746 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 747 | dependencies: 748 | "@babel/helper-plugin-utils" "^7.0.0" 749 | "@istanbuljs/load-nyc-config" "^1.0.0" 750 | "@istanbuljs/schema" "^0.1.2" 751 | istanbul-lib-instrument "^5.0.4" 752 | test-exclude "^6.0.0" 753 | 754 | babel-plugin-jest-hoist@^26.6.2: 755 | version "26.6.2" 756 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d" 757 | integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== 758 | dependencies: 759 | "@babel/template" "^7.3.3" 760 | "@babel/types" "^7.3.3" 761 | "@types/babel__core" "^7.0.0" 762 | "@types/babel__traverse" "^7.0.6" 763 | 764 | babel-preset-current-node-syntax@^1.0.0: 765 | version "1.0.1" 766 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" 767 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 768 | dependencies: 769 | "@babel/plugin-syntax-async-generators" "^7.8.4" 770 | "@babel/plugin-syntax-bigint" "^7.8.3" 771 | "@babel/plugin-syntax-class-properties" "^7.8.3" 772 | "@babel/plugin-syntax-import-meta" "^7.8.3" 773 | "@babel/plugin-syntax-json-strings" "^7.8.3" 774 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 775 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 776 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 777 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 778 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 779 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 780 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 781 | 782 | babel-preset-jest@^26.6.2: 783 | version "26.6.2" 784 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee" 785 | integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== 786 | dependencies: 787 | babel-plugin-jest-hoist "^26.6.2" 788 | babel-preset-current-node-syntax "^1.0.0" 789 | 790 | balanced-match@^1.0.0: 791 | version "1.0.2" 792 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 793 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 794 | 795 | base@^0.11.1: 796 | version "0.11.2" 797 | resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" 798 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 799 | dependencies: 800 | cache-base "^1.0.1" 801 | class-utils "^0.3.5" 802 | component-emitter "^1.2.1" 803 | define-property "^1.0.0" 804 | isobject "^3.0.1" 805 | mixin-deep "^1.2.0" 806 | pascalcase "^0.1.1" 807 | 808 | brace-expansion@^1.1.7: 809 | version "1.1.11" 810 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 811 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 812 | dependencies: 813 | balanced-match "^1.0.0" 814 | concat-map "0.0.1" 815 | 816 | braces@^2.3.1: 817 | version "2.3.2" 818 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" 819 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 820 | dependencies: 821 | arr-flatten "^1.1.0" 822 | array-unique "^0.3.2" 823 | extend-shallow "^2.0.1" 824 | fill-range "^4.0.0" 825 | isobject "^3.0.1" 826 | repeat-element "^1.1.2" 827 | snapdragon "^0.8.1" 828 | snapdragon-node "^2.0.1" 829 | split-string "^3.0.2" 830 | to-regex "^3.0.1" 831 | 832 | braces@^3.0.1: 833 | version "3.0.2" 834 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 835 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 836 | dependencies: 837 | fill-range "^7.0.1" 838 | 839 | browser-process-hrtime@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" 842 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 843 | 844 | browserslist@^4.17.5: 845 | version "4.19.1" 846 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz" 847 | integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== 848 | dependencies: 849 | caniuse-lite "^1.0.30001286" 850 | electron-to-chromium "^1.4.17" 851 | escalade "^3.1.1" 852 | node-releases "^2.0.1" 853 | picocolors "^1.0.0" 854 | 855 | bs-logger@0.x: 856 | version "0.2.6" 857 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 858 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 859 | dependencies: 860 | fast-json-stable-stringify "2.x" 861 | 862 | bser@2.1.1: 863 | version "2.1.1" 864 | resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" 865 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 866 | dependencies: 867 | node-int64 "^0.4.0" 868 | 869 | buffer-from@1.x, buffer-from@^1.0.0: 870 | version "1.1.2" 871 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" 872 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 873 | 874 | cache-base@^1.0.1: 875 | version "1.0.1" 876 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" 877 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 878 | dependencies: 879 | collection-visit "^1.0.0" 880 | component-emitter "^1.2.1" 881 | get-value "^2.0.6" 882 | has-value "^1.0.0" 883 | isobject "^3.0.1" 884 | set-value "^2.0.0" 885 | to-object-path "^0.3.0" 886 | union-value "^1.0.0" 887 | unset-value "^1.0.0" 888 | 889 | callsites@^3.0.0: 890 | version "3.1.0" 891 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 892 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 893 | 894 | camelcase@^5.0.0, camelcase@^5.3.1: 895 | version "5.3.1" 896 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" 897 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 898 | 899 | camelcase@^6.0.0: 900 | version "6.3.0" 901 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 902 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 903 | 904 | caniuse-lite@^1.0.30001286: 905 | version "1.0.30001363" 906 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz" 907 | integrity sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg== 908 | 909 | capture-exit@^2.0.0: 910 | version "2.0.0" 911 | resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" 912 | integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== 913 | dependencies: 914 | rsvp "^4.8.4" 915 | 916 | chalk@^2.0.0: 917 | version "2.4.2" 918 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 919 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 920 | dependencies: 921 | ansi-styles "^3.2.1" 922 | escape-string-regexp "^1.0.5" 923 | supports-color "^5.3.0" 924 | 925 | chalk@^4.0.0: 926 | version "4.1.2" 927 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 928 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 929 | dependencies: 930 | ansi-styles "^4.1.0" 931 | supports-color "^7.1.0" 932 | 933 | char-regex@^1.0.2: 934 | version "1.0.2" 935 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" 936 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 937 | 938 | ci-info@^2.0.0: 939 | version "2.0.0" 940 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" 941 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 942 | 943 | cjs-module-lexer@^0.6.0: 944 | version "0.6.0" 945 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f" 946 | integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== 947 | 948 | class-utils@^0.3.5: 949 | version "0.3.6" 950 | resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" 951 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 952 | dependencies: 953 | arr-union "^3.1.0" 954 | define-property "^0.2.5" 955 | isobject "^3.0.0" 956 | static-extend "^0.1.1" 957 | 958 | cliui@^6.0.0: 959 | version "6.0.0" 960 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 961 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 962 | dependencies: 963 | string-width "^4.2.0" 964 | strip-ansi "^6.0.0" 965 | wrap-ansi "^6.2.0" 966 | 967 | co@^4.6.0: 968 | version "4.6.0" 969 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" 970 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 971 | 972 | collect-v8-coverage@^1.0.0: 973 | version "1.0.1" 974 | resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" 975 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 976 | 977 | collection-visit@^1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" 980 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 981 | dependencies: 982 | map-visit "^1.0.0" 983 | object-visit "^1.0.0" 984 | 985 | color-convert@^1.9.0: 986 | version "1.9.3" 987 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 988 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 989 | dependencies: 990 | color-name "1.1.3" 991 | 992 | color-convert@^2.0.1: 993 | version "2.0.1" 994 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 995 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 996 | dependencies: 997 | color-name "~1.1.4" 998 | 999 | color-name@1.1.3: 1000 | version "1.1.3" 1001 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 1002 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1003 | 1004 | color-name@~1.1.4: 1005 | version "1.1.4" 1006 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1007 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1008 | 1009 | combined-stream@^1.0.8: 1010 | version "1.0.8" 1011 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz" 1012 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1013 | dependencies: 1014 | delayed-stream "~1.0.0" 1015 | 1016 | component-emitter@^1.2.1: 1017 | version "1.3.0" 1018 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" 1019 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1020 | 1021 | concat-map@0.0.1: 1022 | version "0.0.1" 1023 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 1024 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1025 | 1026 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1027 | version "1.8.0" 1028 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" 1029 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1030 | dependencies: 1031 | safe-buffer "~5.1.1" 1032 | 1033 | copy-descriptor@^0.1.0: 1034 | version "0.1.1" 1035 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" 1036 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1037 | 1038 | cross-spawn@^6.0.0: 1039 | version "6.0.5" 1040 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" 1041 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1042 | dependencies: 1043 | nice-try "^1.0.4" 1044 | path-key "^2.0.1" 1045 | semver "^5.5.0" 1046 | shebang-command "^1.2.0" 1047 | which "^1.2.9" 1048 | 1049 | cross-spawn@^7.0.0: 1050 | version "7.0.3" 1051 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 1052 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1053 | dependencies: 1054 | path-key "^3.1.0" 1055 | shebang-command "^2.0.0" 1056 | which "^2.0.1" 1057 | 1058 | cssom@^0.4.4: 1059 | version "0.4.4" 1060 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" 1061 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 1062 | 1063 | cssom@~0.3.6: 1064 | version "0.3.8" 1065 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" 1066 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1067 | 1068 | cssstyle@^2.3.0: 1069 | version "2.3.0" 1070 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" 1071 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1072 | dependencies: 1073 | cssom "~0.3.6" 1074 | 1075 | "d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.2.0: 1076 | version "3.2.1" 1077 | resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.1.tgz#39331ea706f5709417d31bbb6ec152e0328b39b3" 1078 | integrity sha512-gUY/qeHq/yNqqoCKNq4vtpFLdoCdvyNpWoC/KNjhGbhDuQpAM9sIQQKkXSNpXa9h5KySs/gzm7R88WkUutgwWQ== 1079 | dependencies: 1080 | internmap "1 - 2" 1081 | 1082 | d3-collection@^1.0.7: 1083 | version "1.0.7" 1084 | resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" 1085 | integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== 1086 | 1087 | "d3-color@1 - 3": 1088 | version "3.1.0" 1089 | resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" 1090 | integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== 1091 | 1092 | "d3-format@1 - 3": 1093 | version "3.1.0" 1094 | resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" 1095 | integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== 1096 | 1097 | "d3-interpolate@1.2.0 - 3": 1098 | version "3.0.1" 1099 | resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" 1100 | integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== 1101 | dependencies: 1102 | d3-color "1 - 3" 1103 | 1104 | d3-milestones@^1.4.7: 1105 | version "1.4.7" 1106 | resolved "https://registry.yarnpkg.com/d3-milestones/-/d3-milestones-1.4.7.tgz#a41bd50515b9b0ab6c926640e05d0a7d7efc85bc" 1107 | integrity sha512-EKq0TqWIx09CaiNm/LQl2fUR5hifGeKkZYhiykB6u6Z8vuRcQcJUiOZntDWEc48pZBh4uL2chaiYrbJPD5CK6g== 1108 | dependencies: 1109 | d3-array "^3.2.0" 1110 | d3-collection "^1.0.7" 1111 | d3-scale "^4.0.2" 1112 | d3-selection "^3.0.0" 1113 | d3-time-format "^4.1.0" 1114 | 1115 | d3-scale@^4.0.2: 1116 | version "4.0.2" 1117 | resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" 1118 | integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== 1119 | dependencies: 1120 | d3-array "2.10.0 - 3" 1121 | d3-format "1 - 3" 1122 | d3-interpolate "1.2.0 - 3" 1123 | d3-time "2.1.1 - 3" 1124 | d3-time-format "2 - 4" 1125 | 1126 | d3-selection@^3.0.0: 1127 | version "3.0.0" 1128 | resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" 1129 | integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== 1130 | 1131 | "d3-time-format@2 - 4", d3-time-format@^4.1.0: 1132 | version "4.1.0" 1133 | resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" 1134 | integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== 1135 | dependencies: 1136 | d3-time "1 - 3" 1137 | 1138 | "d3-time@1 - 3", "d3-time@2.1.1 - 3": 1139 | version "3.1.0" 1140 | resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" 1141 | integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== 1142 | dependencies: 1143 | d3-array "2 - 3" 1144 | 1145 | data-urls@^2.0.0: 1146 | version "2.0.0" 1147 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" 1148 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1149 | dependencies: 1150 | abab "^2.0.3" 1151 | whatwg-mimetype "^2.3.0" 1152 | whatwg-url "^8.0.0" 1153 | 1154 | debug@4, debug@^4.1.0, debug@^4.1.1: 1155 | version "4.3.3" 1156 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz" 1157 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 1158 | dependencies: 1159 | ms "2.1.2" 1160 | 1161 | debug@^2.2.0, debug@^2.3.3: 1162 | version "2.6.9" 1163 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" 1164 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1165 | dependencies: 1166 | ms "2.0.0" 1167 | 1168 | debug@^4.3.1: 1169 | version "4.3.4" 1170 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1171 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1172 | dependencies: 1173 | ms "2.1.2" 1174 | 1175 | decamelize@^1.2.0: 1176 | version "1.2.0" 1177 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1178 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1179 | 1180 | decimal.js@^10.2.1: 1181 | version "10.3.1" 1182 | resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz" 1183 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1184 | 1185 | decode-uri-component@^0.2.0, decode-uri-component@^0.2.1: 1186 | version "0.2.2" 1187 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" 1188 | integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== 1189 | 1190 | deep-is@~0.1.3: 1191 | version "0.1.4" 1192 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1193 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1194 | 1195 | deepmerge@^4.2.2: 1196 | version "4.2.2" 1197 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" 1198 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1199 | 1200 | define-property@^0.2.5: 1201 | version "0.2.5" 1202 | resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" 1203 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1204 | dependencies: 1205 | is-descriptor "^0.1.0" 1206 | 1207 | define-property@^1.0.0: 1208 | version "1.0.0" 1209 | resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" 1210 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1211 | dependencies: 1212 | is-descriptor "^1.0.0" 1213 | 1214 | define-property@^2.0.2: 1215 | version "2.0.2" 1216 | resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" 1217 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1218 | dependencies: 1219 | is-descriptor "^1.0.2" 1220 | isobject "^3.0.1" 1221 | 1222 | delayed-stream@~1.0.0: 1223 | version "1.0.0" 1224 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" 1225 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1226 | 1227 | detect-newline@^3.0.0: 1228 | version "3.1.0" 1229 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" 1230 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1231 | 1232 | diff-sequences@^26.6.2: 1233 | version "26.6.2" 1234 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" 1235 | integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== 1236 | 1237 | domexception@^2.0.1: 1238 | version "2.0.1" 1239 | resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" 1240 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1241 | dependencies: 1242 | webidl-conversions "^5.0.0" 1243 | 1244 | electron-to-chromium@^1.4.17: 1245 | version "1.4.35" 1246 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.35.tgz#69aabb73d7030733e71c1e970ec16f5ceefbaea4" 1247 | integrity sha512-wzTOMh6HGFWeALMI3bif0mzgRrVGyP1BdFRx7IvWukFrSC5QVQELENuy+Fm2dCrAdQH9T3nuqr07n94nPDFBWA== 1248 | 1249 | emittery@^0.7.1: 1250 | version "0.7.2" 1251 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82" 1252 | integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== 1253 | 1254 | emoji-regex@^8.0.0: 1255 | version "8.0.0" 1256 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" 1257 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1258 | 1259 | end-of-stream@^1.1.0: 1260 | version "1.4.4" 1261 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" 1262 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1263 | dependencies: 1264 | once "^1.4.0" 1265 | 1266 | error-ex@^1.3.1: 1267 | version "1.3.2" 1268 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 1269 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1270 | dependencies: 1271 | is-arrayish "^0.2.1" 1272 | 1273 | escalade@^3.1.1: 1274 | version "3.1.1" 1275 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1276 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1277 | 1278 | escape-string-regexp@^1.0.5: 1279 | version "1.0.5" 1280 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1281 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1282 | 1283 | escape-string-regexp@^2.0.0: 1284 | version "2.0.0" 1285 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" 1286 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1287 | 1288 | escodegen@^2.0.0: 1289 | version "2.0.0" 1290 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz" 1291 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1292 | dependencies: 1293 | esprima "^4.0.1" 1294 | estraverse "^5.2.0" 1295 | esutils "^2.0.2" 1296 | optionator "^0.8.1" 1297 | optionalDependencies: 1298 | source-map "~0.6.1" 1299 | 1300 | esprima@^4.0.0, esprima@^4.0.1: 1301 | version "4.0.1" 1302 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" 1303 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1304 | 1305 | estraverse@^5.2.0: 1306 | version "5.3.0" 1307 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1308 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1309 | 1310 | esutils@^2.0.2: 1311 | version "2.0.3" 1312 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1313 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1314 | 1315 | exec-sh@^0.3.2: 1316 | version "0.3.6" 1317 | resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz" 1318 | integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== 1319 | 1320 | execa@^1.0.0: 1321 | version "1.0.0" 1322 | resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" 1323 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 1324 | dependencies: 1325 | cross-spawn "^6.0.0" 1326 | get-stream "^4.0.0" 1327 | is-stream "^1.1.0" 1328 | npm-run-path "^2.0.0" 1329 | p-finally "^1.0.0" 1330 | signal-exit "^3.0.0" 1331 | strip-eof "^1.0.0" 1332 | 1333 | execa@^4.0.0: 1334 | version "4.1.0" 1335 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 1336 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1337 | dependencies: 1338 | cross-spawn "^7.0.0" 1339 | get-stream "^5.0.0" 1340 | human-signals "^1.1.1" 1341 | is-stream "^2.0.0" 1342 | merge-stream "^2.0.0" 1343 | npm-run-path "^4.0.0" 1344 | onetime "^5.1.0" 1345 | signal-exit "^3.0.2" 1346 | strip-final-newline "^2.0.0" 1347 | 1348 | exit@^0.1.2: 1349 | version "0.1.2" 1350 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" 1351 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1352 | 1353 | expand-brackets@^2.1.4: 1354 | version "2.1.4" 1355 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" 1356 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1357 | dependencies: 1358 | debug "^2.3.3" 1359 | define-property "^0.2.5" 1360 | extend-shallow "^2.0.1" 1361 | posix-character-classes "^0.1.0" 1362 | regex-not "^1.0.0" 1363 | snapdragon "^0.8.1" 1364 | to-regex "^3.0.1" 1365 | 1366 | expect@^26.6.2: 1367 | version "26.6.2" 1368 | resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417" 1369 | integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA== 1370 | dependencies: 1371 | "@jest/types" "^26.6.2" 1372 | ansi-styles "^4.0.0" 1373 | jest-get-type "^26.3.0" 1374 | jest-matcher-utils "^26.6.2" 1375 | jest-message-util "^26.6.2" 1376 | jest-regex-util "^26.0.0" 1377 | 1378 | extend-shallow@^2.0.1: 1379 | version "2.0.1" 1380 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" 1381 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1382 | dependencies: 1383 | is-extendable "^0.1.0" 1384 | 1385 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1386 | version "3.0.2" 1387 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" 1388 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1389 | dependencies: 1390 | assign-symbols "^1.0.0" 1391 | is-extendable "^1.0.1" 1392 | 1393 | extglob@^2.0.4: 1394 | version "2.0.4" 1395 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" 1396 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1397 | dependencies: 1398 | array-unique "^0.3.2" 1399 | define-property "^1.0.0" 1400 | expand-brackets "^2.1.4" 1401 | extend-shallow "^2.0.1" 1402 | fragment-cache "^0.2.1" 1403 | regex-not "^1.0.0" 1404 | snapdragon "^0.8.1" 1405 | to-regex "^3.0.1" 1406 | 1407 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1408 | version "2.1.0" 1409 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1410 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1411 | 1412 | fast-levenshtein@~2.0.6: 1413 | version "2.0.6" 1414 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1415 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1416 | 1417 | fb-watchman@^2.0.0: 1418 | version "2.0.1" 1419 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" 1420 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1421 | dependencies: 1422 | bser "2.1.1" 1423 | 1424 | fill-range@^4.0.0: 1425 | version "4.0.0" 1426 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" 1427 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1428 | dependencies: 1429 | extend-shallow "^2.0.1" 1430 | is-number "^3.0.0" 1431 | repeat-string "^1.6.1" 1432 | to-regex-range "^2.1.0" 1433 | 1434 | fill-range@^7.0.1: 1435 | version "7.0.1" 1436 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1437 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1438 | dependencies: 1439 | to-regex-range "^5.0.1" 1440 | 1441 | find-up@^4.0.0, find-up@^4.1.0: 1442 | version "4.1.0" 1443 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1444 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1445 | dependencies: 1446 | locate-path "^5.0.0" 1447 | path-exists "^4.0.0" 1448 | 1449 | for-in@^1.0.2: 1450 | version "1.0.2" 1451 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" 1452 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1453 | 1454 | form-data@^3.0.0: 1455 | version "3.0.1" 1456 | resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" 1457 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1458 | dependencies: 1459 | asynckit "^0.4.0" 1460 | combined-stream "^1.0.8" 1461 | mime-types "^2.1.12" 1462 | 1463 | fragment-cache@^0.2.1: 1464 | version "0.2.1" 1465 | resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" 1466 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1467 | dependencies: 1468 | map-cache "^0.2.2" 1469 | 1470 | fs.realpath@^1.0.0: 1471 | version "1.0.0" 1472 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1473 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1474 | 1475 | fsevents@^2.1.2: 1476 | version "2.3.2" 1477 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 1478 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1479 | 1480 | function-bind@^1.1.1: 1481 | version "1.1.1" 1482 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1483 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1484 | 1485 | gensync@^1.0.0-beta.2: 1486 | version "1.0.0-beta.2" 1487 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" 1488 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1489 | 1490 | get-caller-file@^2.0.1: 1491 | version "2.0.5" 1492 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 1493 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1494 | 1495 | get-package-type@^0.1.0: 1496 | version "0.1.0" 1497 | resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" 1498 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1499 | 1500 | get-stream@^4.0.0: 1501 | version "4.1.0" 1502 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" 1503 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1504 | dependencies: 1505 | pump "^3.0.0" 1506 | 1507 | get-stream@^5.0.0: 1508 | version "5.2.0" 1509 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1510 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1511 | dependencies: 1512 | pump "^3.0.0" 1513 | 1514 | get-value@^2.0.3, get-value@^2.0.6: 1515 | version "2.0.6" 1516 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" 1517 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1518 | 1519 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1520 | version "7.2.0" 1521 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" 1522 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1523 | dependencies: 1524 | fs.realpath "^1.0.0" 1525 | inflight "^1.0.4" 1526 | inherits "2" 1527 | minimatch "^3.0.4" 1528 | once "^1.3.0" 1529 | path-is-absolute "^1.0.0" 1530 | 1531 | globals@^11.1.0: 1532 | version "11.12.0" 1533 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" 1534 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1535 | 1536 | graceful-fs@^4.2.4: 1537 | version "4.2.8" 1538 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz" 1539 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1540 | 1541 | growly@^1.3.0: 1542 | version "1.3.0" 1543 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1544 | integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= 1545 | 1546 | has-flag@^3.0.0: 1547 | version "3.0.0" 1548 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1549 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1550 | 1551 | has-flag@^4.0.0: 1552 | version "4.0.0" 1553 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1554 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1555 | 1556 | has-value@^0.3.1: 1557 | version "0.3.1" 1558 | resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" 1559 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1560 | dependencies: 1561 | get-value "^2.0.3" 1562 | has-values "^0.1.4" 1563 | isobject "^2.0.0" 1564 | 1565 | has-value@^1.0.0: 1566 | version "1.0.0" 1567 | resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" 1568 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1569 | dependencies: 1570 | get-value "^2.0.6" 1571 | has-values "^1.0.0" 1572 | isobject "^3.0.0" 1573 | 1574 | has-values@^0.1.4: 1575 | version "0.1.4" 1576 | resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" 1577 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1578 | 1579 | has-values@^1.0.0: 1580 | version "1.0.0" 1581 | resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" 1582 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1583 | dependencies: 1584 | is-number "^3.0.0" 1585 | kind-of "^4.0.0" 1586 | 1587 | has@^1.0.3: 1588 | version "1.0.3" 1589 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1590 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1591 | dependencies: 1592 | function-bind "^1.1.1" 1593 | 1594 | hosted-git-info@^2.1.4: 1595 | version "2.8.9" 1596 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" 1597 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1598 | 1599 | hpagent@^0.1.1: 1600 | version "0.1.1" 1601 | resolved "https://registry.yarnpkg.com/hpagent/-/hpagent-0.1.1.tgz#66f67f16e5c7a8b59a068e40c2658c2c749ad5e2" 1602 | integrity sha512-IxJWQiY0vmEjetHdoE9HZjD4Cx+mYTr25tR7JCxXaiI3QxW0YqYyM11KyZbHufoa/piWhMb2+D3FGpMgmA2cFQ== 1603 | 1604 | html-encoding-sniffer@^2.0.1: 1605 | version "2.0.1" 1606 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" 1607 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1608 | dependencies: 1609 | whatwg-encoding "^1.0.5" 1610 | 1611 | html-escaper@^2.0.0: 1612 | version "2.0.2" 1613 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" 1614 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1615 | 1616 | http-proxy-agent@^4.0.1: 1617 | version "4.0.1" 1618 | resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" 1619 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1620 | dependencies: 1621 | "@tootallnate/once" "1" 1622 | agent-base "6" 1623 | debug "4" 1624 | 1625 | https-proxy-agent@^5.0.0: 1626 | version "5.0.0" 1627 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" 1628 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1629 | dependencies: 1630 | agent-base "6" 1631 | debug "4" 1632 | 1633 | human-signals@^1.1.1: 1634 | version "1.1.1" 1635 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 1636 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 1637 | 1638 | iconv-lite@0.4.24: 1639 | version "0.4.24" 1640 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" 1641 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1642 | dependencies: 1643 | safer-buffer ">= 2.1.2 < 3" 1644 | 1645 | import-local@^3.0.2: 1646 | version "3.0.3" 1647 | resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz" 1648 | integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 1649 | dependencies: 1650 | pkg-dir "^4.2.0" 1651 | resolve-cwd "^3.0.0" 1652 | 1653 | imurmurhash@^0.1.4: 1654 | version "0.1.4" 1655 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1656 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1657 | 1658 | inflight@^1.0.4: 1659 | version "1.0.6" 1660 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1661 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1662 | dependencies: 1663 | once "^1.3.0" 1664 | wrappy "1" 1665 | 1666 | inherits@2: 1667 | version "2.0.4" 1668 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1669 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1670 | 1671 | "internmap@1 - 2": 1672 | version "2.0.3" 1673 | resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" 1674 | integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== 1675 | 1676 | is-accessor-descriptor@^0.1.6: 1677 | version "0.1.6" 1678 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" 1679 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1680 | dependencies: 1681 | kind-of "^3.0.2" 1682 | 1683 | is-accessor-descriptor@^1.0.0: 1684 | version "1.0.0" 1685 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" 1686 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1687 | dependencies: 1688 | kind-of "^6.0.0" 1689 | 1690 | is-arrayish@^0.2.1: 1691 | version "0.2.1" 1692 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 1693 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1694 | 1695 | is-buffer@^1.1.5: 1696 | version "1.1.6" 1697 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" 1698 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1699 | 1700 | is-ci@^2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" 1703 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1704 | dependencies: 1705 | ci-info "^2.0.0" 1706 | 1707 | is-core-module@^2.8.0: 1708 | version "2.8.0" 1709 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz" 1710 | integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== 1711 | dependencies: 1712 | has "^1.0.3" 1713 | 1714 | is-data-descriptor@^0.1.4: 1715 | version "0.1.4" 1716 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" 1717 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1718 | dependencies: 1719 | kind-of "^3.0.2" 1720 | 1721 | is-data-descriptor@^1.0.0: 1722 | version "1.0.0" 1723 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" 1724 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1725 | dependencies: 1726 | kind-of "^6.0.0" 1727 | 1728 | is-descriptor@^0.1.0: 1729 | version "0.1.6" 1730 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" 1731 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1732 | dependencies: 1733 | is-accessor-descriptor "^0.1.6" 1734 | is-data-descriptor "^0.1.4" 1735 | kind-of "^5.0.0" 1736 | 1737 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1738 | version "1.0.2" 1739 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" 1740 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1741 | dependencies: 1742 | is-accessor-descriptor "^1.0.0" 1743 | is-data-descriptor "^1.0.0" 1744 | kind-of "^6.0.2" 1745 | 1746 | is-docker@^2.0.0: 1747 | version "2.2.1" 1748 | resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" 1749 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1750 | 1751 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1752 | version "0.1.1" 1753 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" 1754 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1755 | 1756 | is-extendable@^1.0.1: 1757 | version "1.0.1" 1758 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" 1759 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1760 | dependencies: 1761 | is-plain-object "^2.0.4" 1762 | 1763 | is-fullwidth-code-point@^3.0.0: 1764 | version "3.0.0" 1765 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" 1766 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1767 | 1768 | is-generator-fn@^2.0.0: 1769 | version "2.1.0" 1770 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" 1771 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1772 | 1773 | is-number@^3.0.0: 1774 | version "3.0.0" 1775 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" 1776 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1777 | dependencies: 1778 | kind-of "^3.0.2" 1779 | 1780 | is-number@^7.0.0: 1781 | version "7.0.0" 1782 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1783 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1784 | 1785 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1786 | version "2.0.4" 1787 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" 1788 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1789 | dependencies: 1790 | isobject "^3.0.1" 1791 | 1792 | is-potential-custom-element-name@^1.0.1: 1793 | version "1.0.1" 1794 | resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" 1795 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 1796 | 1797 | is-stream@^1.1.0: 1798 | version "1.1.0" 1799 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" 1800 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1801 | 1802 | is-stream@^2.0.0: 1803 | version "2.0.1" 1804 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 1805 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1806 | 1807 | is-typedarray@^1.0.0: 1808 | version "1.0.0" 1809 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" 1810 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1811 | 1812 | is-windows@^1.0.2: 1813 | version "1.0.2" 1814 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" 1815 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1816 | 1817 | is-wsl@^2.2.0: 1818 | version "2.2.0" 1819 | resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" 1820 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1821 | dependencies: 1822 | is-docker "^2.0.0" 1823 | 1824 | isarray@1.0.0: 1825 | version "1.0.0" 1826 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" 1827 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1828 | 1829 | isexe@^2.0.0: 1830 | version "2.0.0" 1831 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1832 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1833 | 1834 | isobject@^2.0.0: 1835 | version "2.1.0" 1836 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" 1837 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1838 | dependencies: 1839 | isarray "1.0.0" 1840 | 1841 | isobject@^3.0.0, isobject@^3.0.1: 1842 | version "3.0.1" 1843 | resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" 1844 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1845 | 1846 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1847 | version "3.2.0" 1848 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" 1849 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 1850 | 1851 | istanbul-lib-instrument@^4.0.3: 1852 | version "4.0.3" 1853 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz" 1854 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 1855 | dependencies: 1856 | "@babel/core" "^7.7.5" 1857 | "@istanbuljs/schema" "^0.1.2" 1858 | istanbul-lib-coverage "^3.0.0" 1859 | semver "^6.3.0" 1860 | 1861 | istanbul-lib-instrument@^5.0.4: 1862 | version "5.1.0" 1863 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz" 1864 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 1865 | dependencies: 1866 | "@babel/core" "^7.12.3" 1867 | "@babel/parser" "^7.14.7" 1868 | "@istanbuljs/schema" "^0.1.2" 1869 | istanbul-lib-coverage "^3.2.0" 1870 | semver "^6.3.0" 1871 | 1872 | istanbul-lib-report@^3.0.0: 1873 | version "3.0.0" 1874 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" 1875 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1876 | dependencies: 1877 | istanbul-lib-coverage "^3.0.0" 1878 | make-dir "^3.0.0" 1879 | supports-color "^7.1.0" 1880 | 1881 | istanbul-lib-source-maps@^4.0.0: 1882 | version "4.0.1" 1883 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" 1884 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1885 | dependencies: 1886 | debug "^4.1.1" 1887 | istanbul-lib-coverage "^3.0.0" 1888 | source-map "^0.6.1" 1889 | 1890 | istanbul-reports@^3.0.2: 1891 | version "3.1.3" 1892 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.3.tgz#4bcae3103b94518117930d51283690960b50d3c2" 1893 | integrity sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg== 1894 | dependencies: 1895 | html-escaper "^2.0.0" 1896 | istanbul-lib-report "^3.0.0" 1897 | 1898 | jest-changed-files@^26.6.2: 1899 | version "26.6.2" 1900 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" 1901 | integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== 1902 | dependencies: 1903 | "@jest/types" "^26.6.2" 1904 | execa "^4.0.0" 1905 | throat "^5.0.0" 1906 | 1907 | jest-cli@^26.6.3: 1908 | version "26.6.3" 1909 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a" 1910 | integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== 1911 | dependencies: 1912 | "@jest/core" "^26.6.3" 1913 | "@jest/test-result" "^26.6.2" 1914 | "@jest/types" "^26.6.2" 1915 | chalk "^4.0.0" 1916 | exit "^0.1.2" 1917 | graceful-fs "^4.2.4" 1918 | import-local "^3.0.2" 1919 | is-ci "^2.0.0" 1920 | jest-config "^26.6.3" 1921 | jest-util "^26.6.2" 1922 | jest-validate "^26.6.2" 1923 | prompts "^2.0.1" 1924 | yargs "^15.4.1" 1925 | 1926 | jest-config@^26.6.3: 1927 | version "26.6.3" 1928 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349" 1929 | integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== 1930 | dependencies: 1931 | "@babel/core" "^7.1.0" 1932 | "@jest/test-sequencer" "^26.6.3" 1933 | "@jest/types" "^26.6.2" 1934 | babel-jest "^26.6.3" 1935 | chalk "^4.0.0" 1936 | deepmerge "^4.2.2" 1937 | glob "^7.1.1" 1938 | graceful-fs "^4.2.4" 1939 | jest-environment-jsdom "^26.6.2" 1940 | jest-environment-node "^26.6.2" 1941 | jest-get-type "^26.3.0" 1942 | jest-jasmine2 "^26.6.3" 1943 | jest-regex-util "^26.0.0" 1944 | jest-resolve "^26.6.2" 1945 | jest-util "^26.6.2" 1946 | jest-validate "^26.6.2" 1947 | micromatch "^4.0.2" 1948 | pretty-format "^26.6.2" 1949 | 1950 | jest-diff@^26.0.0, jest-diff@^26.6.2: 1951 | version "26.6.2" 1952 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" 1953 | integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== 1954 | dependencies: 1955 | chalk "^4.0.0" 1956 | diff-sequences "^26.6.2" 1957 | jest-get-type "^26.3.0" 1958 | pretty-format "^26.6.2" 1959 | 1960 | jest-docblock@^26.0.0: 1961 | version "26.0.0" 1962 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" 1963 | integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== 1964 | dependencies: 1965 | detect-newline "^3.0.0" 1966 | 1967 | jest-each@^26.6.2: 1968 | version "26.6.2" 1969 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb" 1970 | integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== 1971 | dependencies: 1972 | "@jest/types" "^26.6.2" 1973 | chalk "^4.0.0" 1974 | jest-get-type "^26.3.0" 1975 | jest-util "^26.6.2" 1976 | pretty-format "^26.6.2" 1977 | 1978 | jest-environment-jsdom@^26.6.2: 1979 | version "26.6.2" 1980 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e" 1981 | integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== 1982 | dependencies: 1983 | "@jest/environment" "^26.6.2" 1984 | "@jest/fake-timers" "^26.6.2" 1985 | "@jest/types" "^26.6.2" 1986 | "@types/node" "*" 1987 | jest-mock "^26.6.2" 1988 | jest-util "^26.6.2" 1989 | jsdom "^16.4.0" 1990 | 1991 | jest-environment-node@^26.6.2: 1992 | version "26.6.2" 1993 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c" 1994 | integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== 1995 | dependencies: 1996 | "@jest/environment" "^26.6.2" 1997 | "@jest/fake-timers" "^26.6.2" 1998 | "@jest/types" "^26.6.2" 1999 | "@types/node" "*" 2000 | jest-mock "^26.6.2" 2001 | jest-util "^26.6.2" 2002 | 2003 | jest-get-type@^26.3.0: 2004 | version "26.3.0" 2005 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 2006 | integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== 2007 | 2008 | jest-haste-map@^26.6.2: 2009 | version "26.6.2" 2010 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz" 2011 | integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== 2012 | dependencies: 2013 | "@jest/types" "^26.6.2" 2014 | "@types/graceful-fs" "^4.1.2" 2015 | "@types/node" "*" 2016 | anymatch "^3.0.3" 2017 | fb-watchman "^2.0.0" 2018 | graceful-fs "^4.2.4" 2019 | jest-regex-util "^26.0.0" 2020 | jest-serializer "^26.6.2" 2021 | jest-util "^26.6.2" 2022 | jest-worker "^26.6.2" 2023 | micromatch "^4.0.2" 2024 | sane "^4.0.3" 2025 | walker "^1.0.7" 2026 | optionalDependencies: 2027 | fsevents "^2.1.2" 2028 | 2029 | jest-jasmine2@^26.6.3: 2030 | version "26.6.3" 2031 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd" 2032 | integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== 2033 | dependencies: 2034 | "@babel/traverse" "^7.1.0" 2035 | "@jest/environment" "^26.6.2" 2036 | "@jest/source-map" "^26.6.2" 2037 | "@jest/test-result" "^26.6.2" 2038 | "@jest/types" "^26.6.2" 2039 | "@types/node" "*" 2040 | chalk "^4.0.0" 2041 | co "^4.6.0" 2042 | expect "^26.6.2" 2043 | is-generator-fn "^2.0.0" 2044 | jest-each "^26.6.2" 2045 | jest-matcher-utils "^26.6.2" 2046 | jest-message-util "^26.6.2" 2047 | jest-runtime "^26.6.3" 2048 | jest-snapshot "^26.6.2" 2049 | jest-util "^26.6.2" 2050 | pretty-format "^26.6.2" 2051 | throat "^5.0.0" 2052 | 2053 | jest-leak-detector@^26.6.2: 2054 | version "26.6.2" 2055 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af" 2056 | integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== 2057 | dependencies: 2058 | jest-get-type "^26.3.0" 2059 | pretty-format "^26.6.2" 2060 | 2061 | jest-matcher-utils@^26.6.2: 2062 | version "26.6.2" 2063 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a" 2064 | integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw== 2065 | dependencies: 2066 | chalk "^4.0.0" 2067 | jest-diff "^26.6.2" 2068 | jest-get-type "^26.3.0" 2069 | pretty-format "^26.6.2" 2070 | 2071 | jest-message-util@^26.6.2: 2072 | version "26.6.2" 2073 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07" 2074 | integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA== 2075 | dependencies: 2076 | "@babel/code-frame" "^7.0.0" 2077 | "@jest/types" "^26.6.2" 2078 | "@types/stack-utils" "^2.0.0" 2079 | chalk "^4.0.0" 2080 | graceful-fs "^4.2.4" 2081 | micromatch "^4.0.2" 2082 | pretty-format "^26.6.2" 2083 | slash "^3.0.0" 2084 | stack-utils "^2.0.2" 2085 | 2086 | jest-mock@^26.6.2: 2087 | version "26.6.2" 2088 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302" 2089 | integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== 2090 | dependencies: 2091 | "@jest/types" "^26.6.2" 2092 | "@types/node" "*" 2093 | 2094 | jest-pnp-resolver@^1.2.2: 2095 | version "1.2.2" 2096 | resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" 2097 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 2098 | 2099 | jest-regex-util@^26.0.0: 2100 | version "26.0.0" 2101 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz" 2102 | integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== 2103 | 2104 | jest-resolve-dependencies@^26.6.3: 2105 | version "26.6.3" 2106 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6" 2107 | integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== 2108 | dependencies: 2109 | "@jest/types" "^26.6.2" 2110 | jest-regex-util "^26.0.0" 2111 | jest-snapshot "^26.6.2" 2112 | 2113 | jest-resolve@^26.6.2: 2114 | version "26.6.2" 2115 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507" 2116 | integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== 2117 | dependencies: 2118 | "@jest/types" "^26.6.2" 2119 | chalk "^4.0.0" 2120 | graceful-fs "^4.2.4" 2121 | jest-pnp-resolver "^1.2.2" 2122 | jest-util "^26.6.2" 2123 | read-pkg-up "^7.0.1" 2124 | resolve "^1.18.1" 2125 | slash "^3.0.0" 2126 | 2127 | jest-runner@^26.6.3: 2128 | version "26.6.3" 2129 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159" 2130 | integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== 2131 | dependencies: 2132 | "@jest/console" "^26.6.2" 2133 | "@jest/environment" "^26.6.2" 2134 | "@jest/test-result" "^26.6.2" 2135 | "@jest/types" "^26.6.2" 2136 | "@types/node" "*" 2137 | chalk "^4.0.0" 2138 | emittery "^0.7.1" 2139 | exit "^0.1.2" 2140 | graceful-fs "^4.2.4" 2141 | jest-config "^26.6.3" 2142 | jest-docblock "^26.0.0" 2143 | jest-haste-map "^26.6.2" 2144 | jest-leak-detector "^26.6.2" 2145 | jest-message-util "^26.6.2" 2146 | jest-resolve "^26.6.2" 2147 | jest-runtime "^26.6.3" 2148 | jest-util "^26.6.2" 2149 | jest-worker "^26.6.2" 2150 | source-map-support "^0.5.6" 2151 | throat "^5.0.0" 2152 | 2153 | jest-runtime@^26.6.3: 2154 | version "26.6.3" 2155 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b" 2156 | integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== 2157 | dependencies: 2158 | "@jest/console" "^26.6.2" 2159 | "@jest/environment" "^26.6.2" 2160 | "@jest/fake-timers" "^26.6.2" 2161 | "@jest/globals" "^26.6.2" 2162 | "@jest/source-map" "^26.6.2" 2163 | "@jest/test-result" "^26.6.2" 2164 | "@jest/transform" "^26.6.2" 2165 | "@jest/types" "^26.6.2" 2166 | "@types/yargs" "^15.0.0" 2167 | chalk "^4.0.0" 2168 | cjs-module-lexer "^0.6.0" 2169 | collect-v8-coverage "^1.0.0" 2170 | exit "^0.1.2" 2171 | glob "^7.1.3" 2172 | graceful-fs "^4.2.4" 2173 | jest-config "^26.6.3" 2174 | jest-haste-map "^26.6.2" 2175 | jest-message-util "^26.6.2" 2176 | jest-mock "^26.6.2" 2177 | jest-regex-util "^26.0.0" 2178 | jest-resolve "^26.6.2" 2179 | jest-snapshot "^26.6.2" 2180 | jest-util "^26.6.2" 2181 | jest-validate "^26.6.2" 2182 | slash "^3.0.0" 2183 | strip-bom "^4.0.0" 2184 | yargs "^15.4.1" 2185 | 2186 | jest-serializer@^26.6.2: 2187 | version "26.6.2" 2188 | resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz" 2189 | integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== 2190 | dependencies: 2191 | "@types/node" "*" 2192 | graceful-fs "^4.2.4" 2193 | 2194 | jest-snapshot@^26.6.2: 2195 | version "26.6.2" 2196 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84" 2197 | integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== 2198 | dependencies: 2199 | "@babel/types" "^7.0.0" 2200 | "@jest/types" "^26.6.2" 2201 | "@types/babel__traverse" "^7.0.4" 2202 | "@types/prettier" "^2.0.0" 2203 | chalk "^4.0.0" 2204 | expect "^26.6.2" 2205 | graceful-fs "^4.2.4" 2206 | jest-diff "^26.6.2" 2207 | jest-get-type "^26.3.0" 2208 | jest-haste-map "^26.6.2" 2209 | jest-matcher-utils "^26.6.2" 2210 | jest-message-util "^26.6.2" 2211 | jest-resolve "^26.6.2" 2212 | natural-compare "^1.4.0" 2213 | pretty-format "^26.6.2" 2214 | semver "^7.3.2" 2215 | 2216 | jest-util@^26.1.0, jest-util@^26.6.2: 2217 | version "26.6.2" 2218 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz" 2219 | integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== 2220 | dependencies: 2221 | "@jest/types" "^26.6.2" 2222 | "@types/node" "*" 2223 | chalk "^4.0.0" 2224 | graceful-fs "^4.2.4" 2225 | is-ci "^2.0.0" 2226 | micromatch "^4.0.2" 2227 | 2228 | jest-validate@^26.6.2: 2229 | version "26.6.2" 2230 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" 2231 | integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== 2232 | dependencies: 2233 | "@jest/types" "^26.6.2" 2234 | camelcase "^6.0.0" 2235 | chalk "^4.0.0" 2236 | jest-get-type "^26.3.0" 2237 | leven "^3.1.0" 2238 | pretty-format "^26.6.2" 2239 | 2240 | jest-watcher@^26.6.2: 2241 | version "26.6.2" 2242 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975" 2243 | integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== 2244 | dependencies: 2245 | "@jest/test-result" "^26.6.2" 2246 | "@jest/types" "^26.6.2" 2247 | "@types/node" "*" 2248 | ansi-escapes "^4.2.1" 2249 | chalk "^4.0.0" 2250 | jest-util "^26.6.2" 2251 | string-length "^4.0.1" 2252 | 2253 | jest-worker@^26.6.2: 2254 | version "26.6.2" 2255 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" 2256 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 2257 | dependencies: 2258 | "@types/node" "*" 2259 | merge-stream "^2.0.0" 2260 | supports-color "^7.0.0" 2261 | 2262 | jest@^26.6.3: 2263 | version "26.6.3" 2264 | resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef" 2265 | integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== 2266 | dependencies: 2267 | "@jest/core" "^26.6.3" 2268 | import-local "^3.0.2" 2269 | jest-cli "^26.6.3" 2270 | 2271 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2272 | version "4.0.0" 2273 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 2274 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2275 | 2276 | js-yaml@^3.13.1: 2277 | version "3.14.1" 2278 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" 2279 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2280 | dependencies: 2281 | argparse "^1.0.7" 2282 | esprima "^4.0.0" 2283 | 2284 | jsdom@^16.4.0: 2285 | version "16.7.0" 2286 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz" 2287 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 2288 | dependencies: 2289 | abab "^2.0.5" 2290 | acorn "^8.2.4" 2291 | acorn-globals "^6.0.0" 2292 | cssom "^0.4.4" 2293 | cssstyle "^2.3.0" 2294 | data-urls "^2.0.0" 2295 | decimal.js "^10.2.1" 2296 | domexception "^2.0.1" 2297 | escodegen "^2.0.0" 2298 | form-data "^3.0.0" 2299 | html-encoding-sniffer "^2.0.1" 2300 | http-proxy-agent "^4.0.1" 2301 | https-proxy-agent "^5.0.0" 2302 | is-potential-custom-element-name "^1.0.1" 2303 | nwsapi "^2.2.0" 2304 | parse5 "6.0.1" 2305 | saxes "^5.0.1" 2306 | symbol-tree "^3.2.4" 2307 | tough-cookie "^4.0.0" 2308 | w3c-hr-time "^1.0.2" 2309 | w3c-xmlserializer "^2.0.0" 2310 | webidl-conversions "^6.1.0" 2311 | whatwg-encoding "^1.0.5" 2312 | whatwg-mimetype "^2.3.0" 2313 | whatwg-url "^8.5.0" 2314 | ws "^7.4.6" 2315 | xml-name-validator "^3.0.0" 2316 | 2317 | jsesc@^2.5.1: 2318 | version "2.5.2" 2319 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" 2320 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2321 | 2322 | json-parse-even-better-errors@^2.3.0: 2323 | version "2.3.1" 2324 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 2325 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2326 | 2327 | json5@2.x, json5@^2.1.2, json5@^2.2.3: 2328 | version "2.2.3" 2329 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 2330 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 2331 | 2332 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2333 | version "3.2.2" 2334 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" 2335 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2336 | dependencies: 2337 | is-buffer "^1.1.5" 2338 | 2339 | kind-of@^4.0.0: 2340 | version "4.0.0" 2341 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" 2342 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2343 | dependencies: 2344 | is-buffer "^1.1.5" 2345 | 2346 | kind-of@^5.0.0: 2347 | version "5.1.0" 2348 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" 2349 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2350 | 2351 | kind-of@^6.0.0, kind-of@^6.0.2: 2352 | version "6.0.3" 2353 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" 2354 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2355 | 2356 | kleur@^3.0.3: 2357 | version "3.0.3" 2358 | resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" 2359 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2360 | 2361 | leven@^3.1.0: 2362 | version "3.1.0" 2363 | resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" 2364 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2365 | 2366 | levn@~0.3.0: 2367 | version "0.3.0" 2368 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" 2369 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2370 | dependencies: 2371 | prelude-ls "~1.1.2" 2372 | type-check "~0.3.2" 2373 | 2374 | lines-and-columns@^1.1.6: 2375 | version "1.2.4" 2376 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 2377 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2378 | 2379 | locate-path@^5.0.0: 2380 | version "5.0.0" 2381 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 2382 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2383 | dependencies: 2384 | p-locate "^4.1.0" 2385 | 2386 | lodash@4.x, lodash@^4.17.21, lodash@^4.7.0: 2387 | version "4.17.21" 2388 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 2389 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2390 | 2391 | loose-envify@^1.1.0, loose-envify@^1.4.0: 2392 | version "1.4.0" 2393 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 2394 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2395 | dependencies: 2396 | js-tokens "^3.0.0 || ^4.0.0" 2397 | 2398 | lru-cache@^6.0.0: 2399 | version "6.0.0" 2400 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 2401 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2402 | dependencies: 2403 | yallist "^4.0.0" 2404 | 2405 | make-dir@^3.0.0: 2406 | version "3.1.0" 2407 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" 2408 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2409 | dependencies: 2410 | semver "^6.0.0" 2411 | 2412 | make-error@1.x: 2413 | version "1.3.6" 2414 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2415 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2416 | 2417 | makeerror@1.0.12: 2418 | version "1.0.12" 2419 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" 2420 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2421 | dependencies: 2422 | tmpl "1.0.5" 2423 | 2424 | map-cache@^0.2.2: 2425 | version "0.2.2" 2426 | resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" 2427 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2428 | 2429 | map-visit@^1.0.0: 2430 | version "1.0.0" 2431 | resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" 2432 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2433 | dependencies: 2434 | object-visit "^1.0.0" 2435 | 2436 | merge-stream@^2.0.0: 2437 | version "2.0.0" 2438 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" 2439 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2440 | 2441 | micromatch@^3.1.4: 2442 | version "3.1.10" 2443 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" 2444 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2445 | dependencies: 2446 | arr-diff "^4.0.0" 2447 | array-unique "^0.3.2" 2448 | braces "^2.3.1" 2449 | define-property "^2.0.2" 2450 | extend-shallow "^3.0.2" 2451 | extglob "^2.0.4" 2452 | fragment-cache "^0.2.1" 2453 | kind-of "^6.0.2" 2454 | nanomatch "^1.2.9" 2455 | object.pick "^1.3.0" 2456 | regex-not "^1.0.0" 2457 | snapdragon "^0.8.1" 2458 | to-regex "^3.0.2" 2459 | 2460 | micromatch@^4.0.2: 2461 | version "4.0.4" 2462 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" 2463 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2464 | dependencies: 2465 | braces "^3.0.1" 2466 | picomatch "^2.2.3" 2467 | 2468 | mime-db@1.51.0: 2469 | version "1.51.0" 2470 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz" 2471 | integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== 2472 | 2473 | mime-types@^2.1.12: 2474 | version "2.1.34" 2475 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz" 2476 | integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== 2477 | dependencies: 2478 | mime-db "1.51.0" 2479 | 2480 | mimic-fn@^2.1.0: 2481 | version "2.1.0" 2482 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" 2483 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2484 | 2485 | minimatch@^3.0.4, minimatch@^3.0.5: 2486 | version "3.1.2" 2487 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2488 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2489 | dependencies: 2490 | brace-expansion "^1.1.7" 2491 | 2492 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6: 2493 | version "1.2.6" 2494 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 2495 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 2496 | 2497 | mixin-deep@^1.2.0: 2498 | version "1.3.2" 2499 | resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" 2500 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2501 | dependencies: 2502 | for-in "^1.0.2" 2503 | is-extendable "^1.0.1" 2504 | 2505 | mkdirp@1.x: 2506 | version "1.0.4" 2507 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" 2508 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 2509 | 2510 | ms@2.0.0: 2511 | version "2.0.0" 2512 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" 2513 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2514 | 2515 | ms@2.1.2: 2516 | version "2.1.2" 2517 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 2518 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2519 | 2520 | ms@^2.1.3: 2521 | version "2.1.3" 2522 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 2523 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 2524 | 2525 | nanomatch@^1.2.9: 2526 | version "1.2.13" 2527 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" 2528 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2529 | dependencies: 2530 | arr-diff "^4.0.0" 2531 | array-unique "^0.3.2" 2532 | define-property "^2.0.2" 2533 | extend-shallow "^3.0.2" 2534 | fragment-cache "^0.2.1" 2535 | is-windows "^1.0.2" 2536 | kind-of "^6.0.2" 2537 | object.pick "^1.3.0" 2538 | regex-not "^1.0.0" 2539 | snapdragon "^0.8.1" 2540 | to-regex "^3.0.1" 2541 | 2542 | natural-compare@^1.4.0: 2543 | version "1.4.0" 2544 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 2545 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2546 | 2547 | nice-try@^1.0.4: 2548 | version "1.0.5" 2549 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" 2550 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2551 | 2552 | node-int64@^0.4.0: 2553 | version "0.4.0" 2554 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" 2555 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2556 | 2557 | node-notifier@^8.0.0: 2558 | version "8.0.2" 2559 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" 2560 | integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== 2561 | dependencies: 2562 | growly "^1.3.0" 2563 | is-wsl "^2.2.0" 2564 | semver "^7.3.2" 2565 | shellwords "^0.1.1" 2566 | uuid "^8.3.0" 2567 | which "^2.0.2" 2568 | 2569 | node-releases@^2.0.1: 2570 | version "2.0.1" 2571 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz" 2572 | integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== 2573 | 2574 | normalize-package-data@^2.5.0: 2575 | version "2.5.0" 2576 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" 2577 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2578 | dependencies: 2579 | hosted-git-info "^2.1.4" 2580 | resolve "^1.10.0" 2581 | semver "2 || 3 || 4 || 5" 2582 | validate-npm-package-license "^3.0.1" 2583 | 2584 | normalize-path@^2.1.1: 2585 | version "2.1.1" 2586 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz" 2587 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2588 | dependencies: 2589 | remove-trailing-separator "^1.0.1" 2590 | 2591 | normalize-path@^3.0.0: 2592 | version "3.0.0" 2593 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 2594 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2595 | 2596 | npm-run-path@^2.0.0: 2597 | version "2.0.2" 2598 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" 2599 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2600 | dependencies: 2601 | path-key "^2.0.0" 2602 | 2603 | npm-run-path@^4.0.0: 2604 | version "4.0.1" 2605 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" 2606 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2607 | dependencies: 2608 | path-key "^3.0.0" 2609 | 2610 | nwsapi@^2.2.0: 2611 | version "2.2.0" 2612 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" 2613 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2614 | 2615 | object-assign@^4.1.1: 2616 | version "4.1.1" 2617 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 2618 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2619 | 2620 | object-copy@^0.1.0: 2621 | version "0.1.0" 2622 | resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" 2623 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2624 | dependencies: 2625 | copy-descriptor "^0.1.0" 2626 | define-property "^0.2.5" 2627 | kind-of "^3.0.3" 2628 | 2629 | object-visit@^1.0.0: 2630 | version "1.0.1" 2631 | resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" 2632 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2633 | dependencies: 2634 | isobject "^3.0.0" 2635 | 2636 | object.pick@^1.3.0: 2637 | version "1.3.0" 2638 | resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" 2639 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2640 | dependencies: 2641 | isobject "^3.0.1" 2642 | 2643 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2644 | version "1.4.0" 2645 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2646 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2647 | dependencies: 2648 | wrappy "1" 2649 | 2650 | onetime@^5.1.0: 2651 | version "5.1.2" 2652 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" 2653 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2654 | dependencies: 2655 | mimic-fn "^2.1.0" 2656 | 2657 | optionator@^0.8.1: 2658 | version "0.8.3" 2659 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" 2660 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2661 | dependencies: 2662 | deep-is "~0.1.3" 2663 | fast-levenshtein "~2.0.6" 2664 | levn "~0.3.0" 2665 | prelude-ls "~1.1.2" 2666 | type-check "~0.3.2" 2667 | word-wrap "~1.2.3" 2668 | 2669 | p-each-series@^2.1.0: 2670 | version "2.2.0" 2671 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" 2672 | integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== 2673 | 2674 | p-finally@^1.0.0: 2675 | version "1.0.0" 2676 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" 2677 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2678 | 2679 | p-limit@^2.2.0: 2680 | version "2.3.0" 2681 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2682 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2683 | dependencies: 2684 | p-try "^2.0.0" 2685 | 2686 | p-locate@^4.1.0: 2687 | version "4.1.0" 2688 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 2689 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2690 | dependencies: 2691 | p-limit "^2.2.0" 2692 | 2693 | p-try@^2.0.0: 2694 | version "2.2.0" 2695 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2696 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2697 | 2698 | parse-json@^5.0.0: 2699 | version "5.2.0" 2700 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2701 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2702 | dependencies: 2703 | "@babel/code-frame" "^7.0.0" 2704 | error-ex "^1.3.1" 2705 | json-parse-even-better-errors "^2.3.0" 2706 | lines-and-columns "^1.1.6" 2707 | 2708 | parse5@6.0.1: 2709 | version "6.0.1" 2710 | resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" 2711 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2712 | 2713 | pascalcase@^0.1.1: 2714 | version "0.1.1" 2715 | resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" 2716 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2717 | 2718 | path-exists@^4.0.0: 2719 | version "4.0.0" 2720 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2721 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2722 | 2723 | path-is-absolute@^1.0.0: 2724 | version "1.0.1" 2725 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2726 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2727 | 2728 | path-key@^2.0.0, path-key@^2.0.1: 2729 | version "2.0.1" 2730 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" 2731 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2732 | 2733 | path-key@^3.0.0, path-key@^3.1.0: 2734 | version "3.1.1" 2735 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2736 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2737 | 2738 | path-parse@^1.0.7: 2739 | version "1.0.7" 2740 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2741 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2742 | 2743 | picocolors@^1.0.0: 2744 | version "1.0.0" 2745 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 2746 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2747 | 2748 | picomatch@^2.0.4, picomatch@^2.2.3: 2749 | version "2.3.0" 2750 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" 2751 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2752 | 2753 | pirates@^4.0.1: 2754 | version "4.0.4" 2755 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz" 2756 | integrity sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw== 2757 | 2758 | pkg-dir@^4.2.0: 2759 | version "4.2.0" 2760 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" 2761 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2762 | dependencies: 2763 | find-up "^4.0.0" 2764 | 2765 | posix-character-classes@^0.1.0: 2766 | version "0.1.1" 2767 | resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz" 2768 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2769 | 2770 | prelude-ls@~1.1.2: 2771 | version "1.1.2" 2772 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" 2773 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2774 | 2775 | pretty-format@^26.0.0, pretty-format@^26.6.2: 2776 | version "26.6.2" 2777 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" 2778 | integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== 2779 | dependencies: 2780 | "@jest/types" "^26.6.2" 2781 | ansi-regex "^5.0.0" 2782 | ansi-styles "^4.0.0" 2783 | react-is "^17.0.1" 2784 | 2785 | prompts@^2.0.1: 2786 | version "2.4.2" 2787 | resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" 2788 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2789 | dependencies: 2790 | kleur "^3.0.3" 2791 | sisteransi "^1.0.5" 2792 | 2793 | prop-types@^15.6.2: 2794 | version "15.8.0" 2795 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.0.tgz" 2796 | integrity sha512-fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g== 2797 | dependencies: 2798 | loose-envify "^1.4.0" 2799 | object-assign "^4.1.1" 2800 | react-is "^16.13.1" 2801 | 2802 | psl@^1.1.33: 2803 | version "1.8.0" 2804 | resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" 2805 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2806 | 2807 | pump@^3.0.0: 2808 | version "3.0.0" 2809 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" 2810 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2811 | dependencies: 2812 | end-of-stream "^1.1.0" 2813 | once "^1.3.1" 2814 | 2815 | punycode@^2.1.1: 2816 | version "2.1.1" 2817 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" 2818 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2819 | 2820 | react-dom@^16.12.0: 2821 | version "16.14.0" 2822 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" 2823 | integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw== 2824 | dependencies: 2825 | loose-envify "^1.1.0" 2826 | object-assign "^4.1.1" 2827 | prop-types "^15.6.2" 2828 | scheduler "^0.19.1" 2829 | 2830 | react-is@^16.13.1: 2831 | version "16.13.1" 2832 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" 2833 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2834 | 2835 | react-is@^17.0.1: 2836 | version "17.0.2" 2837 | resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" 2838 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2839 | 2840 | react-milestones-vis@^0.6.5: 2841 | version "0.6.5" 2842 | resolved "https://registry.yarnpkg.com/react-milestones-vis/-/react-milestones-vis-0.6.5.tgz#58d2c65b71e543d2a4f61dc2fdaac30a3e8de19c" 2843 | integrity sha512-G1CAyZ0UlrwSTa95ZPYhNugfLODcr7/gZHCNpBq028RQ+rEwwLzJVbCP+ZheuHK841czcRI8tbFCbuxs8Gnhbw== 2844 | dependencies: 2845 | d3-milestones "^1.4.7" 2846 | 2847 | react@^16.12.0: 2848 | version "16.14.0" 2849 | resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" 2850 | integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g== 2851 | dependencies: 2852 | loose-envify "^1.1.0" 2853 | object-assign "^4.1.1" 2854 | prop-types "^15.6.2" 2855 | 2856 | read-pkg-up@^7.0.1: 2857 | version "7.0.1" 2858 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" 2859 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 2860 | dependencies: 2861 | find-up "^4.1.0" 2862 | read-pkg "^5.2.0" 2863 | type-fest "^0.8.1" 2864 | 2865 | read-pkg@^5.2.0: 2866 | version "5.2.0" 2867 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" 2868 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 2869 | dependencies: 2870 | "@types/normalize-package-data" "^2.4.0" 2871 | normalize-package-data "^2.5.0" 2872 | parse-json "^5.0.0" 2873 | type-fest "^0.6.0" 2874 | 2875 | regex-not@^1.0.0, regex-not@^1.0.2: 2876 | version "1.0.2" 2877 | resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" 2878 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2879 | dependencies: 2880 | extend-shallow "^3.0.2" 2881 | safe-regex "^1.1.0" 2882 | 2883 | remove-trailing-separator@^1.0.1: 2884 | version "1.1.0" 2885 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" 2886 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2887 | 2888 | repeat-element@^1.1.2: 2889 | version "1.1.4" 2890 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz" 2891 | integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== 2892 | 2893 | repeat-string@^1.6.1: 2894 | version "1.6.1" 2895 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" 2896 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2897 | 2898 | require-directory@^2.1.1: 2899 | version "2.1.1" 2900 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 2901 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2902 | 2903 | require-main-filename@^2.0.0: 2904 | version "2.0.0" 2905 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2906 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2907 | 2908 | resolve-cwd@^3.0.0: 2909 | version "3.0.0" 2910 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" 2911 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2912 | dependencies: 2913 | resolve-from "^5.0.0" 2914 | 2915 | resolve-from@^5.0.0: 2916 | version "5.0.0" 2917 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" 2918 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2919 | 2920 | resolve-url@^0.2.1: 2921 | version "0.2.1" 2922 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" 2923 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2924 | 2925 | resolve@^1.10.0, resolve@^1.18.1: 2926 | version "1.21.0" 2927 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.21.0.tgz#b51adc97f3472e6a5cf4444d34bc9d6b9037591f" 2928 | integrity sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA== 2929 | dependencies: 2930 | is-core-module "^2.8.0" 2931 | path-parse "^1.0.7" 2932 | supports-preserve-symlinks-flag "^1.0.0" 2933 | 2934 | ret@~0.1.10: 2935 | version "0.1.15" 2936 | resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" 2937 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2938 | 2939 | rimraf@^3.0.0: 2940 | version "3.0.2" 2941 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2942 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2943 | dependencies: 2944 | glob "^7.1.3" 2945 | 2946 | rsvp@^4.8.4: 2947 | version "4.8.5" 2948 | resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" 2949 | integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== 2950 | 2951 | safe-buffer@~5.1.1: 2952 | version "5.1.2" 2953 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 2954 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2955 | 2956 | safe-regex@^1.1.0: 2957 | version "1.1.0" 2958 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" 2959 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2960 | dependencies: 2961 | ret "~0.1.10" 2962 | 2963 | "safer-buffer@>= 2.1.2 < 3": 2964 | version "2.1.2" 2965 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" 2966 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2967 | 2968 | sane@^4.0.3: 2969 | version "4.1.0" 2970 | resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" 2971 | integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== 2972 | dependencies: 2973 | "@cnakazawa/watch" "^1.0.3" 2974 | anymatch "^2.0.0" 2975 | capture-exit "^2.0.0" 2976 | exec-sh "^0.3.2" 2977 | execa "^1.0.0" 2978 | fb-watchman "^2.0.0" 2979 | micromatch "^3.1.4" 2980 | minimist "^1.1.1" 2981 | walker "~1.0.5" 2982 | 2983 | saxes@^5.0.1: 2984 | version "5.0.1" 2985 | resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" 2986 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2987 | dependencies: 2988 | xmlchars "^2.2.0" 2989 | 2990 | scheduler@^0.19.1: 2991 | version "0.19.1" 2992 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" 2993 | integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== 2994 | dependencies: 2995 | loose-envify "^1.1.0" 2996 | object-assign "^4.1.1" 2997 | 2998 | secure-json-parse@^2.4.0: 2999 | version "2.4.0" 3000 | resolved "https://registry.yarnpkg.com/secure-json-parse/-/secure-json-parse-2.4.0.tgz#5aaeaaef85c7a417f76271a4f5b0cc3315ddca85" 3001 | integrity sha512-Q5Z/97nbON5t/L/sH6mY2EacfjVGwrCcSi5D3btRO2GZ8pf1K1UN7Z9H5J57hjVU2Qzxr1xO+FmBhOvEkzCMmg== 3002 | 3003 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 3004 | version "5.7.1" 3005 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" 3006 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3007 | 3008 | semver@7.x, semver@^7.3.2: 3009 | version "7.3.5" 3010 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" 3011 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 3012 | dependencies: 3013 | lru-cache "^6.0.0" 3014 | 3015 | semver@^6.0.0, semver@^6.3.0: 3016 | version "6.3.0" 3017 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 3018 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3019 | 3020 | set-blocking@^2.0.0: 3021 | version "2.0.0" 3022 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" 3023 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 3024 | 3025 | set-value@^2.0.0, set-value@^2.0.1: 3026 | version "2.0.1" 3027 | resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" 3028 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 3029 | dependencies: 3030 | extend-shallow "^2.0.1" 3031 | is-extendable "^0.1.1" 3032 | is-plain-object "^2.0.3" 3033 | split-string "^3.0.1" 3034 | 3035 | shebang-command@^1.2.0: 3036 | version "1.2.0" 3037 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" 3038 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3039 | dependencies: 3040 | shebang-regex "^1.0.0" 3041 | 3042 | shebang-command@^2.0.0: 3043 | version "2.0.0" 3044 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 3045 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3046 | dependencies: 3047 | shebang-regex "^3.0.0" 3048 | 3049 | shebang-regex@^1.0.0: 3050 | version "1.0.0" 3051 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" 3052 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3053 | 3054 | shebang-regex@^3.0.0: 3055 | version "3.0.0" 3056 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 3057 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3058 | 3059 | shellwords@^0.1.1: 3060 | version "0.1.1" 3061 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3062 | integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== 3063 | 3064 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3065 | version "3.0.6" 3066 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz" 3067 | integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== 3068 | 3069 | sisteransi@^1.0.5: 3070 | version "1.0.5" 3071 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" 3072 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 3073 | 3074 | slash@^3.0.0: 3075 | version "3.0.0" 3076 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 3077 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3078 | 3079 | snapdragon-node@^2.0.1: 3080 | version "2.1.1" 3081 | resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" 3082 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3083 | dependencies: 3084 | define-property "^1.0.0" 3085 | isobject "^3.0.0" 3086 | snapdragon-util "^3.0.1" 3087 | 3088 | snapdragon-util@^3.0.1: 3089 | version "3.0.1" 3090 | resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" 3091 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3092 | dependencies: 3093 | kind-of "^3.2.0" 3094 | 3095 | snapdragon@^0.8.1: 3096 | version "0.8.2" 3097 | resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" 3098 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3099 | dependencies: 3100 | base "^0.11.1" 3101 | debug "^2.2.0" 3102 | define-property "^0.2.5" 3103 | extend-shallow "^2.0.1" 3104 | map-cache "^0.2.2" 3105 | source-map "^0.5.6" 3106 | source-map-resolve "^0.5.0" 3107 | use "^3.1.0" 3108 | 3109 | source-map-resolve@^0.5.0: 3110 | version "0.5.3" 3111 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz" 3112 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 3113 | dependencies: 3114 | atob "^2.1.2" 3115 | decode-uri-component "^0.2.0" 3116 | resolve-url "^0.2.1" 3117 | source-map-url "^0.4.0" 3118 | urix "^0.1.0" 3119 | 3120 | source-map-support@^0.5.6: 3121 | version "0.5.21" 3122 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" 3123 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 3124 | dependencies: 3125 | buffer-from "^1.0.0" 3126 | source-map "^0.6.0" 3127 | 3128 | source-map-url@^0.4.0: 3129 | version "0.4.1" 3130 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" 3131 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== 3132 | 3133 | source-map@^0.5.0, source-map@^0.5.6: 3134 | version "0.5.7" 3135 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" 3136 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3137 | 3138 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3139 | version "0.6.1" 3140 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 3141 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3142 | 3143 | source-map@^0.7.3: 3144 | version "0.7.3" 3145 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" 3146 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3147 | 3148 | spdx-correct@^3.0.0: 3149 | version "3.1.1" 3150 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" 3151 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 3152 | dependencies: 3153 | spdx-expression-parse "^3.0.0" 3154 | spdx-license-ids "^3.0.0" 3155 | 3156 | spdx-exceptions@^2.1.0: 3157 | version "2.3.0" 3158 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" 3159 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 3160 | 3161 | spdx-expression-parse@^3.0.0: 3162 | version "3.0.1" 3163 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" 3164 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 3165 | dependencies: 3166 | spdx-exceptions "^2.1.0" 3167 | spdx-license-ids "^3.0.0" 3168 | 3169 | spdx-license-ids@^3.0.0: 3170 | version "3.0.11" 3171 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz" 3172 | integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== 3173 | 3174 | split-string@^3.0.1, split-string@^3.0.2: 3175 | version "3.1.0" 3176 | resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz" 3177 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3178 | dependencies: 3179 | extend-shallow "^3.0.0" 3180 | 3181 | sprintf-js@~1.0.2: 3182 | version "1.0.3" 3183 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 3184 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3185 | 3186 | stack-utils@^2.0.2: 3187 | version "2.0.5" 3188 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz" 3189 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 3190 | dependencies: 3191 | escape-string-regexp "^2.0.0" 3192 | 3193 | static-extend@^0.1.1: 3194 | version "0.1.2" 3195 | resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" 3196 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3197 | dependencies: 3198 | define-property "^0.2.5" 3199 | object-copy "^0.1.0" 3200 | 3201 | string-length@^4.0.1: 3202 | version "4.0.2" 3203 | resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" 3204 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 3205 | dependencies: 3206 | char-regex "^1.0.2" 3207 | strip-ansi "^6.0.0" 3208 | 3209 | string-width@^4.1.0, string-width@^4.2.0: 3210 | version "4.2.3" 3211 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 3212 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3213 | dependencies: 3214 | emoji-regex "^8.0.0" 3215 | is-fullwidth-code-point "^3.0.0" 3216 | strip-ansi "^6.0.1" 3217 | 3218 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3219 | version "6.0.1" 3220 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 3221 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3222 | dependencies: 3223 | ansi-regex "^5.0.1" 3224 | 3225 | strip-bom@^4.0.0: 3226 | version "4.0.0" 3227 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" 3228 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3229 | 3230 | strip-eof@^1.0.0: 3231 | version "1.0.0" 3232 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" 3233 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 3234 | 3235 | strip-final-newline@^2.0.0: 3236 | version "2.0.0" 3237 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" 3238 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3239 | 3240 | supports-color@^5.3.0: 3241 | version "5.5.0" 3242 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 3243 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3244 | dependencies: 3245 | has-flag "^3.0.0" 3246 | 3247 | supports-color@^7.0.0, supports-color@^7.1.0: 3248 | version "7.2.0" 3249 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 3250 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3251 | dependencies: 3252 | has-flag "^4.0.0" 3253 | 3254 | supports-hyperlinks@^2.0.0: 3255 | version "2.2.0" 3256 | resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" 3257 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 3258 | dependencies: 3259 | has-flag "^4.0.0" 3260 | supports-color "^7.0.0" 3261 | 3262 | supports-preserve-symlinks-flag@^1.0.0: 3263 | version "1.0.0" 3264 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 3265 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3266 | 3267 | symbol-tree@^3.2.4: 3268 | version "3.2.4" 3269 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" 3270 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 3271 | 3272 | terminal-link@^2.0.0: 3273 | version "2.1.1" 3274 | resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" 3275 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 3276 | dependencies: 3277 | ansi-escapes "^4.2.1" 3278 | supports-hyperlinks "^2.0.0" 3279 | 3280 | test-exclude@^6.0.0: 3281 | version "6.0.0" 3282 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" 3283 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3284 | dependencies: 3285 | "@istanbuljs/schema" "^0.1.2" 3286 | glob "^7.1.4" 3287 | minimatch "^3.0.4" 3288 | 3289 | throat@^5.0.0: 3290 | version "5.0.0" 3291 | resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 3292 | integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 3293 | 3294 | tmpl@1.0.5: 3295 | version "1.0.5" 3296 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" 3297 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3298 | 3299 | to-fast-properties@^2.0.0: 3300 | version "2.0.0" 3301 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 3302 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3303 | 3304 | to-object-path@^0.3.0: 3305 | version "0.3.0" 3306 | resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" 3307 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3308 | dependencies: 3309 | kind-of "^3.0.2" 3310 | 3311 | to-regex-range@^2.1.0: 3312 | version "2.1.1" 3313 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" 3314 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3315 | dependencies: 3316 | is-number "^3.0.0" 3317 | repeat-string "^1.6.1" 3318 | 3319 | to-regex-range@^5.0.1: 3320 | version "5.0.1" 3321 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 3322 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3323 | dependencies: 3324 | is-number "^7.0.0" 3325 | 3326 | to-regex@^3.0.1, to-regex@^3.0.2: 3327 | version "3.0.2" 3328 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" 3329 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3330 | dependencies: 3331 | define-property "^2.0.2" 3332 | extend-shallow "^3.0.2" 3333 | regex-not "^1.0.2" 3334 | safe-regex "^1.1.0" 3335 | 3336 | tough-cookie@^4.0.0: 3337 | version "4.0.0" 3338 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz" 3339 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 3340 | dependencies: 3341 | psl "^1.1.33" 3342 | punycode "^2.1.1" 3343 | universalify "^0.1.2" 3344 | 3345 | tr46@^2.1.0: 3346 | version "2.1.0" 3347 | resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz" 3348 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 3349 | dependencies: 3350 | punycode "^2.1.1" 3351 | 3352 | ts-jest@^26.5.6: 3353 | version "26.5.6" 3354 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.5.6.tgz#c32e0746425274e1dfe333f43cd3c800e014ec35" 3355 | integrity sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA== 3356 | dependencies: 3357 | bs-logger "0.x" 3358 | buffer-from "1.x" 3359 | fast-json-stable-stringify "2.x" 3360 | jest-util "^26.1.0" 3361 | json5 "2.x" 3362 | lodash "4.x" 3363 | make-error "1.x" 3364 | mkdirp "1.x" 3365 | semver "7.x" 3366 | yargs-parser "20.x" 3367 | 3368 | type-check@~0.3.2: 3369 | version "0.3.2" 3370 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" 3371 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3372 | dependencies: 3373 | prelude-ls "~1.1.2" 3374 | 3375 | type-detect@4.0.8: 3376 | version "4.0.8" 3377 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" 3378 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3379 | 3380 | type-fest@^0.21.3: 3381 | version "0.21.3" 3382 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" 3383 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3384 | 3385 | type-fest@^0.6.0: 3386 | version "0.6.0" 3387 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" 3388 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 3389 | 3390 | type-fest@^0.8.1: 3391 | version "0.8.1" 3392 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" 3393 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 3394 | 3395 | typedarray-to-buffer@^3.1.5: 3396 | version "3.1.5" 3397 | resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" 3398 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3399 | dependencies: 3400 | is-typedarray "^1.0.0" 3401 | 3402 | typescript@4.1.3: 3403 | version "4.1.3" 3404 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7" 3405 | integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg== 3406 | 3407 | union-value@^1.0.0: 3408 | version "1.0.1" 3409 | resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz" 3410 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3411 | dependencies: 3412 | arr-union "^3.1.0" 3413 | get-value "^2.0.6" 3414 | is-extendable "^0.1.1" 3415 | set-value "^2.0.1" 3416 | 3417 | universalify@^0.1.2: 3418 | version "0.1.2" 3419 | resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" 3420 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3421 | 3422 | unset-value@^1.0.0: 3423 | version "1.0.0" 3424 | resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" 3425 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3426 | dependencies: 3427 | has-value "^0.3.1" 3428 | isobject "^3.0.0" 3429 | 3430 | urix@^0.1.0: 3431 | version "0.1.0" 3432 | resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" 3433 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3434 | 3435 | use@^3.1.0: 3436 | version "3.1.1" 3437 | resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz" 3438 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3439 | 3440 | uuid@^8.3.0: 3441 | version "8.3.2" 3442 | resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" 3443 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 3444 | 3445 | v8-to-istanbul@^7.0.0: 3446 | version "7.1.2" 3447 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" 3448 | integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== 3449 | dependencies: 3450 | "@types/istanbul-lib-coverage" "^2.0.1" 3451 | convert-source-map "^1.6.0" 3452 | source-map "^0.7.3" 3453 | 3454 | validate-npm-package-license@^3.0.1: 3455 | version "3.0.4" 3456 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" 3457 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3458 | dependencies: 3459 | spdx-correct "^3.0.0" 3460 | spdx-expression-parse "^3.0.0" 3461 | 3462 | w3c-hr-time@^1.0.2: 3463 | version "1.0.2" 3464 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" 3465 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 3466 | dependencies: 3467 | browser-process-hrtime "^1.0.0" 3468 | 3469 | w3c-xmlserializer@^2.0.0: 3470 | version "2.0.0" 3471 | resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" 3472 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 3473 | dependencies: 3474 | xml-name-validator "^3.0.0" 3475 | 3476 | walker@^1.0.7, walker@~1.0.5: 3477 | version "1.0.8" 3478 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" 3479 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 3480 | dependencies: 3481 | makeerror "1.0.12" 3482 | 3483 | webidl-conversions@^5.0.0: 3484 | version "5.0.0" 3485 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" 3486 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 3487 | 3488 | webidl-conversions@^6.1.0: 3489 | version "6.1.0" 3490 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" 3491 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 3492 | 3493 | whatwg-encoding@^1.0.5: 3494 | version "1.0.5" 3495 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" 3496 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 3497 | dependencies: 3498 | iconv-lite "0.4.24" 3499 | 3500 | whatwg-mimetype@^2.3.0: 3501 | version "2.3.0" 3502 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" 3503 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 3504 | 3505 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3506 | version "8.7.0" 3507 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz" 3508 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 3509 | dependencies: 3510 | lodash "^4.7.0" 3511 | tr46 "^2.1.0" 3512 | webidl-conversions "^6.1.0" 3513 | 3514 | which-module@^2.0.0: 3515 | version "2.0.0" 3516 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3517 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 3518 | 3519 | which@^1.2.9: 3520 | version "1.3.1" 3521 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" 3522 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3523 | dependencies: 3524 | isexe "^2.0.0" 3525 | 3526 | which@^2.0.1, which@^2.0.2: 3527 | version "2.0.2" 3528 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 3529 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3530 | dependencies: 3531 | isexe "^2.0.0" 3532 | 3533 | word-wrap@~1.2.3: 3534 | version "1.2.3" 3535 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 3536 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3537 | 3538 | wrap-ansi@^6.2.0: 3539 | version "6.2.0" 3540 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 3541 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 3542 | dependencies: 3543 | ansi-styles "^4.0.0" 3544 | string-width "^4.1.0" 3545 | strip-ansi "^6.0.0" 3546 | 3547 | wrappy@1: 3548 | version "1.0.2" 3549 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 3550 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3551 | 3552 | write-file-atomic@^3.0.0: 3553 | version "3.0.3" 3554 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" 3555 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3556 | dependencies: 3557 | imurmurhash "^0.1.4" 3558 | is-typedarray "^1.0.0" 3559 | signal-exit "^3.0.2" 3560 | typedarray-to-buffer "^3.1.5" 3561 | 3562 | ws@^7.4.6: 3563 | version "7.5.6" 3564 | resolved "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz" 3565 | integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== 3566 | 3567 | xml-name-validator@^3.0.0: 3568 | version "3.0.0" 3569 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" 3570 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 3571 | 3572 | xmlchars@^2.2.0: 3573 | version "2.2.0" 3574 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" 3575 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 3576 | 3577 | y18n@^4.0.0: 3578 | version "4.0.3" 3579 | resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" 3580 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 3581 | 3582 | yallist@^4.0.0: 3583 | version "4.0.0" 3584 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 3585 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3586 | 3587 | yargs-parser@20.x: 3588 | version "20.2.9" 3589 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" 3590 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 3591 | 3592 | yargs-parser@^18.1.2: 3593 | version "18.1.3" 3594 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 3595 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 3596 | dependencies: 3597 | camelcase "^5.0.0" 3598 | decamelize "^1.2.0" 3599 | 3600 | yargs@^15.4.1: 3601 | version "15.4.1" 3602 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 3603 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 3604 | dependencies: 3605 | cliui "^6.0.0" 3606 | decamelize "^1.2.0" 3607 | find-up "^4.1.0" 3608 | get-caller-file "^2.0.1" 3609 | require-directory "^2.1.1" 3610 | require-main-filename "^2.0.0" 3611 | set-blocking "^2.0.0" 3612 | string-width "^4.2.0" 3613 | which-module "^2.0.0" 3614 | y18n "^4.0.0" 3615 | yargs-parser "^18.1.2" 3616 | --------------------------------------------------------------------------------