feat: cypress E2E testing (#2002)
* feat: cypress * dev: move cypress in dev + setup bash script * fix: cypress docker network host * fix: override cypress baseUrl * fix: cypress ci-run.sh dir path * fix: cypress ci-run vars * fix: cypress missing group * fix: cypress path config * fix: cypress record key * fix: remove cypress run file * fix: cypress mssql delay * misc: use current docker build for cypress tests
This commit is contained in:
		| @@ -1,6 +1,7 @@ | |||||||
| extends: | extends: | ||||||
|   - requarks |   - requarks | ||||||
|   - plugin:vue/strongly-recommended |   - plugin:vue/strongly-recommended | ||||||
|  |   - plugin:cypress/recommended | ||||||
| env: | env: | ||||||
|   node: true |   node: true | ||||||
|   jest: true |   jest: true | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								cypress.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								cypress.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | |||||||
|  | { | ||||||
|  |   "baseUrl": "http://localhost:3000", | ||||||
|  |   "projectId": "r7qxah", | ||||||
|  |   "fixturesFolder": false, | ||||||
|  |   "integrationFolder": "dev/cypress/integration", | ||||||
|  |   "pluginsFile": "dev/cypress/plugins/index.js", | ||||||
|  |   "screenshotsFolder": "dev/cypress/screenshots", | ||||||
|  |   "supportFile": "dev/cypress/support/index.js", | ||||||
|  |   "videosFolder": "dev/cypress/videos" | ||||||
|  | } | ||||||
							
								
								
									
										31
									
								
								dev/cypress/ci-setup.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								dev/cypress/ci-setup.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | |||||||
|  | case $TEST_MATRIX in | ||||||
|  | postgres) | ||||||
|  |   echo "Using PostgreSQL..." | ||||||
|  |   docker run -d -p 5432:5432 --name db --network="host" -e "POSTGRES_PASSWORD=Password123!" -e "POSTGRES_USER=wiki" -e "POSTGRES_DB=wiki" postgres:11 | ||||||
|  |   docker run -d -p 3000:3000 --name wiki --network="host" -e "DB_TYPE=postgres" -e "DB_HOST=localhost" -e "DB_PORT=5432" -e "DB_NAME=wiki" -e "DB_USER=wiki" -e "DB_PASS=Password123!" requarks/wiki:canary-$BUILD_BUILDNUMBER | ||||||
|  |   ;; | ||||||
|  | mysql) | ||||||
|  |   echo "Using MySQL..." | ||||||
|  |   docker run -d -p 3306:3306 --name db --network="host" -e "MYSQL_ROOT_PASSWORD=Password123!" -e "MYSQL_USER=wiki" -e "MYSQL_PASSWORD=Password123!" -e "MYSQL_DATABASE=wiki" mysql:8 | ||||||
|  |   docker run -d -p 3000:3000 --name wiki --network="host" -e "DB_TYPE=mysql" -e "DB_HOST=localhost" -e "DB_PORT=3306" -e "DB_NAME=wiki" -e "DB_USER=wiki" -e "DB_PASS=Password123!" requarks/wiki:canary-$BUILD_BUILDNUMBER | ||||||
|  |   ;; | ||||||
|  | mariadb) | ||||||
|  |   echo "Using MariaDB..." | ||||||
|  |   docker run -d -p 3306:3306 --name db --network="host" -e "MYSQL_ROOT_PASSWORD=Password123!" -e "MYSQL_USER=wiki" -e "MYSQL_PASSWORD=Password123!" -e "MYSQL_DATABASE=wiki" mariadb:10 | ||||||
|  |   docker run -d -p 3000:3000 --name wiki --network="host" -e "DB_TYPE=mariadb" -e "DB_HOST=localhost" -e "DB_PORT=3306" -e "DB_NAME=wiki" -e "DB_USER=wiki" -e "DB_PASS=Password123!" requarks/wiki:canary-$BUILD_BUILDNUMBER | ||||||
|  |   ;; | ||||||
|  | mssql) | ||||||
|  |   echo "Using MS SQL Server..." | ||||||
|  |   docker run -d -p 1433:1433 --name db --network="host" -e "SA_PASSWORD=Password123!" -e "ACCEPT_EULA=wiki" -e "MYSQL_PASSWORD=Password123!" -e "MYSQL_DATABASE=wiki" mcr.microsoft.com/mssql/server:2019-latest | ||||||
|  |   sleep 30 | ||||||
|  |   docker exec db /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Password123!" -Q 'CREATE DATABASE wiki' | ||||||
|  |   docker run -d -p 3000:3000 --name wiki --network="host" -e "DB_TYPE=mssql" -e "DB_HOST=localhost" -e "DB_PORT=1433" -e "DB_NAME=wiki" -e "DB_USER=SA" -e "DB_PASS=Password123!" requarks/wiki:canary-$BUILD_BUILDNUMBER | ||||||
|  |   ;; | ||||||
|  | sqlite) | ||||||
|  |   echo "Using SQLite..." | ||||||
|  |   docker run -d -p 3000:3000 --name wiki --network="host" -e "DB_TYPE=sqlite" -e "DB_FILEPATH=db.sqlite" requarks/wiki:canary-$BUILD_BUILDNUMBER | ||||||
|  |   ;; | ||||||
|  | *) | ||||||
|  |   echo "Invalid DB Type!" | ||||||
|  |   ;; | ||||||
|  | esac | ||||||
							
								
								
									
										30
									
								
								dev/cypress/integration/setup.spec.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								dev/cypress/integration/setup.spec.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | |||||||
|  | /// <reference types="Cypress" /> | ||||||
|  |  | ||||||
|  | describe('Setup', () => { | ||||||
|  |   it('Load the setup page', () => { | ||||||
|  |     cy.visit('/') | ||||||
|  |     cy.contains('You are about to install Wiki.js').should('exist') | ||||||
|  |   }) | ||||||
|  |   it('Enter administrator email address', () => { | ||||||
|  |     cy.get('.v-input').contains('Administrator Email').next('input').click().type('test@example.com') | ||||||
|  |   }) | ||||||
|  |   it('Enter a password', () => { | ||||||
|  |     cy.get('.v-input').contains('Password').next('input').click().type('12345678') | ||||||
|  |     cy.get('.v-input').contains('Confirm Password').next('input').click().type('12345678') | ||||||
|  |   }) | ||||||
|  |   it('Enter a Site URL', () => { | ||||||
|  |     cy.get('.v-input').contains('Site URL').next('input').click().clear().type('http://localhost:3000') | ||||||
|  |   }) | ||||||
|  |   it('Disable Telemetry', () => { | ||||||
|  |     cy.contains('Telemetry').next('.v-input').click() | ||||||
|  |   }) | ||||||
|  |   it('Press Install', () => { | ||||||
|  |     cy.get('.v-card__actions').find('button').click() | ||||||
|  |   }) | ||||||
|  |   it('Wait for install success', () => { | ||||||
|  |     cy.contains('Installation complete!', {timeout: 30000}).should('exist') | ||||||
|  |   }) | ||||||
|  |   it('Redirect to login page', () => { | ||||||
|  |     cy.location('pathname', {timeout: 10000}).should('include', '/login') | ||||||
|  |   }) | ||||||
|  | }) | ||||||
							
								
								
									
										21
									
								
								dev/cypress/plugins/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								dev/cypress/plugins/index.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | |||||||
|  | /// <reference types="cypress" /> | ||||||
|  | // *********************************************************** | ||||||
|  | // This example plugins/index.js can be used to load plugins | ||||||
|  | // | ||||||
|  | // You can change the location of this file or turn off loading | ||||||
|  | // the plugins file with the 'pluginsFile' configuration option. | ||||||
|  | // | ||||||
|  | // You can read more here: | ||||||
|  | // https://on.cypress.io/plugins-guide | ||||||
|  | // *********************************************************** | ||||||
|  |  | ||||||
|  | // This function is called when a project is opened or re-opened (e.g. due to | ||||||
|  | // the project's config changing) | ||||||
|  |  | ||||||
|  | /** | ||||||
|  |  * @type {Cypress.PluginConfig} | ||||||
|  |  */ | ||||||
|  | module.exports = (on, config) => { | ||||||
|  |   // `on` is used to hook into various events Cypress emits | ||||||
|  |   // `config` is the resolved Cypress config | ||||||
|  | } | ||||||
							
								
								
									
										25
									
								
								dev/cypress/support/commands.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								dev/cypress/support/commands.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | |||||||
|  | // *********************************************** | ||||||
|  | // This example commands.js shows you how to | ||||||
|  | // create various custom commands and overwrite | ||||||
|  | // existing commands. | ||||||
|  | // | ||||||
|  | // For more comprehensive examples of custom | ||||||
|  | // commands please read more here: | ||||||
|  | // https://on.cypress.io/custom-commands | ||||||
|  | // *********************************************** | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // -- This is a parent command -- | ||||||
|  | // Cypress.Commands.add("login", (email, password) => { ... }) | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // -- This is a child command -- | ||||||
|  | // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // -- This is a dual command -- | ||||||
|  | // Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... }) | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // -- This will overwrite an existing command -- | ||||||
|  | // Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) | ||||||
							
								
								
									
										20
									
								
								dev/cypress/support/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								dev/cypress/support/index.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | |||||||
|  | // *********************************************************** | ||||||
|  | // This example support/index.js is processed and | ||||||
|  | // loaded automatically before your test files. | ||||||
|  | // | ||||||
|  | // This is a great place to put global configuration and | ||||||
|  | // behavior that modifies Cypress. | ||||||
|  | // | ||||||
|  | // You can change the location of this file or turn off | ||||||
|  | // automatically serving support files with the | ||||||
|  | // 'supportFile' configuration option. | ||||||
|  | // | ||||||
|  | // You can read more here: | ||||||
|  | // https://on.cypress.io/configuration | ||||||
|  | // *********************************************************** | ||||||
|  |  | ||||||
|  | // Import commands.js using ES2015 syntax: | ||||||
|  | import './commands' | ||||||
|  |  | ||||||
|  | // Alternatively you can use CommonJS syntax: | ||||||
|  | // require('./commands') | ||||||
| @@ -10,7 +10,8 @@ | |||||||
|     "dev": "node dev", |     "dev": "node dev", | ||||||
|     "build": "webpack --profile --config dev/webpack/webpack.prod.js", |     "build": "webpack --profile --config dev/webpack/webpack.prod.js", | ||||||
|     "watch": "webpack --config dev/webpack/webpack.dev.js", |     "watch": "webpack --config dev/webpack/webpack.dev.js", | ||||||
|     "test": "eslint --format codeframe --ext .js,.vue . && pug-lint server/views && jest" |     "test": "eslint --format codeframe --ext .js,.vue . && pug-lint server/views && jest", | ||||||
|  |     "cypress:open": "cypress open" | ||||||
|   }, |   }, | ||||||
|   "repository": { |   "repository": { | ||||||
|     "type": "git", |     "type": "git", | ||||||
| @@ -229,12 +230,14 @@ | |||||||
|     "core-js": "3.6.5", |     "core-js": "3.6.5", | ||||||
|     "css-loader": "3.5.3", |     "css-loader": "3.5.3", | ||||||
|     "cssnano": "4.1.10", |     "cssnano": "4.1.10", | ||||||
|  |     "cypress": "4.7.0", | ||||||
|     "d3": "5.16.0", |     "d3": "5.16.0", | ||||||
|     "duplicate-package-checker-webpack-plugin": "3.0.0", |     "duplicate-package-checker-webpack-plugin": "3.0.0", | ||||||
|     "epic-spinners": "1.1.0", |     "epic-spinners": "1.1.0", | ||||||
|     "eslint": "7.1.0", |     "eslint": "7.1.0", | ||||||
|     "eslint-config-requarks": "1.0.7", |     "eslint-config-requarks": "1.0.7", | ||||||
|     "eslint-config-standard": "14.1.1", |     "eslint-config-standard": "14.1.1", | ||||||
|  |     "eslint-plugin-cypress": "2.11.1", | ||||||
|     "eslint-plugin-import": "2.20.2", |     "eslint-plugin-import": "2.20.2", | ||||||
|     "eslint-plugin-node": "11.1.0", |     "eslint-plugin-node": "11.1.0", | ||||||
|     "eslint-plugin-promise": "4.2.1", |     "eslint-plugin-promise": "4.2.1", | ||||||
|   | |||||||
							
								
								
									
										519
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										519
									
								
								yarn.lock
									
									
									
									
									
								
							| @@ -2511,6 +2511,50 @@ | |||||||
|   resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" |   resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" | ||||||
|   integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== |   integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== | ||||||
|  |  | ||||||
|  | "@cypress/listr-verbose-renderer@0.4.1": | ||||||
|  |   version "0.4.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a" | ||||||
|  |   integrity sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo= | ||||||
|  |   dependencies: | ||||||
|  |     chalk "^1.1.3" | ||||||
|  |     cli-cursor "^1.0.2" | ||||||
|  |     date-fns "^1.27.2" | ||||||
|  |     figures "^1.7.0" | ||||||
|  |  | ||||||
|  | "@cypress/request@2.88.5": | ||||||
|  |   version "2.88.5" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.5.tgz#8d7ecd17b53a849cfd5ab06d5abe7d84976375d7" | ||||||
|  |   integrity sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA== | ||||||
|  |   dependencies: | ||||||
|  |     aws-sign2 "~0.7.0" | ||||||
|  |     aws4 "^1.8.0" | ||||||
|  |     caseless "~0.12.0" | ||||||
|  |     combined-stream "~1.0.6" | ||||||
|  |     extend "~3.0.2" | ||||||
|  |     forever-agent "~0.6.1" | ||||||
|  |     form-data "~2.3.2" | ||||||
|  |     har-validator "~5.1.3" | ||||||
|  |     http-signature "~1.2.0" | ||||||
|  |     is-typedarray "~1.0.0" | ||||||
|  |     isstream "~0.1.2" | ||||||
|  |     json-stringify-safe "~5.0.1" | ||||||
|  |     mime-types "~2.1.19" | ||||||
|  |     oauth-sign "~0.9.0" | ||||||
|  |     performance-now "^2.1.0" | ||||||
|  |     qs "~6.5.2" | ||||||
|  |     safe-buffer "^5.1.2" | ||||||
|  |     tough-cookie "~2.5.0" | ||||||
|  |     tunnel-agent "^0.6.0" | ||||||
|  |     uuid "^3.3.2" | ||||||
|  |  | ||||||
|  | "@cypress/xvfb@1.2.4": | ||||||
|  |   version "1.2.4" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a" | ||||||
|  |   integrity sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q== | ||||||
|  |   dependencies: | ||||||
|  |     debug "^3.1.0" | ||||||
|  |     lodash.once "^4.1.1" | ||||||
|  |  | ||||||
| "@exlinc/keycloak-passport@1.0.2": | "@exlinc/keycloak-passport@1.0.2": | ||||||
|   version "1.0.2" |   version "1.0.2" | ||||||
|   resolved "https://registry.yarnpkg.com/@exlinc/keycloak-passport/-/keycloak-passport-1.0.2.tgz#ce3f20185b26abdcd33e340068479b1c2149c2fe" |   resolved "https://registry.yarnpkg.com/@exlinc/keycloak-passport/-/keycloak-passport-1.0.2.tgz#ce3f20185b26abdcd33e340068479b1c2149c2fe" | ||||||
| @@ -2883,6 +2927,13 @@ | |||||||
|     "@root/asn1" "^1.0.0" |     "@root/asn1" "^1.0.0" | ||||||
|     "@root/encoding" "^1.0.1" |     "@root/encoding" "^1.0.1" | ||||||
|  |  | ||||||
|  | "@samverschueren/stream-to-observable@^0.3.0": | ||||||
|  |   version "0.3.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" | ||||||
|  |   integrity sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg== | ||||||
|  |   dependencies: | ||||||
|  |     any-observable "^0.3.0" | ||||||
|  |  | ||||||
| "@sinonjs/commons@^1.7.0": | "@sinonjs/commons@^1.7.0": | ||||||
|   version "1.7.0" |   version "1.7.0" | ||||||
|   resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.0.tgz#f90ffc52a2e519f018b13b6c4da03cbff36ebed6" |   resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.0.tgz#f90ffc52a2e519f018b13b6c4da03cbff36ebed6" | ||||||
| @@ -3268,6 +3319,16 @@ | |||||||
|     "@types/express-serve-static-core" "*" |     "@types/express-serve-static-core" "*" | ||||||
|     "@types/mime" "*" |     "@types/mime" "*" | ||||||
|  |  | ||||||
|  | "@types/sinonjs__fake-timers@6.0.1": | ||||||
|  |   version "6.0.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.1.tgz#681df970358c82836b42f989188d133e218c458e" | ||||||
|  |   integrity sha512-yYezQwGWty8ziyYLdZjwxyMb0CZR49h8JALHGrxjQHWlqGgc8kLdHEgWrgL0uZ29DMvEVBDnHU2Wg36zKSIUtA== | ||||||
|  |  | ||||||
|  | "@types/sizzle@2.3.2": | ||||||
|  |   version "2.3.2" | ||||||
|  |   resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47" | ||||||
|  |   integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg== | ||||||
|  |  | ||||||
| "@types/source-list-map@*": | "@types/source-list-map@*": | ||||||
|   version "0.1.2" |   version "0.1.2" | ||||||
|   resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" |   resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" | ||||||
| @@ -3879,6 +3940,11 @@ ansi-regex@^5.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" |   resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" | ||||||
|   integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== |   integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== | ||||||
|  |  | ||||||
|  | ansi-styles@^2.2.1: | ||||||
|  |   version "2.2.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" | ||||||
|  |   integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= | ||||||
|  |  | ||||||
| ansi-styles@^3.2.0, ansi-styles@^3.2.1: | ansi-styles@^3.2.0, ansi-styles@^3.2.1: | ||||||
|   version "3.2.1" |   version "3.2.1" | ||||||
|   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" |   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" | ||||||
| @@ -3906,6 +3972,11 @@ ansicolors@~0.3.2: | |||||||
|   resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" |   resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" | ||||||
|   integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= |   integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= | ||||||
|  |  | ||||||
|  | any-observable@^0.3.0: | ||||||
|  |   version "0.3.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" | ||||||
|  |   integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== | ||||||
|  |  | ||||||
| any-promise@^1.1.0: | any-promise@^1.1.0: | ||||||
|   version "1.3.0" |   version "1.3.0" | ||||||
|   resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" |   resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" | ||||||
| @@ -4282,6 +4353,11 @@ aproba@^1.0.3, aproba@^1.1.1: | |||||||
|   resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" |   resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" | ||||||
|   integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== |   integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== | ||||||
|  |  | ||||||
|  | arch@2.1.1: | ||||||
|  |   version "2.1.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" | ||||||
|  |   integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg== | ||||||
|  |  | ||||||
| are-we-there-yet@~1.1.2: | are-we-there-yet@~1.1.2: | ||||||
|   version "1.1.5" |   version "1.1.5" | ||||||
|   resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" |   resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" | ||||||
| @@ -4479,7 +4555,7 @@ async@^2.6.1: | |||||||
|   dependencies: |   dependencies: | ||||||
|     lodash "^4.17.14" |     lodash "^4.17.14" | ||||||
|  |  | ||||||
| async@^3.0.1, async@^3.2.0: | async@^3.0.1, async@^3.1.0, async@^3.2.0: | ||||||
|   version "3.2.0" |   version "3.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" |   resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" | ||||||
|   integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== |   integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== | ||||||
| @@ -5094,6 +5170,11 @@ bson@^1.1.4: | |||||||
|   resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.4.tgz#f76870d799f15b854dffb7ee32f0a874797f7e89" |   resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.4.tgz#f76870d799f15b854dffb7ee32f0a874797f7e89" | ||||||
|   integrity sha512-S/yKGU1syOMzO86+dGpg2qGoDL0zvzcb262G+gqEy6TgP6rt6z6qxSFX/8X6vLC91P7G7C3nLs0+bvDzmvBA3Q== |   integrity sha512-S/yKGU1syOMzO86+dGpg2qGoDL0zvzcb262G+gqEy6TgP6rt6z6qxSFX/8X6vLC91P7G7C3nLs0+bvDzmvBA3Q== | ||||||
|  |  | ||||||
|  | buffer-crc32@~0.2.3: | ||||||
|  |   version "0.2.13" | ||||||
|  |   resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" | ||||||
|  |   integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= | ||||||
|  |  | ||||||
| buffer-equal-constant-time@1.0.1: | buffer-equal-constant-time@1.0.1: | ||||||
|   version "1.0.1" |   version "1.0.1" | ||||||
|   resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" |   resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" | ||||||
| @@ -5252,6 +5333,11 @@ cache-manager@^2.0.0: | |||||||
|     async "1.5.2" |     async "1.5.2" | ||||||
|     lru-cache "4.0.0" |     lru-cache "4.0.0" | ||||||
|  |  | ||||||
|  | cachedir@2.3.0: | ||||||
|  |   version "2.3.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" | ||||||
|  |   integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== | ||||||
|  |  | ||||||
| caller-callsite@^2.0.0: | caller-callsite@^2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" |   resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" | ||||||
| @@ -5413,6 +5499,17 @@ chalk@4.0.0, chalk@^4.0.0: | |||||||
|     ansi-styles "^4.1.0" |     ansi-styles "^4.1.0" | ||||||
|     supports-color "^7.1.0" |     supports-color "^7.1.0" | ||||||
|  |  | ||||||
|  | chalk@^1.0.0, chalk@^1.1.3: | ||||||
|  |   version "1.1.3" | ||||||
|  |   resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" | ||||||
|  |   integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= | ||||||
|  |   dependencies: | ||||||
|  |     ansi-styles "^2.2.1" | ||||||
|  |     escape-string-regexp "^1.0.2" | ||||||
|  |     has-ansi "^2.0.0" | ||||||
|  |     strip-ansi "^3.0.0" | ||||||
|  |     supports-color "^2.0.0" | ||||||
|  |  | ||||||
| char-regex@^1.0.2: | char-regex@^1.0.2: | ||||||
|   version "1.0.2" |   version "1.0.2" | ||||||
|   resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" |   resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" | ||||||
| @@ -5458,6 +5555,11 @@ chartjs-color@^2.1.0: | |||||||
|     chartjs-color-string "^0.6.0" |     chartjs-color-string "^0.6.0" | ||||||
|     color-convert "^0.5.3" |     color-convert "^0.5.3" | ||||||
|  |  | ||||||
|  | check-more-types@2.24.0: | ||||||
|  |   version "2.24.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" | ||||||
|  |   integrity sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA= | ||||||
|  |  | ||||||
| check-types@^8.0.3: | check-types@^8.0.3: | ||||||
|   version "8.0.3" |   version "8.0.3" | ||||||
|   resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" |   resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" | ||||||
| @@ -5601,7 +5703,14 @@ clean-webpack-plugin@3.0.0: | |||||||
|     "@types/webpack" "^4.4.31" |     "@types/webpack" "^4.4.31" | ||||||
|     del "^4.1.1" |     del "^4.1.1" | ||||||
|  |  | ||||||
| cli-cursor@^2.0.0: | cli-cursor@^1.0.2: | ||||||
|  |   version "1.0.2" | ||||||
|  |   resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" | ||||||
|  |   integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc= | ||||||
|  |   dependencies: | ||||||
|  |     restore-cursor "^1.0.1" | ||||||
|  |  | ||||||
|  | cli-cursor@^2.0.0, cli-cursor@^2.1.0: | ||||||
|   version "2.1.0" |   version "2.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" |   resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" | ||||||
|   integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= |   integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= | ||||||
| @@ -5615,6 +5724,24 @@ cli-cursor@^3.1.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     restore-cursor "^3.1.0" |     restore-cursor "^3.1.0" | ||||||
|  |  | ||||||
|  | cli-table3@0.5.1: | ||||||
|  |   version "0.5.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" | ||||||
|  |   integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== | ||||||
|  |   dependencies: | ||||||
|  |     object-assign "^4.1.0" | ||||||
|  |     string-width "^2.1.1" | ||||||
|  |   optionalDependencies: | ||||||
|  |     colors "^1.1.2" | ||||||
|  |  | ||||||
|  | cli-truncate@^0.2.1: | ||||||
|  |   version "0.2.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" | ||||||
|  |   integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= | ||||||
|  |   dependencies: | ||||||
|  |     slice-ansi "0.0.4" | ||||||
|  |     string-width "^1.0.1" | ||||||
|  |  | ||||||
| cli-width@^2.0.0: | cli-width@^2.0.0: | ||||||
|   version "2.2.0" |   version "2.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" |   resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" | ||||||
| @@ -5825,6 +5952,11 @@ colornames@^1.1.1: | |||||||
|   resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" |   resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" | ||||||
|   integrity sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y= |   integrity sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y= | ||||||
|  |  | ||||||
|  | colors@^1.1.2: | ||||||
|  |   version "1.4.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" | ||||||
|  |   integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== | ||||||
|  |  | ||||||
| colors@^1.2.1: | colors@^1.2.1: | ||||||
|   version "1.3.3" |   version "1.3.3" | ||||||
|   resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" |   resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" | ||||||
| @@ -5855,6 +5987,11 @@ commander@2: | |||||||
|   resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" |   resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" | ||||||
|   integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== |   integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== | ||||||
|  |  | ||||||
|  | commander@4.1.0: | ||||||
|  |   version "4.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.0.tgz#545983a0603fe425bc672d66c9e3c89c42121a83" | ||||||
|  |   integrity sha512-NIQrwvv9V39FHgGFm36+U9SMQzbiHvU79k+iADraJTpmrFFfx7Ds0IvDoAdZsDrknlkRk14OYoWXb57uTh7/sw== | ||||||
|  |  | ||||||
| commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commander@^2.9.0, commander@~2.20.0: | commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commander@^2.9.0, commander@~2.20.0: | ||||||
|   version "2.20.0" |   version "2.20.0" | ||||||
|   resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" |   resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" | ||||||
| @@ -5875,6 +6012,11 @@ commander@^5.1.0: | |||||||
|   resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" |   resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" | ||||||
|   integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== |   integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== | ||||||
|  |  | ||||||
|  | common-tags@1.8.0: | ||||||
|  |   version "1.8.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" | ||||||
|  |   integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== | ||||||
|  |  | ||||||
| commondir@^1.0.1: | commondir@^1.0.1: | ||||||
|   version "1.0.1" |   version "1.0.1" | ||||||
|   resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" |   resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" | ||||||
| @@ -5917,7 +6059,7 @@ concat-map@0.0.1: | |||||||
|   resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" |   resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | ||||||
|   integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= |   integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= | ||||||
|  |  | ||||||
| concat-stream@^1.5.0, concat-stream@^1.5.2: | concat-stream@^1.5.0, concat-stream@^1.5.2, concat-stream@^1.6.2: | ||||||
|   version "1.6.2" |   version "1.6.2" | ||||||
|   resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" |   resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" | ||||||
|   integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== |   integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== | ||||||
| @@ -6515,6 +6657,49 @@ cyclist@^1.0.1: | |||||||
|   resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" |   resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" | ||||||
|   integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= |   integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= | ||||||
|  |  | ||||||
|  | cypress@4.7.0: | ||||||
|  |   version "4.7.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/cypress/-/cypress-4.7.0.tgz#3ea29bddaf9a1faeaa5b8d54b60a84ed1cafa83d" | ||||||
|  |   integrity sha512-Vav6wUFhPRlImIND/2lOQlUnAWzgCC/iXyJlJjX9nJOJul5LC1vUpf/m8Oiae870PFPyT0ZLLwPHKTXZNdXmHw== | ||||||
|  |   dependencies: | ||||||
|  |     "@cypress/listr-verbose-renderer" "0.4.1" | ||||||
|  |     "@cypress/request" "2.88.5" | ||||||
|  |     "@cypress/xvfb" "1.2.4" | ||||||
|  |     "@types/sinonjs__fake-timers" "6.0.1" | ||||||
|  |     "@types/sizzle" "2.3.2" | ||||||
|  |     arch "2.1.1" | ||||||
|  |     bluebird "3.7.2" | ||||||
|  |     cachedir "2.3.0" | ||||||
|  |     chalk "2.4.2" | ||||||
|  |     check-more-types "2.24.0" | ||||||
|  |     cli-table3 "0.5.1" | ||||||
|  |     commander "4.1.0" | ||||||
|  |     common-tags "1.8.0" | ||||||
|  |     debug "4.1.1" | ||||||
|  |     eventemitter2 "4.1.2" | ||||||
|  |     execa "1.0.0" | ||||||
|  |     executable "4.1.1" | ||||||
|  |     extract-zip "1.7.0" | ||||||
|  |     fs-extra "8.1.0" | ||||||
|  |     getos "3.1.4" | ||||||
|  |     is-ci "2.0.0" | ||||||
|  |     is-installed-globally "0.1.0" | ||||||
|  |     lazy-ass "1.6.0" | ||||||
|  |     listr "0.14.3" | ||||||
|  |     lodash "4.17.15" | ||||||
|  |     log-symbols "3.0.0" | ||||||
|  |     minimist "1.2.5" | ||||||
|  |     moment "2.24.0" | ||||||
|  |     ospath "1.2.2" | ||||||
|  |     pretty-bytes "5.3.0" | ||||||
|  |     ramda "0.26.1" | ||||||
|  |     request-progress "3.0.0" | ||||||
|  |     supports-color "7.1.0" | ||||||
|  |     tmp "0.1.0" | ||||||
|  |     untildify "4.0.0" | ||||||
|  |     url "0.11.0" | ||||||
|  |     yauzl "2.10.0" | ||||||
|  |  | ||||||
| d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0: | d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0: | ||||||
|   version "1.2.4" |   version "1.2.4" | ||||||
|   resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" |   resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" | ||||||
| @@ -6842,6 +7027,11 @@ data-urls@^2.0.0: | |||||||
|     whatwg-mimetype "^2.3.0" |     whatwg-mimetype "^2.3.0" | ||||||
|     whatwg-url "^8.0.0" |     whatwg-url "^8.0.0" | ||||||
|  |  | ||||||
|  | date-fns@^1.27.2: | ||||||
|  |   version "1.30.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" | ||||||
|  |   integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== | ||||||
|  |  | ||||||
| date-now@^0.1.4: | date-now@^0.1.4: | ||||||
|   version "0.1.4" |   version "0.1.4" | ||||||
|   resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" |   resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" | ||||||
| @@ -7343,6 +7533,11 @@ electron-to-chromium@^1.3.413: | |||||||
|   resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.453.tgz#758a8565a64b7889b27132a51d2abb8b135c9d01" |   resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.453.tgz#758a8565a64b7889b27132a51d2abb8b135c9d01" | ||||||
|   integrity sha512-IQbCfjJR0NDDn/+vojTlq7fPSREcALtF8M1n01gw7nQghCtfFYrJ2dfhsp8APr8bANoFC8vRTFVXMOGpT0eetw== |   integrity sha512-IQbCfjJR0NDDn/+vojTlq7fPSREcALtF8M1n01gw7nQghCtfFYrJ2dfhsp8APr8bANoFC8vRTFVXMOGpT0eetw== | ||||||
|  |  | ||||||
|  | elegant-spinner@^1.0.1: | ||||||
|  |   version "1.0.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" | ||||||
|  |   integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= | ||||||
|  |  | ||||||
| elliptic@^6.0.0, elliptic@^6.2.3: | elliptic@^6.0.0, elliptic@^6.2.3: | ||||||
|   version "6.5.1" |   version "6.5.1" | ||||||
|   resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" |   resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" | ||||||
| @@ -7560,7 +7755,7 @@ escape-html@^1.0.3, escape-html@~1.0.3: | |||||||
|   resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" |   resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" | ||||||
|   integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= |   integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= | ||||||
|  |  | ||||||
| escape-string-regexp@^1.0.5: | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: | ||||||
|   version "1.0.5" |   version "1.0.5" | ||||||
|   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | ||||||
|   integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= |   integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | ||||||
| @@ -7613,6 +7808,13 @@ eslint-module-utils@^2.4.1: | |||||||
|     debug "^2.6.9" |     debug "^2.6.9" | ||||||
|     pkg-dir "^2.0.0" |     pkg-dir "^2.0.0" | ||||||
|  |  | ||||||
|  | eslint-plugin-cypress@2.11.1: | ||||||
|  |   version "2.11.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.1.tgz#a945e2774b88211e2c706a059d431e262b5c2862" | ||||||
|  |   integrity sha512-MxMYoReSO5+IZMGgpBZHHSx64zYPSPTpXDwsgW7ChlJTF/sA+obqRbHplxD6sBStE+g4Mi0LCLkG4t9liu//mQ== | ||||||
|  |   dependencies: | ||||||
|  |     globals "^11.12.0" | ||||||
|  |  | ||||||
| eslint-plugin-es@^3.0.0: | eslint-plugin-es@^3.0.0: | ||||||
|   version "3.0.0" |   version "3.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.0.tgz#98cb1bc8ab0aa807977855e11ad9d1c9422d014b" |   resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.0.tgz#98cb1bc8ab0aa807977855e11ad9d1c9422d014b" | ||||||
| @@ -7809,6 +8011,11 @@ etag@~1.8.1: | |||||||
|   resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" |   resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" | ||||||
|   integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= |   integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= | ||||||
|  |  | ||||||
|  | eventemitter2@4.1.2: | ||||||
|  |   version "4.1.2" | ||||||
|  |   resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-4.1.2.tgz#0e1a8477af821a6ef3995b311bf74c23a5247f15" | ||||||
|  |   integrity sha1-DhqEd6+CGm7zmVsxG/dMI6UkfxU= | ||||||
|  |  | ||||||
| eventemitter2@6.4.1: | eventemitter2@6.4.1: | ||||||
|   version "6.4.1" |   version "6.4.1" | ||||||
|   resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.1.tgz#7fb2dd95f9f7c3c615e848d8a91a18a65feb51b3" |   resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.1.tgz#7fb2dd95f9f7c3c615e848d8a91a18a65feb51b3" | ||||||
| @@ -7842,7 +8049,7 @@ exec-sh@^0.3.2: | |||||||
|   resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" |   resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" | ||||||
|   integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== |   integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== | ||||||
|  |  | ||||||
| execa@^1.0.0: | execa@1.0.0, execa@^1.0.0: | ||||||
|   version "1.0.0" |   version "1.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" |   resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" | ||||||
|   integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== |   integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== | ||||||
| @@ -7870,6 +8077,18 @@ execa@^4.0.0: | |||||||
|     signal-exit "^3.0.2" |     signal-exit "^3.0.2" | ||||||
|     strip-final-newline "^2.0.0" |     strip-final-newline "^2.0.0" | ||||||
|  |  | ||||||
|  | executable@4.1.1: | ||||||
|  |   version "4.1.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" | ||||||
|  |   integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== | ||||||
|  |   dependencies: | ||||||
|  |     pify "^2.2.0" | ||||||
|  |  | ||||||
|  | exit-hook@^1.0.0: | ||||||
|  |   version "1.1.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" | ||||||
|  |   integrity sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g= | ||||||
|  |  | ||||||
| exit@^0.1.2: | exit@^0.1.2: | ||||||
|   version "0.1.2" |   version "0.1.2" | ||||||
|   resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" |   resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" | ||||||
| @@ -8008,6 +8227,16 @@ extglob@^2.0.4: | |||||||
|     snapdragon "^0.8.1" |     snapdragon "^0.8.1" | ||||||
|     to-regex "^3.0.1" |     to-regex "^3.0.1" | ||||||
|  |  | ||||||
|  | extract-zip@1.7.0: | ||||||
|  |   version "1.7.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" | ||||||
|  |   integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== | ||||||
|  |   dependencies: | ||||||
|  |     concat-stream "^1.6.2" | ||||||
|  |     debug "^2.6.9" | ||||||
|  |     mkdirp "^0.5.4" | ||||||
|  |     yauzl "^2.10.0" | ||||||
|  |  | ||||||
| extsprintf@1.2.0: | extsprintf@1.2.0: | ||||||
|   version "1.2.0" |   version "1.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz#5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529" |   resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz#5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529" | ||||||
| @@ -8079,6 +8308,13 @@ fb-watchman@^2.0.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     bser "^2.0.0" |     bser "^2.0.0" | ||||||
|  |  | ||||||
|  | fd-slicer@~1.1.0: | ||||||
|  |   version "1.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" | ||||||
|  |   integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= | ||||||
|  |   dependencies: | ||||||
|  |     pend "~1.2.0" | ||||||
|  |  | ||||||
| fecha@^2.3.3: | fecha@^2.3.3: | ||||||
|   version "2.3.3" |   version "2.3.3" | ||||||
|   resolved "https://registry.yarnpkg.com/fecha/-/fecha-2.3.3.tgz#948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd" |   resolved "https://registry.yarnpkg.com/fecha/-/fecha-2.3.3.tgz#948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd" | ||||||
| @@ -8096,13 +8332,21 @@ figgy-pudding@^3.5.1: | |||||||
|   resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" |   resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" | ||||||
|   integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== |   integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== | ||||||
|  |  | ||||||
| figures@2.0.x: | figures@2.0.x, figures@^2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" |   resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" | ||||||
|   integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= |   integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= | ||||||
|   dependencies: |   dependencies: | ||||||
|     escape-string-regexp "^1.0.5" |     escape-string-regexp "^1.0.5" | ||||||
|  |  | ||||||
|  | figures@^1.7.0: | ||||||
|  |   version "1.7.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" | ||||||
|  |   integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= | ||||||
|  |   dependencies: | ||||||
|  |     escape-string-regexp "^1.0.5" | ||||||
|  |     object-assign "^4.1.0" | ||||||
|  |  | ||||||
| figures@^3.0.0: | figures@^3.0.0: | ||||||
|   version "3.0.0" |   version "3.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/figures/-/figures-3.0.0.tgz#756275c964646163cc6f9197c7a0295dbfd04de9" |   resolved "https://registry.yarnpkg.com/figures/-/figures-3.0.0.tgz#756275c964646163cc6f9197c7a0295dbfd04de9" | ||||||
| @@ -8414,6 +8658,15 @@ fs-constants@^1.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" |   resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" | ||||||
|   integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== |   integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== | ||||||
|  |  | ||||||
|  | fs-extra@8.1.0, fs-extra@^8.0.1: | ||||||
|  |   version "8.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" | ||||||
|  |   integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== | ||||||
|  |   dependencies: | ||||||
|  |     graceful-fs "^4.2.0" | ||||||
|  |     jsonfile "^4.0.0" | ||||||
|  |     universalify "^0.1.0" | ||||||
|  |  | ||||||
| fs-extra@9.0.0: | fs-extra@9.0.0: | ||||||
|   version "9.0.0" |   version "9.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" |   resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" | ||||||
| @@ -8424,15 +8677,6 @@ fs-extra@9.0.0: | |||||||
|     jsonfile "^6.0.1" |     jsonfile "^6.0.1" | ||||||
|     universalify "^1.0.0" |     universalify "^1.0.0" | ||||||
|  |  | ||||||
| fs-extra@^8.0.1: |  | ||||||
|   version "8.1.0" |  | ||||||
|   resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" |  | ||||||
|   integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== |  | ||||||
|   dependencies: |  | ||||||
|     graceful-fs "^4.2.0" |  | ||||||
|     jsonfile "^4.0.0" |  | ||||||
|     universalify "^0.1.0" |  | ||||||
|  |  | ||||||
| fs-minipass@^1.2.5: | fs-minipass@^1.2.5: | ||||||
|   version "1.2.6" |   version "1.2.6" | ||||||
|   resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" |   resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" | ||||||
| @@ -8555,6 +8799,13 @@ getopts@2.2.5: | |||||||
|   resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz#67a0fe471cacb9c687d817cab6450b96dde8313b" |   resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz#67a0fe471cacb9c687d817cab6450b96dde8313b" | ||||||
|   integrity sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA== |   integrity sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA== | ||||||
|  |  | ||||||
|  | getos@3.1.4: | ||||||
|  |   version "3.1.4" | ||||||
|  |   resolved "https://registry.yarnpkg.com/getos/-/getos-3.1.4.tgz#29cdf240ed10a70c049add7b6f8cb08c81876faf" | ||||||
|  |   integrity sha512-UORPzguEB/7UG5hqiZai8f0vQ7hzynMQyJLxStoQ8dPGAcmgsfXOPA4iE/fGtweHYkK+z4zc9V0g+CIFRf5HYw== | ||||||
|  |   dependencies: | ||||||
|  |     async "^3.1.0" | ||||||
|  |  | ||||||
| getos@3.2.1: | getos@3.2.1: | ||||||
|   version "3.2.1" |   version "3.2.1" | ||||||
|   resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" |   resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" | ||||||
| @@ -8621,6 +8872,13 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: | |||||||
|     once "^1.3.0" |     once "^1.3.0" | ||||||
|     path-is-absolute "^1.0.0" |     path-is-absolute "^1.0.0" | ||||||
|  |  | ||||||
|  | global-dirs@^0.1.0: | ||||||
|  |   version "0.1.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" | ||||||
|  |   integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= | ||||||
|  |   dependencies: | ||||||
|  |     ini "^1.3.4" | ||||||
|  |  | ||||||
| global-modules@2.0.0: | global-modules@2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" |   resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" | ||||||
| @@ -8657,7 +8915,7 @@ global-prefix@^3.0.0: | |||||||
|     kind-of "^6.0.2" |     kind-of "^6.0.2" | ||||||
|     which "^1.3.1" |     which "^1.3.1" | ||||||
|  |  | ||||||
| globals@^11.1.0: | globals@^11.1.0, globals@^11.12.0: | ||||||
|   version "11.12.0" |   version "11.12.0" | ||||||
|   resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" |   resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" | ||||||
|   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== |   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== | ||||||
| @@ -8854,6 +9112,13 @@ har-validator@~5.1.0, har-validator@~5.1.3: | |||||||
|     ajv "^6.5.5" |     ajv "^6.5.5" | ||||||
|     har-schema "^2.0.0" |     har-schema "^2.0.0" | ||||||
|  |  | ||||||
|  | has-ansi@^2.0.0: | ||||||
|  |   version "2.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" | ||||||
|  |   integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= | ||||||
|  |   dependencies: | ||||||
|  |     ansi-regex "^2.0.0" | ||||||
|  |  | ||||||
| has-flag@^3.0.0: | has-flag@^3.0.0: | ||||||
|   version "3.0.0" |   version "3.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" |   resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | ||||||
| @@ -9292,6 +9557,11 @@ imurmurhash@^0.1.4: | |||||||
|   resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" |   resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" | ||||||
|   integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= |   integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= | ||||||
|  |  | ||||||
|  | indent-string@^3.0.0: | ||||||
|  |   version "3.2.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" | ||||||
|  |   integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= | ||||||
|  |  | ||||||
| indent-string@^4.0.0: | indent-string@^4.0.0: | ||||||
|   version "4.0.0" |   version "4.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" |   resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" | ||||||
| @@ -9474,7 +9744,7 @@ is-callable@^1.1.4: | |||||||
|   resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" |   resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" | ||||||
|   integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== |   integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== | ||||||
|  |  | ||||||
| is-ci@^2.0.0: | is-ci@2.0.0, is-ci@^2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" |   resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" | ||||||
|   integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== |   integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== | ||||||
| @@ -9616,6 +9886,14 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: | |||||||
|   dependencies: |   dependencies: | ||||||
|     is-extglob "^2.1.1" |     is-extglob "^2.1.1" | ||||||
|  |  | ||||||
|  | is-installed-globally@0.1.0: | ||||||
|  |   version "0.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" | ||||||
|  |   integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= | ||||||
|  |   dependencies: | ||||||
|  |     global-dirs "^0.1.0" | ||||||
|  |     is-path-inside "^1.0.0" | ||||||
|  |  | ||||||
| is-invalid-path@^0.1.0: | is-invalid-path@^0.1.0: | ||||||
|   version "0.1.0" |   version "0.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34" |   resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34" | ||||||
| @@ -9640,6 +9918,13 @@ is-obj@^1.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" |   resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" | ||||||
|   integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= |   integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= | ||||||
|  |  | ||||||
|  | is-observable@^1.1.0: | ||||||
|  |   version "1.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" | ||||||
|  |   integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== | ||||||
|  |   dependencies: | ||||||
|  |     symbol-observable "^1.1.0" | ||||||
|  |  | ||||||
| is-path-cwd@^2.0.0: | is-path-cwd@^2.0.0: | ||||||
|   version "2.2.0" |   version "2.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" |   resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" | ||||||
| @@ -9652,6 +9937,13 @@ is-path-in-cwd@^2.0.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     is-path-inside "^2.1.0" |     is-path-inside "^2.1.0" | ||||||
|  |  | ||||||
|  | is-path-inside@^1.0.0: | ||||||
|  |   version "1.0.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" | ||||||
|  |   integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= | ||||||
|  |   dependencies: | ||||||
|  |     path-is-inside "^1.0.1" | ||||||
|  |  | ||||||
| is-path-inside@^2.1.0: | is-path-inside@^2.1.0: | ||||||
|   version "2.1.0" |   version "2.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" |   resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" | ||||||
| @@ -10565,6 +10857,11 @@ last-call-webpack-plugin@^3.0.0: | |||||||
|     lodash "^4.17.5" |     lodash "^4.17.5" | ||||||
|     webpack-sources "^1.1.0" |     webpack-sources "^1.1.0" | ||||||
|  |  | ||||||
|  | lazy-ass@1.6.0: | ||||||
|  |   version "1.6.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" | ||||||
|  |   integrity sha1-eZllXoZGwX8In90YfRUNMyTVRRM= | ||||||
|  |  | ||||||
| lcid@^1.0.0: | lcid@^1.0.0: | ||||||
|   version "1.0.0" |   version "1.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" |   resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" | ||||||
| @@ -10668,6 +10965,50 @@ linkify-it@^3.0.1: | |||||||
|   dependencies: |   dependencies: | ||||||
|     uc.micro "^1.0.1" |     uc.micro "^1.0.1" | ||||||
|  |  | ||||||
|  | listr-silent-renderer@^1.1.1: | ||||||
|  |   version "1.1.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" | ||||||
|  |   integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= | ||||||
|  |  | ||||||
|  | listr-update-renderer@^0.5.0: | ||||||
|  |   version "0.5.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" | ||||||
|  |   integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== | ||||||
|  |   dependencies: | ||||||
|  |     chalk "^1.1.3" | ||||||
|  |     cli-truncate "^0.2.1" | ||||||
|  |     elegant-spinner "^1.0.1" | ||||||
|  |     figures "^1.7.0" | ||||||
|  |     indent-string "^3.0.0" | ||||||
|  |     log-symbols "^1.0.2" | ||||||
|  |     log-update "^2.3.0" | ||||||
|  |     strip-ansi "^3.0.1" | ||||||
|  |  | ||||||
|  | listr-verbose-renderer@^0.5.0: | ||||||
|  |   version "0.5.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" | ||||||
|  |   integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== | ||||||
|  |   dependencies: | ||||||
|  |     chalk "^2.4.1" | ||||||
|  |     cli-cursor "^2.1.0" | ||||||
|  |     date-fns "^1.27.2" | ||||||
|  |     figures "^2.0.0" | ||||||
|  |  | ||||||
|  | listr@0.14.3: | ||||||
|  |   version "0.14.3" | ||||||
|  |   resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" | ||||||
|  |   integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== | ||||||
|  |   dependencies: | ||||||
|  |     "@samverschueren/stream-to-observable" "^0.3.0" | ||||||
|  |     is-observable "^1.1.0" | ||||||
|  |     is-promise "^2.1.0" | ||||||
|  |     is-stream "^1.1.0" | ||||||
|  |     listr-silent-renderer "^1.1.1" | ||||||
|  |     listr-update-renderer "^0.5.0" | ||||||
|  |     listr-verbose-renderer "^0.5.0" | ||||||
|  |     p-map "^2.0.0" | ||||||
|  |     rxjs "^6.3.3" | ||||||
|  |  | ||||||
| load-json-file@^1.0.0: | load-json-file@^1.0.0: | ||||||
|   version "1.1.0" |   version "1.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" |   resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" | ||||||
| @@ -10814,7 +11155,7 @@ lodash.memoize@^4.1.2: | |||||||
|   resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" |   resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" | ||||||
|   integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= |   integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= | ||||||
|  |  | ||||||
| lodash.once@^4.0.0: | lodash.once@^4.0.0, lodash.once@^4.1.1: | ||||||
|   version "4.1.1" |   version "4.1.1" | ||||||
|   resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" |   resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" | ||||||
|   integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= |   integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= | ||||||
| @@ -10859,7 +11200,21 @@ lodash@4.17.15, lodash@^4.11.2, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.13 | |||||||
|   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" |   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" | ||||||
|   integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== |   integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== | ||||||
|  |  | ||||||
| log-update@2.3.x: | log-symbols@3.0.0: | ||||||
|  |   version "3.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" | ||||||
|  |   integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== | ||||||
|  |   dependencies: | ||||||
|  |     chalk "^2.4.2" | ||||||
|  |  | ||||||
|  | log-symbols@^1.0.2: | ||||||
|  |   version "1.0.2" | ||||||
|  |   resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" | ||||||
|  |   integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= | ||||||
|  |   dependencies: | ||||||
|  |     chalk "^1.0.0" | ||||||
|  |  | ||||||
|  | log-update@2.3.x, log-update@^2.3.0: | ||||||
|   version "2.3.0" |   version "2.3.0" | ||||||
|   resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" |   resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" | ||||||
|   integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= |   integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= | ||||||
| @@ -11324,16 +11679,16 @@ minimist@0.0.8: | |||||||
|   resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" |   resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" | ||||||
|   integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= |   integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= | ||||||
|  |  | ||||||
|  | minimist@1.2.5, minimist@^1.2.5: | ||||||
|  |   version "1.2.5" | ||||||
|  |   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | ||||||
|  |   integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | ||||||
|  |  | ||||||
| minimist@^1.1.1, minimist@^1.2.0: | minimist@^1.1.1, minimist@^1.2.0: | ||||||
|   version "1.2.0" |   version "1.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" |   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" | ||||||
|   integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= |   integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= | ||||||
|  |  | ||||||
| minimist@^1.2.5: |  | ||||||
|   version "1.2.5" |  | ||||||
|   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" |  | ||||||
|   integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== |  | ||||||
|  |  | ||||||
| minipass-collect@^1.0.2: | minipass-collect@^1.0.2: | ||||||
|   version "1.0.2" |   version "1.0.2" | ||||||
|   resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" |   resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" | ||||||
| @@ -11426,7 +11781,7 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: | |||||||
|   dependencies: |   dependencies: | ||||||
|     minimist "0.0.8" |     minimist "0.0.8" | ||||||
|  |  | ||||||
| mkdirp@^0.5.3: | mkdirp@^0.5.3, mkdirp@^0.5.4: | ||||||
|   version "0.5.5" |   version "0.5.5" | ||||||
|   resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" |   resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | ||||||
|   integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== |   integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | ||||||
| @@ -11463,16 +11818,16 @@ moment-timezone@0.5.31: | |||||||
|   dependencies: |   dependencies: | ||||||
|     moment ">= 2.9.0" |     moment ">= 2.9.0" | ||||||
|  |  | ||||||
|  | moment@2.24.0, "moment@>= 2.9.0", moment@^2.10.2, moment@^2.10.6, moment@^2.19.2, moment@^2.22.1: | ||||||
|  |   version "2.24.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" | ||||||
|  |   integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== | ||||||
|  |  | ||||||
| moment@2.26.0: | moment@2.26.0: | ||||||
|   version "2.26.0" |   version "2.26.0" | ||||||
|   resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" |   resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" | ||||||
|   integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== |   integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== | ||||||
|  |  | ||||||
| "moment@>= 2.9.0", moment@^2.10.2, moment@^2.10.6, moment@^2.19.2, moment@^2.22.1: |  | ||||||
|   version "2.24.0" |  | ||||||
|   resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" |  | ||||||
|   integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== |  | ||||||
|  |  | ||||||
| mongodb@3.5.8: | mongodb@3.5.8: | ||||||
|   version "3.5.8" |   version "3.5.8" | ||||||
|   resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.5.8.tgz#34550856449b745d145873734bf922c12d6b9caa" |   resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.5.8.tgz#34550856449b745d145873734bf922c12d6b9caa" | ||||||
| @@ -12118,6 +12473,11 @@ onecolor@^3.0.4: | |||||||
|   resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.1.0.tgz#b72522270a49569ac20d244b3cd40fe157fda4d2" |   resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.1.0.tgz#b72522270a49569ac20d244b3cd40fe157fda4d2" | ||||||
|   integrity sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ== |   integrity sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ== | ||||||
|  |  | ||||||
|  | onetime@^1.0.0: | ||||||
|  |   version "1.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" | ||||||
|  |   integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k= | ||||||
|  |  | ||||||
| onetime@^2.0.0: | onetime@^2.0.0: | ||||||
|   version "2.0.1" |   version "2.0.1" | ||||||
|   resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" |   resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" | ||||||
| @@ -12215,6 +12575,11 @@ osenv@^0.1.4: | |||||||
|     os-homedir "^1.0.0" |     os-homedir "^1.0.0" | ||||||
|     os-tmpdir "^1.0.0" |     os-tmpdir "^1.0.0" | ||||||
|  |  | ||||||
|  | ospath@1.2.2: | ||||||
|  |   version "1.2.2" | ||||||
|  |   resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" | ||||||
|  |   integrity sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs= | ||||||
|  |  | ||||||
| p-defer@^1.0.0: | p-defer@^1.0.0: | ||||||
|   version "1.0.0" |   version "1.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" |   resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" | ||||||
| @@ -12672,7 +13037,7 @@ path-is-absolute@^1.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" |   resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | ||||||
|   integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= |   integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= | ||||||
|  |  | ||||||
| path-is-inside@^1.0.2: | path-is-inside@^1.0.1, path-is-inside@^1.0.2: | ||||||
|   version "1.0.2" |   version "1.0.2" | ||||||
|   resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" |   resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" | ||||||
|   integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= |   integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= | ||||||
| @@ -12758,6 +13123,11 @@ pem-jwk@2.0.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     asn1.js "^5.0.1" |     asn1.js "^5.0.1" | ||||||
|  |  | ||||||
|  | pend@~1.2.0: | ||||||
|  |   version "1.2.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" | ||||||
|  |   integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= | ||||||
|  |  | ||||||
| performance-now@^2.1.0: | performance-now@^2.1.0: | ||||||
|   version "2.1.0" |   version "2.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" |   resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" | ||||||
| @@ -12919,7 +13289,7 @@ picomatch@^2.2.1: | |||||||
|   resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" |   resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | ||||||
|   integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== |   integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== | ||||||
|  |  | ||||||
| pify@^2.0.0, pify@^2.3.0: | pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: | ||||||
|   version "2.3.0" |   version "2.3.0" | ||||||
|   resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" |   resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | ||||||
|   integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= |   integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= | ||||||
| @@ -14020,6 +14390,11 @@ prettier@^1.18.2: | |||||||
|   resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" |   resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" | ||||||
|   integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== |   integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== | ||||||
|  |  | ||||||
|  | pretty-bytes@5.3.0: | ||||||
|  |   version "5.3.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2" | ||||||
|  |   integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg== | ||||||
|  |  | ||||||
| pretty-error@^2.1.1: | pretty-error@^2.1.1: | ||||||
|   version "2.1.1" |   version "2.1.1" | ||||||
|   resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" |   resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" | ||||||
| @@ -14424,6 +14799,11 @@ queue@6.0.1: | |||||||
|   dependencies: |   dependencies: | ||||||
|     inherits "~2.0.3" |     inherits "~2.0.3" | ||||||
|  |  | ||||||
|  | ramda@0.26.1: | ||||||
|  |   version "0.26.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06" | ||||||
|  |   integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ== | ||||||
|  |  | ||||||
| random-bytes@~1.0.0: | random-bytes@~1.0.0: | ||||||
|   version "1.0.0" |   version "1.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" |   resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" | ||||||
| @@ -14838,6 +15218,13 @@ repeat-string@^1.5.2, repeat-string@^1.6.1: | |||||||
|   resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" |   resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" | ||||||
|   integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= |   integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= | ||||||
|  |  | ||||||
|  | request-progress@3.0.0: | ||||||
|  |   version "3.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" | ||||||
|  |   integrity sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4= | ||||||
|  |   dependencies: | ||||||
|  |     throttleit "^1.0.0" | ||||||
|  |  | ||||||
| request-promise-core@1.1.3: | request-promise-core@1.1.3: | ||||||
|   version "1.1.3" |   version "1.1.3" | ||||||
|   resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" |   resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" | ||||||
| @@ -15021,6 +15408,14 @@ resolve@^1.15.1, resolve@^1.17.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     path-parse "^1.0.6" |     path-parse "^1.0.6" | ||||||
|  |  | ||||||
|  | restore-cursor@^1.0.1: | ||||||
|  |   version "1.0.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" | ||||||
|  |   integrity sha1-NGYfRohjJ/7SmRR5FSJS35LapUE= | ||||||
|  |   dependencies: | ||||||
|  |     exit-hook "^1.0.0" | ||||||
|  |     onetime "^1.0.0" | ||||||
|  |  | ||||||
| restore-cursor@^2.0.0: | restore-cursor@^2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" |   resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" | ||||||
| @@ -15157,6 +15552,13 @@ rw@1: | |||||||
|   resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" |   resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" | ||||||
|   integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= |   integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= | ||||||
|  |  | ||||||
|  | rxjs@^6.3.3: | ||||||
|  |   version "6.5.5" | ||||||
|  |   resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" | ||||||
|  |   integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== | ||||||
|  |   dependencies: | ||||||
|  |     tslib "^1.9.0" | ||||||
|  |  | ||||||
| rxjs@^6.4.0: | rxjs@^6.4.0: | ||||||
|   version "6.5.3" |   version "6.5.3" | ||||||
|   resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" |   resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" | ||||||
| @@ -15583,6 +15985,11 @@ slash@^3.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" |   resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" | ||||||
|   integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== |   integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== | ||||||
|  |  | ||||||
|  | slice-ansi@0.0.4: | ||||||
|  |   version "0.0.4" | ||||||
|  |   resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" | ||||||
|  |   integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= | ||||||
|  |  | ||||||
| slice-ansi@^2.1.0: | slice-ansi@^2.1.0: | ||||||
|   version "2.1.0" |   version "2.1.0" | ||||||
|   resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" |   resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" | ||||||
| @@ -16163,6 +16570,18 @@ supports-color@6.1.0, supports-color@^6.1.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     has-flag "^3.0.0" |     has-flag "^3.0.0" | ||||||
|  |  | ||||||
|  | supports-color@7.1.0, supports-color@^7.0.0, supports-color@^7.1.0: | ||||||
|  |   version "7.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" | ||||||
|  |   integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== | ||||||
|  |   dependencies: | ||||||
|  |     has-flag "^4.0.0" | ||||||
|  |  | ||||||
|  | supports-color@^2.0.0: | ||||||
|  |   version "2.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" | ||||||
|  |   integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= | ||||||
|  |  | ||||||
| supports-color@^5.3.0, supports-color@^5.4.0: | supports-color@^5.3.0, supports-color@^5.4.0: | ||||||
|   version "5.5.0" |   version "5.5.0" | ||||||
|   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" |   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" | ||||||
| @@ -16170,13 +16589,6 @@ supports-color@^5.3.0, supports-color@^5.4.0: | |||||||
|   dependencies: |   dependencies: | ||||||
|     has-flag "^3.0.0" |     has-flag "^3.0.0" | ||||||
|  |  | ||||||
| supports-color@^7.0.0, supports-color@^7.1.0: |  | ||||||
|   version "7.1.0" |  | ||||||
|   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" |  | ||||||
|   integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== |  | ||||||
|   dependencies: |  | ||||||
|     has-flag "^4.0.0" |  | ||||||
|  |  | ||||||
| supports-hyperlinks@^2.0.0: | supports-hyperlinks@^2.0.0: | ||||||
|   version "2.0.0" |   version "2.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.0.0.tgz#b1b94a159e9df00b0a554b2d5f0e0a89690334b0" |   resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.0.0.tgz#b1b94a159e9df00b0a554b2d5f0e0a89690334b0" | ||||||
| @@ -16209,7 +16621,7 @@ svgo@^1.0.0: | |||||||
|     unquote "~1.1.1" |     unquote "~1.1.1" | ||||||
|     util.promisify "~1.0.0" |     util.promisify "~1.0.0" | ||||||
|  |  | ||||||
| symbol-observable@^1.0.2, symbol-observable@^1.0.3, symbol-observable@^1.0.4: | symbol-observable@^1.0.2, symbol-observable@^1.0.3, symbol-observable@^1.0.4, symbol-observable@^1.1.0: | ||||||
|   version "1.2.0" |   version "1.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" |   resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" | ||||||
|   integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== |   integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== | ||||||
| @@ -16400,6 +16812,11 @@ throttle-debounce@^2.1.0: | |||||||
|   resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz#257e648f0a56bd9e54fe0f132c4ab8611df4e1d5" |   resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz#257e648f0a56bd9e54fe0f132c4ab8611df4e1d5" | ||||||
|   integrity sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg== |   integrity sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg== | ||||||
|  |  | ||||||
|  | throttleit@^1.0.0: | ||||||
|  |   version "1.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" | ||||||
|  |   integrity sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw= | ||||||
|  |  | ||||||
| through2@^2.0.0: | through2@^2.0.0: | ||||||
|   version "2.0.5" |   version "2.0.5" | ||||||
|   resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" |   resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" | ||||||
| @@ -16440,6 +16857,13 @@ tiny-emitter@^2.0.0: | |||||||
|   resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" |   resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" | ||||||
|   integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== |   integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== | ||||||
|  |  | ||||||
|  | tmp@0.1.0: | ||||||
|  |   version "0.1.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" | ||||||
|  |   integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== | ||||||
|  |   dependencies: | ||||||
|  |     rimraf "^2.6.3" | ||||||
|  |  | ||||||
| tmp@^0.0.33: | tmp@^0.0.33: | ||||||
|   version "0.0.33" |   version "0.0.33" | ||||||
|   resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" |   resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" | ||||||
| @@ -16847,6 +17271,11 @@ unset-value@^1.0.0: | |||||||
|     has-value "^0.3.1" |     has-value "^0.3.1" | ||||||
|     isobject "^3.0.0" |     isobject "^3.0.0" | ||||||
|  |  | ||||||
|  | untildify@4.0.0: | ||||||
|  |   version "4.0.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" | ||||||
|  |   integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== | ||||||
|  |  | ||||||
| upath@^1.1.1: | upath@^1.1.1: | ||||||
|   version "1.2.0" |   version "1.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" |   resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" | ||||||
| @@ -16886,7 +17315,7 @@ url@0.10.3: | |||||||
|     punycode "1.3.2" |     punycode "1.3.2" | ||||||
|     querystring "0.2.0" |     querystring "0.2.0" | ||||||
|  |  | ||||||
| url@^0.11.0: | url@0.11.0, url@^0.11.0: | ||||||
|   version "0.11.0" |   version "0.11.0" | ||||||
|   resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" |   resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" | ||||||
|   integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= |   integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= | ||||||
| @@ -17849,6 +18278,14 @@ yargs@^7.1.0: | |||||||
|     y18n "^3.2.1" |     y18n "^3.2.1" | ||||||
|     yargs-parser "^5.0.0" |     yargs-parser "^5.0.0" | ||||||
|  |  | ||||||
|  | yauzl@2.10.0, yauzl@^2.10.0: | ||||||
|  |   version "2.10.0" | ||||||
|  |   resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" | ||||||
|  |   integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= | ||||||
|  |   dependencies: | ||||||
|  |     buffer-crc32 "~0.2.3" | ||||||
|  |     fd-slicer "~1.1.0" | ||||||
|  |  | ||||||
| zen-observable-ts@^0.4.4: | zen-observable-ts@^0.4.4: | ||||||
|   version "0.4.4" |   version "0.4.4" | ||||||
|   resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.4.4.tgz#c244c71eaebef79a985ccf9895bc90307a6e9712" |   resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.4.4.tgz#c244c71eaebef79a985ccf9895bc90307a6e9712" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user