├── .eslintrc.json
├── .github
└── workflows
│ └── main.yml
├── .gitignore
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── examples
├── .babelrc
├── billboard_1965-2015.json
├── index.html
├── package.json
├── rollup.config.dev.js
├── rollup.config.js
├── src
│ ├── app.jsx
│ └── index.js
└── yarn.lock
├── package.json
├── rollup.config.js
├── src
├── react-minisearch.test.tsx
├── react-minisearch.tsx
└── testSetup
│ └── jest.ts
├── tsconfig.json
└── yarn.lock
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "es6": true
5 | },
6 | "parser": "@typescript-eslint/parser",
7 | "plugins": [
8 | "react",
9 | "@typescript-eslint"
10 | ],
11 | "extends": [
12 | "eslint:recommended",
13 | "plugin:react/recommended",
14 | "plugin:react-hooks/recommended",
15 | "standard",
16 | "plugin:@typescript-eslint/eslint-recommended"
17 | ],
18 | "rules": {
19 | "quotes": ["error", "single", { "avoidEscape": true }],
20 | "no-prototype-builtins": 0,
21 | "no-use-before-define": 0,
22 | "react/prop-types": 0,
23 | "@typescript-eslint/no-use-before-define": [
24 | "error",
25 | { "functions": false, "classes": false, "variables": false }
26 | ]
27 | },
28 | "settings": {
29 | "react": {
30 | "version": "detect"
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | # This is a basic workflow to help you get started with Actions
2 |
3 | name: CI Build
4 |
5 | # Controls when the action will run. Triggers the workflow on push or pull request
6 | # events but only for the master branch
7 | on:
8 | push:
9 | branches: [ master ]
10 | pull_request:
11 | branches: [ master ]
12 |
13 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel
14 | jobs:
15 | # This workflow contains a single job called "build"
16 | test:
17 | # The type of runner that the job will run on
18 | runs-on: ubuntu-latest
19 |
20 | # Steps represent a sequence of tasks that will be executed as part of the job
21 | steps:
22 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23 | - uses: actions/checkout@v4
24 | - uses: actions/setup-node@v3
25 | with:
26 | node-version: 'latest'
27 |
28 | - name: Install dependencies
29 | run: yarn install
30 |
31 | - name: Run linter
32 | run: yarn lint
33 |
34 | - name: Run tests
35 | run: yarn test
36 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | lib
4 | .cache
5 | yarn-error.log
6 | .DS_Store
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | The major and minor version numbers of `react-minisearch` correspond to the
4 | supported major and minor version of MiniSearch. The patch version increments
5 | with any change.
6 |
7 | ## v7.1.3
8 |
9 | - Expose `getById` function to retrieve a document by its ID (thanks [@mekodes](https://github.com/mekodes))
10 |
11 | ## v7.1.2
12 |
13 | - [fix] Fix type declarations in package.json so they are correctly retrieved by TypeScript packages using `react-minisearch`
14 |
15 | ## v7.1.1
16 |
17 | - Publish separate ES module, CJS, and UMD builds
18 | - [fix] Fix issue with MiniSearch.wildcard (see https://github.com/lucaong/react-minisearch/issues/42)
19 |
20 | ## v7.1.0
21 |
22 | - Support for MiniSearch `v7.1.0`
23 |
24 | ## v7.0.1
25 |
26 | - [fix] Fixed support for MiniSearch `v7.0.0`
27 |
28 | ## v7.0.0
29 |
30 | - Support for MiniSearch `v7.0.0`
31 |
32 | ## v6.3.0
33 |
34 | - Support for MiniSearch `v6.3.0`
35 |
36 | ## v6.2.0
37 |
38 | - Support for MiniSearch `v6.2.0`
39 |
40 | ## v6.1.0
41 |
42 | - Support for MiniSearch `v6.1.0`
43 |
44 | ## v6.0.4
45 |
46 | - [fix] Avoid errors in React 18 development mode, when useEffect(…, []) is called twice
47 |
48 | ## v6.0.3
49 |
50 | - [performance fix] Avoid expensive `removeAll` on unmount
51 |
52 | ## v6.0.2
53 |
54 | - [fix] Return stable reference from useMiniSearch
55 |
56 | ## v6.0.1
57 |
58 | - Relax React peer dependency to allow React 18
59 |
60 | ## v6.0.0
61 |
62 | - Support for MiniSearch `v6.0.0`
63 |
64 | ## v5.0.2
65 |
66 | - Relax peer dependency to MiniSearch `5.x`
67 |
68 | ## v5.0.1
69 |
70 | - Fix peer dependency to MiniSearch
71 |
72 | ## v5.0.0
73 |
74 | - Support for MiniSearch `5.0.0`
75 |
76 | ## v4.0.1
77 |
78 | - Fix issue with package dependencies, and use MiniSearch `4.0.1`
79 |
80 | ## v4.0.0
81 |
82 | - Support for MiniSearch `4.0.0`
83 |
84 | ## v3.1.0
85 |
86 | - Allow passing a query expression to the `search` function, as introduced in
87 | MiniSearch v3.1.0
88 |
89 | ## v3.0.2
90 |
91 | - [fix] Avoid unnecessary re-renders (and associated bugs) by using `useRef`
92 | instead of `useState` where appropriate.
93 |
94 | ## v3.0.1
95 |
96 | - [fix] Clean up internal map of documents by ID when calling `removeAll`
97 |
98 | ## v3.0.0
99 |
100 | - Support for MiniSearch `3.0.0`
101 |
102 | ## v2.6.5
103 |
104 | - [fix] Fix bug with ID field extraction
105 |
106 | ## v2.6.4
107 |
108 | - Add `rawResults` prop, to give access to the raw search results including
109 | score and match information
110 |
111 | ## v2.6.3
112 |
113 | - Improve TypeScript types: generic document type now defaults to `any`
114 | instead of `object`
115 |
116 | ## v2.6.2
117 |
118 | - [fix] Fix type of `searchResults`
119 |
120 | ## v2.6.1
121 |
122 | - Better types using generics
123 | - Require MiniSearch `^2.6.0`
124 |
125 | ## v2.6.0
126 |
127 | - UNPUBLISHED due to publishing mistake
128 |
129 | ## v2.1.8
130 | - Also pass the MiniSearch instance as a `miniSearch` prop
131 |
132 | ## v2.1.7
133 |
134 | - Fix error in TypeScript declaration file path
135 |
136 | ## v2.1.6
137 |
138 | - Simpler packaging with `tsc` and Rollup, also reducing bundle size
139 |
140 | ## v2.1.5
141 |
142 | - Set displayName in withMiniSearch
143 |
144 | ## v2.1.4
145 |
146 | - [bugfix] Use Babel to transpile ES6
147 |
148 | ## v2.1.3
149 |
150 | - [bugfix] Switch from Parcel to Webpack to fix importing issues
151 |
152 | ## v2.1.2
153 |
154 | - Improve TypeScript type of React component
155 | - [bugfix] Fix import by specifying the correct main file in `package.json`
156 |
157 | ## v2.1.1
158 |
159 | - Add function `removeById`, to remove a document by its id
160 |
161 | ## v2.1.0
162 |
163 | First release, compatible with MiniSearch `^2.1.1`
164 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ## The MIT License (MIT)
2 | Copyright © 2021 Luca Ongaro
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5 |
6 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7 |
8 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React MiniSearch
2 |
3 | React integration for the [MiniSearch](https://github.com/lucaong/minisearch) client side full-text search library.
4 |
5 | ## Getting Started
6 |
7 | ### Installation:
8 |
9 | First, make sure you have a compatible version of
10 | [React](https://github.com/facebook/react) and of
11 | [MiniSearch](https://github.com/lucaong/minisearch) installed.
12 |
13 | Then, install via **NPM** or **Yarn**:
14 |
15 | ```bash
16 | # With NPM:
17 | npm install react-minisearch
18 |
19 | # Or with Yarn:
20 | yarn add react-minisearch
21 | ```
22 |
23 | ### Usage:
24 |
25 | There are three main ways to use `react-minisearch`: the `useMiniSearch` hook, the `withMiniSearch` higher-order component, or the `WithMiniSearch` wrapper component.
26 |
27 | All three way take the following arguments (or props for the wrapper component):
28 |
29 | - The initial collection of documents to add to the index. Note: this is just
30 | the initial collection, and mutating this argument won't cause reindexing.
31 | To add or remove documents after initialization, use the functions
32 | `add`/`addAll`/`remove`/`removeAll`/`discard`, etc.
33 | - The `MiniSearch` configuration options
34 |
35 | #### Using the useMiniSearch hook:
36 |
37 | ```jsx
38 | import { useMiniSearch } from 'react-minisearch'
39 |
40 | // Documents to search amongst
41 | const documents = [
42 | { id: 1, name: 'Agata' },
43 | { id: 2, name: 'Finn' },
44 | // …etc
45 | ]
46 |
47 | // See MiniSearch for documentation on options
48 | const miniSearchOptions = { fields: ['name'] }
49 |
50 | const MyComponent = () => {
51 | const { search, searchResults } = useMiniSearch(documents, miniSearchOptions)
52 |
53 | const handleSearchChange = (event) => {
54 | search(event.target.value)
55 | }
56 |
57 | return (
58 |
59 |
60 |
61 |
62 | Results:
63 | {
64 | searchResults && searchResults.map((result, i) => {
65 | return { result.name }
66 | })
67 | }
68 |
69 |
70 | )
71 | }
72 | ```
73 |
74 | #### Using the withMiniSearch higher-order component:
75 |
76 | ```jsx
77 | import { withMiniSearch } from 'react-minisearch'
78 |
79 | const MyComponent = ({ search, searchResults }) => {
80 |
81 | const handleSearchChange = (event) => {
82 | search(event.target.value)
83 | }
84 |
85 | return (
86 |
87 |
88 |
89 |
90 | Results:
91 | {
92 | searchResults && searchResults.map((result, i) => {
93 | return { result.name }
94 | })
95 | }
96 |
97 |
98 | )
99 | }
100 |
101 | // Documents to search amongst
102 | const documents = [
103 | { id: 1, name: 'Agata' },
104 | { id: 2, name: 'Finn' },
105 | // …etc
106 | ]
107 |
108 | // See MiniSearch for documentation on options
109 | const miniSearchOptions = { fields: ['name'] }
110 |
111 | const MyComponentWithSearch = withMiniSearch(documents, miniSearchOptions, MyComponent)
112 | ```
113 |
114 | #### Using the WithMiniSearch wrapper component:
115 |
116 | ```jsx
117 | import { WithMiniSearch } from 'react-minisearch'
118 |
119 | // Documents to search amongst
120 | const documents = [
121 | { id: 1, name: 'Agata' },
122 | { id: 2, name: 'Finn' },
123 | // …etc
124 | ]
125 |
126 | // See MiniSearch for documentation on options
127 | const miniSearchOptions = { fields: ['name'] }
128 |
129 | const MyComponent = () => (
130 |
131 | {
132 | ({ search, searchResults }) => {
133 | const handleSearchChange = (event) => {
134 | search(event.target.value)
135 | }
136 |
137 | return (
138 |
139 |
140 |
141 |
142 | Results:
143 | {
144 | searchResults && searchResults.map((result, i) => {
145 | return { result.name }
146 | })
147 | }
148 |
149 |
150 | )
151 | }
152 | }
153 |
154 | )
155 | ```
156 |
157 | ### Provided props:
158 |
159 | The complete set of props that are provided by `react-minisearch` is the same
160 | for all three ways (`useMiniSearch`, `withMiniSearch`, or `WithMiniSearch`):
161 |
162 | - `search(query: string, searchOptions?: SearchOptions) => void`: function to
163 | be called in order to perform the search
164 |
165 | - `searchResults: T[] | null`: array of search results, or `null` when no
166 | search was performed or search was cleared
167 |
168 | - `rawResults: SearchResult[] | null`: array of raw search results from
169 | MiniSearch, including scores and match information, or `null` when no search
170 | was performed or search was cleared
171 |
172 | - `clearSearch() => void`: function to be called in order to clear the search
173 | (setting `searchResults` to `null`)
174 |
175 | - `autoSuggest(query: string, searchOptions?: SearchOptions) => void`:
176 | function to be called in order to obtain auto suggestions
177 |
178 | - `suggestions: Suggestion[] | null`: array of auto suggestions, or `null`
179 | when auto suggestions are not used or cleared
180 |
181 | - `clearSuggestions() => void`: function to be called in order to clear the
182 | suggestions (setting `suggestions` to `null`)
183 |
184 | - `add(document: T) => void`: function to add a new document to the index
185 |
186 | - `addAll(documents: T[]) => void`: function to add several new documents to
187 | the index in bulk
188 |
189 | - `addAllAsync(documents: T[], options?: object) => Promise`: same as
190 | `addAll`, but works asynchronously and in batches to avoid blocking the UI
191 |
192 | - `getById(id: any) => T | null`: function to retrieve a document from the index
193 | by its ID
194 |
195 | - `remove(document: T) => void`: function to remove a document from the index
196 |
197 | - `removeById(id: any) => void`: function to remove a document from the index
198 | by its ID
199 |
200 | - `removeAll(documents?: T[]) => void`: function to remove several documents,
201 | or all documents, from the index
202 |
203 | - `discard(id: any) => void`: discard a document by its ID (same as
204 | `removeById`)
205 |
206 | - `discardAll(ids: readonly any[]) => void`: discard several documents at
207 | once, by their ID
208 |
209 | - `replace(document: T) => void`: replace an existing document with a new
210 | version of it
211 |
212 | - `isIndexing: boolean`: set to `true` when indexing via `addAllAsync` is in
213 | progress, `false` otherwise
214 |
215 | - `miniSearch: MiniSearch`: the `MiniSearch` instance, for the (rare) cases
216 | when it is necessary to use it directly
217 |
218 | In this list, the type `T` is a generic type that refers to the type of the document being indexed.
219 |
220 | Many of these props correspond to methods on the `MiniSearch` class, as
221 | documented in the [MiniSearch
222 | library](https://github.com/lucaong/minisearch).
223 |
224 |
225 | ## Examples
226 |
227 | Check out the `examples` directory for a complete usage example. To run the
228 | example app locally:
229 |
230 | - `cd` to the `examples` directory
231 | - Install dependencies with `yarn install` (or `npm install`)
232 | - Run the example application with `yarn start` (or `npm run start`)
233 |
--------------------------------------------------------------------------------
/examples/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["@babel/preset-env", {
4 | "shippedProposals": true,
5 | "useBuiltIns": 'usage',
6 | "corejs": 3,
7 | "targets": { "browsers": "> 1%" }
8 | }],
9 | ["@babel/preset-react", {}]
10 | ],
11 | "plugins": ["@babel/plugin-proposal-object-rest-spread"]
12 | }
13 |
14 |
--------------------------------------------------------------------------------
/examples/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MiniSearch Example
5 |
6 |
7 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
--------------------------------------------------------------------------------
/examples/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "minisearch-example",
3 | "version": "1.0.0",
4 | "description": "Example app for MiniSearch",
5 | "main": "index.js",
6 | "author": "Luca Ongaro",
7 | "license": "MIT",
8 | "scripts": {
9 | "start": "rollup -c rollup.config.dev.js -w",
10 | "build": "rollup -c rollup.config.js"
11 | },
12 | "devDependencies": {
13 | "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
14 | "@babel/preset-env": "^7.12.11",
15 | "@babel/preset-react": "^7.12.10",
16 | "@rollup/plugin-babel": "^5.2.2",
17 | "@rollup/plugin-commonjs": "^17.0.0",
18 | "@rollup/plugin-node-resolve": "^11.1.0",
19 | "@rollup/plugin-replace": "^2.3.4",
20 | "babel": "^6.23.0",
21 | "regenerator-runtime": "^0.13.0",
22 | "rollup": "^2.26.9",
23 | "rollup-plugin-livereload": "^2.0.0",
24 | "rollup-plugin-serve": "^1.1.0",
25 | "snazzy": "^8.0.0",
26 | "standard": "^12.0.1",
27 | "unfetch": "^4.0.1"
28 | },
29 | "dependencies": {
30 | "core-js": "^3.0.0",
31 | "minisearch": "7.1.0",
32 | "react": "^16.14.0",
33 | "react-dom": "^16.14.0",
34 | "react-minisearch": "7.1.1"
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/examples/rollup.config.dev.js:
--------------------------------------------------------------------------------
1 | import serve from 'rollup-plugin-serve'
2 | import livereload from 'rollup-plugin-livereload'
3 | import babel from '@rollup/plugin-babel'
4 | import resolve from '@rollup/plugin-node-resolve'
5 | import commonjs from '@rollup/plugin-commonjs'
6 | import replace from '@rollup/plugin-replace'
7 |
8 | export default {
9 | input: './src/index.js',
10 | plugins: [
11 | replace({
12 | 'process.env.NODE_ENV': JSON.stringify('development'),
13 | preventAssignment: true
14 | }),
15 | resolve({ extensions: ['.js', '.jsx'] }),
16 | babel({
17 | presets: ['@babel/preset-react'],
18 | babelHelpers: 'bundled'
19 | }),
20 | commonjs({ include: [/react-minisearch/] }),
21 | serve({
22 | open: true,
23 | verbose: true,
24 | contentBase: ['', 'dist'],
25 | historyApiFallback: true,
26 | host: 'localhost',
27 | port: 8080
28 | }),
29 | livereload({ watch: 'dist' })
30 | ],
31 | output: {
32 | file: './dist/index.js',
33 | format: 'iife',
34 | sourcemap: true
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/examples/rollup.config.js:
--------------------------------------------------------------------------------
1 | import babel from '@rollup/plugin-babel'
2 | import resolve from '@rollup/plugin-node-resolve'
3 | import commonjs from '@rollup/plugin-commonjs'
4 | import replace from '@rollup/plugin-replace'
5 |
6 | export default {
7 | input: './src/index.js',
8 | plugins: [
9 | replace({
10 | 'process.env.NODE_ENV': JSON.stringify('production'),
11 | preventAssignment: true
12 | }),
13 | resolve({ extensions: ['.js', '.jsx'] }),
14 | commonjs({ include: /node_modules/ }),
15 | babel({
16 | presets: ['@babel/preset-react'],
17 | babelHelpers: 'bundled'
18 | })
19 | ],
20 | output: {
21 | file: './dist/index.js',
22 | format: 'iife',
23 | sourcemap: true
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/examples/src/app.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState, useEffect, useRef } from 'react'
2 | import fetch from 'unfetch'
3 | import { useMiniSearch } from 'react-minisearch'
4 |
5 | const App = ({ documents }) => {
6 | const {
7 | search,
8 | searchResults,
9 | clearSearch,
10 | autoSuggest,
11 | suggestions,
12 | clearSuggestions,
13 | isIndexing
14 | } = useMiniSearch(documents, miniSearchOptions)
15 |
16 | const [query, setQuery] = useState('')
17 | const [selectedSuggestion, selectSuggestion] = useState(-1)
18 | const [fromYear, setFromYear] = useState(1965)
19 | const [toYear, setToYear] = useState(2015)
20 | const [searchOptions, setSearchOptions] = useState({
21 | fuzzy: 0.2,
22 | prefix: true,
23 | fields: ['title', 'artist'],
24 | combineWith: 'OR',
25 | filter: null
26 | })
27 |
28 | // Perform search when the query changes
29 | useEffect(() => {
30 | if (query.length > 1) {
31 | search(query, searchOptions)
32 | } else {
33 | clearSearch()
34 | }
35 | }, [query, searchOptions])
36 |
37 | // Manage selection of auto-suggestions
38 | useEffect(() => {
39 | if (selectedSuggestion >= 0) {
40 | const suggestionItem = suggestions[selectedSuggestion]
41 | setQuery(suggestionItem.suggestion)
42 | } else {
43 | clearSuggestions()
44 | }
45 | }, [selectedSuggestion])
46 |
47 | // Update the search options if the year range is changed
48 | useEffect(() => {
49 | if (fromYear <= 1965 && toYear >= 2015) {
50 | setSearchOptions({ ...searchOptions, filter: null })
51 | } else {
52 | const filter = ({ year }) => {
53 | year = parseInt(year, 10)
54 | return year >= fromYear && year <= toYear
55 | }
56 | setSearchOptions({ ...searchOptions, filter })
57 | }
58 | }, [fromYear, toYear])
59 |
60 | const searchInputRef = useRef(null)
61 |
62 | const deselectSuggestion = () => {
63 | selectSuggestion(-1)
64 | }
65 |
66 | const topSuggestions = suggestions ? suggestions.slice(0, 5) : []
67 |
68 | const autoSuggestOptions = {
69 | ...searchOptions,
70 | combineWith: 'AND',
71 | prefix: (term, i, terms) => i === terms.length - 1,
72 | boost: { artist: 5 }
73 | }
74 |
75 | const handleChange = ({ target: { value } }) => {
76 | setQuery(value)
77 | if (value.length > 1) {
78 | autoSuggest(value, autoSuggestOptions)
79 | } else {
80 | clearSuggestions()
81 | }
82 | deselectSuggestion()
83 | }
84 |
85 | const handleKeyDown = ({ which, key, keyCode }) => {
86 | if (key === 'ArrowDown') {
87 | selectSuggestion(Math.min(selectedSuggestion + 1, topSuggestions.length - 1))
88 | } else if (key === 'ArrowUp') {
89 | selectSuggestion(Math.max(-1, selectedSuggestion - 1))
90 | } else if (key === 'Enter' || key === 'Escape') {
91 | deselectSuggestion()
92 | clearSuggestions()
93 | searchInputRef.current.blur()
94 | }
95 | }
96 |
97 | const handleSuggestionClick = (i) => {
98 | setQuery(topSuggestions[i].suggestion)
99 | deselectSuggestion()
100 | clearSuggestions()
101 | }
102 |
103 | const handleSearchClear = () => {
104 | setQuery('')
105 | deselectSuggestion()
106 | clearSuggestions()
107 | }
108 |
109 | const handleAppClick = () => {
110 | deselectSuggestion()
111 | clearSuggestions()
112 | }
113 |
114 | const setSearchOption = (option, valueOrFn) => {
115 | if (typeof valueOrFn === 'function') {
116 | setSearchOptions({ ...searchOptions, [option]: valueOrFn(searchOptions[option]) })
117 | } else {
118 | setSearchOptions({ ...searchOptions, [option]: valueOrFn })
119 | }
120 | search(query, searchOptions)
121 | }
122 |
123 | const selectFromYear = (year) => {
124 | setFromYear(parseInt(year, 10))
125 | }
126 |
127 | const selectToYear = (year) => {
128 | setToYear(parseInt(year, 10))
129 | }
130 |
131 | return (
132 |
133 |
134 | {
135 |
142 | }
143 | {
144 | searchResults && searchResults.length > 0
145 | ?
146 | : (isIndexing ? : )
147 | }
148 |
149 |
150 | )
151 | }
152 |
153 | const SongList = ({ songs }) => (
154 |
155 | { songs.map(({ id, ...props }) => ) }
156 |
157 | )
158 |
159 | const Song = ({ title, artist, year, rank }) => (
160 |
161 | { capitalize(title) }
162 |
163 | Artist: { capitalize(artist) }
164 | Year: { year }
165 | Billboard Position: { rank }
166 |
167 |
168 | )
169 |
170 | const Header = (props) => (
171 |
172 | Song Search
173 |
174 |
175 | )
176 |
177 | const SearchBox = ({
178 | onChange,
179 | onKeyDown,
180 | onSuggestionClick,
181 | onSearchClear,
182 | value,
183 | suggestions,
184 | selectedSuggestion,
185 | searchInputRef,
186 | searchOptions,
187 | setSearchOption,
188 | setFromYear,
189 | setToYear,
190 | fromYear,
191 | toYear
192 | }) => (
193 |
194 |
195 |
197 | ×
198 |
199 | {
200 | suggestions && suggestions.length > 0 &&
201 |
204 | }
205 |
207 |
208 | )
209 |
210 | const SuggestionList = ({ items, selectedSuggestion, onSuggestionClick }) => (
211 |
212 | {
213 | items.map(({ suggestion }, i) =>
214 | onSuggestionClick(i, event)} key={i} />)
216 | }
217 |
218 | )
219 |
220 | const Suggestion = ({ value, selected, onClick }) => (
221 | { value }
222 | )
223 |
224 | const AdvancedOptions = ({ options, setOption, setFromYear, setToYear, fromYear, toYear }) => {
225 | const setField = (field) => ({ target: { checked } }) => {
226 | setOption('fields', (fields) => {
227 | return checked ? [...fields, field] : fields.filter(f => f !== field)
228 | })
229 | }
230 | const setKey = (key, trueValue = true, falseValue = false) => ({ target: { checked } }) => {
231 | setOption(key, checked ? trueValue : falseValue)
232 | }
233 | const { fields, combineWith, fuzzy, prefix } = options
234 | return (
235 |
236 | Advanced options
237 |
291 |
292 | )
293 | }
294 |
295 | const Explanation = () => (
296 |
297 | This is a demo of the MiniSearch JavaScript
299 | library: try searching through more than 5000 top songs and artists
300 | in Billboard Hot 100 from year 1965 to 2015. This example
301 | demonstrates search (with prefix and fuzzy match) and auto-completion.
302 |
303 | )
304 |
305 | const Loader = ({ text }) => (
306 | { text || 'loading...' }
307 | )
308 |
309 | const capitalize = (string) => string.replace(/(\b\w)/gi, (char) => char.toUpperCase())
310 |
311 | const stopWords = new Set(['the', 'a', 'an', 'and'])
312 |
313 | const years = []
314 | for (let y = 1965; y <= 2015; y++) { years.push(y) }
315 |
316 | const miniSearchOptions = {
317 | fields: ['artist', 'title'],
318 | storeFields: ['year'],
319 | processTerm: (term, _fieldName) => (term.length <= 1 || stopWords.has(term)) ? null : term.toLowerCase()
320 | }
321 |
322 | // Fetch the JSON documents
323 | const withDocuments = (Component) => {
324 | const WithDocuments = (props) => {
325 | const [documents, setDocuments] = useState(null)
326 |
327 | useEffect(() => {
328 | fetch('billboard_1965-2015.json')
329 | .then(response => response.json())
330 | .then((documents) => { setDocuments(documents) })
331 | }, [])
332 |
333 | if (documents == null) {
334 | return
335 | } else {
336 | return
337 | }
338 | }
339 |
340 | return WithDocuments
341 | }
342 |
343 | export default withDocuments(App)
344 |
--------------------------------------------------------------------------------
/examples/src/index.js:
--------------------------------------------------------------------------------
1 | import ReactDOM from 'react-dom'
2 | import React from 'react'
3 | import App from './app'
4 |
5 | ReactDOM.render(React.createElement(App), document.getElementById('app'))
6 |
--------------------------------------------------------------------------------
/examples/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.18.6":
6 | version "7.18.6"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
8 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
9 | dependencies:
10 | "@babel/highlight" "^7.18.6"
11 |
12 | "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1":
13 | version "7.20.5"
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
15 | integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
16 |
17 | "@babel/generator@^7.20.5":
18 | version "7.20.5"
19 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
20 | integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
21 | dependencies:
22 | "@babel/types" "^7.20.5"
23 | "@jridgewell/gen-mapping" "^0.3.2"
24 | jsesc "^2.5.1"
25 |
26 | "@babel/helper-annotate-as-pure@^7.18.6":
27 | version "7.18.6"
28 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
29 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
30 | dependencies:
31 | "@babel/types" "^7.18.6"
32 |
33 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
34 | version "7.18.9"
35 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
36 | integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
37 | dependencies:
38 | "@babel/helper-explode-assignable-expression" "^7.18.6"
39 | "@babel/types" "^7.18.9"
40 |
41 | "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0":
42 | version "7.20.0"
43 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
44 | integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
45 | dependencies:
46 | "@babel/compat-data" "^7.20.0"
47 | "@babel/helper-validator-option" "^7.18.6"
48 | browserslist "^4.21.3"
49 | semver "^6.3.0"
50 |
51 | "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5":
52 | version "7.20.5"
53 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz#327154eedfb12e977baa4ecc72e5806720a85a06"
54 | integrity sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==
55 | dependencies:
56 | "@babel/helper-annotate-as-pure" "^7.18.6"
57 | "@babel/helper-environment-visitor" "^7.18.9"
58 | "@babel/helper-function-name" "^7.19.0"
59 | "@babel/helper-member-expression-to-functions" "^7.18.9"
60 | "@babel/helper-optimise-call-expression" "^7.18.6"
61 | "@babel/helper-replace-supers" "^7.19.1"
62 | "@babel/helper-split-export-declaration" "^7.18.6"
63 |
64 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5":
65 | version "7.20.5"
66 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca"
67 | integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==
68 | dependencies:
69 | "@babel/helper-annotate-as-pure" "^7.18.6"
70 | regexpu-core "^5.2.1"
71 |
72 | "@babel/helper-define-polyfill-provider@^0.3.3":
73 | version "0.3.3"
74 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
75 | integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
76 | dependencies:
77 | "@babel/helper-compilation-targets" "^7.17.7"
78 | "@babel/helper-plugin-utils" "^7.16.7"
79 | debug "^4.1.1"
80 | lodash.debounce "^4.0.8"
81 | resolve "^1.14.2"
82 | semver "^6.1.2"
83 |
84 | "@babel/helper-environment-visitor@^7.18.9":
85 | version "7.18.9"
86 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
87 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
88 |
89 | "@babel/helper-explode-assignable-expression@^7.18.6":
90 | version "7.18.6"
91 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
92 | integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
93 | dependencies:
94 | "@babel/types" "^7.18.6"
95 |
96 | "@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
97 | version "7.19.0"
98 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
99 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
100 | dependencies:
101 | "@babel/template" "^7.18.10"
102 | "@babel/types" "^7.19.0"
103 |
104 | "@babel/helper-hoist-variables@^7.18.6":
105 | version "7.18.6"
106 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
107 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
108 | dependencies:
109 | "@babel/types" "^7.18.6"
110 |
111 | "@babel/helper-member-expression-to-functions@^7.18.9":
112 | version "7.18.9"
113 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"
114 | integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
115 | dependencies:
116 | "@babel/types" "^7.18.9"
117 |
118 | "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6":
119 | version "7.18.6"
120 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
121 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
122 | dependencies:
123 | "@babel/types" "^7.18.6"
124 |
125 | "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6":
126 | version "7.20.2"
127 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
128 | integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
129 | dependencies:
130 | "@babel/helper-environment-visitor" "^7.18.9"
131 | "@babel/helper-module-imports" "^7.18.6"
132 | "@babel/helper-simple-access" "^7.20.2"
133 | "@babel/helper-split-export-declaration" "^7.18.6"
134 | "@babel/helper-validator-identifier" "^7.19.1"
135 | "@babel/template" "^7.18.10"
136 | "@babel/traverse" "^7.20.1"
137 | "@babel/types" "^7.20.2"
138 |
139 | "@babel/helper-optimise-call-expression@^7.18.6":
140 | version "7.18.6"
141 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
142 | integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
143 | dependencies:
144 | "@babel/types" "^7.18.6"
145 |
146 | "@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.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
147 | version "7.20.2"
148 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
149 | integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
150 |
151 | "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
152 | version "7.18.9"
153 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
154 | integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
155 | dependencies:
156 | "@babel/helper-annotate-as-pure" "^7.18.6"
157 | "@babel/helper-environment-visitor" "^7.18.9"
158 | "@babel/helper-wrap-function" "^7.18.9"
159 | "@babel/types" "^7.18.9"
160 |
161 | "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1":
162 | version "7.19.1"
163 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78"
164 | integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==
165 | dependencies:
166 | "@babel/helper-environment-visitor" "^7.18.9"
167 | "@babel/helper-member-expression-to-functions" "^7.18.9"
168 | "@babel/helper-optimise-call-expression" "^7.18.6"
169 | "@babel/traverse" "^7.19.1"
170 | "@babel/types" "^7.19.0"
171 |
172 | "@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2":
173 | version "7.20.2"
174 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
175 | integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
176 | dependencies:
177 | "@babel/types" "^7.20.2"
178 |
179 | "@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
180 | version "7.20.0"
181 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
182 | integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
183 | dependencies:
184 | "@babel/types" "^7.20.0"
185 |
186 | "@babel/helper-split-export-declaration@^7.18.6":
187 | version "7.18.6"
188 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
189 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
190 | dependencies:
191 | "@babel/types" "^7.18.6"
192 |
193 | "@babel/helper-string-parser@^7.19.4":
194 | version "7.19.4"
195 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
196 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
197 |
198 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
199 | version "7.19.1"
200 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
201 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
202 |
203 | "@babel/helper-validator-option@^7.18.6":
204 | version "7.18.6"
205 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
206 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
207 |
208 | "@babel/helper-wrap-function@^7.18.9":
209 | version "7.20.5"
210 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
211 | integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==
212 | dependencies:
213 | "@babel/helper-function-name" "^7.19.0"
214 | "@babel/template" "^7.18.10"
215 | "@babel/traverse" "^7.20.5"
216 | "@babel/types" "^7.20.5"
217 |
218 | "@babel/highlight@^7.18.6":
219 | version "7.18.6"
220 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
221 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
222 | dependencies:
223 | "@babel/helper-validator-identifier" "^7.18.6"
224 | chalk "^2.0.0"
225 | js-tokens "^4.0.0"
226 |
227 | "@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
228 | version "7.20.5"
229 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
230 | integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
231 |
232 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
233 | version "7.18.6"
234 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
235 | integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==
236 | dependencies:
237 | "@babel/helper-plugin-utils" "^7.18.6"
238 |
239 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
240 | version "7.18.9"
241 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50"
242 | integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
243 | dependencies:
244 | "@babel/helper-plugin-utils" "^7.18.9"
245 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
246 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
247 |
248 | "@babel/plugin-proposal-async-generator-functions@^7.20.1":
249 | version "7.20.1"
250 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9"
251 | integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==
252 | dependencies:
253 | "@babel/helper-environment-visitor" "^7.18.9"
254 | "@babel/helper-plugin-utils" "^7.19.0"
255 | "@babel/helper-remap-async-to-generator" "^7.18.9"
256 | "@babel/plugin-syntax-async-generators" "^7.8.4"
257 |
258 | "@babel/plugin-proposal-class-properties@^7.18.6":
259 | version "7.18.6"
260 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
261 | integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
262 | dependencies:
263 | "@babel/helper-create-class-features-plugin" "^7.18.6"
264 | "@babel/helper-plugin-utils" "^7.18.6"
265 |
266 | "@babel/plugin-proposal-class-static-block@^7.18.6":
267 | version "7.18.6"
268 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020"
269 | integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
270 | dependencies:
271 | "@babel/helper-create-class-features-plugin" "^7.18.6"
272 | "@babel/helper-plugin-utils" "^7.18.6"
273 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
274 |
275 | "@babel/plugin-proposal-dynamic-import@^7.18.6":
276 | version "7.18.6"
277 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94"
278 | integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
279 | dependencies:
280 | "@babel/helper-plugin-utils" "^7.18.6"
281 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
282 |
283 | "@babel/plugin-proposal-export-namespace-from@^7.18.9":
284 | version "7.18.9"
285 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
286 | integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
287 | dependencies:
288 | "@babel/helper-plugin-utils" "^7.18.9"
289 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
290 |
291 | "@babel/plugin-proposal-json-strings@^7.18.6":
292 | version "7.18.6"
293 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b"
294 | integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
295 | dependencies:
296 | "@babel/helper-plugin-utils" "^7.18.6"
297 | "@babel/plugin-syntax-json-strings" "^7.8.3"
298 |
299 | "@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
300 | version "7.18.9"
301 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23"
302 | integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
303 | dependencies:
304 | "@babel/helper-plugin-utils" "^7.18.9"
305 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
306 |
307 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
308 | version "7.18.6"
309 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
310 | integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
311 | dependencies:
312 | "@babel/helper-plugin-utils" "^7.18.6"
313 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
314 |
315 | "@babel/plugin-proposal-numeric-separator@^7.18.6":
316 | version "7.18.6"
317 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
318 | integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
319 | dependencies:
320 | "@babel/helper-plugin-utils" "^7.18.6"
321 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
322 |
323 | "@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.20.2":
324 | version "7.20.2"
325 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz#a556f59d555f06961df1e572bb5eca864c84022d"
326 | integrity sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==
327 | dependencies:
328 | "@babel/compat-data" "^7.20.1"
329 | "@babel/helper-compilation-targets" "^7.20.0"
330 | "@babel/helper-plugin-utils" "^7.20.2"
331 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
332 | "@babel/plugin-transform-parameters" "^7.20.1"
333 |
334 | "@babel/plugin-proposal-optional-catch-binding@^7.18.6":
335 | version "7.18.6"
336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
337 | integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
338 | dependencies:
339 | "@babel/helper-plugin-utils" "^7.18.6"
340 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
341 |
342 | "@babel/plugin-proposal-optional-chaining@^7.18.9":
343 | version "7.18.9"
344 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
345 | integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
346 | dependencies:
347 | "@babel/helper-plugin-utils" "^7.18.9"
348 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
349 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
350 |
351 | "@babel/plugin-proposal-private-methods@^7.18.6":
352 | version "7.18.6"
353 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
354 | integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
355 | dependencies:
356 | "@babel/helper-create-class-features-plugin" "^7.18.6"
357 | "@babel/helper-plugin-utils" "^7.18.6"
358 |
359 | "@babel/plugin-proposal-private-property-in-object@^7.18.6":
360 | version "7.20.5"
361 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135"
362 | integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==
363 | dependencies:
364 | "@babel/helper-annotate-as-pure" "^7.18.6"
365 | "@babel/helper-create-class-features-plugin" "^7.20.5"
366 | "@babel/helper-plugin-utils" "^7.20.2"
367 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
368 |
369 | "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
370 | version "7.18.6"
371 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
372 | integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
373 | dependencies:
374 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
375 | "@babel/helper-plugin-utils" "^7.18.6"
376 |
377 | "@babel/plugin-syntax-async-generators@^7.8.4":
378 | version "7.8.4"
379 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
380 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
381 | dependencies:
382 | "@babel/helper-plugin-utils" "^7.8.0"
383 |
384 | "@babel/plugin-syntax-class-properties@^7.12.13":
385 | version "7.12.13"
386 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
387 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
388 | dependencies:
389 | "@babel/helper-plugin-utils" "^7.12.13"
390 |
391 | "@babel/plugin-syntax-class-static-block@^7.14.5":
392 | version "7.14.5"
393 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
394 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
395 | dependencies:
396 | "@babel/helper-plugin-utils" "^7.14.5"
397 |
398 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
399 | version "7.8.3"
400 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
401 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
402 | dependencies:
403 | "@babel/helper-plugin-utils" "^7.8.0"
404 |
405 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
406 | version "7.8.3"
407 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
408 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
409 | dependencies:
410 | "@babel/helper-plugin-utils" "^7.8.3"
411 |
412 | "@babel/plugin-syntax-import-assertions@^7.20.0":
413 | version "7.20.0"
414 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4"
415 | integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==
416 | dependencies:
417 | "@babel/helper-plugin-utils" "^7.19.0"
418 |
419 | "@babel/plugin-syntax-json-strings@^7.8.3":
420 | version "7.8.3"
421 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
422 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
423 | dependencies:
424 | "@babel/helper-plugin-utils" "^7.8.0"
425 |
426 | "@babel/plugin-syntax-jsx@^7.18.6":
427 | version "7.18.6"
428 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
429 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
430 | dependencies:
431 | "@babel/helper-plugin-utils" "^7.18.6"
432 |
433 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
434 | version "7.10.4"
435 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
436 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
437 | dependencies:
438 | "@babel/helper-plugin-utils" "^7.10.4"
439 |
440 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
441 | version "7.8.3"
442 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
443 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
444 | dependencies:
445 | "@babel/helper-plugin-utils" "^7.8.0"
446 |
447 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
448 | version "7.10.4"
449 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
450 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
451 | dependencies:
452 | "@babel/helper-plugin-utils" "^7.10.4"
453 |
454 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
455 | version "7.8.3"
456 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
457 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
458 | dependencies:
459 | "@babel/helper-plugin-utils" "^7.8.0"
460 |
461 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
462 | version "7.8.3"
463 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
464 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
465 | dependencies:
466 | "@babel/helper-plugin-utils" "^7.8.0"
467 |
468 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
469 | version "7.8.3"
470 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
471 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
472 | dependencies:
473 | "@babel/helper-plugin-utils" "^7.8.0"
474 |
475 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
476 | version "7.14.5"
477 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
478 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
479 | dependencies:
480 | "@babel/helper-plugin-utils" "^7.14.5"
481 |
482 | "@babel/plugin-syntax-top-level-await@^7.14.5":
483 | version "7.14.5"
484 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
485 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
486 | dependencies:
487 | "@babel/helper-plugin-utils" "^7.14.5"
488 |
489 | "@babel/plugin-transform-arrow-functions@^7.18.6":
490 | version "7.18.6"
491 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe"
492 | integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
493 | dependencies:
494 | "@babel/helper-plugin-utils" "^7.18.6"
495 |
496 | "@babel/plugin-transform-async-to-generator@^7.18.6":
497 | version "7.18.6"
498 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
499 | integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
500 | dependencies:
501 | "@babel/helper-module-imports" "^7.18.6"
502 | "@babel/helper-plugin-utils" "^7.18.6"
503 | "@babel/helper-remap-async-to-generator" "^7.18.6"
504 |
505 | "@babel/plugin-transform-block-scoped-functions@^7.18.6":
506 | version "7.18.6"
507 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
508 | integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
509 | dependencies:
510 | "@babel/helper-plugin-utils" "^7.18.6"
511 |
512 | "@babel/plugin-transform-block-scoping@^7.20.2":
513 | version "7.20.5"
514 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.5.tgz#401215f9dc13dc5262940e2e527c9536b3d7f237"
515 | integrity sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==
516 | dependencies:
517 | "@babel/helper-plugin-utils" "^7.20.2"
518 |
519 | "@babel/plugin-transform-classes@^7.20.2":
520 | version "7.20.2"
521 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2"
522 | integrity sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==
523 | dependencies:
524 | "@babel/helper-annotate-as-pure" "^7.18.6"
525 | "@babel/helper-compilation-targets" "^7.20.0"
526 | "@babel/helper-environment-visitor" "^7.18.9"
527 | "@babel/helper-function-name" "^7.19.0"
528 | "@babel/helper-optimise-call-expression" "^7.18.6"
529 | "@babel/helper-plugin-utils" "^7.20.2"
530 | "@babel/helper-replace-supers" "^7.19.1"
531 | "@babel/helper-split-export-declaration" "^7.18.6"
532 | globals "^11.1.0"
533 |
534 | "@babel/plugin-transform-computed-properties@^7.18.9":
535 | version "7.18.9"
536 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e"
537 | integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
538 | dependencies:
539 | "@babel/helper-plugin-utils" "^7.18.9"
540 |
541 | "@babel/plugin-transform-destructuring@^7.20.2":
542 | version "7.20.2"
543 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz#c23741cfa44ddd35f5e53896e88c75331b8b2792"
544 | integrity sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==
545 | dependencies:
546 | "@babel/helper-plugin-utils" "^7.20.2"
547 |
548 | "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
549 | version "7.18.6"
550 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8"
551 | integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==
552 | dependencies:
553 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
554 | "@babel/helper-plugin-utils" "^7.18.6"
555 |
556 | "@babel/plugin-transform-duplicate-keys@^7.18.9":
557 | version "7.18.9"
558 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e"
559 | integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==
560 | dependencies:
561 | "@babel/helper-plugin-utils" "^7.18.9"
562 |
563 | "@babel/plugin-transform-exponentiation-operator@^7.18.6":
564 | version "7.18.6"
565 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
566 | integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
567 | dependencies:
568 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
569 | "@babel/helper-plugin-utils" "^7.18.6"
570 |
571 | "@babel/plugin-transform-for-of@^7.18.8":
572 | version "7.18.8"
573 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
574 | integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
575 | dependencies:
576 | "@babel/helper-plugin-utils" "^7.18.6"
577 |
578 | "@babel/plugin-transform-function-name@^7.18.9":
579 | version "7.18.9"
580 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
581 | integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
582 | dependencies:
583 | "@babel/helper-compilation-targets" "^7.18.9"
584 | "@babel/helper-function-name" "^7.18.9"
585 | "@babel/helper-plugin-utils" "^7.18.9"
586 |
587 | "@babel/plugin-transform-literals@^7.18.9":
588 | version "7.18.9"
589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
590 | integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
591 | dependencies:
592 | "@babel/helper-plugin-utils" "^7.18.9"
593 |
594 | "@babel/plugin-transform-member-expression-literals@^7.18.6":
595 | version "7.18.6"
596 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
597 | integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
598 | dependencies:
599 | "@babel/helper-plugin-utils" "^7.18.6"
600 |
601 | "@babel/plugin-transform-modules-amd@^7.19.6":
602 | version "7.19.6"
603 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd"
604 | integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==
605 | dependencies:
606 | "@babel/helper-module-transforms" "^7.19.6"
607 | "@babel/helper-plugin-utils" "^7.19.0"
608 |
609 | "@babel/plugin-transform-modules-commonjs@^7.19.6":
610 | version "7.19.6"
611 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c"
612 | integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==
613 | dependencies:
614 | "@babel/helper-module-transforms" "^7.19.6"
615 | "@babel/helper-plugin-utils" "^7.19.0"
616 | "@babel/helper-simple-access" "^7.19.4"
617 |
618 | "@babel/plugin-transform-modules-systemjs@^7.19.6":
619 | version "7.19.6"
620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d"
621 | integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==
622 | dependencies:
623 | "@babel/helper-hoist-variables" "^7.18.6"
624 | "@babel/helper-module-transforms" "^7.19.6"
625 | "@babel/helper-plugin-utils" "^7.19.0"
626 | "@babel/helper-validator-identifier" "^7.19.1"
627 |
628 | "@babel/plugin-transform-modules-umd@^7.18.6":
629 | version "7.18.6"
630 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9"
631 | integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==
632 | dependencies:
633 | "@babel/helper-module-transforms" "^7.18.6"
634 | "@babel/helper-plugin-utils" "^7.18.6"
635 |
636 | "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
637 | version "7.20.5"
638 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8"
639 | integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==
640 | dependencies:
641 | "@babel/helper-create-regexp-features-plugin" "^7.20.5"
642 | "@babel/helper-plugin-utils" "^7.20.2"
643 |
644 | "@babel/plugin-transform-new-target@^7.18.6":
645 | version "7.18.6"
646 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8"
647 | integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==
648 | dependencies:
649 | "@babel/helper-plugin-utils" "^7.18.6"
650 |
651 | "@babel/plugin-transform-object-super@^7.18.6":
652 | version "7.18.6"
653 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
654 | integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
655 | dependencies:
656 | "@babel/helper-plugin-utils" "^7.18.6"
657 | "@babel/helper-replace-supers" "^7.18.6"
658 |
659 | "@babel/plugin-transform-parameters@^7.20.1":
660 | version "7.20.5"
661 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.5.tgz#f8f9186c681d10c3de7620c916156d893c8a019e"
662 | integrity sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==
663 | dependencies:
664 | "@babel/helper-plugin-utils" "^7.20.2"
665 |
666 | "@babel/plugin-transform-property-literals@^7.18.6":
667 | version "7.18.6"
668 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
669 | integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
670 | dependencies:
671 | "@babel/helper-plugin-utils" "^7.18.6"
672 |
673 | "@babel/plugin-transform-react-display-name@^7.18.6":
674 | version "7.18.6"
675 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415"
676 | integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==
677 | dependencies:
678 | "@babel/helper-plugin-utils" "^7.18.6"
679 |
680 | "@babel/plugin-transform-react-jsx-development@^7.18.6":
681 | version "7.18.6"
682 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5"
683 | integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==
684 | dependencies:
685 | "@babel/plugin-transform-react-jsx" "^7.18.6"
686 |
687 | "@babel/plugin-transform-react-jsx@^7.18.6":
688 | version "7.19.0"
689 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9"
690 | integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==
691 | dependencies:
692 | "@babel/helper-annotate-as-pure" "^7.18.6"
693 | "@babel/helper-module-imports" "^7.18.6"
694 | "@babel/helper-plugin-utils" "^7.19.0"
695 | "@babel/plugin-syntax-jsx" "^7.18.6"
696 | "@babel/types" "^7.19.0"
697 |
698 | "@babel/plugin-transform-react-pure-annotations@^7.18.6":
699 | version "7.18.6"
700 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844"
701 | integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==
702 | dependencies:
703 | "@babel/helper-annotate-as-pure" "^7.18.6"
704 | "@babel/helper-plugin-utils" "^7.18.6"
705 |
706 | "@babel/plugin-transform-regenerator@^7.18.6":
707 | version "7.20.5"
708 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d"
709 | integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==
710 | dependencies:
711 | "@babel/helper-plugin-utils" "^7.20.2"
712 | regenerator-transform "^0.15.1"
713 |
714 | "@babel/plugin-transform-reserved-words@^7.18.6":
715 | version "7.18.6"
716 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a"
717 | integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==
718 | dependencies:
719 | "@babel/helper-plugin-utils" "^7.18.6"
720 |
721 | "@babel/plugin-transform-shorthand-properties@^7.18.6":
722 | version "7.18.6"
723 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
724 | integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
725 | dependencies:
726 | "@babel/helper-plugin-utils" "^7.18.6"
727 |
728 | "@babel/plugin-transform-spread@^7.19.0":
729 | version "7.19.0"
730 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6"
731 | integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==
732 | dependencies:
733 | "@babel/helper-plugin-utils" "^7.19.0"
734 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
735 |
736 | "@babel/plugin-transform-sticky-regex@^7.18.6":
737 | version "7.18.6"
738 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc"
739 | integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
740 | dependencies:
741 | "@babel/helper-plugin-utils" "^7.18.6"
742 |
743 | "@babel/plugin-transform-template-literals@^7.18.9":
744 | version "7.18.9"
745 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
746 | integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
747 | dependencies:
748 | "@babel/helper-plugin-utils" "^7.18.9"
749 |
750 | "@babel/plugin-transform-typeof-symbol@^7.18.9":
751 | version "7.18.9"
752 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0"
753 | integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==
754 | dependencies:
755 | "@babel/helper-plugin-utils" "^7.18.9"
756 |
757 | "@babel/plugin-transform-unicode-escapes@^7.18.10":
758 | version "7.18.10"
759 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246"
760 | integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
761 | dependencies:
762 | "@babel/helper-plugin-utils" "^7.18.9"
763 |
764 | "@babel/plugin-transform-unicode-regex@^7.18.6":
765 | version "7.18.6"
766 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca"
767 | integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
768 | dependencies:
769 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
770 | "@babel/helper-plugin-utils" "^7.18.6"
771 |
772 | "@babel/preset-env@^7.12.11":
773 | version "7.20.2"
774 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506"
775 | integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==
776 | dependencies:
777 | "@babel/compat-data" "^7.20.1"
778 | "@babel/helper-compilation-targets" "^7.20.0"
779 | "@babel/helper-plugin-utils" "^7.20.2"
780 | "@babel/helper-validator-option" "^7.18.6"
781 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
782 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
783 | "@babel/plugin-proposal-async-generator-functions" "^7.20.1"
784 | "@babel/plugin-proposal-class-properties" "^7.18.6"
785 | "@babel/plugin-proposal-class-static-block" "^7.18.6"
786 | "@babel/plugin-proposal-dynamic-import" "^7.18.6"
787 | "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
788 | "@babel/plugin-proposal-json-strings" "^7.18.6"
789 | "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
790 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
791 | "@babel/plugin-proposal-numeric-separator" "^7.18.6"
792 | "@babel/plugin-proposal-object-rest-spread" "^7.20.2"
793 | "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
794 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
795 | "@babel/plugin-proposal-private-methods" "^7.18.6"
796 | "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
797 | "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
798 | "@babel/plugin-syntax-async-generators" "^7.8.4"
799 | "@babel/plugin-syntax-class-properties" "^7.12.13"
800 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
801 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
802 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
803 | "@babel/plugin-syntax-import-assertions" "^7.20.0"
804 | "@babel/plugin-syntax-json-strings" "^7.8.3"
805 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
806 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
807 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
808 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
809 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
810 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
811 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
812 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
813 | "@babel/plugin-transform-arrow-functions" "^7.18.6"
814 | "@babel/plugin-transform-async-to-generator" "^7.18.6"
815 | "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
816 | "@babel/plugin-transform-block-scoping" "^7.20.2"
817 | "@babel/plugin-transform-classes" "^7.20.2"
818 | "@babel/plugin-transform-computed-properties" "^7.18.9"
819 | "@babel/plugin-transform-destructuring" "^7.20.2"
820 | "@babel/plugin-transform-dotall-regex" "^7.18.6"
821 | "@babel/plugin-transform-duplicate-keys" "^7.18.9"
822 | "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
823 | "@babel/plugin-transform-for-of" "^7.18.8"
824 | "@babel/plugin-transform-function-name" "^7.18.9"
825 | "@babel/plugin-transform-literals" "^7.18.9"
826 | "@babel/plugin-transform-member-expression-literals" "^7.18.6"
827 | "@babel/plugin-transform-modules-amd" "^7.19.6"
828 | "@babel/plugin-transform-modules-commonjs" "^7.19.6"
829 | "@babel/plugin-transform-modules-systemjs" "^7.19.6"
830 | "@babel/plugin-transform-modules-umd" "^7.18.6"
831 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
832 | "@babel/plugin-transform-new-target" "^7.18.6"
833 | "@babel/plugin-transform-object-super" "^7.18.6"
834 | "@babel/plugin-transform-parameters" "^7.20.1"
835 | "@babel/plugin-transform-property-literals" "^7.18.6"
836 | "@babel/plugin-transform-regenerator" "^7.18.6"
837 | "@babel/plugin-transform-reserved-words" "^7.18.6"
838 | "@babel/plugin-transform-shorthand-properties" "^7.18.6"
839 | "@babel/plugin-transform-spread" "^7.19.0"
840 | "@babel/plugin-transform-sticky-regex" "^7.18.6"
841 | "@babel/plugin-transform-template-literals" "^7.18.9"
842 | "@babel/plugin-transform-typeof-symbol" "^7.18.9"
843 | "@babel/plugin-transform-unicode-escapes" "^7.18.10"
844 | "@babel/plugin-transform-unicode-regex" "^7.18.6"
845 | "@babel/preset-modules" "^0.1.5"
846 | "@babel/types" "^7.20.2"
847 | babel-plugin-polyfill-corejs2 "^0.3.3"
848 | babel-plugin-polyfill-corejs3 "^0.6.0"
849 | babel-plugin-polyfill-regenerator "^0.4.1"
850 | core-js-compat "^3.25.1"
851 | semver "^6.3.0"
852 |
853 | "@babel/preset-modules@^0.1.5":
854 | version "0.1.5"
855 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
856 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
857 | dependencies:
858 | "@babel/helper-plugin-utils" "^7.0.0"
859 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
860 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
861 | "@babel/types" "^7.4.4"
862 | esutils "^2.0.2"
863 |
864 | "@babel/preset-react@^7.12.10":
865 | version "7.18.6"
866 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d"
867 | integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==
868 | dependencies:
869 | "@babel/helper-plugin-utils" "^7.18.6"
870 | "@babel/helper-validator-option" "^7.18.6"
871 | "@babel/plugin-transform-react-display-name" "^7.18.6"
872 | "@babel/plugin-transform-react-jsx" "^7.18.6"
873 | "@babel/plugin-transform-react-jsx-development" "^7.18.6"
874 | "@babel/plugin-transform-react-pure-annotations" "^7.18.6"
875 |
876 | "@babel/runtime@^7.8.4":
877 | version "7.20.6"
878 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
879 | integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
880 | dependencies:
881 | regenerator-runtime "^0.13.11"
882 |
883 | "@babel/template@^7.18.10":
884 | version "7.18.10"
885 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
886 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
887 | dependencies:
888 | "@babel/code-frame" "^7.18.6"
889 | "@babel/parser" "^7.18.10"
890 | "@babel/types" "^7.18.10"
891 |
892 | "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
893 | version "7.20.5"
894 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
895 | integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
896 | dependencies:
897 | "@babel/code-frame" "^7.18.6"
898 | "@babel/generator" "^7.20.5"
899 | "@babel/helper-environment-visitor" "^7.18.9"
900 | "@babel/helper-function-name" "^7.19.0"
901 | "@babel/helper-hoist-variables" "^7.18.6"
902 | "@babel/helper-split-export-declaration" "^7.18.6"
903 | "@babel/parser" "^7.20.5"
904 | "@babel/types" "^7.20.5"
905 | debug "^4.1.0"
906 | globals "^11.1.0"
907 |
908 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.4.4":
909 | version "7.20.5"
910 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
911 | integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
912 | dependencies:
913 | "@babel/helper-string-parser" "^7.19.4"
914 | "@babel/helper-validator-identifier" "^7.19.1"
915 | to-fast-properties "^2.0.0"
916 |
917 | "@jridgewell/gen-mapping@^0.3.2":
918 | version "0.3.2"
919 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
920 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
921 | dependencies:
922 | "@jridgewell/set-array" "^1.0.1"
923 | "@jridgewell/sourcemap-codec" "^1.4.10"
924 | "@jridgewell/trace-mapping" "^0.3.9"
925 |
926 | "@jridgewell/resolve-uri@3.1.0":
927 | version "3.1.0"
928 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
929 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
930 |
931 | "@jridgewell/set-array@^1.0.1":
932 | version "1.1.2"
933 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
934 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
935 |
936 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
937 | version "1.4.14"
938 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
939 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
940 |
941 | "@jridgewell/trace-mapping@^0.3.9":
942 | version "0.3.17"
943 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
944 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
945 | dependencies:
946 | "@jridgewell/resolve-uri" "3.1.0"
947 | "@jridgewell/sourcemap-codec" "1.4.14"
948 |
949 | "@rollup/plugin-babel@^5.2.2":
950 | version "5.3.1"
951 | resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
952 | integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==
953 | dependencies:
954 | "@babel/helper-module-imports" "^7.10.4"
955 | "@rollup/pluginutils" "^3.1.0"
956 |
957 | "@rollup/plugin-commonjs@^17.0.0":
958 | version "17.1.0"
959 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-17.1.0.tgz#757ec88737dffa8aa913eb392fade2e45aef2a2d"
960 | integrity sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==
961 | dependencies:
962 | "@rollup/pluginutils" "^3.1.0"
963 | commondir "^1.0.1"
964 | estree-walker "^2.0.1"
965 | glob "^7.1.6"
966 | is-reference "^1.2.1"
967 | magic-string "^0.25.7"
968 | resolve "^1.17.0"
969 |
970 | "@rollup/plugin-node-resolve@^11.1.0":
971 | version "11.2.1"
972 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60"
973 | integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==
974 | dependencies:
975 | "@rollup/pluginutils" "^3.1.0"
976 | "@types/resolve" "1.17.1"
977 | builtin-modules "^3.1.0"
978 | deepmerge "^4.2.2"
979 | is-module "^1.0.0"
980 | resolve "^1.19.0"
981 |
982 | "@rollup/plugin-replace@^2.3.4":
983 | version "2.4.2"
984 | resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a"
985 | integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==
986 | dependencies:
987 | "@rollup/pluginutils" "^3.1.0"
988 | magic-string "^0.25.7"
989 |
990 | "@rollup/pluginutils@^3.1.0":
991 | version "3.1.0"
992 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
993 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
994 | dependencies:
995 | "@types/estree" "0.0.39"
996 | estree-walker "^1.0.1"
997 | picomatch "^2.2.2"
998 |
999 | "@types/estree@*":
1000 | version "1.0.0"
1001 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
1002 | integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
1003 |
1004 | "@types/estree@0.0.39":
1005 | version "0.0.39"
1006 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1007 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
1008 |
1009 | "@types/node@*":
1010 | version "18.11.14"
1011 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.14.tgz#a8571b25f3a31e9ded14e3ab9488509adef831d8"
1012 | integrity sha512-0KXV57tENYmmJMl+FekeW9V3O/rlcqGQQJ/hNh9r8pKIj304pskWuEd8fCyNT86g/TpO0gcOTiLzsHLEURFMIQ==
1013 |
1014 | "@types/resolve@1.17.1":
1015 | version "1.17.1"
1016 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
1017 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
1018 | dependencies:
1019 | "@types/node" "*"
1020 |
1021 | acorn-jsx@^5.0.0:
1022 | version "5.3.2"
1023 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
1024 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
1025 |
1026 | acorn@^6.0.2:
1027 | version "6.4.2"
1028 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
1029 | integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
1030 |
1031 | ajv-keywords@^3.0.0:
1032 | version "3.5.2"
1033 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
1034 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
1035 |
1036 | ajv@^6.0.1, ajv@^6.5.0:
1037 | version "6.12.6"
1038 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
1039 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
1040 | dependencies:
1041 | fast-deep-equal "^3.1.1"
1042 | fast-json-stable-stringify "^2.0.0"
1043 | json-schema-traverse "^0.4.1"
1044 | uri-js "^4.2.2"
1045 |
1046 | ansi-escapes@^3.0.0:
1047 | version "3.2.0"
1048 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
1049 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
1050 |
1051 | ansi-regex@^2.0.0:
1052 | version "2.1.1"
1053 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
1054 | integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
1055 |
1056 | ansi-regex@^3.0.0:
1057 | version "3.0.1"
1058 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1"
1059 | integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==
1060 |
1061 | ansi-styles@^2.2.1:
1062 | version "2.2.1"
1063 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
1064 | integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
1065 |
1066 | ansi-styles@^3.2.1:
1067 | version "3.2.1"
1068 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1069 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1070 | dependencies:
1071 | color-convert "^1.9.0"
1072 |
1073 | anymatch@~3.1.2:
1074 | version "3.1.3"
1075 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
1076 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
1077 | dependencies:
1078 | normalize-path "^3.0.0"
1079 | picomatch "^2.0.4"
1080 |
1081 | argparse@^1.0.7:
1082 | version "1.0.10"
1083 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
1084 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
1085 | dependencies:
1086 | sprintf-js "~1.0.2"
1087 |
1088 | array-includes@^3.0.3, array-includes@^3.1.1:
1089 | version "3.1.6"
1090 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
1091 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
1092 | dependencies:
1093 | call-bind "^1.0.2"
1094 | define-properties "^1.1.4"
1095 | es-abstract "^1.20.4"
1096 | get-intrinsic "^1.1.3"
1097 | is-string "^1.0.7"
1098 |
1099 | babel-code-frame@^6.26.0:
1100 | version "6.26.0"
1101 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
1102 | integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==
1103 | dependencies:
1104 | chalk "^1.1.3"
1105 | esutils "^2.0.2"
1106 | js-tokens "^3.0.2"
1107 |
1108 | babel-plugin-polyfill-corejs2@^0.3.3:
1109 | version "0.3.3"
1110 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
1111 | integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
1112 | dependencies:
1113 | "@babel/compat-data" "^7.17.7"
1114 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1115 | semver "^6.1.1"
1116 |
1117 | babel-plugin-polyfill-corejs3@^0.6.0:
1118 | version "0.6.0"
1119 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
1120 | integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
1121 | dependencies:
1122 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1123 | core-js-compat "^3.25.1"
1124 |
1125 | babel-plugin-polyfill-regenerator@^0.4.1:
1126 | version "0.4.1"
1127 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
1128 | integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
1129 | dependencies:
1130 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1131 |
1132 | babel@^6.23.0:
1133 | version "6.23.0"
1134 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.23.0.tgz#d0d1e7d803e974765beea3232d4e153c0efb90f4"
1135 | integrity sha512-ZDcCaI8Vlct8PJ3DvmyqUz+5X2Ylz3ZuuItBe/74yXosk2dwyVo/aN7MCJ8HJzhnnJ+6yP4o+lDgG9MBe91DLA==
1136 |
1137 | balanced-match@^1.0.0:
1138 | version "1.0.2"
1139 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1140 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1141 |
1142 | binary-extensions@^2.0.0:
1143 | version "2.2.0"
1144 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
1145 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
1146 |
1147 | brace-expansion@^1.1.7:
1148 | version "1.1.11"
1149 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1150 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1151 | dependencies:
1152 | balanced-match "^1.0.0"
1153 | concat-map "0.0.1"
1154 |
1155 | braces@~3.0.2:
1156 | version "3.0.2"
1157 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
1158 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
1159 | dependencies:
1160 | fill-range "^7.0.1"
1161 |
1162 | browserslist@^4.21.3, browserslist@^4.21.4:
1163 | version "4.21.4"
1164 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
1165 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
1166 | dependencies:
1167 | caniuse-lite "^1.0.30001400"
1168 | electron-to-chromium "^1.4.251"
1169 | node-releases "^2.0.6"
1170 | update-browserslist-db "^1.0.9"
1171 |
1172 | buffer-from@^1.0.0:
1173 | version "1.1.2"
1174 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
1175 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
1176 |
1177 | builtin-modules@^3.1.0:
1178 | version "3.3.0"
1179 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
1180 | integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
1181 |
1182 | call-bind@^1.0.0, call-bind@^1.0.2:
1183 | version "1.0.2"
1184 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1185 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1186 | dependencies:
1187 | function-bind "^1.1.1"
1188 | get-intrinsic "^1.0.2"
1189 |
1190 | caller-path@^0.1.0:
1191 | version "0.1.0"
1192 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
1193 | integrity sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==
1194 | dependencies:
1195 | callsites "^0.2.0"
1196 |
1197 | callsites@^0.2.0:
1198 | version "0.2.0"
1199 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
1200 | integrity sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A==
1201 |
1202 | caniuse-lite@^1.0.30001400:
1203 | version "1.0.30001439"
1204 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
1205 | integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
1206 |
1207 | chalk@^1.1.3:
1208 | version "1.1.3"
1209 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1210 | integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
1211 | dependencies:
1212 | ansi-styles "^2.2.1"
1213 | escape-string-regexp "^1.0.2"
1214 | has-ansi "^2.0.0"
1215 | strip-ansi "^3.0.0"
1216 | supports-color "^2.0.0"
1217 |
1218 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0:
1219 | version "2.4.2"
1220 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1221 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1222 | dependencies:
1223 | ansi-styles "^3.2.1"
1224 | escape-string-regexp "^1.0.5"
1225 | supports-color "^5.3.0"
1226 |
1227 | chardet@^0.4.0:
1228 | version "0.4.2"
1229 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
1230 | integrity sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==
1231 |
1232 | chokidar@^3.5.0:
1233 | version "3.5.3"
1234 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
1235 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
1236 | dependencies:
1237 | anymatch "~3.1.2"
1238 | braces "~3.0.2"
1239 | glob-parent "~5.1.2"
1240 | is-binary-path "~2.1.0"
1241 | is-glob "~4.0.1"
1242 | normalize-path "~3.0.0"
1243 | readdirp "~3.6.0"
1244 | optionalDependencies:
1245 | fsevents "~2.3.2"
1246 |
1247 | circular-json@^0.3.1:
1248 | version "0.3.3"
1249 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
1250 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==
1251 |
1252 | cli-cursor@^2.1.0:
1253 | version "2.1.0"
1254 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1255 | integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==
1256 | dependencies:
1257 | restore-cursor "^2.0.0"
1258 |
1259 | cli-width@^2.0.0:
1260 | version "2.2.1"
1261 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
1262 | integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
1263 |
1264 | color-convert@^1.9.0:
1265 | version "1.9.3"
1266 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1267 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1268 | dependencies:
1269 | color-name "1.1.3"
1270 |
1271 | color-name@1.1.3:
1272 | version "1.1.3"
1273 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1274 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
1275 |
1276 | commondir@^1.0.1:
1277 | version "1.0.1"
1278 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1279 | integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
1280 |
1281 | concat-map@0.0.1:
1282 | version "0.0.1"
1283 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1284 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1285 |
1286 | concat-stream@^2.0.0:
1287 | version "2.0.0"
1288 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1"
1289 | integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==
1290 | dependencies:
1291 | buffer-from "^1.0.0"
1292 | inherits "^2.0.3"
1293 | readable-stream "^3.0.2"
1294 | typedarray "^0.0.6"
1295 |
1296 | contains-path@^0.1.0:
1297 | version "0.1.0"
1298 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1299 | integrity sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==
1300 |
1301 | core-js-compat@^3.25.1:
1302 | version "3.26.1"
1303 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df"
1304 | integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==
1305 | dependencies:
1306 | browserslist "^4.21.4"
1307 |
1308 | core-js@^3.0.0:
1309 | version "3.26.1"
1310 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.26.1.tgz#7a9816dabd9ee846c1c0fe0e8fcad68f3709134e"
1311 | integrity sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==
1312 |
1313 | cross-spawn@^6.0.5:
1314 | version "6.0.5"
1315 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1316 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
1317 | dependencies:
1318 | nice-try "^1.0.4"
1319 | path-key "^2.0.1"
1320 | semver "^5.5.0"
1321 | shebang-command "^1.2.0"
1322 | which "^1.2.9"
1323 |
1324 | debug-log@^1.0.0:
1325 | version "1.0.1"
1326 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
1327 | integrity sha512-gV/pe1YIaKNgLYnd1g9VNW80tcb7oV5qvNUxG7NM8rbDpnl6RGunzlAtlGSb0wEs3nesu2vHNiX9TSsZ+Y+RjA==
1328 |
1329 | debug@^2.6.8:
1330 | version "2.6.9"
1331 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1332 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
1333 | dependencies:
1334 | ms "2.0.0"
1335 |
1336 | debug@^3.1.0, debug@^3.2.7:
1337 | version "3.2.7"
1338 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
1339 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
1340 | dependencies:
1341 | ms "^2.1.1"
1342 |
1343 | debug@^4.1.0, debug@^4.1.1:
1344 | version "4.3.4"
1345 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
1346 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
1347 | dependencies:
1348 | ms "2.1.2"
1349 |
1350 | deep-is@~0.1.3:
1351 | version "0.1.4"
1352 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
1353 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
1354 |
1355 | deepmerge@^4.2.2:
1356 | version "4.2.2"
1357 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
1358 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
1359 |
1360 | define-properties@^1.1.3, define-properties@^1.1.4:
1361 | version "1.1.4"
1362 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
1363 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
1364 | dependencies:
1365 | has-property-descriptors "^1.0.0"
1366 | object-keys "^1.1.1"
1367 |
1368 | deglob@^2.1.0:
1369 | version "2.1.1"
1370 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.1.tgz#d268e168727799862e8eac07042e165957c1f3be"
1371 | integrity sha512-2kjwuGGonL7gWE1XU4Fv79+vVzpoQCl0V+boMwWtOQJV2AGDabCwez++nB1Nli/8BabAfZQ/UuHPlp6AymKdWw==
1372 | dependencies:
1373 | find-root "^1.0.0"
1374 | glob "^7.0.5"
1375 | ignore "^3.0.9"
1376 | pkg-config "^1.1.0"
1377 | run-parallel "^1.1.2"
1378 | uniq "^1.0.1"
1379 |
1380 | doctrine@1.5.0:
1381 | version "1.5.0"
1382 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1383 | integrity sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==
1384 | dependencies:
1385 | esutils "^2.0.2"
1386 | isarray "^1.0.0"
1387 |
1388 | doctrine@^2.1.0:
1389 | version "2.1.0"
1390 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
1391 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
1392 | dependencies:
1393 | esutils "^2.0.2"
1394 |
1395 | electron-to-chromium@^1.4.251:
1396 | version "1.4.284"
1397 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
1398 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
1399 |
1400 | error-ex@^1.2.0, error-ex@^1.3.1:
1401 | version "1.3.2"
1402 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1403 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1404 | dependencies:
1405 | is-arrayish "^0.2.1"
1406 |
1407 | es-abstract@^1.19.0, es-abstract@^1.20.4:
1408 | version "1.20.5"
1409 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.5.tgz#e6dc99177be37cacda5988e692c3fa8b218e95d2"
1410 | integrity sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==
1411 | dependencies:
1412 | call-bind "^1.0.2"
1413 | es-to-primitive "^1.2.1"
1414 | function-bind "^1.1.1"
1415 | function.prototype.name "^1.1.5"
1416 | get-intrinsic "^1.1.3"
1417 | get-symbol-description "^1.0.0"
1418 | gopd "^1.0.1"
1419 | has "^1.0.3"
1420 | has-property-descriptors "^1.0.0"
1421 | has-symbols "^1.0.3"
1422 | internal-slot "^1.0.3"
1423 | is-callable "^1.2.7"
1424 | is-negative-zero "^2.0.2"
1425 | is-regex "^1.1.4"
1426 | is-shared-array-buffer "^1.0.2"
1427 | is-string "^1.0.7"
1428 | is-weakref "^1.0.2"
1429 | object-inspect "^1.12.2"
1430 | object-keys "^1.1.1"
1431 | object.assign "^4.1.4"
1432 | regexp.prototype.flags "^1.4.3"
1433 | safe-regex-test "^1.0.0"
1434 | string.prototype.trimend "^1.0.6"
1435 | string.prototype.trimstart "^1.0.6"
1436 | unbox-primitive "^1.0.2"
1437 |
1438 | es-to-primitive@^1.2.1:
1439 | version "1.2.1"
1440 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
1441 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
1442 | dependencies:
1443 | is-callable "^1.1.4"
1444 | is-date-object "^1.0.1"
1445 | is-symbol "^1.0.2"
1446 |
1447 | escalade@^3.1.1:
1448 | version "3.1.1"
1449 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1450 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1451 |
1452 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1453 | version "1.0.5"
1454 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1455 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
1456 |
1457 | eslint-config-standard-jsx@6.0.2:
1458 | version "6.0.2"
1459 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-6.0.2.tgz#90c9aa16ac2c4f8970c13fc7efc608bacd02da70"
1460 | integrity sha512-D+YWAoXw+2GIdbMBRAzWwr1ZtvnSf4n4yL0gKGg7ShUOGXkSOLerI17K4F6LdQMJPNMoWYqepzQD/fKY+tXNSg==
1461 |
1462 | eslint-config-standard@12.0.0:
1463 | version "12.0.0"
1464 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9"
1465 | integrity sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ==
1466 |
1467 | eslint-import-resolver-node@^0.3.1:
1468 | version "0.3.6"
1469 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
1470 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
1471 | dependencies:
1472 | debug "^3.2.7"
1473 | resolve "^1.20.0"
1474 |
1475 | eslint-module-utils@^2.2.0:
1476 | version "2.7.4"
1477 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974"
1478 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==
1479 | dependencies:
1480 | debug "^3.2.7"
1481 |
1482 | eslint-plugin-es@^1.3.1:
1483 | version "1.4.1"
1484 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz#12acae0f4953e76ba444bfd1b2271081ac620998"
1485 | integrity sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==
1486 | dependencies:
1487 | eslint-utils "^1.4.2"
1488 | regexpp "^2.0.1"
1489 |
1490 | eslint-plugin-import@~2.14.0:
1491 | version "2.14.0"
1492 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8"
1493 | integrity sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g==
1494 | dependencies:
1495 | contains-path "^0.1.0"
1496 | debug "^2.6.8"
1497 | doctrine "1.5.0"
1498 | eslint-import-resolver-node "^0.3.1"
1499 | eslint-module-utils "^2.2.0"
1500 | has "^1.0.1"
1501 | lodash "^4.17.4"
1502 | minimatch "^3.0.3"
1503 | read-pkg-up "^2.0.0"
1504 | resolve "^1.6.0"
1505 |
1506 | eslint-plugin-node@~7.0.1:
1507 | version "7.0.1"
1508 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz#a6e054e50199b2edd85518b89b4e7b323c9f36db"
1509 | integrity sha512-lfVw3TEqThwq0j2Ba/Ckn2ABdwmL5dkOgAux1rvOk6CO7A6yGyPI2+zIxN6FyNkp1X1X/BSvKOceD6mBWSj4Yw==
1510 | dependencies:
1511 | eslint-plugin-es "^1.3.1"
1512 | eslint-utils "^1.3.1"
1513 | ignore "^4.0.2"
1514 | minimatch "^3.0.4"
1515 | resolve "^1.8.1"
1516 | semver "^5.5.0"
1517 |
1518 | eslint-plugin-promise@~4.0.0:
1519 | version "4.0.1"
1520 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz#2d074b653f35a23d1ba89d8e976a985117d1c6a2"
1521 | integrity sha512-Si16O0+Hqz1gDHsys6RtFRrW7cCTB6P7p3OJmKp3Y3dxpQE2qwOA7d3xnV+0mBmrPoi0RBnxlCKvqu70te6wjg==
1522 |
1523 | eslint-plugin-react@~7.11.1:
1524 | version "7.11.1"
1525 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz#c01a7af6f17519457d6116aa94fc6d2ccad5443c"
1526 | integrity sha512-cVVyMadRyW7qsIUh3FHp3u6QHNhOgVrLQYdQEB1bPWBsgbNCHdFAeNMquBMCcZJu59eNthX053L70l7gRt4SCw==
1527 | dependencies:
1528 | array-includes "^3.0.3"
1529 | doctrine "^2.1.0"
1530 | has "^1.0.3"
1531 | jsx-ast-utils "^2.0.1"
1532 | prop-types "^15.6.2"
1533 |
1534 | eslint-plugin-standard@~4.0.0:
1535 | version "4.0.2"
1536 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.2.tgz#021211a9f077e63a6847e7bb9ab4247327ac8e0c"
1537 | integrity sha512-nKptN8l7jksXkwFk++PhJB3cCDTcXOEyhISIN86Ue2feJ1LFyY3PrY3/xT2keXlJSY5bpmbiTG0f885/YKAvTA==
1538 |
1539 | eslint-scope@^4.0.0:
1540 | version "4.0.3"
1541 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
1542 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
1543 | dependencies:
1544 | esrecurse "^4.1.0"
1545 | estraverse "^4.1.1"
1546 |
1547 | eslint-utils@^1.3.1, eslint-utils@^1.4.2:
1548 | version "1.4.3"
1549 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
1550 | integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
1551 | dependencies:
1552 | eslint-visitor-keys "^1.1.0"
1553 |
1554 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
1555 | version "1.3.0"
1556 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
1557 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
1558 |
1559 | eslint@~5.4.0:
1560 | version "5.4.0"
1561 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.4.0.tgz#d068ec03006bb9e06b429dc85f7e46c1b69fac62"
1562 | integrity sha512-UIpL91XGex3qtL6qwyCQJar2j3osKxK9e3ano3OcGEIRM4oWIpCkDg9x95AXEC2wMs7PnxzOkPZ2gq+tsMS9yg==
1563 | dependencies:
1564 | ajv "^6.5.0"
1565 | babel-code-frame "^6.26.0"
1566 | chalk "^2.1.0"
1567 | cross-spawn "^6.0.5"
1568 | debug "^3.1.0"
1569 | doctrine "^2.1.0"
1570 | eslint-scope "^4.0.0"
1571 | eslint-utils "^1.3.1"
1572 | eslint-visitor-keys "^1.0.0"
1573 | espree "^4.0.0"
1574 | esquery "^1.0.1"
1575 | esutils "^2.0.2"
1576 | file-entry-cache "^2.0.0"
1577 | functional-red-black-tree "^1.0.1"
1578 | glob "^7.1.2"
1579 | globals "^11.7.0"
1580 | ignore "^4.0.2"
1581 | imurmurhash "^0.1.4"
1582 | inquirer "^5.2.0"
1583 | is-resolvable "^1.1.0"
1584 | js-yaml "^3.11.0"
1585 | json-stable-stringify-without-jsonify "^1.0.1"
1586 | levn "^0.3.0"
1587 | lodash "^4.17.5"
1588 | minimatch "^3.0.4"
1589 | mkdirp "^0.5.1"
1590 | natural-compare "^1.4.0"
1591 | optionator "^0.8.2"
1592 | path-is-inside "^1.0.2"
1593 | pluralize "^7.0.0"
1594 | progress "^2.0.0"
1595 | regexpp "^2.0.0"
1596 | require-uncached "^1.0.3"
1597 | semver "^5.5.0"
1598 | strip-ansi "^4.0.0"
1599 | strip-json-comments "^2.0.1"
1600 | table "^4.0.3"
1601 | text-table "^0.2.0"
1602 |
1603 | espree@^4.0.0:
1604 | version "4.1.0"
1605 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.1.0.tgz#728d5451e0fd156c04384a7ad89ed51ff54eb25f"
1606 | integrity sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==
1607 | dependencies:
1608 | acorn "^6.0.2"
1609 | acorn-jsx "^5.0.0"
1610 | eslint-visitor-keys "^1.0.0"
1611 |
1612 | esprima@^4.0.0:
1613 | version "4.0.1"
1614 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1615 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1616 |
1617 | esquery@^1.0.1:
1618 | version "1.4.0"
1619 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
1620 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1621 | dependencies:
1622 | estraverse "^5.1.0"
1623 |
1624 | esrecurse@^4.1.0:
1625 | version "4.3.0"
1626 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
1627 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
1628 | dependencies:
1629 | estraverse "^5.2.0"
1630 |
1631 | estraverse@^4.1.1:
1632 | version "4.3.0"
1633 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1634 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1635 |
1636 | estraverse@^5.1.0, estraverse@^5.2.0:
1637 | version "5.3.0"
1638 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
1639 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
1640 |
1641 | estree-walker@^1.0.1:
1642 | version "1.0.1"
1643 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
1644 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
1645 |
1646 | estree-walker@^2.0.1:
1647 | version "2.0.2"
1648 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
1649 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
1650 |
1651 | esutils@^2.0.2:
1652 | version "2.0.3"
1653 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1654 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1655 |
1656 | external-editor@^2.1.0:
1657 | version "2.2.0"
1658 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
1659 | integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==
1660 | dependencies:
1661 | chardet "^0.4.0"
1662 | iconv-lite "^0.4.17"
1663 | tmp "^0.0.33"
1664 |
1665 | fast-deep-equal@^3.1.1:
1666 | version "3.1.3"
1667 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1668 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1669 |
1670 | fast-json-stable-stringify@^2.0.0:
1671 | version "2.1.0"
1672 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1673 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1674 |
1675 | fast-levenshtein@~2.0.6:
1676 | version "2.0.6"
1677 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1678 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
1679 |
1680 | figures@^2.0.0:
1681 | version "2.0.0"
1682 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1683 | integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==
1684 | dependencies:
1685 | escape-string-regexp "^1.0.5"
1686 |
1687 | file-entry-cache@^2.0.0:
1688 | version "2.0.0"
1689 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1690 | integrity sha512-uXP/zGzxxFvFfcZGgBIwotm+Tdc55ddPAzF7iHshP4YGaXMww7rSF9peD9D1sui5ebONg5UobsZv+FfgEpGv/w==
1691 | dependencies:
1692 | flat-cache "^1.2.1"
1693 | object-assign "^4.0.1"
1694 |
1695 | fill-range@^7.0.1:
1696 | version "7.0.1"
1697 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1698 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1699 | dependencies:
1700 | to-regex-range "^5.0.1"
1701 |
1702 | find-root@^1.0.0:
1703 | version "1.1.0"
1704 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
1705 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
1706 |
1707 | find-up@^2.0.0:
1708 | version "2.1.0"
1709 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1710 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==
1711 | dependencies:
1712 | locate-path "^2.0.0"
1713 |
1714 | flat-cache@^1.2.1:
1715 | version "1.3.4"
1716 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"
1717 | integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==
1718 | dependencies:
1719 | circular-json "^0.3.1"
1720 | graceful-fs "^4.1.2"
1721 | rimraf "~2.6.2"
1722 | write "^0.2.1"
1723 |
1724 | fs.realpath@^1.0.0:
1725 | version "1.0.0"
1726 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1727 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1728 |
1729 | fsevents@~2.3.2:
1730 | version "2.3.2"
1731 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1732 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1733 |
1734 | function-bind@^1.1.1:
1735 | version "1.1.1"
1736 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1737 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1738 |
1739 | function.prototype.name@^1.1.5:
1740 | version "1.1.5"
1741 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
1742 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
1743 | dependencies:
1744 | call-bind "^1.0.2"
1745 | define-properties "^1.1.3"
1746 | es-abstract "^1.19.0"
1747 | functions-have-names "^1.2.2"
1748 |
1749 | functional-red-black-tree@^1.0.1:
1750 | version "1.0.1"
1751 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1752 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
1753 |
1754 | functions-have-names@^1.2.2:
1755 | version "1.2.3"
1756 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
1757 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
1758 |
1759 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
1760 | version "1.1.3"
1761 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
1762 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
1763 | dependencies:
1764 | function-bind "^1.1.1"
1765 | has "^1.0.3"
1766 | has-symbols "^1.0.3"
1767 |
1768 | get-stdin@^6.0.0:
1769 | version "6.0.0"
1770 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
1771 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
1772 |
1773 | get-symbol-description@^1.0.0:
1774 | version "1.0.0"
1775 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
1776 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1777 | dependencies:
1778 | call-bind "^1.0.2"
1779 | get-intrinsic "^1.1.1"
1780 |
1781 | glob-parent@~5.1.2:
1782 | version "5.1.2"
1783 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1784 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1785 | dependencies:
1786 | is-glob "^4.0.1"
1787 |
1788 | glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6:
1789 | version "7.2.3"
1790 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1791 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1792 | dependencies:
1793 | fs.realpath "^1.0.0"
1794 | inflight "^1.0.4"
1795 | inherits "2"
1796 | minimatch "^3.1.1"
1797 | once "^1.3.0"
1798 | path-is-absolute "^1.0.0"
1799 |
1800 | globals@^11.1.0, globals@^11.7.0:
1801 | version "11.12.0"
1802 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1803 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1804 |
1805 | gopd@^1.0.1:
1806 | version "1.0.1"
1807 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
1808 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
1809 | dependencies:
1810 | get-intrinsic "^1.1.3"
1811 |
1812 | graceful-fs@^4.1.2:
1813 | version "4.2.10"
1814 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
1815 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
1816 |
1817 | has-ansi@^2.0.0:
1818 | version "2.0.0"
1819 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1820 | integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
1821 | dependencies:
1822 | ansi-regex "^2.0.0"
1823 |
1824 | has-bigints@^1.0.1, has-bigints@^1.0.2:
1825 | version "1.0.2"
1826 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
1827 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
1828 |
1829 | has-flag@^3.0.0:
1830 | version "3.0.0"
1831 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1832 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1833 |
1834 | has-property-descriptors@^1.0.0:
1835 | version "1.0.0"
1836 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
1837 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
1838 | dependencies:
1839 | get-intrinsic "^1.1.1"
1840 |
1841 | has-symbols@^1.0.2, has-symbols@^1.0.3:
1842 | version "1.0.3"
1843 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1844 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1845 |
1846 | has-tostringtag@^1.0.0:
1847 | version "1.0.0"
1848 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
1849 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1850 | dependencies:
1851 | has-symbols "^1.0.2"
1852 |
1853 | has@^1.0.1, has@^1.0.3:
1854 | version "1.0.3"
1855 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1856 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1857 | dependencies:
1858 | function-bind "^1.1.1"
1859 |
1860 | hosted-git-info@^2.1.4:
1861 | version "2.8.9"
1862 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
1863 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
1864 |
1865 | iconv-lite@^0.4.17:
1866 | version "0.4.24"
1867 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1868 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
1869 | dependencies:
1870 | safer-buffer ">= 2.1.2 < 3"
1871 |
1872 | ignore@^3.0.9:
1873 | version "3.3.10"
1874 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
1875 | integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
1876 |
1877 | ignore@^4.0.2:
1878 | version "4.0.6"
1879 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
1880 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
1881 |
1882 | imurmurhash@^0.1.4:
1883 | version "0.1.4"
1884 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1885 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1886 |
1887 | inflight@^1.0.4:
1888 | version "1.0.6"
1889 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1890 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1891 | dependencies:
1892 | once "^1.3.0"
1893 | wrappy "1"
1894 |
1895 | inherits@2, inherits@^2.0.1, inherits@^2.0.3:
1896 | version "2.0.4"
1897 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1898 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1899 |
1900 | inquirer@^5.2.0:
1901 | version "5.2.0"
1902 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726"
1903 | integrity sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==
1904 | dependencies:
1905 | ansi-escapes "^3.0.0"
1906 | chalk "^2.0.0"
1907 | cli-cursor "^2.1.0"
1908 | cli-width "^2.0.0"
1909 | external-editor "^2.1.0"
1910 | figures "^2.0.0"
1911 | lodash "^4.3.0"
1912 | mute-stream "0.0.7"
1913 | run-async "^2.2.0"
1914 | rxjs "^5.5.2"
1915 | string-width "^2.1.0"
1916 | strip-ansi "^4.0.0"
1917 | through "^2.3.6"
1918 |
1919 | internal-slot@^1.0.3:
1920 | version "1.0.3"
1921 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1922 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1923 | dependencies:
1924 | get-intrinsic "^1.1.0"
1925 | has "^1.0.3"
1926 | side-channel "^1.0.4"
1927 |
1928 | is-arrayish@^0.2.1:
1929 | version "0.2.1"
1930 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1931 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
1932 |
1933 | is-bigint@^1.0.1:
1934 | version "1.0.4"
1935 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
1936 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1937 | dependencies:
1938 | has-bigints "^1.0.1"
1939 |
1940 | is-binary-path@~2.1.0:
1941 | version "2.1.0"
1942 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1943 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1944 | dependencies:
1945 | binary-extensions "^2.0.0"
1946 |
1947 | is-boolean-object@^1.1.0:
1948 | version "1.1.2"
1949 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
1950 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1951 | dependencies:
1952 | call-bind "^1.0.2"
1953 | has-tostringtag "^1.0.0"
1954 |
1955 | is-callable@^1.1.4, is-callable@^1.2.7:
1956 | version "1.2.7"
1957 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
1958 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
1959 |
1960 | is-core-module@^2.9.0:
1961 | version "2.11.0"
1962 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
1963 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
1964 | dependencies:
1965 | has "^1.0.3"
1966 |
1967 | is-date-object@^1.0.1:
1968 | version "1.0.5"
1969 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
1970 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1971 | dependencies:
1972 | has-tostringtag "^1.0.0"
1973 |
1974 | is-extglob@^2.1.1:
1975 | version "2.1.1"
1976 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1977 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1978 |
1979 | is-fullwidth-code-point@^2.0.0:
1980 | version "2.0.0"
1981 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1982 | integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
1983 |
1984 | is-glob@^4.0.1, is-glob@~4.0.1:
1985 | version "4.0.3"
1986 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1987 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1988 | dependencies:
1989 | is-extglob "^2.1.1"
1990 |
1991 | is-module@^1.0.0:
1992 | version "1.0.0"
1993 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
1994 | integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
1995 |
1996 | is-negative-zero@^2.0.2:
1997 | version "2.0.2"
1998 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
1999 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
2000 |
2001 | is-number-object@^1.0.4:
2002 | version "1.0.7"
2003 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
2004 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
2005 | dependencies:
2006 | has-tostringtag "^1.0.0"
2007 |
2008 | is-number@^7.0.0:
2009 | version "7.0.0"
2010 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
2011 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
2012 |
2013 | is-reference@^1.2.1:
2014 | version "1.2.1"
2015 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
2016 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==
2017 | dependencies:
2018 | "@types/estree" "*"
2019 |
2020 | is-regex@^1.1.4:
2021 | version "1.1.4"
2022 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
2023 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
2024 | dependencies:
2025 | call-bind "^1.0.2"
2026 | has-tostringtag "^1.0.0"
2027 |
2028 | is-resolvable@^1.1.0:
2029 | version "1.1.0"
2030 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
2031 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
2032 |
2033 | is-shared-array-buffer@^1.0.2:
2034 | version "1.0.2"
2035 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
2036 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
2037 | dependencies:
2038 | call-bind "^1.0.2"
2039 |
2040 | is-string@^1.0.5, is-string@^1.0.7:
2041 | version "1.0.7"
2042 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
2043 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
2044 | dependencies:
2045 | has-tostringtag "^1.0.0"
2046 |
2047 | is-symbol@^1.0.2, is-symbol@^1.0.3:
2048 | version "1.0.4"
2049 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
2050 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
2051 | dependencies:
2052 | has-symbols "^1.0.2"
2053 |
2054 | is-weakref@^1.0.2:
2055 | version "1.0.2"
2056 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
2057 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
2058 | dependencies:
2059 | call-bind "^1.0.2"
2060 |
2061 | isarray@^1.0.0:
2062 | version "1.0.0"
2063 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2064 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
2065 |
2066 | isexe@^2.0.0:
2067 | version "2.0.0"
2068 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2069 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
2070 |
2071 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
2072 | version "4.0.0"
2073 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2074 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2075 |
2076 | js-tokens@^3.0.2:
2077 | version "3.0.2"
2078 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2079 | integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==
2080 |
2081 | js-yaml@^3.11.0:
2082 | version "3.14.1"
2083 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2084 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2085 | dependencies:
2086 | argparse "^1.0.7"
2087 | esprima "^4.0.0"
2088 |
2089 | jsesc@^2.5.1:
2090 | version "2.5.2"
2091 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2092 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2093 |
2094 | jsesc@~0.5.0:
2095 | version "0.5.0"
2096 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2097 | integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
2098 |
2099 | json-parse-better-errors@^1.0.1:
2100 | version "1.0.2"
2101 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2102 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
2103 |
2104 | json-schema-traverse@^0.4.1:
2105 | version "0.4.1"
2106 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2107 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
2108 |
2109 | json-stable-stringify-without-jsonify@^1.0.1:
2110 | version "1.0.1"
2111 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
2112 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
2113 |
2114 | jsx-ast-utils@^2.0.1:
2115 | version "2.4.1"
2116 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e"
2117 | integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==
2118 | dependencies:
2119 | array-includes "^3.1.1"
2120 | object.assign "^4.1.0"
2121 |
2122 | levn@^0.3.0, levn@~0.3.0:
2123 | version "0.3.0"
2124 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2125 | integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
2126 | dependencies:
2127 | prelude-ls "~1.1.2"
2128 | type-check "~0.3.2"
2129 |
2130 | livereload-js@^3.3.1:
2131 | version "3.4.1"
2132 | resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-3.4.1.tgz#ba90fbc708ed1b9a024bb89c4ee12c96ea03d66f"
2133 | integrity sha512-5MP0uUeVCec89ZbNOT/i97Mc+q3SxXmiUGhRFOTmhrGPn//uWVQdCvcLJDy64MSBR5MidFdOR7B9viumoavy6g==
2134 |
2135 | livereload@^0.9.1:
2136 | version "0.9.3"
2137 | resolved "https://registry.yarnpkg.com/livereload/-/livereload-0.9.3.tgz#a714816375ed52471408bede8b49b2ee6a0c55b1"
2138 | integrity sha512-q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw==
2139 | dependencies:
2140 | chokidar "^3.5.0"
2141 | livereload-js "^3.3.1"
2142 | opts ">= 1.2.0"
2143 | ws "^7.4.3"
2144 |
2145 | load-json-file@^2.0.0:
2146 | version "2.0.0"
2147 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2148 | integrity sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==
2149 | dependencies:
2150 | graceful-fs "^4.1.2"
2151 | parse-json "^2.2.0"
2152 | pify "^2.0.0"
2153 | strip-bom "^3.0.0"
2154 |
2155 | load-json-file@^4.0.0:
2156 | version "4.0.0"
2157 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2158 | integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==
2159 | dependencies:
2160 | graceful-fs "^4.1.2"
2161 | parse-json "^4.0.0"
2162 | pify "^3.0.0"
2163 | strip-bom "^3.0.0"
2164 |
2165 | locate-path@^2.0.0:
2166 | version "2.0.0"
2167 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2168 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==
2169 | dependencies:
2170 | p-locate "^2.0.0"
2171 | path-exists "^3.0.0"
2172 |
2173 | lodash.debounce@^4.0.8:
2174 | version "4.0.8"
2175 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2176 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
2177 |
2178 | lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0:
2179 | version "4.17.21"
2180 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2181 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2182 |
2183 | loose-envify@^1.1.0, loose-envify@^1.4.0:
2184 | version "1.4.0"
2185 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
2186 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
2187 | dependencies:
2188 | js-tokens "^3.0.0 || ^4.0.0"
2189 |
2190 | magic-string@^0.25.7:
2191 | version "0.25.9"
2192 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
2193 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
2194 | dependencies:
2195 | sourcemap-codec "^1.4.8"
2196 |
2197 | mime@>=2.4.6:
2198 | version "3.0.0"
2199 | resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
2200 | integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
2201 |
2202 | mimic-fn@^1.0.0:
2203 | version "1.2.0"
2204 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2205 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
2206 |
2207 | minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1:
2208 | version "3.1.2"
2209 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
2210 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
2211 | dependencies:
2212 | brace-expansion "^1.1.7"
2213 |
2214 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.6:
2215 | version "1.2.7"
2216 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
2217 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
2218 |
2219 | minisearch@7.1.0:
2220 | version "7.1.0"
2221 | resolved "https://registry.yarnpkg.com/minisearch/-/minisearch-7.1.0.tgz#f5830e9109b5919ee7b291c29a304f381aa68770"
2222 | integrity sha512-tv7c/uefWdEhcu6hvrfTihflgeEi2tN6VV7HJnCjK6VxM75QQJh4t9FwJCsA2EsRS8LCnu3W87CuGPWMocOLCA==
2223 |
2224 | mkdirp@^0.5.1:
2225 | version "0.5.6"
2226 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
2227 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
2228 | dependencies:
2229 | minimist "^1.2.6"
2230 |
2231 | ms@2.0.0:
2232 | version "2.0.0"
2233 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2234 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
2235 |
2236 | ms@2.1.2:
2237 | version "2.1.2"
2238 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2239 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2240 |
2241 | ms@^2.1.1:
2242 | version "2.1.3"
2243 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
2244 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
2245 |
2246 | mute-stream@0.0.7:
2247 | version "0.0.7"
2248 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2249 | integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==
2250 |
2251 | natural-compare@^1.4.0:
2252 | version "1.4.0"
2253 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2254 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
2255 |
2256 | nice-try@^1.0.4:
2257 | version "1.0.5"
2258 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2259 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
2260 |
2261 | node-releases@^2.0.6:
2262 | version "2.0.7"
2263 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
2264 | integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
2265 |
2266 | normalize-package-data@^2.3.2:
2267 | version "2.5.0"
2268 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2269 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
2270 | dependencies:
2271 | hosted-git-info "^2.1.4"
2272 | resolve "^1.10.0"
2273 | semver "2 || 3 || 4 || 5"
2274 | validate-npm-package-license "^3.0.1"
2275 |
2276 | normalize-path@^3.0.0, normalize-path@~3.0.0:
2277 | version "3.0.0"
2278 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2279 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2280 |
2281 | object-assign@^4.0.1, object-assign@^4.1.1:
2282 | version "4.1.1"
2283 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2284 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
2285 |
2286 | object-inspect@^1.12.2, object-inspect@^1.9.0:
2287 | version "1.12.2"
2288 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
2289 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
2290 |
2291 | object-keys@^1.1.1:
2292 | version "1.1.1"
2293 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2294 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2295 |
2296 | object.assign@^4.1.0, object.assign@^4.1.4:
2297 | version "4.1.4"
2298 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
2299 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
2300 | dependencies:
2301 | call-bind "^1.0.2"
2302 | define-properties "^1.1.4"
2303 | has-symbols "^1.0.3"
2304 | object-keys "^1.1.1"
2305 |
2306 | once@^1.3.0:
2307 | version "1.4.0"
2308 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2309 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
2310 | dependencies:
2311 | wrappy "1"
2312 |
2313 | onetime@^2.0.0:
2314 | version "2.0.1"
2315 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2316 | integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==
2317 | dependencies:
2318 | mimic-fn "^1.0.0"
2319 |
2320 | opener@1:
2321 | version "1.5.2"
2322 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
2323 | integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
2324 |
2325 | optionator@^0.8.2:
2326 | version "0.8.3"
2327 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
2328 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
2329 | dependencies:
2330 | deep-is "~0.1.3"
2331 | fast-levenshtein "~2.0.6"
2332 | levn "~0.3.0"
2333 | prelude-ls "~1.1.2"
2334 | type-check "~0.3.2"
2335 | word-wrap "~1.2.3"
2336 |
2337 | "opts@>= 1.2.0":
2338 | version "2.0.2"
2339 | resolved "https://registry.yarnpkg.com/opts/-/opts-2.0.2.tgz#a17e189fbbfee171da559edd8a42423bc5993ce1"
2340 | integrity sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg==
2341 |
2342 | os-tmpdir@~1.0.2:
2343 | version "1.0.2"
2344 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2345 | integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
2346 |
2347 | p-limit@^1.1.0:
2348 | version "1.3.0"
2349 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
2350 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
2351 | dependencies:
2352 | p-try "^1.0.0"
2353 |
2354 | p-locate@^2.0.0:
2355 | version "2.0.0"
2356 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2357 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==
2358 | dependencies:
2359 | p-limit "^1.1.0"
2360 |
2361 | p-try@^1.0.0:
2362 | version "1.0.0"
2363 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2364 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==
2365 |
2366 | parse-json@^2.2.0:
2367 | version "2.2.0"
2368 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2369 | integrity sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==
2370 | dependencies:
2371 | error-ex "^1.2.0"
2372 |
2373 | parse-json@^4.0.0:
2374 | version "4.0.0"
2375 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2376 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
2377 | dependencies:
2378 | error-ex "^1.3.1"
2379 | json-parse-better-errors "^1.0.1"
2380 |
2381 | path-exists@^3.0.0:
2382 | version "3.0.0"
2383 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2384 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
2385 |
2386 | path-is-absolute@^1.0.0:
2387 | version "1.0.1"
2388 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2389 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
2390 |
2391 | path-is-inside@^1.0.2:
2392 | version "1.0.2"
2393 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2394 | integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==
2395 |
2396 | path-key@^2.0.1:
2397 | version "2.0.1"
2398 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2399 | integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
2400 |
2401 | path-parse@^1.0.7:
2402 | version "1.0.7"
2403 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2404 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2405 |
2406 | path-type@^2.0.0:
2407 | version "2.0.0"
2408 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2409 | integrity sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==
2410 | dependencies:
2411 | pify "^2.0.0"
2412 |
2413 | picocolors@^1.0.0:
2414 | version "1.0.0"
2415 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2416 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2417 |
2418 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2:
2419 | version "2.3.1"
2420 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2421 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2422 |
2423 | pify@^2.0.0:
2424 | version "2.3.0"
2425 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2426 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
2427 |
2428 | pify@^3.0.0:
2429 | version "3.0.0"
2430 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2431 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
2432 |
2433 | pkg-conf@^2.0.0:
2434 | version "2.1.0"
2435 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058"
2436 | integrity sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==
2437 | dependencies:
2438 | find-up "^2.0.0"
2439 | load-json-file "^4.0.0"
2440 |
2441 | pkg-config@^1.1.0:
2442 | version "1.1.1"
2443 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4"
2444 | integrity sha512-ft/WI9YK6FuTuw4Ql+QUaNXtm/ASQNqDUUsZEgFZKyFpW6amyP8Gx01xrRs8KdiNbbqXfYxkOXplpq1euWbOjw==
2445 | dependencies:
2446 | debug-log "^1.0.0"
2447 | find-root "^1.0.0"
2448 | xtend "^4.0.1"
2449 |
2450 | pluralize@^7.0.0:
2451 | version "7.0.0"
2452 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
2453 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==
2454 |
2455 | prelude-ls@~1.1.2:
2456 | version "1.1.2"
2457 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2458 | integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
2459 |
2460 | progress@^2.0.0:
2461 | version "2.0.3"
2462 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
2463 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
2464 |
2465 | prop-types@^15.6.2:
2466 | version "15.8.1"
2467 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
2468 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
2469 | dependencies:
2470 | loose-envify "^1.4.0"
2471 | object-assign "^4.1.1"
2472 | react-is "^16.13.1"
2473 |
2474 | punycode@^2.1.0:
2475 | version "2.1.1"
2476 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2477 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2478 |
2479 | queue-microtask@^1.2.2:
2480 | version "1.2.3"
2481 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
2482 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
2483 |
2484 | react-dom@^16.14.0:
2485 | version "16.14.0"
2486 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
2487 | integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
2488 | dependencies:
2489 | loose-envify "^1.1.0"
2490 | object-assign "^4.1.1"
2491 | prop-types "^15.6.2"
2492 | scheduler "^0.19.1"
2493 |
2494 | react-is@^16.13.1:
2495 | version "16.13.1"
2496 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
2497 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
2498 |
2499 | react-minisearch@7.1.1:
2500 | version "7.1.1"
2501 | resolved "https://registry.yarnpkg.com/react-minisearch/-/react-minisearch-7.1.1.tgz#4f483da80264225af9509525a1041433b4e23eca"
2502 | integrity sha512-4y1e5Nm8yFI+gw5IMLuFV4DKruUbdSNvVu6iIx0lCRNjUDoXcaV0b8SYodPcykzT1j1LKpIyDwQO+WtRsnSqNw==
2503 |
2504 | react@^16.14.0:
2505 | version "16.14.0"
2506 | resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"
2507 | integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==
2508 | dependencies:
2509 | loose-envify "^1.1.0"
2510 | object-assign "^4.1.1"
2511 | prop-types "^15.6.2"
2512 |
2513 | read-pkg-up@^2.0.0:
2514 | version "2.0.0"
2515 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2516 | integrity sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==
2517 | dependencies:
2518 | find-up "^2.0.0"
2519 | read-pkg "^2.0.0"
2520 |
2521 | read-pkg@^2.0.0:
2522 | version "2.0.0"
2523 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2524 | integrity sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==
2525 | dependencies:
2526 | load-json-file "^2.0.0"
2527 | normalize-package-data "^2.3.2"
2528 | path-type "^2.0.0"
2529 |
2530 | readable-stream@^3.0.2:
2531 | version "3.6.0"
2532 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
2533 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
2534 | dependencies:
2535 | inherits "^2.0.3"
2536 | string_decoder "^1.1.1"
2537 | util-deprecate "^1.0.1"
2538 |
2539 | readdirp@~3.6.0:
2540 | version "3.6.0"
2541 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
2542 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
2543 | dependencies:
2544 | picomatch "^2.2.1"
2545 |
2546 | regenerate-unicode-properties@^10.1.0:
2547 | version "10.1.0"
2548 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
2549 | integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
2550 | dependencies:
2551 | regenerate "^1.4.2"
2552 |
2553 | regenerate@^1.4.2:
2554 | version "1.4.2"
2555 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
2556 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
2557 |
2558 | regenerator-runtime@^0.13.0, regenerator-runtime@^0.13.11:
2559 | version "0.13.11"
2560 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
2561 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
2562 |
2563 | regenerator-transform@^0.15.1:
2564 | version "0.15.1"
2565 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
2566 | integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
2567 | dependencies:
2568 | "@babel/runtime" "^7.8.4"
2569 |
2570 | regexp.prototype.flags@^1.4.3:
2571 | version "1.4.3"
2572 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
2573 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
2574 | dependencies:
2575 | call-bind "^1.0.2"
2576 | define-properties "^1.1.3"
2577 | functions-have-names "^1.2.2"
2578 |
2579 | regexpp@^2.0.0, regexpp@^2.0.1:
2580 | version "2.0.1"
2581 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
2582 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
2583 |
2584 | regexpu-core@^5.2.1:
2585 | version "5.2.2"
2586 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc"
2587 | integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==
2588 | dependencies:
2589 | regenerate "^1.4.2"
2590 | regenerate-unicode-properties "^10.1.0"
2591 | regjsgen "^0.7.1"
2592 | regjsparser "^0.9.1"
2593 | unicode-match-property-ecmascript "^2.0.0"
2594 | unicode-match-property-value-ecmascript "^2.1.0"
2595 |
2596 | regjsgen@^0.7.1:
2597 | version "0.7.1"
2598 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
2599 | integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
2600 |
2601 | regjsparser@^0.9.1:
2602 | version "0.9.1"
2603 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
2604 | integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
2605 | dependencies:
2606 | jsesc "~0.5.0"
2607 |
2608 | require-uncached@^1.0.3:
2609 | version "1.0.3"
2610 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
2611 | integrity sha512-Xct+41K3twrbBHdxAgMoOS+cNcoqIjfM2/VxBF4LL2hVph7YsF8VSKyQ3BDFZwEVbok9yeDl2le/qo0S77WG2w==
2612 | dependencies:
2613 | caller-path "^0.1.0"
2614 | resolve-from "^1.0.0"
2615 |
2616 | resolve-from@^1.0.0:
2617 | version "1.0.1"
2618 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
2619 | integrity sha512-kT10v4dhrlLNcnO084hEjvXCI1wUG9qZLoz2RogxqDQQYy7IxjI/iMUkOtQTNEh6rzHxvdQWHsJyel1pKOVCxg==
2620 |
2621 | resolve@^1.10.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.6.0, resolve@^1.8.1:
2622 | version "1.22.1"
2623 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
2624 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
2625 | dependencies:
2626 | is-core-module "^2.9.0"
2627 | path-parse "^1.0.7"
2628 | supports-preserve-symlinks-flag "^1.0.0"
2629 |
2630 | restore-cursor@^2.0.0:
2631 | version "2.0.0"
2632 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
2633 | integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==
2634 | dependencies:
2635 | onetime "^2.0.0"
2636 | signal-exit "^3.0.2"
2637 |
2638 | rimraf@~2.6.2:
2639 | version "2.6.3"
2640 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
2641 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
2642 | dependencies:
2643 | glob "^7.1.3"
2644 |
2645 | rollup-plugin-livereload@^2.0.0:
2646 | version "2.0.5"
2647 | resolved "https://registry.yarnpkg.com/rollup-plugin-livereload/-/rollup-plugin-livereload-2.0.5.tgz#4747fa292a2cceb0c972c573d71b3d66b4252b37"
2648 | integrity sha512-vqQZ/UQowTW7VoiKEM5ouNW90wE5/GZLfdWuR0ELxyKOJUIaj+uismPZZaICU4DnWPVjnpCDDxEqwU7pcKY/PA==
2649 | dependencies:
2650 | livereload "^0.9.1"
2651 |
2652 | rollup-plugin-serve@^1.1.0:
2653 | version "1.1.0"
2654 | resolved "https://registry.yarnpkg.com/rollup-plugin-serve/-/rollup-plugin-serve-1.1.0.tgz#0654a57021a21b903340c69940f7463706e8288d"
2655 | integrity sha512-pYkSsuA0/psKqhhictkJw1c2klya5b+LlCvipWqI9OE1aG2M97mRumZCbBlry5CMEOzYBBgSDgd1694sNbmyIw==
2656 | dependencies:
2657 | mime ">=2.4.6"
2658 | opener "1"
2659 |
2660 | rollup@^2.26.9:
2661 | version "2.79.1"
2662 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7"
2663 | integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==
2664 | optionalDependencies:
2665 | fsevents "~2.3.2"
2666 |
2667 | run-async@^2.2.0:
2668 | version "2.4.1"
2669 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
2670 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
2671 |
2672 | run-parallel@^1.1.2:
2673 | version "1.2.0"
2674 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
2675 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
2676 | dependencies:
2677 | queue-microtask "^1.2.2"
2678 |
2679 | rxjs@^5.5.2:
2680 | version "5.5.12"
2681 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc"
2682 | integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==
2683 | dependencies:
2684 | symbol-observable "1.0.1"
2685 |
2686 | safe-buffer@~5.2.0:
2687 | version "5.2.1"
2688 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
2689 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
2690 |
2691 | safe-regex-test@^1.0.0:
2692 | version "1.0.0"
2693 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
2694 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
2695 | dependencies:
2696 | call-bind "^1.0.2"
2697 | get-intrinsic "^1.1.3"
2698 | is-regex "^1.1.4"
2699 |
2700 | "safer-buffer@>= 2.1.2 < 3":
2701 | version "2.1.2"
2702 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2703 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
2704 |
2705 | scheduler@^0.19.1:
2706 | version "0.19.1"
2707 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
2708 | integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
2709 | dependencies:
2710 | loose-envify "^1.1.0"
2711 | object-assign "^4.1.1"
2712 |
2713 | "semver@2 || 3 || 4 || 5", semver@^5.5.0:
2714 | version "5.7.1"
2715 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2716 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2717 |
2718 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
2719 | version "6.3.0"
2720 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2721 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2722 |
2723 | shebang-command@^1.2.0:
2724 | version "1.2.0"
2725 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2726 | integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
2727 | dependencies:
2728 | shebang-regex "^1.0.0"
2729 |
2730 | shebang-regex@^1.0.0:
2731 | version "1.0.0"
2732 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2733 | integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
2734 |
2735 | side-channel@^1.0.4:
2736 | version "1.0.4"
2737 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
2738 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
2739 | dependencies:
2740 | call-bind "^1.0.0"
2741 | get-intrinsic "^1.0.2"
2742 | object-inspect "^1.9.0"
2743 |
2744 | signal-exit@^3.0.2:
2745 | version "3.0.7"
2746 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
2747 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
2748 |
2749 | slice-ansi@1.0.0:
2750 | version "1.0.0"
2751 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
2752 | integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==
2753 | dependencies:
2754 | is-fullwidth-code-point "^2.0.0"
2755 |
2756 | snazzy@^8.0.0:
2757 | version "8.0.0"
2758 | resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-8.0.0.tgz#97a6d4173d03f6549b98a9dd88362765fac0ef88"
2759 | integrity sha512-59GS69hQD8FvJoNGeDz8aZtbYhkCFxCPQB1BFzAWiVVwPmS/J6Vjaku0k6tGNsdSxQ0kAlButdkn8bPR2hLcBw==
2760 | dependencies:
2761 | chalk "^2.3.0"
2762 | inherits "^2.0.1"
2763 | minimist "^1.1.1"
2764 | readable-stream "^3.0.2"
2765 | standard-json "^1.0.0"
2766 | strip-ansi "^4.0.0"
2767 | text-table "^0.2.0"
2768 |
2769 | sourcemap-codec@^1.4.8:
2770 | version "1.4.8"
2771 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
2772 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
2773 |
2774 | spdx-correct@^3.0.0:
2775 | version "3.1.1"
2776 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
2777 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
2778 | dependencies:
2779 | spdx-expression-parse "^3.0.0"
2780 | spdx-license-ids "^3.0.0"
2781 |
2782 | spdx-exceptions@^2.1.0:
2783 | version "2.3.0"
2784 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
2785 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
2786 |
2787 | spdx-expression-parse@^3.0.0:
2788 | version "3.0.1"
2789 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
2790 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
2791 | dependencies:
2792 | spdx-exceptions "^2.1.0"
2793 | spdx-license-ids "^3.0.0"
2794 |
2795 | spdx-license-ids@^3.0.0:
2796 | version "3.0.12"
2797 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779"
2798 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==
2799 |
2800 | sprintf-js@~1.0.2:
2801 | version "1.0.3"
2802 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2803 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
2804 |
2805 | standard-engine@~9.0.0:
2806 | version "9.0.0"
2807 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-9.0.0.tgz#d3a3d74c4c1b91f51a1e66362465261ca7610316"
2808 | integrity sha512-ZfNfCWZ2Xq67VNvKMPiVMKHnMdvxYzvZkf1AH8/cw2NLDBm5LRsxMqvEJpsjLI/dUosZ3Z1d6JlHDp5rAvvk2w==
2809 | dependencies:
2810 | deglob "^2.1.0"
2811 | get-stdin "^6.0.0"
2812 | minimist "^1.1.0"
2813 | pkg-conf "^2.0.0"
2814 |
2815 | standard-json@^1.0.0:
2816 | version "1.1.0"
2817 | resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.1.0.tgz#33ac0d2eccaddb0556f5ae28c43a35624cf1fb25"
2818 | integrity sha512-nkonX+n5g3pyVBvJZmvRlFtT/7JyLbNh4CtrYC3Qfxihgs8PKX52f6ONKQXORStuBWJ5PI83EUrNXme7LKfiTQ==
2819 | dependencies:
2820 | concat-stream "^2.0.0"
2821 |
2822 | standard@^12.0.1:
2823 | version "12.0.1"
2824 | resolved "https://registry.yarnpkg.com/standard/-/standard-12.0.1.tgz#0fc5a8aa6c34c546c5562aae644242b24dae2e61"
2825 | integrity sha512-UqdHjh87OG2gUrNCSM4QRLF5n9h3TFPwrCNyVlkqu31Hej0L/rc8hzKqVvkb2W3x0WMq7PzZdkLfEcBhVOR6lg==
2826 | dependencies:
2827 | eslint "~5.4.0"
2828 | eslint-config-standard "12.0.0"
2829 | eslint-config-standard-jsx "6.0.2"
2830 | eslint-plugin-import "~2.14.0"
2831 | eslint-plugin-node "~7.0.1"
2832 | eslint-plugin-promise "~4.0.0"
2833 | eslint-plugin-react "~7.11.1"
2834 | eslint-plugin-standard "~4.0.0"
2835 | standard-engine "~9.0.0"
2836 |
2837 | string-width@^2.1.0, string-width@^2.1.1:
2838 | version "2.1.1"
2839 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2840 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
2841 | dependencies:
2842 | is-fullwidth-code-point "^2.0.0"
2843 | strip-ansi "^4.0.0"
2844 |
2845 | string.prototype.trimend@^1.0.6:
2846 | version "1.0.6"
2847 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
2848 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
2849 | dependencies:
2850 | call-bind "^1.0.2"
2851 | define-properties "^1.1.4"
2852 | es-abstract "^1.20.4"
2853 |
2854 | string.prototype.trimstart@^1.0.6:
2855 | version "1.0.6"
2856 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
2857 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
2858 | dependencies:
2859 | call-bind "^1.0.2"
2860 | define-properties "^1.1.4"
2861 | es-abstract "^1.20.4"
2862 |
2863 | string_decoder@^1.1.1:
2864 | version "1.3.0"
2865 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
2866 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
2867 | dependencies:
2868 | safe-buffer "~5.2.0"
2869 |
2870 | strip-ansi@^3.0.0:
2871 | version "3.0.1"
2872 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2873 | integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
2874 | dependencies:
2875 | ansi-regex "^2.0.0"
2876 |
2877 | strip-ansi@^4.0.0:
2878 | version "4.0.0"
2879 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2880 | integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==
2881 | dependencies:
2882 | ansi-regex "^3.0.0"
2883 |
2884 | strip-bom@^3.0.0:
2885 | version "3.0.0"
2886 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2887 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
2888 |
2889 | strip-json-comments@^2.0.1:
2890 | version "2.0.1"
2891 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2892 | integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==
2893 |
2894 | supports-color@^2.0.0:
2895 | version "2.0.0"
2896 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2897 | integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
2898 |
2899 | supports-color@^5.3.0:
2900 | version "5.5.0"
2901 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2902 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2903 | dependencies:
2904 | has-flag "^3.0.0"
2905 |
2906 | supports-preserve-symlinks-flag@^1.0.0:
2907 | version "1.0.0"
2908 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
2909 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2910 |
2911 | symbol-observable@1.0.1:
2912 | version "1.0.1"
2913 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
2914 | integrity sha512-Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw==
2915 |
2916 | table@^4.0.3:
2917 | version "4.0.3"
2918 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
2919 | integrity sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==
2920 | dependencies:
2921 | ajv "^6.0.1"
2922 | ajv-keywords "^3.0.0"
2923 | chalk "^2.1.0"
2924 | lodash "^4.17.4"
2925 | slice-ansi "1.0.0"
2926 | string-width "^2.1.1"
2927 |
2928 | text-table@^0.2.0:
2929 | version "0.2.0"
2930 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2931 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
2932 |
2933 | through@^2.3.6:
2934 | version "2.3.8"
2935 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2936 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
2937 |
2938 | tmp@^0.0.33:
2939 | version "0.0.33"
2940 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
2941 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
2942 | dependencies:
2943 | os-tmpdir "~1.0.2"
2944 |
2945 | to-fast-properties@^2.0.0:
2946 | version "2.0.0"
2947 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2948 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
2949 |
2950 | to-regex-range@^5.0.1:
2951 | version "5.0.1"
2952 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2953 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2954 | dependencies:
2955 | is-number "^7.0.0"
2956 |
2957 | type-check@~0.3.2:
2958 | version "0.3.2"
2959 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2960 | integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
2961 | dependencies:
2962 | prelude-ls "~1.1.2"
2963 |
2964 | typedarray@^0.0.6:
2965 | version "0.0.6"
2966 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2967 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
2968 |
2969 | unbox-primitive@^1.0.2:
2970 | version "1.0.2"
2971 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
2972 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
2973 | dependencies:
2974 | call-bind "^1.0.2"
2975 | has-bigints "^1.0.2"
2976 | has-symbols "^1.0.3"
2977 | which-boxed-primitive "^1.0.2"
2978 |
2979 | unfetch@^4.0.1:
2980 | version "4.2.0"
2981 | resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
2982 | integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==
2983 |
2984 | unicode-canonical-property-names-ecmascript@^2.0.0:
2985 | version "2.0.0"
2986 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
2987 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
2988 |
2989 | unicode-match-property-ecmascript@^2.0.0:
2990 | version "2.0.0"
2991 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
2992 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
2993 | dependencies:
2994 | unicode-canonical-property-names-ecmascript "^2.0.0"
2995 | unicode-property-aliases-ecmascript "^2.0.0"
2996 |
2997 | unicode-match-property-value-ecmascript@^2.1.0:
2998 | version "2.1.0"
2999 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
3000 | integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
3001 |
3002 | unicode-property-aliases-ecmascript@^2.0.0:
3003 | version "2.1.0"
3004 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
3005 | integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
3006 |
3007 | uniq@^1.0.1:
3008 | version "1.0.1"
3009 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
3010 | integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==
3011 |
3012 | update-browserslist-db@^1.0.9:
3013 | version "1.0.10"
3014 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
3015 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
3016 | dependencies:
3017 | escalade "^3.1.1"
3018 | picocolors "^1.0.0"
3019 |
3020 | uri-js@^4.2.2:
3021 | version "4.4.1"
3022 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
3023 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
3024 | dependencies:
3025 | punycode "^2.1.0"
3026 |
3027 | util-deprecate@^1.0.1:
3028 | version "1.0.2"
3029 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3030 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
3031 |
3032 | validate-npm-package-license@^3.0.1:
3033 | version "3.0.4"
3034 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
3035 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
3036 | dependencies:
3037 | spdx-correct "^3.0.0"
3038 | spdx-expression-parse "^3.0.0"
3039 |
3040 | which-boxed-primitive@^1.0.2:
3041 | version "1.0.2"
3042 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
3043 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
3044 | dependencies:
3045 | is-bigint "^1.0.1"
3046 | is-boolean-object "^1.1.0"
3047 | is-number-object "^1.0.4"
3048 | is-string "^1.0.5"
3049 | is-symbol "^1.0.3"
3050 |
3051 | which@^1.2.9:
3052 | version "1.3.1"
3053 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
3054 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
3055 | dependencies:
3056 | isexe "^2.0.0"
3057 |
3058 | word-wrap@~1.2.3:
3059 | version "1.2.3"
3060 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
3061 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
3062 |
3063 | wrappy@1:
3064 | version "1.0.2"
3065 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3066 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
3067 |
3068 | write@^0.2.1:
3069 | version "0.2.1"
3070 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
3071 | integrity sha512-CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA==
3072 | dependencies:
3073 | mkdirp "^0.5.1"
3074 |
3075 | ws@^7.4.3:
3076 | version "7.5.9"
3077 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
3078 | integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
3079 |
3080 | xtend@^4.0.1:
3081 | version "4.0.2"
3082 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
3083 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
3084 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-minisearch",
3 | "version": "7.1.3",
4 | "description": "React integration for MiniSearch",
5 | "main": "dist/umd/react-minisearch.js",
6 | "module": "dist/esm/react-minisearch.js",
7 | "es2015": "dist/esm/react-minisearch.js",
8 | "type": "module",
9 | "exports": {
10 | ".": {
11 | "require": "./dist/cjs/react-minisearch.cjs",
12 | "import": "./dist/esm/react-minisearch.js",
13 | "default": "./dist/esm/react-minisearch.js"
14 | }
15 | },
16 | "types": "./dist/esm/react-minisearch.d.ts",
17 | "repository": "https://github.com/lucaong/react-minisearch",
18 | "author": "Luca Ongaro",
19 | "license": "MIT",
20 | "private": false,
21 | "devDependencies": {
22 | "@rollup/plugin-commonjs": "^21.0.1",
23 | "@rollup/plugin-node-resolve": "^11.1.0",
24 | "@rollup/plugin-typescript": "^8.1.0",
25 | "@testing-library/jest-dom": "^5.11.4",
26 | "@types/enzyme": "^3.10.3",
27 | "@types/jest": "^26.0.12",
28 | "@types/react": "^17.0.0",
29 | "@types/react-dom": "^17.0.0",
30 | "@typescript-eslint/eslint-plugin": "^4.3.0",
31 | "@typescript-eslint/parser": "^4.3.0",
32 | "@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
33 | "core-js": "^3.4.2",
34 | "enzyme": "^3.10.0",
35 | "enzyme-adapter-react-16": "^1.14.0",
36 | "eslint": "^7.10.0",
37 | "eslint-config-standard": "^14.1.1",
38 | "eslint-plugin-import": "^2.22.1",
39 | "eslint-plugin-node": "^11.1.0",
40 | "eslint-plugin-promise": "^4.2.1",
41 | "eslint-plugin-react": "^7.21.3",
42 | "eslint-plugin-react-hooks": "^4.1.2",
43 | "eslint-plugin-standard": "^4.0.1",
44 | "jest": "^26.4.2",
45 | "jest-environment-enzyme": "^7.1.1",
46 | "jest-enzyme": "^7.1.1",
47 | "minisearch": "7.0.0",
48 | "react": "^17.0.0",
49 | "react-dom": "^17.0.0",
50 | "rollup": "^2.26.9",
51 | "rollup-plugin-dts": "^6.1.0",
52 | "rollup-plugin-peer-deps-external": "^2.2.4",
53 | "ts-jest": "^26.3.0",
54 | "tslib": "^2.0.1",
55 | "typescript": "^4.0.2"
56 | },
57 | "scripts": {
58 | "build": "yarn build-typedef && NODE_ENV=production rollup -c",
59 | "build-typedef": "tsc --declaration --emitDeclarationOnly",
60 | "prepublishOnly": "yarn test",
61 | "prepublish": "yarn build",
62 | "test": "jest",
63 | "test-watch": "jest --watch",
64 | "lint": "eslint 'src/**/*.{js,ts,jsx,tsx}'",
65 | "lintfix": "eslint --fix 'src/**/*.{js,ts,jsx,tsx}'"
66 | },
67 | "dependencies": {},
68 | "peerDependencies": {
69 | "minisearch": "^7.1.0",
70 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
71 | },
72 | "jest": {
73 | "moduleFileExtensions": [
74 | "ts",
75 | "tsx",
76 | "js"
77 | ],
78 | "transform": {
79 | "\\.(ts|tsx)$": "ts-jest"
80 | },
81 | "testRegex": "\\.test\\.(ts|tsx|js)$",
82 | "setupFilesAfterEnv": [
83 | "jest-enzyme",
84 | "src/testSetup/jest.ts"
85 | ],
86 | "testEnvironment": "enzyme"
87 | },
88 | "files": [
89 | "src/**/*",
90 | "dist/**/*",
91 | "README.md"
92 | ]
93 | }
94 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import typescript from '@rollup/plugin-typescript'
2 | import external from 'rollup-plugin-peer-deps-external'
3 | import resolve from '@rollup/plugin-node-resolve'
4 | import commonjs from '@rollup/plugin-commonjs'
5 | import dts from 'rollup-plugin-dts'
6 |
7 | export default [
8 | {
9 | input: './src/react-minisearch.tsx',
10 | plugins: [
11 | external(),
12 | resolve(),
13 | commonjs(),
14 | typescript()
15 | ],
16 | output: [
17 | {
18 | name: 'react-minisearch',
19 | file: './dist/umd/react-minisearch.js',
20 | format: 'umd',
21 | sourcemap: true,
22 | exports: 'named',
23 | globals: {
24 | react: 'React',
25 | minisearch: 'MiniSearch'
26 | }
27 | },
28 | {
29 | file: './dist/esm/react-minisearch.js',
30 | format: 'es',
31 | sourcemap: true
32 | },
33 | {
34 | file: './dist/cjs/react-minisearch.cjs',
35 | format: 'cjs',
36 | sourcemap: true
37 | }
38 | ]
39 | },
40 | {
41 | input: './src/react-minisearch.tsx',
42 | plugins: [
43 | dts()
44 | ],
45 | output: [
46 | {
47 | file: './dist/esm/react-minisearch.d.ts',
48 | format: 'es'
49 | },
50 | {
51 | file: './dist/cjs/react-minisearch.d.cts',
52 | format: 'cjs'
53 | }
54 | ]
55 | },
56 | ]
57 |
--------------------------------------------------------------------------------
/src/react-minisearch.test.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-env jest */
2 |
3 | import { mount } from 'enzyme'
4 | import React, { ChangeEvent, useEffect, useState } from 'react'
5 | import { act } from 'react-dom/test-utils'
6 | import { useMiniSearch, withMiniSearch, WithMiniSearch, UseMiniSearch } from './react-minisearch'
7 | import MiniSearch, { Options } from 'minisearch'
8 |
9 | type DocumentType = {
10 | uid: number,
11 | title: string
12 | }
13 |
14 | const documents: DocumentType[] = [
15 | { uid: 1, title: 'De Rerum Natura' },
16 | { uid: 2, title: 'The Selfish Gene' }
17 | ]
18 |
19 | const options: Options = { fields: ['title'], idField: 'uid' }
20 |
21 | type Props = {
22 | documents: DocumentType[],
23 | options: Options,
24 | documentToAdd: DocumentType | null,
25 | documentsToAdd: DocumentType[] | null,
26 | documentToRemove: DocumentType | null
27 | }
28 |
29 | const props: Props = { documents, options, documentToAdd: null, documentsToAdd: null, documentToRemove: null }
30 |
31 | const documentToAdd = { uid: 3, title: 'Pista Nera' }
32 |
33 | const documentsToAdd = [{ uid: 3, title: 'Six Easy Pieces' }, { uid: 4, title: 'Six Not So Easy Pieces' }]
34 |
35 | const documentToRemove = documents[0]
36 |
37 | const documentToReplace = { uid: 1, title: 'The Big Picture' }
38 |
39 | let promise = Promise.resolve()
40 |
41 | const ChildComponent: React.FC> = ({
42 | search,
43 | searchResults,
44 | rawResults,
45 | autoSuggest,
46 | suggestions,
47 | add,
48 | addAll,
49 | addAllAsync,
50 | getById,
51 | remove,
52 | removeById,
53 | removeAll,
54 | discard,
55 | replace,
56 | clearSearch,
57 | clearSuggestions
58 | }) => {
59 | const [docTitle, setDocTitle] = useState(null)
60 | const handleChange = (event: ChangeEvent) => {
61 | const query = event.target.value
62 | autoSuggest(query)
63 | search(query)
64 | }
65 |
66 | return (
67 |
68 |
69 |
70 | { suggestions && suggestions.map(({ suggestion }) => { suggestion } )}
71 |
72 |
73 | { searchResults && searchResults.map((result) => { result.title } ) }
74 |
75 |
{ docTitle }
76 |
add(documentToAdd)}>
77 | Add One
78 |
79 |
addAll(documentsToAdd) }>
80 | Add All
81 |
82 |
{ promise = addAllAsync(documentsToAdd) } }>
83 | Add All Async
84 |
85 |
setDocTitle(getById(documentToAdd.uid)?.title) }>
86 | Get by Id
87 |
88 |
remove(documentToRemove)}>
89 | Remove
90 |
91 |
removeById(documentToRemove.uid)}>
92 | Remove by Id
93 |
94 |
removeAll()}>
95 | Remove All
96 |
97 |
discard(documentToRemove.uid)}>
98 | Discard
99 |
100 |
replace(documentToReplace)}>
101 | Replace One
102 |
103 |
{ clearSearch(); clearSuggestions() }}>
104 | Clear
105 |
106 |
search(MiniSearch.wildcard)}>
107 | Wildcard search
108 |
109 |
110 | )
111 | }
112 |
113 | const testComponent = (Component: React.FC) => {
114 | it('gets a miniSearch prop with the MiniSearch instance', () => {
115 | const wrap = mount( )
116 | expect(wrap.find('ChildComponent')).toHaveProp('miniSearch', expect.any(MiniSearch))
117 | })
118 |
119 | it('performs search', () => {
120 | const wrap = mount( )
121 | expect(wrap.find('.results li')).not.toExist()
122 |
123 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
124 |
125 | const items = wrap.update().find('.results li')
126 |
127 | expect(items).toHaveLength(1)
128 | expect(items.first()).toHaveText(documents[0].title)
129 | expect(wrap.find('ChildComponent').prop('rawResults')).toHaveLength(1)
130 | expect(wrap.find('ChildComponent').prop('rawResults')[0]).toMatchObject({ id: documents[0].uid, terms: ['natura'] })
131 |
132 | wrap.find('input.search').simulate('change', { target: { value: 'xyz' } })
133 | expect(wrap.find('.results li')).not.toExist()
134 | expect(wrap.find('ChildComponent').prop('rawResults')).toHaveLength(0)
135 | })
136 |
137 | it('performs a wildcard search', () => {
138 | const wrap = mount( )
139 | expect(wrap.find('.results li')).not.toExist()
140 |
141 | wrap.find('button.wildcard-search').simulate('click')
142 |
143 | const items = wrap.update().find('.results li')
144 |
145 | expect(items).toHaveLength(documents.length)
146 | expect(items.first()).toHaveText(documents[0].title)
147 | expect(items.at(1)).toHaveText(documents[1].title)
148 | expect(wrap.find('ChildComponent').prop('rawResults')).toHaveLength(documents.length)
149 | expect(wrap.find('ChildComponent').prop('rawResults')[0]).toMatchObject({ id: documents[0].uid, terms: [] })
150 | })
151 |
152 | it('produces auto suggestions', () => {
153 | const wrap = mount( )
154 |
155 | expect(wrap.find('.suggestions li')).not.toExist()
156 |
157 | wrap.find('input.search').simulate('change', { target: { value: 'sel' } })
158 |
159 | const items = wrap.update().find('.suggestions li')
160 |
161 | expect(items).toHaveLength(1)
162 | expect(items.first()).toHaveText('selfish')
163 |
164 | wrap.find('input.search').simulate('change', { target: { value: 'xyz' } })
165 | expect(wrap.find('.suggestions li')).not.toExist()
166 | })
167 |
168 | it('adds a document', () => {
169 | const wrap = mount( )
170 |
171 | wrap.find('button.add').simulate('click')
172 | wrap.find('input.search').simulate('change', { target: { value: 'pista' } })
173 |
174 | const items = wrap.update().find('.results li')
175 | expect(items).toHaveLength(1)
176 | expect(items.first()).toHaveText(documentToAdd.title)
177 | })
178 |
179 | it('adds multiple documents', () => {
180 | const wrap = mount( )
181 |
182 | wrap.find('button.add-all').simulate('click')
183 | wrap.find('input.search').simulate('change', { target: { value: 'pieces' } })
184 |
185 | const items = wrap.update().find('.results li')
186 | expect(items).toHaveLength(2)
187 | expect(items.first()).toHaveText(documentsToAdd[0].title)
188 | expect(items.last()).toHaveText(documentsToAdd[1].title)
189 | })
190 |
191 | it('adds multiple documents asyncronously', async () => {
192 | const wrap = mount( )
193 |
194 | expect(wrap.find('ChildComponent')).toHaveProp('isIndexing', false)
195 |
196 | const acting = act(async () => {
197 | wrap.find('button.add-all-async').simulate('click')
198 | })
199 | expect(wrap.update().find('ChildComponent')).toHaveProp('isIndexing', true)
200 |
201 | await acting
202 | await promise
203 |
204 | expect(wrap.update().find('ChildComponent')).toHaveProp('isIndexing', false)
205 |
206 | wrap.find('input.search').simulate('change', { target: { value: 'pieces' } })
207 |
208 | const items = wrap.update().find('.results li')
209 | expect(items).toHaveLength(2)
210 | expect(items.first()).toHaveText(documentsToAdd[0].title)
211 | expect(items.last()).toHaveText(documentsToAdd[1].title)
212 | })
213 |
214 | it('gets a document by id', () => {
215 | const wrap = mount( )
216 |
217 | wrap.find('button.add').simulate('click')
218 | wrap.find('button.get-by-id').simulate('click')
219 |
220 | const items = wrap.update().find('.doc-title')
221 | expect(items).toHaveLength(1)
222 | expect(items.first()).toHaveText(documentToAdd.title)
223 | })
224 |
225 | it('removes a document', () => {
226 | const wrap = mount( )
227 |
228 | wrap.find('button.remove').simulate('click')
229 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
230 |
231 | const items = wrap.update().find('.results li')
232 | expect(items).not.toExist()
233 |
234 | expect(() => {
235 | wrap.unmount()
236 | }).not.toThrow()
237 | })
238 |
239 | it('removes a document by id', () => {
240 | const wrap = mount( )
241 |
242 | wrap.find('button.remove-by-id').simulate('click')
243 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
244 |
245 | const items = wrap.update().find('.results li')
246 | expect(items).not.toExist()
247 | })
248 |
249 | it('removes all documents', () => {
250 | const wrap = mount( )
251 |
252 | wrap.find('button.remove-all').simulate('click')
253 |
254 | ;['natura', 'selfish'].forEach((query) => {
255 | wrap.find('input.search').simulate('change', { target: { value: query } })
256 | const items = wrap.update().find('.results li')
257 | expect(items).not.toExist()
258 | })
259 | })
260 |
261 | it('removes all documents and re-adds some documents', () => {
262 | const wrap = mount( )
263 |
264 | wrap.find('button.remove-all').simulate('click')
265 | wrap.find('button.add-all').simulate('click')
266 |
267 | wrap.find('input.search').simulate('change', { target: { value: 'pieces' } })
268 |
269 | const items = wrap.update().find('.results li')
270 | expect(items).toHaveLength(2)
271 |
272 | ;['natura', 'selfish'].forEach((query) => {
273 | wrap.find('input.search').simulate('change', { target: { value: query } })
274 | const items = wrap.update().find('.results li')
275 | expect(items).not.toExist()
276 | })
277 | })
278 |
279 | it('discards a document', () => {
280 | const wrap = mount( )
281 |
282 | wrap.find('button.discard').simulate('click')
283 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
284 |
285 | const items = wrap.update().find('.results li')
286 | expect(items).not.toExist()
287 | })
288 |
289 | it('replaces a document', () => {
290 | const wrap = mount( )
291 |
292 | wrap.find('button.replace').simulate('click')
293 | wrap.find('input.search').simulate('change', { target: { value: 'picture' } })
294 |
295 | let items = wrap.update().find('.results li')
296 | expect(items).toHaveLength(1)
297 | expect(items.first()).toHaveText(documentToReplace.title)
298 |
299 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
300 |
301 | items = wrap.update().find('.results li')
302 | expect(items).not.toExist()
303 | })
304 |
305 | it('clears search and auto suggestions', () => {
306 | const wrap = mount( )
307 |
308 | wrap.find('input.search').simulate('change', { target: { value: 'natura' } })
309 | wrap.update()
310 |
311 | expect(wrap.find('ChildComponent').prop('searchResults')).not.toBeNull()
312 | expect(wrap.find('ChildComponent').prop('rawResults')).not.toBeNull()
313 | expect(wrap.find('ChildComponent').prop('suggestions')).not.toBeNull()
314 |
315 | wrap.find('button.clear').simulate('click')
316 | wrap.update()
317 |
318 | expect(wrap.find('ChildComponent').prop('searchResults')).toBeNull()
319 | expect(wrap.find('ChildComponent').prop('rawResults')).toBeNull()
320 | expect(wrap.find('ChildComponent').prop('suggestions')).toBeNull()
321 | })
322 | }
323 |
324 | describe('useMiniSearch', () => {
325 | const MyComponent = ({ documents, options }) => {
326 | const props = useMiniSearch(documents, options)
327 |
328 | return
329 | }
330 |
331 | testComponent(MyComponent)
332 |
333 | describe('does not trigger unintended effects', () => {
334 | const mockDocumentsFetch = () => ({
335 | then: (cb) => cb(documents)
336 | })
337 |
338 | const MyComponent = ({ options }) => {
339 | const props = useMiniSearch([], options)
340 |
341 | const { addAll } = props
342 |
343 | useEffect(() => {
344 | mockDocumentsFetch().then(addAll)
345 | }, [addAll])
346 |
347 | return
348 | }
349 |
350 | testComponent(MyComponent)
351 | })
352 | })
353 |
354 | describe('withMiniSearch', () => {
355 | const MyComponent = withMiniSearch(documents, options, ChildComponent)
356 | const MyComponentWithAdditionalProp = withMiniSearch(documents, options, ChildComponent)
357 |
358 | testComponent(MyComponent)
359 |
360 | it('accepts other props', () => {
361 | const wrap = mount( )
362 |
363 | expect(wrap.find('ChildComponent')).toHaveProp('otherProp', 'foo')
364 | })
365 |
366 | it('sets the display name of the wrapped component', () => {
367 | const wrap = mount( )
368 |
369 | expect(wrap.find('WithMiniSearch(ChildComponent)')).toExist()
370 | })
371 | })
372 |
373 | describe('WithMiniSearch', () => {
374 | const MyComponent = ({ documents, options }: Props) => (
375 |
376 | {
377 | (props) =>
378 | }
379 |
380 | )
381 |
382 | testComponent(MyComponent)
383 | })
384 |
--------------------------------------------------------------------------------
/src/react-minisearch.tsx:
--------------------------------------------------------------------------------
1 | import MiniSearch, { Query, Options, SearchOptions, SearchResult, Suggestion } from 'minisearch'
2 | import React, { useEffect, useState, useRef, PropsWithChildren, useMemo } from 'react'
3 |
4 | export interface UseMiniSearch {
5 | search: (query: Query, options?: SearchOptions) => void,
6 | searchResults: T[] | null,
7 | rawResults: SearchResult[] | null,
8 | autoSuggest: (query: string, options?: SearchOptions) => void,
9 | suggestions: Suggestion[] | null,
10 | add: (document: T) => void,
11 | addAll: (documents: readonly T[]) => void,
12 | addAllAsync: (documents: readonly T[], options?: { chunkSize?: number }) => Promise,
13 | getById: (id: any) => T | null,
14 | remove: (document: T) => void,
15 | removeById: (id: any) => void,
16 | removeAll: (documents?: readonly T[]) => void,
17 | discard: (id: any) => void,
18 | discardAll: (ids: readonly any[]) => void,
19 | replace: (document: T) => void,
20 | isIndexing: boolean,
21 | clearSearch: () => void,
22 | clearSuggestions: () => void,
23 | miniSearch: MiniSearch
24 | }
25 |
26 | export function useMiniSearch (documents: readonly T[], options: Options): UseMiniSearch {
27 | const optionsRef = useRef(options)
28 | const miniSearchRef = useRef>(new MiniSearch(options))
29 | const documentByIdRef = useRef<{ [key: string]: T }>({})
30 |
31 | const [rawResults, setRawResults] = useState(null)
32 | const [searchResults, setSearchResults] = useState(null)
33 | const [suggestions, setSuggestions] = useState(null)
34 | const [isIndexing, setIsIndexing] = useState(false)
35 |
36 | const utils = useMemo(() => {
37 | const miniSearch = miniSearchRef.current
38 | const documentById = documentByIdRef.current
39 | const options = optionsRef.current
40 |
41 | const idField = options.idField || MiniSearch.getDefault('idField') as Options['idField']
42 | const extractField = options.extractField || MiniSearch.getDefault('extractField') as Options['extractField']
43 | const gatherById = (documents) => documents.reduce((byId, doc) => {
44 | const id = extractField(doc, idField)
45 | byId[id] = doc
46 | return byId
47 | }, {})
48 |
49 | const search = (query: string, searchOptions?: SearchOptions): void => {
50 | const results = miniSearch.search(query, searchOptions)
51 | const searchResults = results.map(({ id }) => getById(id))
52 | setSearchResults(searchResults)
53 | setRawResults(results)
54 | }
55 |
56 | const autoSuggest = (query: string, searchOptions?: SearchOptions): void => {
57 | const suggestions = miniSearch.autoSuggest(query, searchOptions)
58 | setSuggestions(suggestions)
59 | }
60 |
61 | const add = (document: T): void => {
62 | documentByIdRef.current[extractField(document, idField)] = document
63 | miniSearch.add(document)
64 | }
65 |
66 | const addAll = (documents: readonly T[]): void => {
67 | const byId = gatherById(documents)
68 | documentByIdRef.current = Object.assign(documentById, byId)
69 | miniSearch.addAll(documents)
70 | }
71 |
72 | const addAllAsync = (documents: readonly T[], options?: { chunkSize?: number }): Promise => {
73 | const byId = gatherById(documents)
74 | documentByIdRef.current = Object.assign(documentById, byId)
75 | setIsIndexing(true)
76 |
77 | return miniSearch.addAllAsync(documents, options || {}).then(() => {
78 | setIsIndexing(false)
79 | })
80 | }
81 |
82 | const getById = (id: any): T | null => {
83 | return documentById[id]
84 | }
85 |
86 | const remove = (document: T): void => {
87 | miniSearch.remove(document)
88 | documentByIdRef.current = removeFromMap(documentById, extractField(document, idField))
89 | }
90 |
91 | const removeById = (id: any): void => {
92 | const document = getById(id)
93 | if (document == null) {
94 | throw new Error(`react-minisearch: document with id ${id} does not exist in the index`)
95 | }
96 | miniSearch.remove(document)
97 | documentByIdRef.current = removeFromMap(documentById, id)
98 | }
99 |
100 | const removeAll = function (documents?: readonly T[]): void {
101 | if (arguments.length === 0) {
102 | miniSearch.removeAll()
103 | documentByIdRef.current = {}
104 | } else {
105 | miniSearch.removeAll(documents)
106 | const idsToRemove = documents.map((doc) => extractField(doc, idField))
107 | documentByIdRef.current = removeManyFromMap(documentById, idsToRemove)
108 | }
109 | }
110 |
111 | const discard = (id: any): void => {
112 | miniSearch.discard(id)
113 | documentByIdRef.current = removeFromMap(documentById, id)
114 | }
115 |
116 | const discardAll = (ids: readonly any[]): void => {
117 | miniSearch.discardAll(ids)
118 | documentByIdRef.current = removeManyFromMap(documentById, ids)
119 | }
120 |
121 | const replace = (document: T): void => {
122 | miniSearch.replace(document)
123 | documentByIdRef.current[extractField(document, idField)] = document
124 | }
125 |
126 | const clearSearch = (): void => {
127 | setSearchResults(null)
128 | setRawResults(null)
129 | }
130 |
131 | const clearSuggestions = (): void => {
132 | setSuggestions(null)
133 | }
134 |
135 | return {
136 | search,
137 | autoSuggest,
138 | add,
139 | addAll,
140 | addAllAsync,
141 | getById,
142 | remove,
143 | removeById,
144 | removeAll,
145 | discard,
146 | discardAll,
147 | replace,
148 | clearSearch,
149 | clearSuggestions,
150 | miniSearch
151 | }
152 | }, [])
153 |
154 | useEffect(() => {
155 | if (utils.miniSearch.documentCount === 0) {
156 | utils.addAll(documents)
157 | }
158 | }, []) // eslint-disable-line react-hooks/exhaustive-deps
159 |
160 | return {
161 | searchResults,
162 | rawResults,
163 | suggestions,
164 | isIndexing,
165 | ...utils,
166 | removeById: utils.discard
167 | }
168 | }
169 |
170 | function removeFromMap (map: { [key: string]: T }, keyToRemove: any): { [key: string]: T } {
171 | delete map[keyToRemove]
172 | return map
173 | }
174 |
175 | function removeManyFromMap (map: { [key: string]: T }, keysToRemove: readonly any[]): { [key: string]: T } {
176 | keysToRemove.forEach((keyToRemove) => {
177 | delete map[keyToRemove]
178 | })
179 | return map
180 | }
181 |
182 | function getDisplayName (Component: React.ComponentType): string {
183 | return Component.displayName || Component.name || 'Component'
184 | }
185 |
186 | export function withMiniSearch (
187 | documents: T[],
188 | options: Options,
189 | Component: React.ComponentType>
190 | ): React.FC {
191 | const WithMiniSearch = (props: OwnProps) => {
192 | const miniSearchProps = useMiniSearch(documents, options)
193 | return
194 | }
195 |
196 | WithMiniSearch.displayName = `WithMiniSearch(${getDisplayName(Component)})`
197 |
198 | return WithMiniSearch
199 | }
200 |
201 | export interface WithMiniSearchProps {
202 | documents: T[],
203 | options: Options,
204 | children: (props: UseMiniSearch) => JSX.Element | null,
205 | }
206 |
207 | export const WithMiniSearch = ({ documents, options, children }: PropsWithChildren>) => {
208 | const miniSearchProps = useMiniSearch(documents, options)
209 | return children(miniSearchProps)
210 | }
211 |
--------------------------------------------------------------------------------
/src/testSetup/jest.ts:
--------------------------------------------------------------------------------
1 | import { configure } from 'enzyme'
2 | import Adapter from '@wojtekmaj/enzyme-adapter-react-17'
3 | import 'jest-enzyme'
4 |
5 | configure({ adapter: new Adapter() })
6 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "jsx": "react",
4 | "esModuleInterop": true,
5 | "sourceMap": true,
6 | "outDir": "./dist",
7 | "module": "es6",
8 | "moduleResolution": "node",
9 | "target": "es3",
10 | "declaration": true,
11 | "rootDir": "src"
12 | },
13 | "include": ["./src/**/*.ts", "./src/**/*.tsx"],
14 | "exclude": ["node_modules"]
15 | }
16 |
--------------------------------------------------------------------------------