From 72ede197349b9e2ef6aac226e0048070b93e07f3 Mon Sep 17 00:00:00 2001 From: jonah Date: Wed, 29 Dec 2021 14:54:34 -0500 Subject: [PATCH] Updated packages to 1.13.0 --- .../config/config.json | 2 +- .../js-propertycontrols-svg/config/serve.json | 8 +- .../config/tslint.json | 45 - samples/js-propertycontrols-svg/gulpfile.js | 12 + .../js-propertycontrols-svg/package-lock.json | 22760 +++ samples/js-propertycontrols-svg/package.json | 22 +- .../js-propertycontrols-svg.json | 98 + .../js-propertycontrols-svg.stats.json | 122579 +++++++++++++++ samples/js-propertycontrols-svg/tsconfig.json | 28 +- samples/js-propertycontrols-svg/tslint.json | 30 +- 10 files changed, 145516 insertions(+), 68 deletions(-) delete mode 100644 samples/js-propertycontrols-svg/config/tslint.json create mode 100644 samples/js-propertycontrols-svg/package-lock.json create mode 100644 samples/js-propertycontrols-svg/release/component-dependency-audit/js-propertycontrols-svg.json create mode 100644 samples/js-propertycontrols-svg/release/webpack-stats/js-propertycontrols-svg.stats.json diff --git a/samples/js-propertycontrols-svg/config/config.json b/samples/js-propertycontrols-svg/config/config.json index 2a932ba0f..a161c72ec 100644 --- a/samples/js-propertycontrols-svg/config/config.json +++ b/samples/js-propertycontrols-svg/config/config.json @@ -1,5 +1,5 @@ { - "$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json", + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json", "version": "2.0", "bundles": { "svg-hero-web-part": { diff --git a/samples/js-propertycontrols-svg/config/serve.json b/samples/js-propertycontrols-svg/config/serve.json index 0eb6d456c..8a3d55f13 100644 --- a/samples/js-propertycontrols-svg/config/serve.json +++ b/samples/js-propertycontrols-svg/config/serve.json @@ -1,10 +1,6 @@ { - "$schema": "https://dev.office.com/json-schemas/core-build/serve.schema.json", + "$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json", "port": 4321, "https": true, - "initialPage": "https://localhost:5432/workbench", - "api": { - "port": 5432, - "entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/" - } + "initialPage": "https://expiredsmellthis.sharepoint.com/sites/socks/_layouts/workbench.aspx" } diff --git a/samples/js-propertycontrols-svg/config/tslint.json b/samples/js-propertycontrols-svg/config/tslint.json deleted file mode 100644 index 0bb934c20..000000000 --- a/samples/js-propertycontrols-svg/config/tslint.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "$schema": "https://dev.office.com/json-schemas/core-build/tslint.schema.json", - // Display errors as warnings - "displayAsWarning": true, - // The TSLint task may have been configured with several custom lint rules - // before this config file is read (for example lint rules from the tslint-microsoft-contrib - // project). If true, this flag will deactivate any of these rules. - "removeExistingRules": true, - // When true, the TSLint task is configured with some default TSLint "rules.": - "useDefaultConfigAsBase": false, - // Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules - // which are active, other than the list of rules below. - "lintConfig": { - // Opt-in to Lint rules which help to eliminate bugs in JavaScript - "rules": { - "class-name": false, - "export-name": false, - "forin": false, - "label-position": false, - "member-access": true, - "no-arg": false, - "no-console": false, - "no-construct": false, - "no-duplicate-case": true, - "no-duplicate-variable": true, - "no-eval": false, - "no-function-expression": true, - "no-internal-module": true, - "no-shadowed-variable": true, - "no-switch-case-fall-through": true, - "no-unnecessary-semicolons": true, - "no-unused-expression": true, - "no-use-before-declare": true, - "no-with-statement": true, - "semicolon": true, - "trailing-comma": false, - "typedef": false, - "typedef-whitespace": false, - "use-named-parameter": true, - "valid-typeof": true, - "variable-name": false, - "whitespace": false - } - } -} \ No newline at end of file diff --git a/samples/js-propertycontrols-svg/gulpfile.js b/samples/js-propertycontrols-svg/gulpfile.js index 7d36ddb1c..3a0b8cc5d 100644 --- a/samples/js-propertycontrols-svg/gulpfile.js +++ b/samples/js-propertycontrols-svg/gulpfile.js @@ -1,6 +1,18 @@ 'use strict'; + + const gulp = require('gulp'); const build = require('@microsoft/sp-build-web'); +build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`); + +var getTasks = build.rig.getTasks; +build.rig.getTasks = function () { + var result = getTasks.call(build.rig); + + result.set('serve', result.get('serve-deprecated')); + + return result; +}; build.initialize(gulp); diff --git a/samples/js-propertycontrols-svg/package-lock.json b/samples/js-propertycontrols-svg/package-lock.json new file mode 100644 index 000000000..5145217ac --- /dev/null +++ b/samples/js-propertycontrols-svg/package-lock.json @@ -0,0 +1,22760 @@ +{ + "name": "js-propertycontrols-svg", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@azure/abort-controller": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.0.4.tgz", + "integrity": "sha512-lNUmDRVGpanCsiUN3NWxFTdwmdFI53xwhkTFfHDGTYk46ca7Ind3nanJc+U6Zj9Tv+9nTCWRBscWEW1DyKOpTw==", + "dev": true, + "requires": { + "tslib": "^2.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@azure/core-asynciterator-polyfill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@azure/core-asynciterator-polyfill/-/core-asynciterator-polyfill-1.0.0.tgz", + "integrity": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==", + "dev": true + }, + "@azure/core-auth": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.3.2.tgz", + "integrity": "sha512-7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "tslib": "^2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@azure/core-http": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-1.2.6.tgz", + "integrity": "sha512-odtH7UMKtekc5YQ86xg9GlVHNXR6pq2JgJ5FBo7/jbOjNGdBqcrIVrZx2bevXVJz/uUTSx6vUf62gzTXTfqYSQ==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-asynciterator-polyfill": "^1.0.0", + "@azure/core-auth": "^1.3.0", + "@azure/core-tracing": "1.0.0-preview.11", + "@azure/logger": "^1.0.0", + "@types/node-fetch": "^2.5.0", + "@types/tunnel": "^0.0.1", + "form-data": "^3.0.0", + "node-fetch": "^2.6.0", + "process": "^0.11.10", + "tough-cookie": "^4.0.0", + "tslib": "^2.2.0", + "tunnel": "^0.0.6", + "uuid": "^8.3.0", + "xml2js": "^0.4.19" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.11", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.11.tgz", + "integrity": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "1.0.0-rc.0", + "tslib": "^2.0.0" + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "@azure/core-lro": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-1.0.5.tgz", + "integrity": "sha512-0EFCFZxARrIoLWMIRt4vuqconRVIO2Iin7nFBfJiYCCbKp5eEmxutNk8uqudPmG0XFl5YqlVh68/al/vbE5OOg==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-tracing": "1.0.0-preview.11", + "events": "^3.0.0", + "tslib": "^2.0.0" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.11", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.11.tgz", + "integrity": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "1.0.0-rc.0", + "tslib": "^2.0.0" + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@azure/core-paging": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.2.0.tgz", + "integrity": "sha512-ZX1bCjm/MjKPCN6kQD/9GJErYSoKA8YWp6YWoo5EIzcTWlSBLXu3gNaBTUl8usGl+UShiKo7b4Gdy1NSTIlpZg==", + "dev": true, + "requires": { + "@azure/core-asynciterator-polyfill": "^1.0.0", + "tslib": "^2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@azure/core-tracing": { + "version": "1.0.0-preview.7", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.7.tgz", + "integrity": "sha512-pkFCw6OiJrpR+aH1VQe6DYm3fK2KWCC5Jf3m/Pv1RxF08M1Xm08RCyQ5Qe0YyW5L16yYT2nnV48krVhYZ6SGFA==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/types": "^0.2.0", + "tslib": "^1.9.3" + } + }, + "@azure/identity": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-1.0.3.tgz", + "integrity": "sha512-yWoOL3WjbD1sAYHdx4buFCGd9mCIHGzlTHgkhhLrmMpBztsfp9ejo5LRPYIV2Za4otfJzPL4kH/vnSLTS/4WYA==", + "dev": true, + "requires": { + "@azure/core-http": "^1.0.0", + "@azure/core-tracing": "1.0.0-preview.7", + "@azure/logger": "^1.0.0", + "@opentelemetry/types": "^0.2.0", + "events": "^3.0.0", + "jws": "^3.2.2", + "msal": "^1.0.2", + "qs": "^6.7.0", + "tslib": "^1.9.3", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.2.tgz", + "integrity": "sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + } + } + }, + "@azure/logger": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.0.3.tgz", + "integrity": "sha512-aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==", + "dev": true, + "requires": { + "tslib": "^2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@azure/storage-blob": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.3.0.tgz", + "integrity": "sha512-nCySzNfm782pEW3sg9GHj1zE4gBeVVMeEBdWb4MefifrCwQQOoz5cXZTNFiUJAJqAO+/72r2UjZcUwHk/QmzkA==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-lro": "^1.0.2", + "@azure/core-paging": "^1.1.1", + "@azure/core-tracing": "1.0.0-preview.9", + "@azure/logger": "^1.0.0", + "@opentelemetry/api": "^0.10.2", + "events": "^3.0.0", + "tslib": "^2.0.0" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.9", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.9.tgz", + "integrity": "sha512-zczolCLJ5QG42AEPQ+Qg9SRYNUyB+yZ5dzof4YEc+dyWczO9G2sBqbAjLB7IqrsdHN2apkiB2oXeDKCsq48jug==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "^0.10.2", + "tslib": "^2.0.0" + } + }, + "@opentelemetry/api": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.10.2.tgz", + "integrity": "sha512-GtpMGd6vkzDMYcpu2t9LlhEgMy/SzBwRnz48EejlRArYqZzqSzAsKmegUK7zHgl+EOIaK9mKHhnRaQu3qw20cA==", + "dev": true, + "requires": { + "@opentelemetry/context-base": "^0.10.2" + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + } + } + }, + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true + }, + "@babel/core": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz", + "integrity": "sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.5", + "@babel/helper-compilation-targets": "^7.16.3", + "@babel/helper-module-transforms": "^7.16.5", + "@babel/helpers": "^7.16.5", + "@babel/parser": "^7.16.5", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.5", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz", + "integrity": "sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz", + "integrity": "sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz", + "integrity": "sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.16.5", + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.5", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz", + "integrity": "sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ==", + "dev": true + }, + "@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true + }, + "@babel/helpers": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz", + "integrity": "sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==", + "dev": true, + "requires": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.5", + "@babel/types": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.16.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz", + "integrity": "sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/traverse": { + "version": "7.16.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz", + "integrity": "sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.5", + "@babel/helper-environment-visitor": "^7.16.5", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.5", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@eslint/eslintrc": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + } + } + }, + "@fluentui/date-time-utilities": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-7.9.1.tgz", + "integrity": "sha512-o8iU1VIY+QsqVRWARKiky29fh4KR1xaKSgMClXIi65qkt8EDDhjmlzL0KVDEoDA2GWukwb/1PpaVCWDg4v3cUQ==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "@fluentui/dom-utilities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", + "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "@fluentui/keyboard-key": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.2.17.tgz", + "integrity": "sha512-iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==", + "requires": { + "tslib": "^1.10.0" + } + }, + "@fluentui/react-focus": { + "version": "7.18.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.1.tgz", + "integrity": "sha512-WXXkMR3t5mr9m5hg5vRWH/JZ+kaZmbuTGpTA7E7uc+Ag/RZfG/uVN+ZwBdDpP6Xg7+6f3wlkGCBtY/UDcW6qmw==", + "requires": { + "@fluentui/keyboard-key": "^0.2.12", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "@uifabric/utilities": "^7.33.5", + "tslib": "^1.10.0" + } + }, + "@fluentui/react-window-provider": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-1.0.2.tgz", + "integrity": "sha512-fGSgL3Vp/+6t1Ysfz21FWZmqsU+iFVxOigvHnm5uKVyyRPwtaabv/F6kQ2y5isLMI2YmJaUd2i0cDJKu8ggrvw==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "@fluentui/theme": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.4.tgz", + "integrity": "sha512-o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ==", + "requires": { + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.33.5", + "tslib": "^1.10.0" + } + }, + "@gar/promisify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", + "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==", + "dev": true + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jest/console": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-25.5.0.tgz", + "integrity": "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-message-util": "^25.5.0", + "jest-util": "^25.5.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.4.0.tgz", + "integrity": "sha512-h1x9WSVV0+TKVtATGjyQIMJENs8aF6eUjnCoi4jyRemYZmekLr8EJOGQqTWEX8W6SbZ6Skesy9pGXrKeAolUJw==", + "dev": true, + "requires": { + "@jest/console": "^25.4.0", + "@jest/reporters": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/transform": "^25.4.0", + "@jest/types": "^25.4.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.3", + "jest-changed-files": "^25.4.0", + "jest-config": "^25.4.0", + "jest-haste-map": "^25.4.0", + "jest-message-util": "^25.4.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.4.0", + "jest-resolve-dependencies": "^25.4.0", + "jest-runner": "^25.4.0", + "jest-runtime": "^25.4.0", + "jest-snapshot": "^25.4.0", + "jest-util": "^25.4.0", + "jest-validate": "^25.4.0", + "jest-watcher": "^25.4.0", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "realpath-native": "^2.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "@jest/environment": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-25.5.0.tgz", + "integrity": "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0" + } + }, + "@jest/fake-timers": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.5.0.tgz", + "integrity": "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "lolex": "^5.0.0" + } + }, + "@jest/globals": { + "version": "25.5.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz", + "integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/types": "^25.5.0", + "expect": "^25.5.0" + } + }, + "@jest/reporters": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.4.0.tgz", + "integrity": "sha512-bhx/buYbZgLZm4JWLcRJ/q9Gvmd3oUh7k2V7gA4ZYBx6J28pIuykIouclRdiAC6eGVX1uRZT+GK4CQJLd/PwPg==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/transform": "^25.4.0", + "@jest/types": "^25.4.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^25.4.0", + "jest-resolve": "^25.4.0", + "jest-util": "^25.4.0", + "jest-worker": "^25.4.0", + "node-notifier": "^6.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^3.1.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^4.1.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "node-notifier": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", + "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", + "dev": true, + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "optional": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-25.5.0.tgz", + "integrity": "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-25.5.0.tgz", + "integrity": "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/types": "^25.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz", + "integrity": "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==", + "dev": true, + "requires": { + "@jest/test-result": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4" + } + }, + "@jest/transform": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz", + "integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^25.5.0", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^3.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-regex-util": "^25.2.6", + "jest-util": "^25.5.0", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", + "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "dependencies": { + "@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@microsoft/api-extractor": { + "version": "7.7.8", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.7.8.tgz", + "integrity": "sha512-XNO6Dk6ByfJq24Cn1/j0B0F16ZtwYnEC/sxgB/M0wTphBdBlHjRXZmxofmjirBBj9f7vG4UJ18IOIZRLbhGFPw==", + "dev": true, + "requires": { + "@microsoft/api-extractor-model": "7.7.7", + "@microsoft/node-core-library": "3.19.3", + "@microsoft/ts-command-line": "4.3.10", + "@microsoft/tsdoc": "0.12.14", + "colors": "~1.2.1", + "lodash": "~4.17.15", + "resolve": "1.8.1", + "source-map": "~0.6.1", + "typescript": "~3.7.2" + } + }, + "@microsoft/api-extractor-model": { + "version": "7.7.7", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.7.7.tgz", + "integrity": "sha512-822kyHMEx2sl+KnBioEiFoTIXuz/4pYBo94nQ4AMqb9BFvY9I1AZUPtC4HFh2zcXQqpFLpKKC55s/o8UOze2wQ==", + "dev": true, + "requires": { + "@microsoft/node-core-library": "3.19.3", + "@microsoft/tsdoc": "0.12.14" + } + }, + "@microsoft/gulp-core-build": { + "version": "3.17.17", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build/-/gulp-core-build-3.17.17.tgz", + "integrity": "sha512-Wvn2nzYy/ASxD9vxnxnFr0G3VZJROP4FtOROYxv0wPgOCEQBMwNymtNw+y2X14UvTPVEwkdM+tmjLy7jaIvBmg==", + "dev": true, + "requires": { + "@jest/core": "~25.4.0", + "@jest/reporters": "~25.4.0", + "@rushstack/node-core-library": "3.38.0", + "@types/chalk": "0.4.31", + "@types/gulp": "4.0.6", + "@types/jest": "25.2.1", + "@types/node": "10.17.13", + "@types/node-notifier": "0.0.28", + "@types/orchestrator": "0.0.30", + "@types/semver": "7.3.5", + "@types/through2": "2.0.32", + "@types/vinyl": "2.0.3", + "@types/yargs": "0.0.34", + "colors": "~1.2.1", + "del": "^2.2.2", + "end-of-stream": "~1.1.0", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "globby": "~5.0.0", + "gulp": "~4.0.2", + "gulp-flatten": "~0.2.0", + "gulp-if": "^2.0.1", + "jest": "~25.4.0", + "jest-cli": "~25.4.0", + "jest-environment-jsdom": "~25.4.0", + "jest-nunit-reporter": "~1.3.1", + "jsdom": "~11.11.0", + "lodash.merge": "~4.6.2", + "merge2": "~1.0.2", + "node-notifier": "~5.0.2", + "object-assign": "~4.1.0", + "orchestrator": "~0.3.8", + "pretty-hrtime": "~1.0.2", + "semver": "~7.3.0", + "through2": "~2.0.1", + "vinyl": "~2.2.0", + "xml": "~1.0.1", + "yargs": "~4.6.0", + "z-schema": "~3.18.3" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "jest-cli": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.4.0.tgz", + "integrity": "sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ==", + "dev": true, + "requires": { + "@jest/core": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/types": "^25.4.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.4.0", + "jest-util": "^25.4.0", + "jest-validate": "^25.4.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@microsoft/gulp-core-build-sass": { + "version": "4.14.22", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-sass/-/gulp-core-build-sass-4.14.22.tgz", + "integrity": "sha512-WZ+Aln7jYOhrGjXGj40IFCQD4dAgNxzkbAPW9WojFGT06vY2Sr9xRi/ycXQKwiTRfFwny+HiwgH2FGD/WWzkFA==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@microsoft/load-themed-styles": "1.10.172", + "@rushstack/node-core-library": "3.38.0", + "@types/gulp": "4.0.6", + "@types/node": "10.17.13", + "autoprefixer": "~9.8.0", + "clean-css": "4.2.1", + "glob": "~7.0.5", + "postcss": "7.0.32", + "postcss-modules": "~1.5.0", + "sass": "1.32.12" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.172", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.172.tgz", + "integrity": "sha512-BSTxPdqR7doaS+KRXdh+Jx8Ya5VFR/wMwsg4ocYaA6Qh2Ags17Qzi3dodwK4qnqgAhHtArxl84ycY4+VIRwFqw==", + "dev": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "@microsoft/gulp-core-build-serve": { + "version": "3.9.15", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-serve/-/gulp-core-build-serve-3.9.15.tgz", + "integrity": "sha512-3n8Q/BD+5zEId9JWfs23LgvGoVOqlom/etqyelSGkqx3ed+MgMM9RMdXTh98W+JdzW/tUhFMAxRkA/53YmyueQ==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@rushstack/debug-certificate-manager": "1.0.26", + "@rushstack/node-core-library": "3.38.0", + "@types/node": "10.17.13", + "colors": "~1.2.1", + "express": "~4.16.2", + "gulp": "~4.0.2", + "gulp-connect": "~5.5.0", + "gulp-open": "~3.0.1", + "sudo": "~1.0.3" + } + }, + "@microsoft/gulp-core-build-typescript": { + "version": "8.5.26", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-typescript/-/gulp-core-build-typescript-8.5.26.tgz", + "integrity": "sha512-s0jzzlYT7SphjGpU4Sh4Ge7GvURPOS4WTgFmxnMQuWvAFBoYar6ghCXJmXd9IGs9phlOLaX4WdakKe3DTNbm+w==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@rushstack/node-core-library": "3.38.0", + "@types/node": "10.17.13", + "decomment": "~0.9.1", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "resolve": "~1.17.0" + }, + "dependencies": { + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + } + } + }, + "@microsoft/gulp-core-build-webpack": { + "version": "5.2.20", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-webpack/-/gulp-core-build-webpack-5.2.20.tgz", + "integrity": "sha512-4woCKKfetewi5iRlOKEikQJPkYdfyijBIlXZDhNSlj5F0iJPArtqXc6uI9sOf/6XN9Fa5m/B5ult+c703Vgggw==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@types/gulp": "4.0.6", + "@types/node": "10.17.13", + "colors": "~1.2.1", + "gulp": "~4.0.2", + "webpack": "~4.44.2" + } + }, + "@microsoft/hashed-folder-copy-plugin": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/hashed-folder-copy-plugin/-/hashed-folder-copy-plugin-1.13.0.tgz", + "integrity": "sha512-woHVJyZNELa/9MmJMJo2UoQn4/qn2oR0XnciuCq7paYcRfR61iFmDRj4nNI1o70zUWcx+k6f9MJXFKmPbHUQxw==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "glob": "~7.0.5" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@microsoft/load-themed-styles": { + "version": "1.10.241", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.241.tgz", + "integrity": "sha512-UdEtJGWSj361OxGO2AWMVzfBZPGv6EOJ2ZsuYLWGhDgBv/Y7QWPngEyHYljIC1YcqyQxy8q9xFvH/5qZKpTteA==" + }, + "@microsoft/loader-load-themed-styles": { + "version": "1.9.89", + "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-1.9.89.tgz", + "integrity": "sha512-DyKkXJzaiNA3zGwXQENHo+8kmTyIFQjUgzJjoi7nBRy6iNW2NKqD+7KvfPfcWofviATOtLmS3CxgEkW2dpkV8A==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.208", + "loader-utils": "~1.1.0" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.208", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.208.tgz", + "integrity": "sha512-lOJQ/FOFiZJ+LIOUnVKu2StmB3DKIg50XTlm6DwBXpgUowAFhJ188mck8j4POpZtzQf/DfmOlQLqPEZXzM/6/A==", + "dev": true + }, + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + } + } + }, + "@microsoft/microsoft-graph-client": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-1.1.0.tgz", + "integrity": "sha512-sDgchKZz1l3QJVNdkE1P1KpwTjupNt1mS9h1T0CiP+ayMN7IeFKfElB8IYtxFplNalZTmEq+iqoQFqUVpVMLfQ==", + "requires": { + "es6-promise": "^4.1.0", + "isomorphic-fetch": "^2.2.1" + } + }, + "@microsoft/node-core-library": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/@microsoft/node-core-library/-/node-core-library-3.19.3.tgz", + "integrity": "sha512-rJ+hT6+XK5AESbhn31YBnHKpZSFKCmqHCRZyK9+jyWwav1HXv0qzuXnFvnyrO0MZyJ6rH0seWOZVWbU5KGv1tg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "jju": "~1.4.0", + "semver": "~5.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@microsoft/office-ui-fabric-react-bundle": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.13.0.tgz", + "integrity": "sha512-aDOWcBkVape1/3CHQ3USiHfyPi4YWzjCCa9YHyvOpaxaWW1fvxALxK7GwSQySSx3pft+dzODBfVGP4+ECE27WA==", + "requires": { + "@microsoft/sp-core-library": "1.13.0", + "@uifabric/icons": "7.6.0", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/rush-lib": { + "version": "5.52.0", + "resolved": "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.52.0.tgz", + "integrity": "sha512-laMhv66YzcTACKd2NfWt4KuldkgjA/n55g9d13oAxHTlnlhSFfYAs0ocQTqid7YjvNMHOLKLtRNS3lf/PgM0zw==", + "dev": true, + "requires": { + "@azure/identity": "~1.0.0", + "@azure/storage-blob": "~12.3.0", + "@pnpm/link-bins": "~5.3.7", + "@rushstack/heft-config-file": "0.6.2", + "@rushstack/node-core-library": "3.40.0", + "@rushstack/package-deps-hash": "3.0.61", + "@rushstack/rig-package": "0.2.13", + "@rushstack/stream-collator": "4.0.116", + "@rushstack/terminal": "0.2.18", + "@rushstack/ts-command-line": "4.9.0", + "@yarnpkg/lockfile": "~1.0.2", + "builtin-modules": "~3.1.0", + "cli-table": "~0.3.1", + "colors": "~1.2.1", + "git-repo-info": "~2.1.0", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "https-proxy-agent": "~5.0.0", + "ignore": "~5.1.6", + "inquirer": "~7.3.3", + "js-yaml": "~3.13.1", + "jszip": "~3.7.1", + "lodash": "~4.17.15", + "minimatch": "~3.0.2", + "node-fetch": "~2.6.1", + "npm-package-arg": "~6.1.0", + "npm-packlist": "~2.1.2", + "read-package-tree": "~5.1.5", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "ssri": "~8.0.0", + "strict-uri-encode": "~2.0.0", + "tar": "~5.0.5", + "true-case-path": "~2.2.1", + "z-schema": "~3.18.3" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@rushstack/rig-package": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.13.tgz", + "integrity": "sha512-qQMAFKvfb2ooaWU9DrGIK9d8QfyHy/HiuITJbWenlKgzcDXQvQgEduk57YF4Y7LLasDJ5ZzLaaXwlfX8qCRe5Q==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "@rushstack/ts-command-line": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.9.0.tgz", + "integrity": "sha512-kmT8t+JfnvphISF1C5WwY56RefjwgajhSjs9J4ckvAFXZDXR6F5cvF5/RTh7fGCzIomg8esy2PHO/b52zFoZvA==", + "dev": true, + "requires": { + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" + } + }, + "@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "@microsoft/rush-stack-compiler-3.7": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@microsoft/rush-stack-compiler-3.7/-/rush-stack-compiler-3.7-0.2.3.tgz", + "integrity": "sha512-9GXfHslqUIWJ8+UE6mXj4Fmbb5yxKcefJrqLrqHhRmbDnqUKB9jPKcHFLrZgSkNFGdfoWoIC+Q6Q5+oD3lhk1w==", + "dev": true, + "requires": { + "@microsoft/api-extractor": "7.7.8", + "@microsoft/node-core-library": "3.19.3", + "@rushstack/eslint-config": "0.5.4", + "@types/node": "10.17.13", + "eslint": "~6.5.1", + "tslint": "~5.12.1", + "tslint-microsoft-contrib": "~5.2.1", + "typescript": "~3.7.2" + } + }, + "@microsoft/rush-stack-compiler-3.9": { + "version": "0.4.47", + "resolved": "https://registry.npmjs.org/@microsoft/rush-stack-compiler-3.9/-/rush-stack-compiler-3.9-0.4.47.tgz", + "integrity": "sha512-mM7qbfJaTDc7+o6MR32DJSDExNwGoql4ARanJPna//FJc/kPn4HjI6yPbs6PTzSIdPftzI9VmqpLZWsGuaLWAQ==", + "dev": true, + "requires": { + "@microsoft/api-extractor": "7.15.2", + "@rushstack/eslint-config": "2.3.4", + "@rushstack/node-core-library": "3.38.0", + "@types/node": "10.17.13", + "eslint": "~7.12.1", + "import-lazy": "~4.0.0", + "tslint": "~5.20.1", + "tslint-microsoft-contrib": "~6.2.0", + "typescript": "~3.9.7" + }, + "dependencies": { + "@microsoft/api-extractor": { + "version": "7.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.15.2.tgz", + "integrity": "sha512-/Y/n+QOc1vM6Vg3OAUByT/wXdZciE7jV3ay33+vxl3aKva5cNsuOauL14T7XQWUiLko3ilPwrcnFcEjzXpLsuA==", + "dev": true, + "requires": { + "@microsoft/api-extractor-model": "7.13.2", + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.38.0", + "@rushstack/rig-package": "0.2.12", + "@rushstack/ts-command-line": "4.7.10", + "colors": "~1.2.1", + "lodash": "~4.17.15", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "source-map": "~0.6.1", + "typescript": "~4.2.4" + }, + "dependencies": { + "typescript": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", + "integrity": "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==", + "dev": true + } + } + }, + "@microsoft/api-extractor-model": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.13.2.tgz", + "integrity": "sha512-gA9Q8q5TPM2YYk7rLinAv9KqcodrmRC13BVmNzLswjtFxpz13lRh0BmrqD01/sddGpGMIuWFYlfUM4VSWxnggA==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.38.0" + } + }, + "@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "dev": true + }, + "@rushstack/eslint-config": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-2.3.4.tgz", + "integrity": "sha512-mwEfj3e260slxM57A2eMtkNpVM9J2iMGoqzWfD4hHtO+dcZT6rEeYG4djwj61ZriNJdAY8QIMMhfuID/xV+cyw==", + "dev": true, + "requires": { + "@rushstack/eslint-patch": "1.0.6", + "@rushstack/eslint-plugin": "0.7.3", + "@rushstack/eslint-plugin-packlets": "0.2.2", + "@rushstack/eslint-plugin-security": "0.1.4", + "@typescript-eslint/eslint-plugin": "3.4.0", + "@typescript-eslint/experimental-utils": "^3.4.0", + "@typescript-eslint/parser": "3.4.0", + "@typescript-eslint/typescript-estree": "3.4.0", + "eslint-plugin-promise": "~4.2.1", + "eslint-plugin-react": "~7.20.0", + "eslint-plugin-tsdoc": "~0.2.10" + } + }, + "@rushstack/eslint-plugin": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.7.3.tgz", + "integrity": "sha512-8+AqxybpcJJuxn0+fsWwMIMj2g2tLfPrbOyhEi+Rozh36eTmgGXF45qh8bHE1gicsX4yGDj2ob1P62oQV6hs3g==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.1", + "@typescript-eslint/experimental-utils": "^3.4.0" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.4.0.tgz", + "integrity": "sha512-wfkpiqaEVhZIuQRmudDszc01jC/YR7gMSxa6ulhggAe/Hs0KVIuo9wzvFiDbG3JD5pRFQoqnf4m7REDsUvBnMQ==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "3.4.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.4.0.tgz", + "integrity": "sha512-rHPOjL43lOH1Opte4+dhC0a/+ks+8gOBwxXnyrZ/K4OTAChpSjP76fbI8Cglj7V5GouwVAGaK+xVwzqTyE/TPw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "3.4.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "dependencies": { + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + } + } + }, + "@typescript-eslint/parser": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.4.0.tgz", + "integrity": "sha512-ZUGI/de44L5x87uX5zM14UYcbn79HSXUR+kzcqU42gH0AgpdB/TjuJy3m4ezI7Q/jk3wTQd755mxSDLhQP79KA==", + "dev": true, + "requires": { + "@types/eslint-visitor-keys": "^1.0.0", + "@typescript-eslint/experimental-utils": "3.4.0", + "@typescript-eslint/typescript-estree": "3.4.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.4.0.tgz", + "integrity": "sha512-rHPOjL43lOH1Opte4+dhC0a/+ks+8gOBwxXnyrZ/K4OTAChpSjP76fbI8Cglj7V5GouwVAGaK+xVwzqTyE/TPw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "3.4.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + } + } + }, + "@typescript-eslint/typescript-estree": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.4.0.tgz", + "integrity": "sha512-zKwLiybtt4uJb4mkG5q2t6+W7BuYx2IISiDNV+IY68VfoGwErDx/RfVI7SWL4gnZ2t1A1ytQQwZ+YOJbHHJ2rw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-visitor-keys": "^1.1.0", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "eslint": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.12.1.tgz", + "integrity": "sha512-HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.2.1", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.0", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-plugin-react": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.20.6.tgz", + "integrity": "sha512-kidMTE5HAEBSLu23CUDvj8dc3LdBU0ri1scwHBZjI41oDv4tjsWZKU7MQccFzH1QYPYhsnTF2ovh7JlcIcmxgg==", + "dev": true, + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.17.0", + "string.prototype.matchall": "^4.0.2" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tslint": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.20.1.tgz", + "integrity": "sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.8.0", + "tsutils": "^2.29.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "tsutils": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "tslint-microsoft-contrib": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tslint-microsoft-contrib/-/tslint-microsoft-contrib-6.2.0.tgz", + "integrity": "sha512-6tfi/2tHqV/3CL77pULBcK+foty11Rr0idRDxKnteTaKm6gWF9qmaCNU17HVssOuwlYNyOmd9Jsmjd+1t3a3qw==", + "dev": true, + "requires": { + "tsutils": "^2.27.2 <2.29.0" + }, + "dependencies": { + "tsutils": { + "version": "2.28.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.28.0.tgz", + "integrity": "sha512-bh5nAtW0tuhvOJnx1GLRn5ScraRLICGyJV5wJhtRWOLsxW70Kk5tZtpK3O/hW6LDnqKS9mlUMPZj9fEMJ0gxqA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "typescript": { + "version": "3.9.10", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz", + "integrity": "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@microsoft/sp-build-core-tasks": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-core-tasks/-/sp-build-core-tasks-1.13.0.tgz", + "integrity": "sha512-a19/Kc6QHArfc21OYxdD9qTqdaSpOdQYsCoUGBwCA2muCiGfnfko/hju7NvTlWX3rv9iWP1BnsSbeRU/3nxI1w==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@microsoft/gulp-core-build-serve": "3.9.15", + "@microsoft/gulp-core-build-webpack": "5.2.20", + "@microsoft/spfx-heft-plugins": "1.13.0", + "@rushstack/node-core-library": "3.40.0", + "@types/glob": "5.0.30", + "@types/lodash": "4.14.117", + "@types/webpack": "4.41.24", + "colors": "~1.2.1", + "glob": "~7.0.5", + "gulp": "4.0.2", + "lodash": "4.17.21", + "webpack": "~4.44.2" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@types/glob": { + "version": "5.0.30", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.30.tgz", + "integrity": "sha1-ECZAnFYlqGiQdGAoCNCCsoZ7ilE=", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@microsoft/sp-build-web": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-web/-/sp-build-web-1.13.0.tgz", + "integrity": "sha512-QsTJ+yDyr+UFeg7LBfI+hgyB4UYjoh5too4BJfzngo4k01oAcZ8SgGZqfyc4qCmHIaPRM1ihszvf+qxqPsDCuA==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.17", + "@microsoft/gulp-core-build-sass": "4.14.22", + "@microsoft/gulp-core-build-serve": "3.9.15", + "@microsoft/gulp-core-build-typescript": "8.5.26", + "@microsoft/gulp-core-build-webpack": "5.2.20", + "@microsoft/rush-lib": "5.52.0", + "@microsoft/sp-build-core-tasks": "1.13.0", + "@rushstack/node-core-library": "3.40.0", + "@types/webpack": "4.41.24", + "gulp": "4.0.2", + "semver": "~7.3.2", + "true-case-path": "~2.2.1", + "webpack": "~4.44.2", + "yargs": "~4.6.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@microsoft/sp-component-base": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.13.0.tgz", + "integrity": "sha512-rWcnKpd4UWr68JazgXkcXb9OE6vpoBoCpkd3rXz6tLd/xNUbUObX+sUMcvlknZhi4mIZ7MKEmUHhNN+Gw5u0tw==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.0", + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-dynamic-data": "1.13.0", + "@microsoft/sp-http": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@microsoft/sp-page-context": "1.13.0", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-core-library": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.13.0.tgz", + "integrity": "sha512-lSZwELjtC2zBdIvn2MPrOIT/j3mah7O3Bz0WIM8VU45H+sepWkEggthO86HnqQXDOVp5EBgbnl8b5zRrLJ/nFA==", + "requires": { + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@microsoft/sp-odata-types": "1.13.0", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-css-loader": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-css-loader/-/sp-css-loader-1.13.0.tgz", + "integrity": "sha512-ve/vRECyVbZJciHbyx3omyzIyJvVFGJsbnOgesSeyhFMLdSH7DWeu+/5kjAE8HiIHI7B5EOwwIZ/U13fbvxdDw==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.208", + "@rushstack/node-core-library": "3.40.0", + "autoprefixer": "9.7.1", + "css-loader": "3.4.2", + "cssnano": "~4.1.10", + "loader-utils": "1.2.3", + "postcss": "~8.1.0", + "postcss-modules-extract-imports": "~3.0.0", + "postcss-modules-local-by-default": "~4.0.0", + "postcss-modules-scope": "~3.0.0", + "postcss-modules-values": "~4.0.0", + "webpack": "~4.44.2" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.208", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.208.tgz", + "integrity": "sha512-lOJQ/FOFiZJ+LIOUnVKu2StmB3DKIg50XTlm6DwBXpgUowAFhJ188mck8j4POpZtzQf/DfmOlQLqPEZXzM/6/A==", + "dev": true + }, + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, + "requires": { + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + } + } + }, + "css-loader": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", + "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + } + } + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "postcss": { + "version": "8.1.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.14.tgz", + "integrity": "sha512-KatkyVPBKfENS+c3dpXJoDXnDD5UZs5exAnDksLqaRJPKwYphEPZt4N0m0i049v2/BtWVQibAhxW4ilXXcolpA==", + "dev": true, + "requires": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@microsoft/sp-diagnostics": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.13.0.tgz", + "integrity": "sha512-ybt99U+YrW1jwI3l43/mBod98WNsvvkf3AeLRg7UCLncnKZF8qAQj3hIEZG6gAkOQyxf3ShQjeAVwh9uXfskhg==", + "requires": { + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0" + } + }, + "@microsoft/sp-dynamic-data": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.13.0.tgz", + "integrity": "sha512-2ADGycahNsCBC9TUkeg37HoPFEnVQ/cHSOzItpw+IzVrkZb3urGwKq8Rn2NAPJRpLjn8E3LIaOeNdacXvc60sw==", + "requires": { + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-http": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.13.0.tgz", + "integrity": "sha512-g8KEbtRym3nMGaaFvvVQ97C+1v+cvx7xs+fH8Z/HunzXiCFsQ3u/Ycj3slV+0sHOdXpJTGWON+BZkniBvmHTRw==", + "requires": { + "@microsoft/microsoft-graph-client": "~1.1.0", + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@types/adal-angular": "1.0.1", + "adal-angular": "1.0.16", + "msal": "1.4.13", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "~1.10.0" + }, + "dependencies": { + "msal": { + "version": "1.4.13", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.13.tgz", + "integrity": "sha512-uFEa4KGlpGqNMwa7/1OQc6WQUF8iwHbaiHMVn0Cl66Ec7o30ZTtX9s9OWrf0wAxp8Mwg0JEE886z/PHpsiZUxQ==", + "requires": { + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/sp-loader": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.13.0.tgz", + "integrity": "sha512-f9TC8wtyhzkIvXuCRqXrX89ByHf3C4A84IZvIuRfCPoukobxB8D4sYtYVghaxshUKAIxU7oyIGOvn1dCd2xMQw==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.0", + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-dynamic-data": "1.13.0", + "@microsoft/sp-http": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@microsoft/sp-odata-types": "1.13.0", + "@microsoft/sp-page-context": "1.13.0", + "@microsoft/sp-polyfills": "1.13.0", + "@rushstack/loader-raw-script": "1.3.175", + "@types/requirejs": "2.1.29", + "office-ui-fabric-react": "7.176.2", + "raw-loader": "~0.5.1", + "react": "16.13.1", + "react-dom": "16.13.1", + "requirejs": "2.3.6", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-lodash-subset": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.13.0.tgz", + "integrity": "sha512-JXGqsugHR+aVcjuYl3zfQ4xgZ+fM09ECeWSi3YMrf4Ww0/xzoVQrvqW4tYcB5zkpEtSyx01iVjnTWMzwflwQmw==", + "requires": { + "@types/lodash": "4.14.117", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-module-interfaces": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.13.0.tgz", + "integrity": "sha512-GGI88b8vu3G9YJX4uZbS/E86V5Rz0C0jj4l2uOsZG1OtSZNgpimX/AKfX4ShVkEU/Wtvawc6rb6Q0qnv1VoTSw==" + }, + "@microsoft/sp-odata-types": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.13.0.tgz", + "integrity": "sha512-26DZDZYAOQhNPSwJUZABbaLMe8myyi5lMH4N9Hd4TJFKNWbo2Bsec9+mk9Mi1VShDI5noQjoFJMIw/4JgrwgSA==", + "requires": { + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-office-ui-fabric-core": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.13.0.tgz", + "integrity": "sha512-H+0/iBRB5N6rf/jxJmWUsrm+KLs9p3xTtxb2aQyBdclK1G4K1mNGccKT1z7eYVxrHvGRkMhEytRxFoGduiqh8g==", + "requires": { + "office-ui-fabric-core": "9.6.1-fluent2", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-page-context": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.13.0.tgz", + "integrity": "sha512-kgRwXqsJNSatLyItFt/FRrSy7/ZzASd6fdp2Dhhk62Vg2Mi8JuLvzmdVCuO3EMnqjqEPHsmJ54KAX2wPdZZgVA==", + "requires": { + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-dynamic-data": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-odata-types": "1.13.0", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-polyfills": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.13.0.tgz", + "integrity": "sha512-k2hH9sPiyU4PcV+QgTvlFqSqFgBh13RP57gnAwDchoScijvm1sKFVLmhh5wGmfD427zmpnPzJMXNTn7qTbFV3w==", + "requires": { + "es6-promise": "4.2.4", + "es6-symbol": "3.1.3", + "tslib": "~1.10.0", + "whatwg-fetch": "2.0.3", + "whatwg-url": "4.7.1" + }, + "dependencies": { + "es6-promise": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", + "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + }, + "whatwg-fetch": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", + "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" + }, + "whatwg-url": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.7.1.tgz", + "integrity": "sha1-303C4/JaY7H6WzLtbWwTlXfWkN4=", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "@microsoft/sp-property-pane": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.13.0.tgz", + "integrity": "sha512-A1+NVenAzchjZQOtumwHr0yBo4AeN5lvfDvoSOLE5ZCTXP5xV09VAGofWfYxllo8VhIBF9hkwiPTItkUBcUtBg==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.0", + "@microsoft/sp-component-base": "1.13.0", + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-dynamic-data": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-tslint-rules": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-tslint-rules/-/sp-tslint-rules-1.13.0.tgz", + "integrity": "sha512-lZ1w44UaHv5x7gTAM9ZQCIrR7JC6guqmRc6ZFrqQr/ILNK4oH98dVCgUjOoaeTsNSsYbWimXLV7kb22qk6dIGA==", + "dev": true, + "requires": { + "tslint": "~6.1.3", + "tsutils": "~2.11.2" + }, + "dependencies": { + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tslint": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", + "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.3", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.13.0", + "tsutils": "^2.29.0" + }, + "dependencies": { + "tsutils": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "tsutils": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.11.2.tgz", + "integrity": "sha1-YBNgHjb6FP+VhBPlQdQn+4xqw0E=", + "dev": true, + "requires": { + "tslib": "^1.7.1" + } + } + } + }, + "@microsoft/sp-webpart-base": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.13.0.tgz", + "integrity": "sha512-xtAiFtB19hagenl6Ng+YwSt9QesETSIA/nWT4O4eGgo+vJDVtjwjLhaOiFM9LkRWufEgo/1G2cJafKrW1PzB3w==", + "requires": { + "@microsoft/sp-component-base": "1.13.0", + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-diagnostics": "1.13.0", + "@microsoft/sp-dynamic-data": "1.13.0", + "@microsoft/sp-http": "1.13.0", + "@microsoft/sp-loader": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@microsoft/sp-page-context": "1.13.0", + "@microsoft/sp-property-pane": "1.13.0", + "@microsoft/teams-js": "1.10.0", + "@types/office-js": "1.0.36", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/spfx-heft-plugins": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/spfx-heft-plugins/-/spfx-heft-plugins-1.13.0.tgz", + "integrity": "sha512-YKrVa3GgKBggsxIF3FjaBFyyYyWZ4wWW5NAbMrIX0trivvUJ/DXIE51dO0dMMrpWPhJYjsCtPufDW0HnHBCjqg==", + "dev": true, + "requires": { + "@azure/storage-blob": "~12.4.1", + "@microsoft/hashed-folder-copy-plugin": "1.13.0", + "@microsoft/loader-load-themed-styles": "1.9.89", + "@microsoft/rush-lib": "5.52.0", + "@microsoft/sp-css-loader": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@rushstack/debug-certificate-manager": "1.0.62", + "@rushstack/heft-config-file": "0.6.4", + "@rushstack/localization-plugin": "0.6.49", + "@rushstack/module-minifier-plugin": "0.4.14", + "@rushstack/node-core-library": "3.40.0", + "@rushstack/rig-package": "0.3.0", + "@rushstack/set-webpack-public-path-plugin": "3.2.69", + "@types/tapable": "1.0.6", + "autoprefixer": "9.7.1", + "colors": "~1.2.1", + "copy-webpack-plugin": "~6.0.3", + "css-loader": "~3.2.0", + "cssnano": "~4.1.10", + "file-loader": "~1.1.11", + "git-repo-info": "~2.1.1", + "glob": "~7.0.5", + "html-loader": "~0.5.1", + "lodash": "4.17.21", + "mime": "2.5.2", + "node-sass": "4.14.1", + "node-zip": "~1.1.1", + "postcss-loader": "3.0.0", + "resolve": "~1.17.0", + "sass-loader": "8.0.0", + "source-map": "0.6.1", + "source-map-loader": "0.2.4", + "tapable": "1.1.3", + "true-case-path": "~2.2.1", + "uuid": "~3.1.0", + "webpack": "~4.44.2", + "webpack-dev-server": "~3.11.0", + "webpack-sources": "1.4.3", + "xml": "~1.0.1" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.9", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.9.tgz", + "integrity": "sha512-zczolCLJ5QG42AEPQ+Qg9SRYNUyB+yZ5dzof4YEc+dyWczO9G2sBqbAjLB7IqrsdHN2apkiB2oXeDKCsq48jug==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "^0.10.2", + "tslib": "^2.0.0" + } + }, + "@azure/storage-blob": { + "version": "12.4.1", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.4.1.tgz", + "integrity": "sha512-RH6ru8LbnCC+m1rlVLon6mYUXdHsTcyUXFCJAWRQQM7p0XOwVKPS+UiVk2tZXfvMWd3q/qT/meOrEbHEcp/c4g==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-lro": "^1.0.2", + "@azure/core-paging": "^1.1.1", + "@azure/core-tracing": "1.0.0-preview.9", + "@azure/logger": "^1.0.0", + "@opentelemetry/api": "^0.10.2", + "events": "^3.0.0", + "tslib": "^2.0.0" + } + }, + "@opentelemetry/api": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.10.2.tgz", + "integrity": "sha512-GtpMGd6vkzDMYcpu2t9LlhEgMy/SzBwRnz48EejlRArYqZzqSzAsKmegUK7zHgl+EOIaK9mKHhnRaQu3qw20cA==", + "dev": true, + "requires": { + "@opentelemetry/context-base": "^0.10.2" + } + }, + "@rushstack/debug-certificate-manager": { + "version": "1.0.62", + "resolved": "https://registry.npmjs.org/@rushstack/debug-certificate-manager/-/debug-certificate-manager-1.0.62.tgz", + "integrity": "sha512-dZVe3b0bBNa/tbmvFJmfkzNJpOnKMyDh+dMDf7c8ahG+Ge7oEgC4mMgrbJLGkppXFA+uoacX4SNk8/w08iCJmA==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "node-forge": "~0.10.0", + "sudo": "~1.0.3" + } + }, + "@rushstack/heft-config-file": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.6.4.tgz", + "integrity": "sha512-chVrwZ3V2t5be1jO2h1SnyHo6gyipaMdZ+IgXWgLl16YeCHXc1z/BWqxx7CzGS9sMrC8akJFaVkrplVxvsdfmg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@rushstack/rig-package": "0.3.0", + "jsonpath-plus": "~4.0.0" + } + }, + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@rushstack/rig-package": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.0.tgz", + "integrity": "sha512-Lj6noF7Q4BBm1hKiBDw94e6uZvq1xlBwM/d2cBFaPqXeGdV+G6r3qaCWfRiSXK0pcHpGGpV5Tb2MdfhVcO6G/g==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, + "requires": { + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", + "dev": true + } + } + }, + "@microsoft/teams-js": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-1.10.0.tgz", + "integrity": "sha512-g8+ox5nWe9IjDFRHnCXk7mkQRGjHFcAMSn7JpUtJfuWu2tDUmXAp/4LUSgewvBbbmy68YtS+KTFPHRyUoTzk6w==" + }, + "@microsoft/ts-command-line": { + "version": "4.3.10", + "resolved": "https://registry.npmjs.org/@microsoft/ts-command-line/-/ts-command-line-4.3.10.tgz", + "integrity": "sha512-AgxArGqPt0H5WTo3fxNFP3Blm3obkCCopVG9kwIo+/mMdXaj6qMDn6+8Bv8+5Nke3CvvXpKAZtu3IaGY5cV1Hg==", + "dev": true, + "requires": { + "@types/argparse": "1.0.33", + "argparse": "~1.0.9", + "colors": "~1.2.1" + } + }, + "@microsoft/tsdoc": { + "version": "0.12.14", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.14.tgz", + "integrity": "sha512-518yewjSga1jLdiLrcmpMFlaba5P+50b0TWNFUpC+SL9Yzf0kMi57qw+bMl+rQ08cGqH1vLx4eg9YFUbZXgZ0Q==", + "dev": true + }, + "@microsoft/tsdoc-config": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", + "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.13.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + }, + "dependencies": { + "@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz", + "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@opencensus/web-types": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@opencensus/web-types/-/web-types-0.0.7.tgz", + "integrity": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==", + "dev": true + }, + "@opentelemetry/api": { + "version": "1.0.0-rc.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.0-rc.0.tgz", + "integrity": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==", + "dev": true + }, + "@opentelemetry/context-base": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.10.2.tgz", + "integrity": "sha512-hZNKjKOYsckoOEgBziGMnBcX0M7EtstnCmwz5jZUOUYwlZ+/xxX6z3jPu1XVO2Jivk0eLfuP9GP+vFD49CMetw==", + "dev": true + }, + "@opentelemetry/types": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/types/-/types-0.2.0.tgz", + "integrity": "sha512-GtwNB6BNDdsIPAYEdpp3JnOGO/3AJxjPvny53s3HERBdXSJTGQw8IRhiaTEX0b3w9P8+FwFZde4k+qkjn67aVw==", + "dev": true + }, + "@pnp/common": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/common/-/common-1.3.11.tgz", + "integrity": "sha512-RhYKcfMP+h0pAzORZRHSPPLOBB58djN/pfnorpWPjsx6ZxMqbiDqTzAtTF4m8z/mdNnxJr0Q3kwt4ImU3FjwnA==", + "requires": { + "adal-angular": "1.0.17", + "tslib": "1.10.0" + }, + "dependencies": { + "adal-angular": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.17.tgz", + "integrity": "sha1-bpNuDkH5HTsqiOf/ypwvb29WLMQ=" + } + } + }, + "@pnp/logging": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-1.3.11.tgz", + "integrity": "sha512-hADlIXwvF/wjee7425nFJ6NhqaWpWTJ5yg02bpwBUsiSuFqEUf+LwuAcyHQre2lMs6KyNa65FWoRQok9BlZuxA==", + "requires": { + "tslib": "1.10.0" + } + }, + "@pnp/odata": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-1.3.11.tgz", + "integrity": "sha512-yMaRiuVZRei2pkryCOqsw3ZXD2Lw30IJv136WQmQPQPOxG4cvsS9+woXkfMqbWV2KQ1evFUqVXbitIz6eDVfNA==", + "requires": { + "tslib": "1.10.0" + } + }, + "@pnp/sp": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-1.3.11.tgz", + "integrity": "sha512-NjdeGe81aukiSPelSPjgAFRC1+SrNPTXvTdEqTH+Q1ZvgNtk8bdZp6K6xf9emfeM2qZDOu9GpKZpg0W/emq++g==", + "requires": { + "tslib": "1.10.0" + } + }, + "@pnp/sp-clientsvc": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp-clientsvc/-/sp-clientsvc-1.3.11.tgz", + "integrity": "sha512-eIUnmDWjizcWJzhWxAbfsxEyHF1dabkGlihnDnlcYGhtvh8BwuM67A57qc5fbxzCS59c0YU57szB1EucoNmV4A==", + "requires": { + "tslib": "1.10.0" + } + }, + "@pnp/sp-taxonomy": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp-taxonomy/-/sp-taxonomy-1.3.11.tgz", + "integrity": "sha512-shzCSjmOlr6mojCXJkfD8Xf9lJnhphq4Fj6mdUQGwpak+VIU+Fogf6AI0j6AReCKtKsKyqfud9X7C8tH07C3DA==", + "requires": { + "tslib": "1.10.0" + } + }, + "@pnp/spfx-property-controls": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@pnp/spfx-property-controls/-/spfx-property-controls-3.3.0.tgz", + "integrity": "sha512-jSoAVFBnClPOiuB3D4PrBu3g9oMxSxiHdzUW7dbtf2DcKn+273+ZsvMX2Fn94RjT9dzGVu+0ODF5s0SVzmBfIA==", + "requires": { + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-office-ui-fabric-core": "1.13.1", + "@microsoft/sp-property-pane": "1.13.1", + "@microsoft/sp-webpart-base": "1.13.1", + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11", + "@pnp/odata": "1.3.11", + "@pnp/sp": "1.3.11", + "@pnp/sp-clientsvc": "1.3.11", + "@pnp/sp-taxonomy": "1.3.11", + "@pnp/telemetry-js": "2.0.0", + "@uifabric/icons": "7.5.17", + "lodash.omit": "4.5.0", + "markdown-to-jsx": "^6.11.4", + "office-ui-fabric-react": "7.174.1", + "react": "16.13.1", + "react-ace": "5.8.0", + "react-dom": "16.13.1" + }, + "dependencies": { + "@microsoft/office-ui-fabric-react-bundle": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.13.1.tgz", + "integrity": "sha512-Tt99MShwPSqULImwsXT0umaG7mPTEwqbKq4ZvVJPjkydkpDZBTeDV6C+oGpqSa+wrbOi3Sk94Vyb71tY92W0VA==", + "requires": { + "@microsoft/sp-core-library": "1.13.1", + "@uifabric/icons": "7.6.0", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + }, + "dependencies": { + "@uifabric/icons": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.0.tgz", + "integrity": "sha512-Xx+CVMYOafJDijllYYkgE22lvKpKaodrB9XUgVSI77QveGcOV+x9z5FVa5CzwERb6Zjoafyj7q7SmH/EOi+AZw==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "tslib": "^1.10.0" + } + }, + "office-ui-fabric-react": { + "version": "7.176.2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", + "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.0", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.0", + "@uifabric/icons": "^7.6.0", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + } + } + }, + "@microsoft/sp-component-base": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.13.1.tgz", + "integrity": "sha512-8jcxFs7GRPO4xyqs0U9bhxG0iS+5a2yCF0XanauzK5yweIVCjGUGatM581ynCP0hD+HshtdEYV0Y2zMZ9OGZxQ==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.1", + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-dynamic-data": "1.13.1", + "@microsoft/sp-http": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-module-interfaces": "1.13.1", + "@microsoft/sp-page-context": "1.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-core-library": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.13.1.tgz", + "integrity": "sha512-qTBMa3whxhMXn79YS2S+jq+a+iAId9v+WvZOvcgre4dI/7LL7zPhbsHQTfWhzzuB4f2tPxkldHO8eOv63Ud68Q==", + "requires": { + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-module-interfaces": "1.13.1", + "@microsoft/sp-odata-types": "1.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-diagnostics": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.13.1.tgz", + "integrity": "sha512-KhzJo8kGL1M92WSDPhLlWyEnyAnkiRNMyQBb4eB9EYB8yZMhM2iBPpflIzatuJSOyNmq3jfmBS4G/ASg1tzyiQ==", + "requires": { + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1" + } + }, + "@microsoft/sp-dynamic-data": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.13.1.tgz", + "integrity": "sha512-x3Fk6dC5JgUOKhiFQ5JphMf9k+IhpLEWWk1bsmsLak3pCWeY9Xp3kR3SlrdPGaFtoa3wbFlEsYZ8Log+ut0b1w==", + "requires": { + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-module-interfaces": "1.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-http": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.13.1.tgz", + "integrity": "sha512-MhlFCOhFUUt7HpG3oa9LSu7O1dqmyJfU2Zmk+uPrUnudy5JIL2K83g5rv2TK8YeGXDXxKEmqZsOsWP4ZHbo9YQ==", + "requires": { + "@microsoft/microsoft-graph-client": "~1.1.0", + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@types/adal-angular": "1.0.1", + "adal-angular": "1.0.16", + "msal": "1.4.13", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-loader": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.13.1.tgz", + "integrity": "sha512-Srry9SqR2JQA4l8+I1LTdO0lIkrekxWOxo9/2RgCbQtMyG6sSSCvw3VxUqRZ6VEFQbJzmmGFCWZRLGOho0GMlw==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.1", + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-dynamic-data": "1.13.1", + "@microsoft/sp-http": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-module-interfaces": "1.13.1", + "@microsoft/sp-odata-types": "1.13.1", + "@microsoft/sp-page-context": "1.13.1", + "@microsoft/sp-polyfills": "1.13.1", + "@rushstack/loader-raw-script": "1.3.175", + "@types/requirejs": "2.1.29", + "office-ui-fabric-react": "7.176.2", + "raw-loader": "~0.5.1", + "react": "16.13.1", + "react-dom": "16.13.1", + "requirejs": "2.3.6", + "tslib": "~1.10.0" + }, + "dependencies": { + "@uifabric/icons": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.2.tgz", + "integrity": "sha512-q7jEIwB5Tt2Egw9fqdgNPlBqBQ6hNNMQ3qs5y4S4YETRluB+AQTdKbrbYMsXo3Pm0FsJnRfiDojMzxusGX+MWA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "tslib": "^1.10.0" + } + }, + "office-ui-fabric-react": { + "version": "7.176.2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", + "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.0", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.0", + "@uifabric/icons": "^7.6.0", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + } + } + }, + "@microsoft/sp-lodash-subset": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.13.1.tgz", + "integrity": "sha512-SXRG4KO0k/VVqWwkFFpC0177GxOOZ8jvsJHkg+i42+FyHGs5Uu4itffLarraGnPMokZLxHpkig9xRc8ZDytN7A==", + "requires": { + "@types/lodash": "4.14.117", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-module-interfaces": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.13.1.tgz", + "integrity": "sha512-qrzmQW+T/2+s9/Lu1I0G1chF5DPN4xcR7znn3N3IjuM67o6E4cdvKel+m66mrqqzSGfo4qmCb6lGYTTYZsS3vw==" + }, + "@microsoft/sp-odata-types": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.13.1.tgz", + "integrity": "sha512-+dHWQY4E44OT/2E8c+lsSAxQJiRiRgk4jLLpNeOj/NzlydS8D85iUyOGlKfbmRu/6ujrc31/L77juKKzPQh7kw==", + "requires": { + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-office-ui-fabric-core": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.13.1.tgz", + "integrity": "sha512-vsOv5QLaII35Nznw/pOyFIFBtxXkzA1bSif4MaRJpnENSAR49+050ot/MWYRMBKoGiXq/5cZD8zOAiNMwASoxQ==", + "requires": { + "office-ui-fabric-core": "9.6.1-fluent2", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-page-context": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.13.1.tgz", + "integrity": "sha512-BO8I0TWCaubYpMKZ3/eTeGC/tx1nRirk2ulkQ/ggk2PhuKJo6NGcXKo/JHe48Mje4Yh4d1r5FkjUGHoqKK3ruA==", + "requires": { + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-dynamic-data": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-odata-types": "1.13.1", + "tslib": "~1.10.0" + } + }, + "@microsoft/sp-polyfills": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.13.1.tgz", + "integrity": "sha512-sSN0su+v3tAzNTFt2QYJ/vzAIAZXZX6ox/1IFGFzNH0U30jdtfGG3vs5d45NkFkVLjDw9DL8Sc8uSi1lpEPNpA==", + "requires": { + "es6-promise": "4.2.4", + "es6-symbol": "3.1.3", + "tslib": "~1.10.0", + "whatwg-fetch": "2.0.3", + "whatwg-url": "4.7.1" + } + }, + "@microsoft/sp-property-pane": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.13.1.tgz", + "integrity": "sha512-eRqnrZGGv0nhDw4JdIi6wxCInFP2zlEZXMDFNaCTFJwM/ritRqGrHyVTxviENg7PXC5TTkVvIM9Hk/cNISRftg==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.13.1", + "@microsoft/sp-component-base": "1.13.1", + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-dynamic-data": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + }, + "dependencies": { + "@uifabric/icons": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.2.tgz", + "integrity": "sha512-q7jEIwB5Tt2Egw9fqdgNPlBqBQ6hNNMQ3qs5y4S4YETRluB+AQTdKbrbYMsXo3Pm0FsJnRfiDojMzxusGX+MWA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "tslib": "^1.10.0" + } + }, + "office-ui-fabric-react": { + "version": "7.176.2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", + "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.0", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.0", + "@uifabric/icons": "^7.6.0", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + } + } + }, + "@microsoft/sp-webpart-base": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.13.1.tgz", + "integrity": "sha512-qBBtUaLGzP2rBuCrbwZQuEZqQtMmhF4MZQWGNvlDpJNOQEXJ6hj2vAnKxJjlTXdttWbfUdMWsyOx1Nb0bxOACg==", + "requires": { + "@microsoft/sp-component-base": "1.13.1", + "@microsoft/sp-core-library": "1.13.1", + "@microsoft/sp-diagnostics": "1.13.1", + "@microsoft/sp-dynamic-data": "1.13.1", + "@microsoft/sp-http": "1.13.1", + "@microsoft/sp-loader": "1.13.1", + "@microsoft/sp-lodash-subset": "1.13.1", + "@microsoft/sp-module-interfaces": "1.13.1", + "@microsoft/sp-page-context": "1.13.1", + "@microsoft/sp-property-pane": "1.13.1", + "@microsoft/teams-js": "1.10.0", + "@types/office-js": "1.0.36", + "office-ui-fabric-react": "7.176.2", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "~1.10.0" + }, + "dependencies": { + "@uifabric/icons": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.2.tgz", + "integrity": "sha512-q7jEIwB5Tt2Egw9fqdgNPlBqBQ6hNNMQ3qs5y4S4YETRluB+AQTdKbrbYMsXo3Pm0FsJnRfiDojMzxusGX+MWA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "tslib": "^1.10.0" + } + }, + "office-ui-fabric-react": { + "version": "7.176.2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", + "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.0", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.0", + "@uifabric/icons": "^7.6.0", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + } + } + }, + "@uifabric/icons": { + "version": "7.5.17", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.17.tgz", + "integrity": "sha512-2S1kse0gtseTuV2r59iWukLxxoOJ6GgP2Yhxt9oxzaP9QubpYdxCUepvJmfPQQvvy4GELdykDUWQ6/hbzliJyw==", + "requires": { + "@uifabric/set-version": "^7.0.23", + "@uifabric/styling": "^7.16.18", + "tslib": "^1.10.0" + } + }, + "es6-promise": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", + "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" + }, + "msal": { + "version": "1.4.13", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.13.tgz", + "integrity": "sha512-uFEa4KGlpGqNMwa7/1OQc6WQUF8iwHbaiHMVn0Cl66Ec7o30ZTtX9s9OWrf0wAxp8Mwg0JEE886z/PHpsiZUxQ==", + "requires": { + "tslib": "^1.9.3" + } + }, + "office-ui-fabric-react": { + "version": "7.174.1", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.174.1.tgz", + "integrity": "sha512-zRUpUqZtVncvb+Tt+5SVNEcI3MfpwTLU+v2u7ZdF9ukPbD+UBKJSkIbydyO0P2S5jVizgdqioSOarfUA70ICvw==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.17.6", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.9.26", + "@uifabric/icons": "^7.5.23", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.0", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + }, + "dependencies": { + "@uifabric/icons": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.2.tgz", + "integrity": "sha512-q7jEIwB5Tt2Egw9fqdgNPlBqBQ6hNNMQ3qs5y4S4YETRluB+AQTdKbrbYMsXo3Pm0FsJnRfiDojMzxusGX+MWA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "tslib": "^1.10.0" + } + } + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + }, + "whatwg-fetch": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", + "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" + }, + "whatwg-url": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.7.1.tgz", + "integrity": "sha1-303C4/JaY7H6WzLtbWwTlXfWkN4=", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "@pnp/telemetry-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@pnp/telemetry-js/-/telemetry-js-2.0.0.tgz", + "integrity": "sha512-qFNm3mTerTnxgTR6c/4iMMt8EUKrQn5z0XG/IQtpNlp6m7KXRDFR87mQKeBVtSv2LhxGO0VNFndKJIibBw52zQ==", + "requires": { + "whatwg-fetch": "2.0.4" + }, + "dependencies": { + "whatwg-fetch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + } + } + }, + "@pnpm/error": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/error/-/error-1.4.0.tgz", + "integrity": "sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA==", + "dev": true + }, + "@pnpm/link-bins": { + "version": "5.3.25", + "resolved": "https://registry.npmjs.org/@pnpm/link-bins/-/link-bins-5.3.25.tgz", + "integrity": "sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/package-bins": "4.1.0", + "@pnpm/read-modules-dir": "2.0.3", + "@pnpm/read-package-json": "4.0.0", + "@pnpm/read-project-manifest": "1.1.7", + "@pnpm/types": "6.4.0", + "@zkochan/cmd-shim": "^5.0.0", + "is-subdir": "^1.1.1", + "is-windows": "^1.0.2", + "mz": "^2.7.0", + "normalize-path": "^3.0.0", + "p-settle": "^4.1.1", + "ramda": "^0.27.1" + } + }, + "@pnpm/package-bins": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/package-bins/-/package-bins-4.1.0.tgz", + "integrity": "sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q==", + "dev": true, + "requires": { + "@pnpm/types": "6.4.0", + "fast-glob": "^3.2.4", + "is-subdir": "^1.1.1" + } + }, + "@pnpm/read-modules-dir": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@pnpm/read-modules-dir/-/read-modules-dir-2.0.3.tgz", + "integrity": "sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A==", + "dev": true, + "requires": { + "mz": "^2.7.0" + } + }, + "@pnpm/read-package-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@pnpm/read-package-json/-/read-package-json-4.0.0.tgz", + "integrity": "sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "load-json-file": "^6.2.0", + "normalize-package-data": "^3.0.2" + }, + "dependencies": { + "hosted-git-info": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz", + "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.0.0", + "type-fest": "^0.6.0" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "@pnpm/read-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/read-project-manifest/-/read-project-manifest-1.1.7.tgz", + "integrity": "sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "@pnpm/write-project-manifest": "1.1.7", + "detect-indent": "^6.0.0", + "fast-deep-equal": "^3.1.3", + "graceful-fs": "4.2.4", + "is-windows": "^1.0.2", + "json5": "^2.1.3", + "parse-json": "^5.1.0", + "read-yaml-file": "^2.0.0", + "sort-keys": "^4.1.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + } + } + }, + "@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true + }, + "@pnpm/write-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/write-project-manifest/-/write-project-manifest-1.1.7.tgz", + "integrity": "sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA==", + "dev": true, + "requires": { + "@pnpm/types": "6.4.0", + "json5": "^2.1.3", + "mz": "^2.7.0", + "write-file-atomic": "^3.0.3", + "write-yaml-file": "^4.1.3" + } + }, + "@rushstack/debug-certificate-manager": { + "version": "1.0.26", + "resolved": "https://registry.npmjs.org/@rushstack/debug-certificate-manager/-/debug-certificate-manager-1.0.26.tgz", + "integrity": "sha512-waSJEp4Zk0z4MxZAqp04LUe8GNnVaVJ8FCdSb2gQ/zf4AwvnpP51X7GiKhDG16gfE9Wh/wNf54nHZzqi7jQEXg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.38.0", + "node-forge": "~0.7.1", + "sudo": "~1.0.3" + } + }, + "@rushstack/eslint-config": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-0.5.4.tgz", + "integrity": "sha512-AB7wAXYTuF0z1x9BpFM6Nm0hyk9v94k55w0bZHDJJoptopEOsoEEFf4QVnNRCnYi6JAABzOtvq2vW4g4mAx+Xw==", + "dev": true, + "requires": { + "@rushstack/eslint-plugin": "0.3.1", + "@typescript-eslint/eslint-plugin": "2.3.3", + "@typescript-eslint/experimental-utils": "2.3.3", + "@typescript-eslint/parser": "2.3.3", + "@typescript-eslint/typescript-estree": "2.3.3", + "eslint-plugin-promise": "~4.2.1", + "eslint-plugin-react": "~7.16.0", + "eslint-plugin-security": "~1.4.0", + "eslint-plugin-tsdoc": "~0.2.1" + } + }, + "@rushstack/eslint-patch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz", + "integrity": "sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==", + "dev": true + }, + "@rushstack/eslint-plugin": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.3.1.tgz", + "integrity": "sha512-7C1tEdlNTxd8YP852jZnA1RAFEtKTEM112nPQWqyYp5IFHvNEnIaOSvHzutmTItjUCk/S7OygqK6oJyd4xQltQ==", + "dev": true + }, + "@rushstack/eslint-plugin-packlets": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-packlets/-/eslint-plugin-packlets-0.2.2.tgz", + "integrity": "sha512-8kKs5fq9Mm9sP4W7ETbp48eH6iECfXDKP1mdg2iBPl8CaZZHMzVYC2vQSSSOOMv+OV23LreRFWV0LlllEDuD3Q==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.1", + "@typescript-eslint/experimental-utils": "^3.4.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/eslint-plugin-security": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.1.4.tgz", + "integrity": "sha512-AiNUS5H4/RvyNI9FDKdd4ya3PovjpPVU9Pr7He1JPvqLHOCT8P9n5YpRHjxx0ftD77mDLT5HrcOKjxTW7BZQHg==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.1", + "@typescript-eslint/experimental-utils": "^3.4.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/heft-config-file": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.6.2.tgz", + "integrity": "sha512-A6ojvR+BNd3i9efrT5mN+V5pCXzwEHdLX4VZ4bO1WcXbid31e2gh9tbmvQzETym+YqXDXmDAYOdTuprD/NUs1w==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@rushstack/rig-package": "0.2.13", + "jsonpath-plus": "~4.0.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@rushstack/rig-package": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.13.tgz", + "integrity": "sha512-qQMAFKvfb2ooaWU9DrGIK9d8QfyHy/HiuITJbWenlKgzcDXQvQgEduk57YF4Y7LLasDJ5ZzLaaXwlfX8qCRe5Q==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/loader-raw-script": { + "version": "1.3.175", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.3.175.tgz", + "integrity": "sha512-Rf+DewV7fMB5OX3yvhPNT5QRQgvI+2MWGbBmI0aYC5Aiax+RT5d+TN7CXket5CLFvT9/un3wN41vMtlnUbszKQ==", + "requires": { + "loader-utils": "~1.1.0" + }, + "dependencies": { + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + } + } + }, + "@rushstack/localization-plugin": { + "version": "0.6.49", + "resolved": "https://registry.npmjs.org/@rushstack/localization-plugin/-/localization-plugin-0.6.49.tgz", + "integrity": "sha512-DprOh+bW+USGIXLthwZLd5/0GrbRdNLjgEXMu7gNZevR96X0L92aUL3SYBgZV6+sPQiSWXi/LMyoz3h07tng3g==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@rushstack/typings-generator": "0.3.9", + "@types/node": "10.17.13", + "@types/tapable": "1.0.6", + "decache": "~4.5.1", + "loader-utils": "~1.1.0", + "lodash": "~4.17.15", + "pseudolocale": "~1.1.0", + "xmldoc": "~1.1.2" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/module-minifier-plugin": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/@rushstack/module-minifier-plugin/-/module-minifier-plugin-0.4.14.tgz", + "integrity": "sha512-YFt7441WpshHOnERQubIHK+j84hv4neEMyKkcgGyjgFQFyn+K6FslteVWL3KWQpxDL+BvhJ8D+4QMInatytjLA==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "@types/tapable": "1.0.6", + "source-map": "~0.7.3", + "tapable": "1.1.3", + "terser": "4.7.0" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + }, + "terser": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.7.0.tgz", + "integrity": "sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + } + } + }, + "@rushstack/node-core-library": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", + "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + }, + "dependencies": { + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/package-deps-hash": { + "version": "3.0.61", + "resolved": "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-3.0.61.tgz", + "integrity": "sha512-xvywffZ+XWORfwNHMxHZ1DKQuWYSH5Dd0fKykxc0m3S+6042iNQ2ihX+YvWKRWwVLQTCoAGENPEMdP0tELaDnQ==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/rig-package": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.12.tgz", + "integrity": "sha512-nbePcvF8hQwv0ql9aeQxcaMPK/h1OLAC00W7fWCRWIvD2MchZOE8jumIIr66HGrfG2X1sw++m/ZYI4D+BM5ovQ==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + }, + "dependencies": { + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + } + } + }, + "@rushstack/set-webpack-public-path-plugin": { + "version": "3.2.69", + "resolved": "https://registry.npmjs.org/@rushstack/set-webpack-public-path-plugin/-/set-webpack-public-path-plugin-3.2.69.tgz", + "integrity": "sha512-+ZcIRjMgOzgjIlgbB1j+z9jBkzkFrCU0ALwKsQjNHW3v+twF1LvzZT5PJjthCrt61rJiLWSg4d2xt3ABMVNKXQ==", + "dev": true, + "requires": { + "lodash": "~4.17.15" + } + }, + "@rushstack/stream-collator": { + "version": "4.0.116", + "resolved": "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.116.tgz", + "integrity": "sha512-JCOvnk0fWrKTQ31QuPSACVNjK8lS7EcDAAJpy7HXJT2RttKyx/8FMtsdn04C7ryHKtkrxAwDHkLOflZdqixmZw==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@rushstack/terminal": "0.2.18" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/terminal": { + "version": "0.2.18", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.2.18.tgz", + "integrity": "sha512-wqLDkOvOFWc919e3vC7k7x6TyuUlo7cEyRuyyWJPRxv2cYMmpej4zq/qnnnr40CM8YV6kptkjaS4Gs5vkagkIg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@types/node": "10.17.13", + "wordwrap": "~1.0.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@rushstack/tree-pattern": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@rushstack/tree-pattern/-/tree-pattern-0.2.1.tgz", + "integrity": "sha512-ZRPQdV0LxUY/HRIvVKNz3Sb/qbklSthL2pY0qkNoycXKcXbCgXEP3TxL+i1/tW9g1jqft4o+pl9wx12Q6Uc0Xw==", + "dev": true + }, + "@rushstack/ts-command-line": { + "version": "4.7.10", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.7.10.tgz", + "integrity": "sha512-8t042g8eerypNOEcdpxwRA3uCmz0duMo21rG4Z2mdz7JxJeylDmzjlU3wDdef2t3P1Z61JCdZB6fbm1Mh0zi7w==", + "dev": true, + "requires": { + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" + }, + "dependencies": { + "@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", + "dev": true + } + } + }, + "@rushstack/typings-generator": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@rushstack/typings-generator/-/typings-generator-0.3.9.tgz", + "integrity": "sha512-902W26+kTfrFRpoQdviZwc3mcT33F7uVLfN981elFmn/10VEgXAZgDss+/RH+XamcUIN8GGbI0KRSyU3zStPVg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.40.0", + "@types/node": "10.17.13", + "chokidar": "~3.4.0", + "glob": "~7.0.5" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz", + "integrity": "sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@types/adal-angular": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/adal-angular/-/adal-angular-1.0.1.tgz", + "integrity": "sha512-2sRGxJYrluhvIz8ae98i5k5woe9Fics4dMFHTcNfY2xAkj5QGZor+sfZzlgM58Fpw7Kklau9Gn6OhgJP25dKug==" + }, + "@types/anymatch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-3.0.0.tgz", + "integrity": "sha512-qLChUo6yhpQ9k905NwL74GU7TxH+9UODwwQ6ICNI+O6EDMExqH/Cv9NsbmcZ7yC/rRXJ/AHCzfgjsFRY5fKjYw==", + "dev": true, + "requires": { + "anymatch": "*" + } + }, + "@types/argparse": { + "version": "1.0.33", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.33.tgz", + "integrity": "sha512-VQgHxyPMTj3hIlq9SY1mctqx+Jj8kpQfoLvDlVSDNOyuYs8JYfkuY3OW/4+dO657yPmNhHpePRx0/Tje5ImNVQ==", + "dev": true + }, + "@types/babel__core": { + "version": "7.1.17", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz", + "integrity": "sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/chai": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-3.5.2.tgz", + "integrity": "sha1-wRzSgX06QBt7oPWkIPNcVhObHB4=", + "dev": true + }, + "@types/chalk": { + "version": "0.4.31", + "resolved": "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz", + "integrity": "sha1-ox10JBprHtu5c8822XooloNKUfk=", + "dev": true + }, + "@types/eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/glob-stream": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-6.1.1.tgz", + "integrity": "sha512-AGOUTsTdbPkRS0qDeyeS+6KypmfVpbT5j23SN8UPG63qjKXNKjXn6V9wZUr8Fin0m9l8oGYaPK8b2WUMF8xI1A==", + "dev": true, + "requires": { + "@types/glob": "*", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/gulp": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.6.tgz", + "integrity": "sha512-0E8/iV/7FKWyQWSmi7jnUvgXXgaw+pfAzEB06Xu+l0iXVJppLbpOye5z7E2klw5akXd+8kPtYuk65YBcZPM4ow==", + "dev": true, + "requires": { + "@types/undertaker": "*", + "@types/vinyl-fs": "*", + "chokidar": "^2.1.2" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "25.2.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.2.1.tgz", + "integrity": "sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA==", + "dev": true, + "requires": { + "jest-diff": "^25.2.1", + "pretty-format": "^25.2.1" + } + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "@types/lodash": { + "version": "4.14.117", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.117.tgz", + "integrity": "sha512-xyf2m6tRbz8qQKcxYZa7PA4SllYcay+eh25DN3jmNYY6gSTL7Htc/bttVdkqj2wfJGbeWlQiX8pIyJpKU+tubw==" + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/mocha": { + "version": "2.2.48", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-2.2.48.tgz", + "integrity": "sha512-nlK/iyETgafGli8Zh9zJVCTicvU3iajSkRwOh3Hhiva598CMqNJ4NcVCGMTGKpGpTYj/9R8RLzS9NAykSSCqGw==", + "dev": true + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "@types/node-fetch": { + "version": "2.5.12", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.12.tgz", + "integrity": "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + }, + "dependencies": { + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } + } + }, + "@types/node-notifier": { + "version": "0.0.28", + "resolved": "https://registry.npmjs.org/@types/node-notifier/-/node-notifier-0.0.28.tgz", + "integrity": "sha1-hro9OqjZGDUswxkdiN4yiyDck8E=", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/office-js": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/office-js/-/office-js-1.0.36.tgz", + "integrity": "sha512-v5jOXCPS0nbbuVzZThhDMzttuJrpzzvx1GsPo5Qed8Cs9uzMwEV1vdkKN5zLFnAUlEF4s8Szl9KXnhnSvH89Kw==" + }, + "@types/orchestrator": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.0.30.tgz", + "integrity": "sha1-3N2o1ke1aLex40F4yx8LRKyamOU=", + "dev": true, + "requires": { + "@types/q": "*" + } + }, + "@types/prettier": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==", + "dev": true + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "@types/requirejs": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/@types/requirejs/-/requirejs-2.1.29.tgz", + "integrity": "sha1-vEi8gzwHnCwkumr7ym06A7P04vM=" + }, + "@types/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-iotVxtCCsPLRAvxMFFgxL8HD2l4mAZ2Oin7/VJ2ooWO0VOK4EGOGmZWZn1uCq7RofR3I/1IOSjCHlFT71eVK0Q==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "dev": true + }, + "@types/through2": { + "version": "2.0.32", + "resolved": "https://registry.npmjs.org/@types/through2/-/through2-2.0.32.tgz", + "integrity": "sha1-RwAkRQ8at2QPGfnr9C09pXTCYSk=", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/tunnel": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.1.tgz", + "integrity": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/undertaker": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.7.tgz", + "integrity": "sha512-xuY7nBwo1zSRoY2aitp/HArHfTulFAKql2Fr4b4mWbBBP+F50n7Jm6nwISTTMaDk2xvl92O10TTejVF0Q9mInw==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/undertaker-registry": "*", + "async-done": "~1.3.2" + } + }, + "@types/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==", + "dev": true + }, + "@types/vinyl": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.3.tgz", + "integrity": "sha512-hrT6xg16CWSmndZqOTJ6BGIn2abKyTw0B58bI+7ioUoj3Sma6u8ftZ1DTI2yCaJamOVGLOnQWiPH3a74+EaqTA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/vinyl-fs": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-2.4.12.tgz", + "integrity": "sha512-LgBpYIWuuGsihnlF+OOWWz4ovwCYlT03gd3DuLwex50cYZLmX3yrW+sFF9ndtmh7zcZpS6Ri47PrIu+fV+sbXw==", + "dev": true, + "requires": { + "@types/glob-stream": "*", + "@types/node": "*", + "@types/vinyl": "*" + } + }, + "@types/webpack": { + "version": "4.41.24", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.24.tgz", + "integrity": "sha512-1A0MXPwZiMOD3DPMuOKUKcpkdPo8Lq33UGggZ7xio6wJ/jV1dAu5cXDrOfGDnldUroPIRLsr/DT43/GqOA4RFQ==", + "dev": true, + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "@types/webpack-env": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.13.0.tgz", + "integrity": "sha1-MEQ4FkfhHulzxa8uklMjkw9pHYA=", + "dev": true + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "@types/yargs": { + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-0.0.34.tgz", + "integrity": "sha1-FWBCn8VQxDvEGnt9PfoK+8yRSjU=", + "dev": true + }, + "@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", + "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.3.3.tgz", + "integrity": "sha512-12cCbwu5PbQudkq2xCIS/QhB7hCMrsNPXK+vJtqy/zFqtzVkPRGy12O5Yy0gUK086f3VHV/P4a4R4CjMW853pA==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "2.3.3", + "eslint-utils": "^1.4.2", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^2.0.1", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.3.3.tgz", + "integrity": "sha512-MQ4jKPMTU1ty4TigJCRKFPye2qyQdH8jzIIkceaHgecKFmkNS1hXPqKiZ+mOehkz6+HcN5Nuvwm+frmWZR9tdg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "2.3.3", + "eslint-scope": "^5.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.3.3.tgz", + "integrity": "sha512-+cV53HuYFeeyrNW8x/rgPmbVrzzp/rpRmwbJnNtwn4K8mroL1BdjxwQh7X9cUHp9rm4BBiEWmD3cSBjKG7d5mw==", + "dev": true, + "requires": { + "@types/eslint-visitor-keys": "^1.0.0", + "@typescript-eslint/experimental-utils": "2.3.3", + "@typescript-eslint/typescript-estree": "2.3.3", + "eslint-visitor-keys": "^1.1.0" + } + }, + "@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.3.3.tgz", + "integrity": "sha512-GkACs12Xp8d/STunNv/iSMYJFQrkrax9vuPZySlgSzoJJtw1cp6tbEw4qsLskQv6vloLrkFJHcTJ0a/yCB5cIA==", + "dev": true, + "requires": { + "glob": "^7.1.4", + "is-glob": "^4.0.1", + "lodash.unescape": "4.0.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "@uifabric/foundation": { + "version": "7.10.1", + "resolved": "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.1.tgz", + "integrity": "sha512-Op05qHLBFEieT4+fG8OgpzqDHTQyei1dgVXDd6M4VS6CFJ5ZIPtC7Lwi+ZlkPkwUwccQ9mijuQumzpNKdv035A==", + "requires": { + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.0", + "@uifabric/utilities": "^7.33.5", + "tslib": "^1.10.0" + } + }, + "@uifabric/icons": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.0.tgz", + "integrity": "sha512-Xx+CVMYOafJDijllYYkgE22lvKpKaodrB9XUgVSI77QveGcOV+x9z5FVa5CzwERb6Zjoafyj7q7SmH/EOi+AZw==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "tslib": "^1.10.0" + } + }, + "@uifabric/merge-styles": { + "version": "7.19.2", + "resolved": "https://registry.npmjs.org/@uifabric/merge-styles/-/merge-styles-7.19.2.tgz", + "integrity": "sha512-kTlhwglDqwVgIaJq+0yXgzi65plGhmFcPrfme/rXUGMJZoU+qlGT5jXj5d3kuI59p6VB8jWEg9DAxHozhYeu0g==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "@uifabric/react-hooks": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/@uifabric/react-hooks/-/react-hooks-7.14.0.tgz", + "integrity": "sha512-Ndu/DEKHF4gFXEZa2AGgSkdWaj+njVrsSyXbkWRh2UZReFWnH1LMko9p/ZCwk1i9kAd5CUmyIfURUzIEya9YCg==", + "requires": { + "@fluentui/react-window-provider": "^1.0.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.33.5", + "tslib": "^1.10.0" + } + }, + "@uifabric/set-version": { + "version": "7.0.24", + "resolved": "https://registry.npmjs.org/@uifabric/set-version/-/set-version-7.0.24.tgz", + "integrity": "sha512-t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg==", + "requires": { + "tslib": "^1.10.0" + } + }, + "@uifabric/styling": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@uifabric/styling/-/styling-7.20.0.tgz", + "integrity": "sha512-SoaK5J4cwn8D9DWejRlWo+TmKZaHIiVlkIH+B2zLXE8Uc4ZYcotwYGxaSc1gCA16viLvGQkQU+ieWFq91RxdRw==", + "requires": { + "@fluentui/theme": "^1.7.4", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.33.5", + "tslib": "^1.10.0" + } + }, + "@uifabric/utilities": { + "version": "7.33.5", + "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.33.5.tgz", + "integrity": "sha512-I+Oi0deD/xltSluFY8l2EVd/J4mvOaMljxKO2knSD9/KoGDlo/o5GN4gbnVo8nIt76HWHLAk3KtlJKJm6BhbIQ==", + "requires": { + "@fluentui/dom-utilities": "^1.1.2", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/set-version": "^7.0.24", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "@yarnpkg/lockfile": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.0.2.tgz", + "integrity": "sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw==", + "dev": true + }, + "@zkochan/cmd-shim": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-5.2.1.tgz", + "integrity": "sha512-oBPLTj/T1t488X1hVv99HbX7AATpApeue/OWWtD37PYxcJN4YBEpFyf86KlYb/51JrqyPe9Rv7z3/3T3p9AERg==", + "dev": true, + "requires": { + "cmd-extension": "^1.0.1", + "is-windows": "^1.0.2" + } + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + } + } + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "adal-angular": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.16.tgz", + "integrity": "sha1-4rwxvHEqr/ugU6pN1GvITrXSCQ8=" + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + } + } + }, + "ajv": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.2.5.tgz", + "integrity": "sha1-tjcjTT4mdetfefxlIkKoU6SMtJ8=", + "dev": true, + "requires": { + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "json-schema-traverse": "^0.3.0", + "json-stable-stringify": "^1.0.1" + }, + "dependencies": { + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + } + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", + "dev": true + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", + "dev": true + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "dev": true, + "requires": { + "buffer-equal": "^1.0.0" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "dev": true + }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", + "dev": true, + "requires": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "requires": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "ast-types": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", + "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", + "dev": true, + "requires": { + "async-done": "^1.2.2" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + } + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "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" + } + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "babel-jest": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz", + "integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==", + "dev": true, + "requires": { + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "dependencies": { + "istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-jest-hoist": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz", + "integrity": "sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz", + "integrity": "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz", + "integrity": "sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^25.5.0", + "babel-preset-current-node-syntax": "^0.1.2" + } + }, + "bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", + "dev": true, + "requires": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "beeper": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", + "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", + "dev": true + }, + "better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "requires": { + "is-windows": "^1.0.0" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "block-stream": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", + "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", + "dev": true, + "requires": { + "inherits": "~2.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==", + "dev": true + }, + "body-parser": { + "version": "1.18.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", + "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", + "dev": true, + "requires": { + "bytes": "3.0.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "~1.6.3", + "iconv-lite": "0.4.23", + "on-finished": "~2.3.0", + "qs": "6.5.2", + "raw-body": "2.3.3", + "type-is": "~1.6.16" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "brace": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz", + "integrity": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", + "dev": true + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=", + "dev": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + } + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001294", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz", + "integrity": "sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-table": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", + "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", + "dev": true, + "requires": { + "colors": "1.0.3" + }, + "dependencies": { + "colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", + "dev": true + } + } + }, + "cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "dev": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "cmd-extension": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cmd-extension/-/cmd-extension-1.0.2.tgz", + "integrity": "sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g==", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", + "dev": true, + "requires": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "requires": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "dev": true + }, + "colors": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", + "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + } + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "connect-livereload": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.5.4.tgz", + "integrity": "sha1-gBV9E3HJ83zBQDmrGJWXDRGdw7w=", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", + "dev": true + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "requires": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "copy-webpack-plugin": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.0.4.tgz", + "integrity": "sha512-zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^2.7.0", + "serialize-javascript": "^4.0.0", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + } + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-loader": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.2.1.tgz", + "integrity": "sha512-q40kYdcBNzMvkIImCL2O+wk8dh+RGwPPV9Dfz3n7XtOYPXqe2Z6VgtvoxjkLHz02gmhepG9sOAJOUlx+3hHsBg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "css-modules-loader-core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz", + "integrity": "sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=", + "dev": true, + "requires": { + "icss-replace-symbols": "1.1.0", + "postcss": "6.0.1", + "postcss-modules-extract-imports": "1.1.0", + "postcss-modules-local-by-default": "1.2.0", + "postcss-modules-scope": "1.1.0", + "postcss-modules-values": "1.3.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz", + "integrity": "sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "dev": true + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "dev": true + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "dateformat": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", + "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=", + "dev": true + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "debuglog": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", + "dev": true + }, + "decache": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/decache/-/decache-4.5.1.tgz", + "integrity": "sha512-5J37nATc6FmOTLbcsr9qx7Nm28qQyg1SK4xyEHqM0IBkNhWFp0Sm+vKoWYHD8wq+OUEb9jLyaKFfzzd1A9hcoA==", + "dev": true, + "requires": { + "callsite": "^1.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decomment": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/decomment/-/decomment-0.9.5.tgz", + "integrity": "sha512-h0TZ8t6Dp49duwyDHo3iw67mnh9/UpFiSSiOb5gDK1sqoXzrfX/SQxIUQd2R2QEiSnqib0KF2fnKnGfAhAs6lg==", + "dev": true, + "requires": { + "esprima": "4.0.1" + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "requires": { + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "dev": true, + "requires": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "dezalgo": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz", + "integrity": "sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=", + "dev": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "diff-sequences": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz", + "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + }, + "dependencies": { + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + } + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true, + "requires": { + "readable-stream": "~1.1.9" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.29", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.29.tgz", + "integrity": "sha512-N2Jbwxo5Rum8G2YXeUxycs1sv4Qme/ry71HG73bv8BvZl+I/4JtRgK/En+ST/Wh/yF1fqvVCY4jZBgMxnhjtBA==", + "dev": true + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", + "integrity": "sha1-6TUyWLqpEIll78QcsO+K3i88+wc=", + "dev": true, + "requires": { + "once": "~1.3.0" + }, + "dependencies": { + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", + "dev": true, + "requires": { + "wrappy": "1" + } + } + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "es6-templates": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz", + "integrity": "sha1-XLmsn7He1usSOTQrgdeSu7QHjuQ=", + "dev": true, + "requires": { + "recast": "~0.11.12", + "through": "~2.3.6" + } + }, + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "eslint": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.5.1.tgz", + "integrity": "sha512-32h99BoLYStT1iq1v2P9uwpyznQ4M2jRiFB6acitKz52Gqn+vPaMDUTB1bYi1WN4Nquj2w+t+bimYUG83DC55A==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.2", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.1", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^11.7.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^6.4.1", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.2", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "eslint-plugin-promise": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz", + "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==", + "dev": true + }, + "eslint-plugin-react": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz", + "integrity": "sha512-GacBAATewhhptbK3/vTP09CbFrgUJmBSaaRcWdbQLFvUZy9yVcQxigBNHGPU/KE2AyHpzj3AWXpxoMTsIDiHug==", + "dev": true, + "requires": { + "array-includes": "^3.0.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.2.1", + "object.entries": "^1.1.0", + "object.fromentries": "^2.0.0", + "object.values": "^1.1.0", + "prop-types": "^15.7.2", + "resolve": "^1.12.0" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "eslint-plugin-security": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.4.0.tgz", + "integrity": "sha512-xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA==", + "dev": true, + "requires": { + "safe-regex": "^1.1.0" + } + }, + "eslint-plugin-tsdoc": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.2.14.tgz", + "integrity": "sha512-fJ3fnZRsdIoBZgzkQjv8vAj6NeeOoFkTfgosj6mKsFjX70QV256sA/wq+y/R2+OL4L8E79VVaVWrPeZnKNe8Ng==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "0.15.2" + }, + "dependencies": { + "@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "event-stream": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.5.tgz", + "integrity": "sha512-vyibDcu5JL20Me1fP734QBH/kenBGLZap2n0+XXM7mvuUPzJ20Ydqj1aKcIeMdri1p+PU+4yAKugjN8KCVst+g==", + "dev": true, + "requires": { + "duplexer": "^0.1.1", + "from": "^0.1.7", + "map-stream": "0.0.7", + "pause-stream": "^0.0.11", + "split": "^1.0.1", + "stream-combiner": "^0.2.2", + "through": "^2.3.8" + } + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-25.5.0.tgz", + "integrity": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "ansi-styles": "^4.0.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "express": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", + "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "array-flatten": "1.1.1", + "body-parser": "1.18.3", + "content-disposition": "0.5.2", + "content-type": "~1.0.4", + "cookie": "0.3.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.1.1", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.4", + "qs": "6.5.2", + "range-parser": "~1.2.0", + "safe-buffer": "5.1.2", + "send": "0.16.2", + "serve-static": "1.13.2", + "setprototypeof": "1.1.0", + "statuses": "~1.4.0", + "type-is": "~1.6.16", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ext": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", + "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", + "requires": { + "type": "^2.5.0" + }, + "dependencies": { + "type": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", + "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "file-loader": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", + "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", + "dev": true, + "requires": { + "loader-utils": "^1.0.2", + "schema-utils": "^0.4.5" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", + "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.4.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + } + }, + "flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.14.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz", + "integrity": "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "fork-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", + "integrity": "sha1-24Sfznf2cIpfjzhq5TOgkHtUrnA=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "dev": true, + "requires": { + "globule": "^1.0.0" + } + }, + "generic-names": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", + "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "git-repo-info": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/git-repo-info/-/git-repo-info-2.1.1.tgz", + "integrity": "sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==", + "dev": true + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-escape": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/glob-escape/-/glob-escape-0.0.2.tgz", + "integrity": "sha1-nCf3gh7RwTd1gvPv2VWOP2dWKO0=", + "dev": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "dev": true, + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "dependencies": { + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "globule": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.3.tgz", + "integrity": "sha512-mb1aYtDbIjTu4ShMB85m3UzjX9BVKe9WCzsnfMSZk+K5GpIbBOexgg4PPCt5eHDEG5/ZQAUX2Kct02zfiPLsKg==", + "dev": true, + "requires": { + "glob": "~7.1.1", + "lodash": "~4.17.10", + "minimatch": "~3.0.2" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "requires": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "dependencies": { + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + } + } + }, + "gulp-connect": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gulp-connect/-/gulp-connect-5.5.0.tgz", + "integrity": "sha512-oRBLjw/4EVaZb8g8OcxOVdGD8ZXYrRiWKcNxlrGjxb/6Cp0GDdqw7ieX7D8xJrQS7sbXT+G94u63pMJF3MMjQA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "connect": "^3.6.5", + "connect-livereload": "^0.5.4", + "event-stream": "^3.3.2", + "fancy-log": "^1.3.2", + "send": "^0.13.2", + "serve-index": "^1.9.1", + "serve-static": "^1.13.1", + "tiny-lr": "^0.2.1" + }, + "dependencies": { + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "dev": true, + "requires": { + "ms": "0.7.1" + } + }, + "etag": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", + "integrity": "sha1-A9MLX2fdbmMtKUXTDWZScxo01dg=", + "dev": true + }, + "fresh": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", + "integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8=", + "dev": true + }, + "http-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", + "integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "statuses": "1" + } + }, + "mime": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", + "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=", + "dev": true + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "dev": true + }, + "range-parser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz", + "integrity": "sha1-aHKCNTXGkuLCoBA4Jq/YLC4P8XU=", + "dev": true + }, + "send": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz", + "integrity": "sha1-dl52B8gFVFK7pvCwUllTUJhgNt4=", + "dev": true, + "requires": { + "debug": "~2.2.0", + "depd": "~1.1.0", + "destroy": "~1.0.4", + "escape-html": "~1.0.3", + "etag": "~1.7.0", + "fresh": "0.3.0", + "http-errors": "~1.3.1", + "mime": "1.3.4", + "ms": "0.7.1", + "on-finished": "~2.3.0", + "range-parser": "~1.0.3", + "statuses": "~1.2.1" + } + }, + "statuses": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz", + "integrity": "sha1-3e1FzBglbVHtQK7BQkidXGECbSg=", + "dev": true + } + } + }, + "gulp-flatten": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.2.0.tgz", + "integrity": "sha1-iS1RfjjXkA/UVM+aHgIQMA6S6wY=", + "dev": true, + "requires": { + "gulp-util": "^3.0.1", + "through2": "^2.0.0" + } + }, + "gulp-if": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-2.0.2.tgz", + "integrity": "sha1-pJe351cwBQQcqivIt92jyARE1ik=", + "dev": true, + "requires": { + "gulp-match": "^1.0.3", + "ternary-stream": "^2.0.1", + "through2": "^2.0.1" + } + }, + "gulp-match": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", + "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.3" + } + }, + "gulp-open": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/gulp-open/-/gulp-open-3.0.1.tgz", + "integrity": "sha512-dohokw+npnt48AsD0hhvCLEHLnDMqM35F+amvIfJlX1H2nNHYUClR0Oy1rI0TvbL1/pHiHGNLmohhk+kvwIKjA==", + "dev": true, + "requires": { + "colors": "^1.1.2", + "opn": "5.2.0", + "plugin-log": "^0.1.0", + "through2": "^2.0.1" + } + }, + "gulp-util": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", + "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", + "dev": true, + "requires": { + "array-differ": "^1.0.0", + "array-uniq": "^1.0.2", + "beeper": "^1.0.0", + "chalk": "^1.0.0", + "dateformat": "^2.0.0", + "fancy-log": "^1.1.0", + "gulplog": "^1.0.0", + "has-gulplog": "^0.1.0", + "lodash._reescape": "^3.0.0", + "lodash._reevaluate": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.template": "^3.0.0", + "minimist": "^1.1.0", + "multipipe": "^0.1.2", + "object-assign": "^3.0.0", + "replace-ext": "0.0.1", + "through2": "^2.0.0", + "vinyl": "^0.5.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "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" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "dev": true, + "requires": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + } + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "dev": true, + "requires": { + "glogg": "^1.0.0" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-gulplog": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "html-loader": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz", + "integrity": "sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==", + "dev": true, + "requires": { + "es6-templates": "^0.2.3", + "fastparse": "^1.1.1", + "html-minifier": "^3.5.8", + "loader-utils": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "http-parser-js": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.5.tgz", + "integrity": "sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", + "dev": true + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ignore-walk": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=", + "dev": true + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true + }, + "import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "in-publish": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", + "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==", + "dev": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inpath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inpath/-/inpath-1.0.2.tgz", + "integrity": "sha1-SsIZcQ7Hpy9GD/lL9CTdPvDlKBc=", + "dev": true + }, + "inquirer": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", + "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", + "dev": true, + "requires": { + "ansi-escapes": "^3.2.0", + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^2.0.0", + "lodash": "^4.17.12", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.4.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "optional": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "dev": true + }, + "is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "requires": { + "is-path-inside": "^1.0.0" + } + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subdir": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", + "dev": true, + "requires": { + "better-path-resolve": "1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", + "dev": true + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "optional": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "requires": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + }, + "dependencies": { + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + } + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.2.tgz", + "integrity": "sha512-0gHxuT1NNC0aEIL1zbJ+MTgPbbHhU77eJPuU35WKA7TgXiSNlCAx4PENoMrH0Or6M2H80TaZcWKhM0IK6V8gRw==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-25.4.0.tgz", + "integrity": "sha512-XWipOheGB4wai5JfCYXd6vwsWNwM/dirjRoZgAa7H2wd8ODWbli2AiKjqG8AYhyx+8+5FBEdpO92VhGlBydzbw==", + "dev": true, + "requires": { + "@jest/core": "^25.4.0", + "import-local": "^3.0.2", + "jest-cli": "^25.4.0" + }, + "dependencies": { + "@jest/reporters": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.5.1.tgz", + "integrity": "sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^25.5.1", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "node-notifier": "^6.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^3.1.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^4.1.3" + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "jest-cli": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.5.4.tgz", + "integrity": "sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==", + "dev": true, + "requires": { + "@jest/core": "^25.5.4", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.5.4", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "@jest/core": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.5.4.tgz", + "integrity": "sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/reporters": "^25.5.1", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^25.5.0", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-resolve-dependencies": "^25.5.4", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "jest-watcher": "^25.5.0", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "realpath-native": "^2.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "node-notifier": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", + "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", + "dev": true, + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "optional": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "jest-changed-files": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-25.5.0.tgz", + "integrity": "sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "execa": "^3.2.0", + "throat": "^5.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "execa": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "jest-config": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.4.tgz", + "integrity": "sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^25.5.4", + "@jest/types": "^25.5.0", + "babel-jest": "^25.5.1", + "chalk": "^3.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^25.5.0", + "jest-environment-node": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-jasmine2": "^25.5.4", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "micromatch": "^4.0.2", + "pretty-format": "^25.5.0", + "realpath-native": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-environment-jsdom": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz", + "integrity": "sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "jsdom": "^15.2.1" + } + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz", + "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "diff-sequences": "^25.2.6", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "25.3.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-25.3.0.tgz", + "integrity": "sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-25.5.0.tgz", + "integrity": "sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.4.0.tgz", + "integrity": "sha512-KTitVGMDrn2+pt7aZ8/yUTuS333w3pWt1Mf88vMntw7ZSBNDkRS6/4XLbFpWXYfWfp1FjcjQTOKzbK20oIehWQ==", + "dev": true, + "requires": { + "@jest/environment": "^25.4.0", + "@jest/fake-timers": "^25.4.0", + "@jest/types": "^25.4.0", + "jest-mock": "^25.4.0", + "jest-util": "^25.4.0", + "jsdom": "^15.2.1" + }, + "dependencies": { + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + } + } + } + }, + "jest-environment-node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-25.5.0.tgz", + "integrity": "sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "jest-get-type": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz", + "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", + "dev": true + }, + "jest-haste-map": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.5.1.tgz", + "integrity": "sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "@types/graceful-fs": "^4.1.2", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-serializer": "^25.5.0", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "jest-jasmine2": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz", + "integrity": "sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^25.5.0", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "co": "^4.6.0", + "expect": "^25.5.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^25.5.0", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz", + "integrity": "sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==", + "dev": true, + "requires": { + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + } + }, + "jest-matcher-utils": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz", + "integrity": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-25.5.0.tgz", + "integrity": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "slash": "^3.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-25.5.0.tgz", + "integrity": "sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0" + } + }, + "jest-nunit-reporter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jest-nunit-reporter/-/jest-nunit-reporter-1.3.1.tgz", + "integrity": "sha1-2xmVprP68SkftT+wNyJJcKpLVJc=", + "dev": true, + "requires": { + "mkdirp": "^0.5.1", + "read-pkg": "^3.0.0", + "xml": "^1.0.1" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + } + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true + }, + "jest-regex-util": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-25.2.6.tgz", + "integrity": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==", + "dev": true + }, + "jest-resolve": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-25.5.1.tgz", + "integrity": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "browser-resolve": "^1.11.3", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.1", + "read-pkg-up": "^7.0.1", + "realpath-native": "^2.0.0", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz", + "integrity": "sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-snapshot": "^25.5.1" + } + }, + "jest-runner": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.4.tgz", + "integrity": "sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-docblock": "^25.3.0", + "jest-haste-map": "^25.5.1", + "jest-jasmine2": "^25.5.4", + "jest-leak-detector": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "jest-runtime": "^25.5.4", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.4.tgz", + "integrity": "sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/globals": "^25.5.2", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "jest-serializer": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.5.0.tgz", + "integrity": "sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-25.5.1.tgz", + "integrity": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/prettier": "^1.19.0", + "chalk": "^3.0.0", + "expect": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "make-dir": "^3.0.0", + "natural-compare": "^1.4.0", + "pretty-format": "^25.5.0", + "semver": "^6.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-25.5.0.tgz", + "integrity": "sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "make-dir": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz", + "integrity": "sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "leven": "^3.1.0", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-25.5.0.tgz", + "integrity": "sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==", + "dev": true, + "requires": { + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "jest-util": "^25.5.0", + "string-length": "^3.1.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dev": true, + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=", + "dev": true + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsdom": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz", + "integrity": "sha512-ou1VyfjwsSuWkudGxb03FotDajxAto6USAlmMZjE2lc0jCznt7sBWkhfRBRaWwbnmDqdMSTKTLT5d9sBFkkM7A==", + "dev": true, + "requires": { + "abab": "^1.0.4", + "acorn": "^5.3.0", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": ">= 0.3.1 < 0.4.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.0", + "escodegen": "^1.9.0", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.2.0", + "nwsapi": "^2.0.0", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.83.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.3", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^4.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz", + "integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=", + "dev": true + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "cssstyle": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz", + "integrity": "sha512-tNvaxM5blOnxanyxI6panOsnfiyLRj3HV4qjqqS45WPNS1usdYWRUQjqTEEELK73lpeP/1KoIGYUwrBn/VcECA==", + "dev": true, + "requires": { + "cssom": "0.3.x" + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "ws": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz", + "integrity": "sha512-ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0", + "safe-buffer": "~5.1.0" + } + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "~0.0.0" + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + }, + "jsonpath-plus": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-4.0.0.tgz", + "integrity": "sha512-e0Jtg4KAzDJKKwzbLaUtinCn0RZseWBVRTRGihSpvFlM3wTR7ExSp+PTdeTsDrLNJUe7L7JYJe8mblHX5SCT6A==", + "dev": true + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "dev": true, + "requires": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.0" + } + }, + "jszip": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz", + "integrity": "sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg==", + "dev": true, + "requires": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "set-immediate-shim": "~1.0.1" + } + }, + "just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "dev": true, + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dev": true, + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", + "dev": true, + "requires": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + } + }, + "lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.5" + } + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "requires": { + "invert-kv": "^1.0.0" + } + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "dev": true, + "requires": { + "flush-write-stream": "^1.0.2" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dev": true, + "requires": { + "immediate": "~3.0.5" + } + }, + "liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", + "dev": true + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + }, + "lodash._basetostring": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", + "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", + "dev": true + }, + "lodash._basevalues": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", + "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", + "dev": true + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash._reescape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", + "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", + "dev": true + }, + "lodash._reevaluate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", + "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", + "dev": true + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true + }, + "lodash._root": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", + "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", + "dev": true + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true + }, + "lodash.escape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", + "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", + "dev": true, + "requires": { + "lodash._root": "^3.0.0" + } + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" + } + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.omit": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", + "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=" + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "lodash.template": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", + "dev": true, + "requires": { + "lodash._basecopy": "^3.0.0", + "lodash._basetostring": "^3.0.0", + "lodash._basevalues": "^3.0.0", + "lodash._isiterateecall": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0", + "lodash.keys": "^3.0.0", + "lodash.restparam": "^3.0.0", + "lodash.templatesettings": "^3.0.0" + } + }, + "lodash.templatesettings": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", + "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", + "dev": true, + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0" + } + }, + "lodash.unescape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz", + "integrity": "sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true + }, + "lolex": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz", + "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "requires": { + "tmpl": "1.0.5" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "map-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "markdown-to-jsx": { + "version": "6.11.4", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", + "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", + "requires": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + } + }, + "matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", + "dev": true, + "requires": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.0.3.tgz", + "integrity": "sha1-+kT4siYmFaty8ICKQB1HinDjlNs=", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "dev": true + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dev": true, + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "minipass": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "msal": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.15.tgz", + "integrity": "sha512-H/CxkeZJ4laEK6GZ/cDKQoYjBTvDNFK3hDC8mfU8IkuZvKFfFdo9KM89r8spXY7xnBK9SQBAjIuQgwUogeUw7g==", + "dev": true, + "requires": { + "tslib": "^1.9.3" + } + }, + "msalLegacy": { + "version": "npm:msal@1.4.12", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", + "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", + "requires": { + "tslib": "^1.9.3" + } + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "multipipe": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", + "dev": true, + "requires": { + "duplexer2": "0.0.2" + } + }, + "mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true + }, + "nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-fetch": { + "version": "2.6.6", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz", + "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "node-forge": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", + "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==", + "dev": true + }, + "node-gyp": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", + "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", + "dev": true, + "requires": { + "fstream": "^1.0.0", + "glob": "^7.0.3", + "graceful-fs": "^4.1.2", + "mkdirp": "^0.5.0", + "nopt": "2 || 3", + "npmlog": "0 || 1 || 2 || 3 || 4", + "osenv": "0", + "request": "^2.87.0", + "rimraf": "2", + "semver": "~5.3.0", + "tar": "^2.0.0", + "which": "1" + }, + "dependencies": { + "tar": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", + "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", + "dev": true, + "requires": { + "block-stream": "*", + "fstream": "^1.0.12", + "inherits": "2" + } + } + } + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "node-notifier": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.0.2.tgz", + "integrity": "sha1-RDhEn+aeMh+UHO+UOYaweXAycBs=", + "dev": true, + "requires": { + "growly": "^1.3.0", + "semver": "^5.3.0", + "shellwords": "^0.1.0", + "which": "^1.2.12" + } + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true + }, + "node-sass": { + "version": "4.14.1", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz", + "integrity": "sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==", + "dev": true, + "requires": { + "async-foreach": "^0.1.3", + "chalk": "^1.1.1", + "cross-spawn": "^3.0.0", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "in-publish": "^2.0.0", + "lodash": "^4.17.15", + "meow": "^3.7.0", + "mkdirp": "^0.5.1", + "nan": "^2.13.2", + "node-gyp": "^3.8.0", + "npmlog": "^4.0.0", + "request": "^2.88.0", + "sass-graph": "2.2.5", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "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" + } + }, + "cross-spawn": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", + "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "true-case-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", + "dev": true, + "requires": { + "glob": "^7.1.2" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "node-zip": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-zip/-/node-zip-1.1.1.tgz", + "integrity": "sha1-lNGtZ0o81GoViN1zb0qaeMdX62I=", + "dev": true, + "requires": { + "jszip": "2.5.0" + }, + "dependencies": { + "jszip": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz", + "integrity": "sha1-dET9hVHd8+XacZj+oMkbyDCMwnQ=", + "dev": true, + "requires": { + "pako": "~0.2.5" + } + }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "dev": true + } + } + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true + }, + "now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "requires": { + "once": "^1.3.2" + } + }, + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-package-arg": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.1.tgz", + "integrity": "sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==", + "dev": true, + "requires": { + "hosted-git-info": "^2.7.1", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "npm-packlist": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.5.tgz", + "integrity": "sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ==", + "dev": true, + "requires": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "office-ui-fabric-core": { + "version": "9.6.1-fluent2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-9.6.1-fluent2.tgz", + "integrity": "sha512-gcBs5HHr7tjkvk/+Ls10ttb3jEllRn7SvJitX/kx/gQq8BiFMSMKr1w+oNqXlh4EgkBHWUlJVPrYUu1KW/jVaQ==" + }, + "office-ui-fabric-react": { + "version": "7.176.2", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", + "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.0", + "@fluentui/react-window-provider": "^1.0.2", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.0", + "@uifabric/icons": "^7.6.0", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.19.1", + "@uifabric/utilities": "^7.33.5", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "opn": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.2.0.tgz", + "integrity": "sha512-Jd/GpzPyHF4P2/aNOVmS3lfMSWV9J7cOhCG1s08XCEAsPkB7lp6ddiU0J7XzyQRDUh8BqJ7PchfINjR8jyofRQ==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + } + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "orchestrator": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", + "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", + "dev": true, + "requires": { + "end-of-stream": "~0.1.5", + "sequencify": "~0.0.7", + "stream-consume": "~0.1.0" + }, + "dependencies": { + "end-of-stream": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", + "dev": true, + "requires": { + "once": "~1.3.0" + } + }, + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", + "dev": true, + "requires": { + "wrappy": "1" + } + } + } + }, + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-reflect": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reflect/-/p-reflect-2.1.0.tgz", + "integrity": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-settle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz", + "integrity": "sha512-6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ==", + "dev": true, + "requires": { + "p-limit": "^2.2.2", + "p-reflect": "^2.1.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "~2.3" + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pidof": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pidof/-/pidof-1.0.2.tgz", + "integrity": "sha1-+6Dq4cgzWhHrgJn10PPvvEXLTpA=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", + "dev": true + }, + "pkg-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-1.1.3.tgz", + "integrity": "sha1-N45W1v0T6Iv7b0ol33qD+qvduls=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "load-json-file": "^1.1.0", + "object-assign": "^4.0.1", + "symbol": "^0.2.1" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + } + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "plugin-log": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/plugin-log/-/plugin-log-0.1.0.tgz", + "integrity": "sha1-hgSc9qsQgzOYqTHzaJy67nteEzM=", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "dateformat": "^1.0.11" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "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" + } + }, + "dateformat": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", + "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1", + "meow": "^3.3.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.5.0.tgz", + "integrity": "sha512-KiAihzcV0TxTTNA5OXreyIXctuHOfR50WIhqBpc8pe0Q5dcs/Uap9EVlifOI9am7zGGdGOJQ6B1MPYKo2UxgOg==", + "dev": true, + "requires": { + "css-modules-loader-core": "^1.1.0", + "generic-names": "^2.0.1", + "lodash.camelcase": "^4.3.0", + "postcss": "^7.0.1", + "string-hash": "^1.1.1" + } + }, + "postcss-modules-extract-imports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", + "integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=", + "dev": true, + "requires": { + "postcss": "^6.0.1" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + } + } + }, + "postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", + "dev": true, + "requires": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + } + } + }, + "postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", + "dev": true, + "requires": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + } + } + }, + "postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", + "dev": true, + "requires": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + } + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-selector-parser": { + "version": "6.0.8", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz", + "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "pretty-format": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", + "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^16.12.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.0.tgz", + "integrity": "sha512-fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "pseudolocale": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pseudolocale/-/pseudolocale-1.1.0.tgz", + "integrity": "sha512-OZ8I/hwYEJ3beN3IEcNnt8EpcqblH0/x23hulKBXjs+WhTTEle+ijCHCkh2bd+cIIeCuCwSCbBe93IthGG6hLw==", + "dev": true, + "requires": { + "commander": "*" + } + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "ramda": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", + "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", + "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "dev": true, + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.3", + "iconv-lite": "0.4.23", + "unpipe": "1.0.0" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "raw-loader": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", + "integrity": "sha1-DD0L6u2KAclm2Xh793goElKpeao=" + }, + "react": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", + "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + } + }, + "react-ace": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-5.8.0.tgz", + "integrity": "sha1-hy2e6LZkMA7Vq57axiNLvpCDaDY=", + "requires": { + "brace": "^0.11.0", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.1.1", + "prop-types": "^15.5.8" + } + }, + "react-dom": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", + "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "dev": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-package-json": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", + "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", + "dev": true, + "requires": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "read-package-tree": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz", + "integrity": "sha512-FCX1aT3GWyY658wzDICef4p+n0dB+ENRct8E/Qyvppj6xVpOYerBHfUu7OP5Rt1/393Tdglguf5ju5DEX4wZNg==", + "dev": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "once": "^1.3.0", + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "read-yaml-file": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-2.1.0.tgz", + "integrity": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==", + "dev": true, + "requires": { + "js-yaml": "^4.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "dev": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "realpath-native": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-2.0.0.tgz", + "integrity": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==", + "dev": true + }, + "recast": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", + "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=", + "dev": true, + "requires": { + "ast-types": "0.9.6", + "esprima": "~3.1.0", + "private": "~0.1.5", + "source-map": "~0.5.0" + }, + "dependencies": { + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "dev": true, + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "dev": true, + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", + "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", + "dev": true, + "requires": { + "path-parse": "^1.0.5" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "dev": true, + "requires": { + "value-or-function": "^3.0.0" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "sass": { + "version": "1.32.12", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.32.12.tgz", + "integrity": "sha512-zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + } + } + }, + "sass-graph": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^13.3.2" + }, + "dependencies": { + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "sass-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.0.tgz", + "integrity": "sha512-+qeMu563PN7rPdit2+n5uuYVR0SSVwm0JsOUsaJXzgYcClWSlmX0iHDnmeOobPkf5kUglVot3QS6SyLyaQoJ4w==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.1.0", + "semver": "^6.3.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "dev": true, + "requires": { + "xmlchars": "^2.1.1" + } + }, + "scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + } + } + }, + "scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", + "dev": true, + "requires": { + "js-base64": "^2.1.8", + "source-map": "^0.4.2" + }, + "dependencies": { + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": { + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + } + } + }, + "semver": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", + "dev": true + }, + "semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", + "dev": true, + "requires": { + "sver-compat": "^1.5.0" + } + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "sequencify": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", + "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", + "dev": true + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "serve-static": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", + "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.2", + "send": "0.16.2" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "sockjs-client": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "dev": true, + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + } + } + }, + "sort-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", + "dev": true, + "requires": { + "is-plain-obj": "^2.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-loader": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-0.2.4.tgz", + "integrity": "sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==", + "dev": true, + "requires": { + "async": "^2.5.0", + "loader-utils": "^1.1.0" + } + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", + "dev": true + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "dev": true + }, + "stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-combiner": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", + "integrity": "sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg=", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "through": "~2.3.4" + } + }, + "stream-consume": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", + "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==", + "dev": true + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", + "dev": true + }, + "string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=", + "dev": true + }, + "string-length": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", + "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", + "dev": true, + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "sudo": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sudo/-/sudo-1.0.3.tgz", + "integrity": "sha1-zPKGaRIPi3T4K4Rt/38clRIO/yA=", + "dev": true, + "requires": { + "inpath": "~1.0.2", + "pidof": "~1.0.2", + "read": "~1.0.3" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", + "dev": true, + "requires": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + } + }, + "symbol": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/symbol/-/symbol-0.2.3.tgz", + "integrity": "sha1-O5hzuKkB5Hxu/iFSajrDcu8ou8c=", + "dev": true + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "tar": { + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-5.0.11.tgz", + "integrity": "sha512-E6q48d5y4XSCD+Xmwc0yc8lXuyDK38E0FB8N4S/drQRtXOMUhfhDxbB0xr2KKDhNfO51CFmoa6Oz00nAkWsjnA==", + "dev": true, + "requires": { + "chownr": "^1.1.4", + "fs-minipass": "^2.1.0", + "minipass": "^3.1.3", + "minizlib": "^2.1.2", + "mkdirp": "^0.5.5", + "yallist": "^4.0.0" + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "ternary-stream": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-2.1.1.tgz", + "integrity": "sha512-j6ei9hxSoyGlqTmoMjOm+QNvUKDOIY6bNl4Uh1lhBvl6yjPW2iLqxDUYyfDPZknQ4KdRziFl+ec99iT4l7g0cw==", + "dev": true, + "requires": { + "duplexify": "^3.5.0", + "fork-stream": "^0.0.4", + "merge-stream": "^1.0.0", + "through2": "^2.0.1" + }, + "dependencies": { + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + } + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "requires": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "tiny-lr": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz", + "integrity": "sha1-s/26gC5dVqM8L28QeUsy5Hescp0=", + "dev": true, + "requires": { + "body-parser": "~1.14.0", + "debug": "~2.2.0", + "faye-websocket": "~0.10.0", + "livereload-js": "^2.2.0", + "parseurl": "~1.3.0", + "qs": "~5.1.0" + }, + "dependencies": { + "body-parser": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz", + "integrity": "sha1-EBXLH+LEQ4WCWVgdtTMy+NDPUPk=", + "dev": true, + "requires": { + "bytes": "2.2.0", + "content-type": "~1.0.1", + "debug": "~2.2.0", + "depd": "~1.1.0", + "http-errors": "~1.3.1", + "iconv-lite": "0.4.13", + "on-finished": "~2.3.0", + "qs": "5.2.0", + "raw-body": "~2.1.5", + "type-is": "~1.6.10" + }, + "dependencies": { + "qs": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz", + "integrity": "sha1-qfMRQq9GjLcrJbMBNrokVoNJFr4=", + "dev": true + } + } + }, + "bytes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz", + "integrity": "sha1-/TVGSkA/b5EXwt42Cez/nK4ABYg=", + "dev": true + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "dev": true, + "requires": { + "ms": "0.7.1" + } + }, + "http-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", + "integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "statuses": "1" + } + }, + "iconv-lite": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", + "integrity": "sha1-H4irpKsLFQjoMSrMOTRfNumS4vI=", + "dev": true + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "dev": true + }, + "qs": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz", + "integrity": "sha1-TZMuXH6kEcynajEtOaYGIA/VDNk=", + "dev": true + }, + "raw-body": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz", + "integrity": "sha1-rf6s4uT7MJgFgBTQjActzFl1h3Q=", + "dev": true, + "requires": { + "bytes": "2.4.0", + "iconv-lite": "0.4.13", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz", + "integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk=", + "dev": true + } + } + } + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "dev": true, + "requires": { + "through2": "^2.0.3" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "dev": true, + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, + "true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", + "dev": true + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "tslint": { + "version": "5.12.1", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.12.1.tgz", + "integrity": "sha512-sfodBHOucFg6egff8d1BvuofoOQ/nOeYNfbp7LDlKBcLNrL3lmS5zoiDGyOMdT7YsEXAwWpTdAHwOGOc8eRZAw==", + "dev": true, + "requires": { + "babel-code-frame": "^6.22.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^3.2.0", + "glob": "^7.1.1", + "js-yaml": "^3.7.0", + "minimatch": "^3.0.4", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.8.0", + "tsutils": "^2.27.2" + }, + "dependencies": { + "tsutils": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "tslint-microsoft-contrib": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/tslint-microsoft-contrib/-/tslint-microsoft-contrib-5.2.1.tgz", + "integrity": "sha512-PDYjvpo0gN9IfMULwKk0KpVOPMhU6cNoT9VwCOLeDl/QS8v8W2yspRpFFuUS7/c5EIH/n8ApMi8TxJAz1tfFUA==", + "dev": true, + "requires": { + "tsutils": "^2.27.2 <2.29.0" + }, + "dependencies": { + "tsutils": { + "version": "2.28.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.28.0.tgz", + "integrity": "sha512-bh5nAtW0tuhvOJnx1GLRn5ScraRLICGyJV5wJhtRWOLsxW70Kk5tZtpK3O/hW6LDnqKS9mlUMPZj9fEMJ0gxqA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.7.tgz", + "integrity": "sha512-MmQdgo/XenfZPvVLtKZOq9jQQvzaUAUpcKW8Z43x9B2fOm4S5g//tPtMweZUIP+SoBqrVPEIm+dJeQ9dfO0QdA==", + "dev": true + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + } + } + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "dev": true + }, + "undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "dependencies": { + "fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=", + "dev": true + } + } + }, + "undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "requires": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.4.tgz", + "integrity": "sha512-ITeAByWWoqutFClc/lRZnFplgXgEZr3WJ6XngMM/N9DMIm4K8zXPCZ1Jdu0rERwO84w1WC5wkle2ubwTA4NTBg==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "v8-to-istanbul": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz", + "integrity": "sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", + "dev": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "validator": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-8.2.0.tgz", + "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==", + "dev": true + }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + }, + "vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "dev": true, + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "dev": true, + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + } + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "requires": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "body-parser": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz", + "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==", + "dev": true, + "requires": { + "bytes": "3.1.1", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.6", + "raw-body": "2.4.2", + "type-is": "~1.6.18" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "bytes": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", + "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "dev": true + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "express": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz", + "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.6", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "qs": { + "version": "6.9.6", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", + "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", + "dev": true + }, + "raw-body": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz", + "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", + "dev": true, + "requires": { + "bytes": "3.1.1", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "window-size": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", + "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "write-yaml-file": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/write-yaml-file/-/write-yaml-file-4.2.0.tgz", + "integrity": "sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==", + "dev": true, + "requires": { + "js-yaml": "^4.0.0", + "write-file-atomic": "^3.0.3" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "ws": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "dev": true + }, + "xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dev": true, + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "xmldoc": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.2.tgz", + "integrity": "sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==", + "dev": true, + "requires": { + "sax": "^1.2.1" + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.6.0.tgz", + "integrity": "sha1-y0BQwBWb+2u2ScD0r1UFJqhGGdw=", + "dev": true, + "requires": { + "camelcase": "^2.0.1", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "lodash.assign": "^4.0.3", + "os-locale": "^1.4.0", + "pkg-conf": "^1.1.2", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1", + "string-width": "^1.0.1", + "window-size": "^0.2.0", + "y18n": "^3.2.1", + "yargs-parser": "^2.4.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "lodash.assign": "^4.0.6" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + } + } + } + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "z-schema": { + "version": "3.18.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-3.18.4.tgz", + "integrity": "sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==", + "dev": true, + "requires": { + "commander": "^2.7.1", + "lodash.get": "^4.0.0", + "lodash.isequal": "^4.0.0", + "validator": "^8.0.0" + } + } + } +} diff --git a/samples/js-propertycontrols-svg/package.json b/samples/js-propertycontrols-svg/package.json index 4e2f77837..6eb0ec3fc 100644 --- a/samples/js-propertycontrols-svg/package.json +++ b/samples/js-propertycontrols-svg/package.json @@ -11,18 +11,20 @@ "test": "gulp test" }, "dependencies": { - "@microsoft/sp-core-library": "~1.3.4", - "@microsoft/sp-lodash-subset": "~1.3.4", - "@microsoft/sp-office-ui-fabric-core": "~1.3.4", - "@microsoft/sp-webpart-base": "~1.3.4", - "@pnp/spfx-property-controls": "1.0.0", - "@types/webpack-env": ">=1.12.1 <1.14.0" + "@microsoft/sp-core-library": "1.13.0", + "@microsoft/sp-lodash-subset": "1.13.0", + "@microsoft/sp-office-ui-fabric-core": "1.13.0", + "@microsoft/sp-webpart-base": "1.13.0", + "@pnp/spfx-property-controls": "3.3.0" }, "devDependencies": { - "@microsoft/sp-build-web": "~1.3.4", - "@microsoft/sp-module-interfaces": "~1.3.4", - "@microsoft/sp-webpart-workbench": "~1.3.4", - "gulp": "~3.9.1", + "@microsoft/rush-stack-compiler-3.7": "0.2.3", + "@microsoft/rush-stack-compiler-3.9": "0.4.47", + "@microsoft/sp-build-web": "1.13.0", + "@microsoft/sp-module-interfaces": "1.13.0", + "@microsoft/sp-tslint-rules": "1.13.0", + "@types/webpack-env": "1.13.0", + "gulp": "4.0.2", "@types/chai": ">=3.4.34 <3.6.0", "@types/mocha": ">=2.2.33 <2.6.0", "ajv": "~5.2.2" diff --git a/samples/js-propertycontrols-svg/release/component-dependency-audit/js-propertycontrols-svg.json b/samples/js-propertycontrols-svg/release/component-dependency-audit/js-propertycontrols-svg.json new file mode 100644 index 000000000..078bc170c --- /dev/null +++ b/samples/js-propertycontrols-svg/release/component-dependency-audit/js-propertycontrols-svg.json @@ -0,0 +1,98 @@ +{ + "bundles": { + "svg-hero-web-part": { + "dependencies": [ + { + "componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a", + "componentName": "@microsoft/sp-lodash-subset", + "componentVersion": "1.13.0", + "isDirectDependency": true + }, + { + "componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b", + "componentName": "@microsoft/sp-core-library", + "componentVersion": "1.13.0", + "isDirectDependency": true + }, + { + "componentId": "01c4df03-e775-48cb-aa14-171ee5199a15", + "componentName": "tslib", + "componentVersion": "1.10.0", + "isDirectDependency": false + }, + { + "componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176", + "componentName": "@ms/odsp-core-bundle", + "componentVersion": "1.1.192", + "isDirectDependency": false + }, + { + "componentId": "974a7777-0990-4136-8fa6-95d80114c2e0", + "componentName": "@microsoft/sp-webpart-base", + "componentVersion": "1.13.0", + "isDirectDependency": true + }, + { + "componentId": "8217e442-8ed3-41fd-957d-b112e841286a", + "componentName": "@ms/sp-telemetry", + "componentVersion": "0.19.42", + "isDirectDependency": false + }, + { + "componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6", + "componentName": "@microsoft/sp-component-base", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "e40f8203-b39d-425a-a957-714852e33b79", + "componentName": "@microsoft/sp-dynamic-data", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8", + "componentName": "@microsoft/sp-diagnostics", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8", + "componentName": "@microsoft/sp-page-context", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "229b8d08-79f3-438b-8c21-4613fc877abd", + "componentName": "@microsoft/load-themed-styles", + "componentVersion": "0.1.2", + "isDirectDependency": false + }, + { + "componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6", + "componentName": "@microsoft/sp-http", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f", + "componentName": "@microsoft/sp-loader", + "componentVersion": "1.13.0", + "isDirectDependency": false + }, + { + "componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d", + "componentName": "react", + "componentVersion": "16.13.1", + "isDirectDependency": true + }, + { + "componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a", + "componentName": "react-dom", + "componentVersion": "16.13.1", + "isDirectDependency": true + } + ] + } + } +} diff --git a/samples/js-propertycontrols-svg/release/webpack-stats/js-propertycontrols-svg.stats.json b/samples/js-propertycontrols-svg/release/webpack-stats/js-propertycontrols-svg.stats.json new file mode 100644 index 000000000..1bf8ff804 --- /dev/null +++ b/samples/js-propertycontrols-svg/release/webpack-stats/js-propertycontrols-svg.stats.json @@ -0,0 +1,122579 @@ +{ + "errors": [], + "warnings": [], + "version": "4.44.2", + "hash": "9f0eb591e42c4b748a08", + "time": 9645, + "builtAt": 1640807625085, + "publicPath": "", + "outputPath": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/dist", + "assetsByChunkName": { + "svg-hero-web-part": [ + "svg-hero-web-part.js", + "svg-hero-web-part.js.map" + ] + }, + "assets": [ + { + "name": "PropertyControlStrings_bg-bg.js", + "size": 12147, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_ca-es.js", + "size": 12346, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_da-dk.js", + "size": 11829, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_de-de.js", + "size": 12446, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_el-gr.js", + "size": 12592, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_en-us.js", + "size": 11699, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_es-es.js", + "size": 12269, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_et-ee.js", + "size": 11784, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_fi-fi.js", + "size": 11958, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_fr-fr.js", + "size": 12522, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_it-it.js", + "size": 12352, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_ja-jp.js", + "size": 9927, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_lt-lt.js", + "size": 12231, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_lv-lv.js", + "size": 12026, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_nb-no.js", + "size": 11768, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_nl-nl.js", + "size": 12218, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_no.js", + "size": 3542, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_pl-pl.js", + "size": 12128, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_pt-pt.js", + "size": 12175, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_ro-ro.js", + "size": 12253, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_ru-ru.js", + "size": 12124, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_sk-sk.js", + "size": 12115, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_sr-latn-rs.js", + "size": 11883, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_sv-se.js", + "size": 11859, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_tr-tr.js", + "size": 11900, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_vi-vn.js", + "size": 11925, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_zh-cn.js", + "size": 9247, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "PropertyControlStrings_zh-tw.js", + "size": 9425, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "SvgHeroWebPartStrings_en-us.js", + "size": 578, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "ea2f4f01-db05-44e9-8900-22d9ef8d632f.manifest.json", + "size": 3718, + "chunks": [], + "chunkNames": [], + "info": {}, + "emitted": true + }, + { + "name": "svg-hero-web-part.js", + "size": 1637812, + "chunks": [ + "svg-hero-web-part" + ], + "chunkNames": [ + "svg-hero-web-part" + ], + "info": {}, + "emitted": true, + "isOverSizeLimit": true + }, + { + "name": "svg-hero-web-part.js.map", + "size": 1274542, + "chunks": [ + "svg-hero-web-part" + ], + "chunkNames": [ + "svg-hero-web-part" + ], + "info": { + "development": true + }, + "emitted": true + } + ], + "filteredAssets": 0, + "entrypoints": { + "svg-hero-web-part": { + "chunks": [ + "svg-hero-web-part" + ], + "assets": [ + "svg-hero-web-part.js", + "svg-hero-web-part.js.map" + ], + "children": {}, + "childAssets": {}, + "isOverSizeLimit": true + } + }, + "namedChunkGroups": { + "svg-hero-web-part": { + "chunks": [ + "svg-hero-web-part" + ], + "assets": [ + "svg-hero-web-part.js", + "svg-hero-web-part.js.map" + ], + "children": {}, + "childAssets": {}, + "isOverSizeLimit": true + } + }, + "chunks": [ + { + "id": "svg-hero-web-part", + "rendered": true, + "initial": true, + "entry": true, + "size": 1015385, + "names": [ + "svg-hero-web-part" + ], + "files": [ + "svg-hero-web-part.js", + "svg-hero-web-part.js.map" + ], + "hash": "d26bdbd54cafa386b8b9", + "siblings": [], + "parents": [], + "children": [], + "childrenByOrder": {}, + "modules": [ + { + "id": "+G3N", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", + "name": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", + "index": 148, + "index2": 140, + "size": 1015, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./safeSetTimeout", + "loc": "52:0-33" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./safeSetTimeout", + "loc": "52:0-33" + } + ], + "providedExports": [ + "safeSetTimeout" + ], + "optimizationBailout": [], + "depth": 8, + "source": "import { extendComponent } from './extendComponent';\n/**\n * Generates a function to be attached to a React component, which can be called\n * as a replacement to setTimeout. In-flight async calls will be auto canceled if the component\n * is unmounting before the async code is executed, preventing bugs where code\n * accesses things within the component after being unmounted.\n */\nexport var safeSetTimeout = function (component) {\n var activeTimeouts;\n return function (cb, duration) {\n if (!activeTimeouts) {\n activeTimeouts = new Set();\n extendComponent(component, {\n componentWillUnmount: function () {\n activeTimeouts.forEach(function (id) { return clearTimeout(id); });\n },\n });\n }\n var timeoutId = setTimeout(function () {\n activeTimeouts.delete(timeoutId);\n cb();\n }, duration);\n activeTimeouts.add(timeoutId);\n };\n};\n//# sourceMappingURL=safeSetTimeout.js.map" + }, + { + "id": "+HNA", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "index": 14, + "index2": 32, + "size": 650, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerId": "bQ/l", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./colors", + "loc": "1:0-25" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony export imported specifier", + "userRequest": "./colors", + "loc": "1:0-25" + } + ], + "providedExports": [ + "MAX_COLOR_SATURATION", + "MAX_COLOR_HUE", + "MAX_COLOR_VALUE", + "MAX_COLOR_RGB", + "MAX_COLOR_RGBA", + "MAX_COLOR_ALPHA", + "MIN_HEX_LENGTH", + "MAX_HEX_LENGTH", + "MIN_RGBA_LENGTH", + "MAX_RGBA_LENGTH", + "HEX_REGEX", + "RGBA_REGEX", + "cssColor", + "rgb2hex", + "clamp", + "hsl2rgb", + "hsl2hsv", + "hsv2rgb", + "hsv2hex", + "rgb2hsv", + "hsv2hsl", + "getColorFromString", + "getColorFromRGBA", + "getColorFromHSV", + "getFullColorString", + "updateSV", + "updateH", + "updateRGB", + "updateA", + "correctRGB", + "correctHSV", + "correctHex" + ], + "optimizationBailout": [], + "depth": 5, + "source": "export * from './consts';\nexport * from './cssColor';\nexport * from './rgb2hex';\nexport * from './clamp';\nexport * from './hsl2rgb';\nexport * from './hsl2hsv';\nexport * from './hsv2rgb';\nexport * from './hsv2hex';\nexport * from './rgb2hsv';\nexport * from './hsv2hsl';\nexport * from './getColorFromString';\nexport * from './getColorFromRGBA';\nexport * from './getColorFromHSV';\nexport * from './getFullColorString';\nexport * from './updateSV';\nexport * from './updateH';\nexport * from './updateRGB';\nexport * from './updateA';\nexport * from './correctRGB';\nexport * from './correctHSV';\nexport * from './correctHex';\n//# sourceMappingURL=colors.js.map" + }, + { + "id": "+aGg", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", + "index": 277, + "index2": 271, + "size": 304, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "issuerId": "z2r6", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "Bswb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js" + }, + { + "id": "z2r6", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "z2r6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./CalloutContent", + "loc": "2:0-33" + }, + { + "moduleId": "z2r6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "type": "harmony export imported specifier", + "userRequest": "./CalloutContent", + "loc": "2:0-33" + }, + { + "moduleId": "zLl/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "type": "harmony side effect evaluation", + "userRequest": "./CalloutContent", + "loc": "3:0-50" + }, + { + "moduleId": "zLl/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "type": "harmony import specifier", + "userRequest": "./CalloutContent", + "loc": "12:42-56" + } + ], + "providedExports": [ + "CalloutContent" + ], + "optimizationBailout": [], + "depth": 12, + "source": "import { styled } from '../../Utilities';\nimport { CalloutContentBase } from './CalloutContent.base';\nimport { getStyles } from './CalloutContent.styles';\nexport var CalloutContent = styled(CalloutContentBase, getStyles, undefined, { scope: 'CalloutContent' });\n//# sourceMappingURL=CalloutContent.js.map" + }, + { + "id": "+rda", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.types.js", + "name": "./node_modules/@uifabric/utilities/lib/selection/Selection.types.js", + "index": 150, + "index2": 141, + "size": 696, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/index.js", + "issuerId": "dp/N", + "issuerName": "./node_modules/@uifabric/utilities/lib/selection/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "dp/N", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/index.js", + "name": "./node_modules/@uifabric/utilities/lib/selection/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony side effect evaluation", + "userRequest": "./Selection.types", + "loc": "1:0-68" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "20:262-275" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "185:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "200:43-56" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "223:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "236:44-57" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "261:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "264:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "290:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "295:26-39" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "317:43-56" + }, + { + "moduleId": "AyH7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/Selection.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", + "type": "harmony import specifier", + "userRequest": "./Selection.types", + "loc": "337:35-51" + }, + { + "moduleId": "dp/N", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/index.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./Selection.types", + "loc": "1:0-34" + }, + { + "moduleId": "dp/N", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/selection/index.js", + "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", + "type": "harmony export imported specifier", + "userRequest": "./Selection.types", + "loc": "1:0-34" + } + ], + "providedExports": [ + "SELECTION_CHANGE", + "SelectionMode", + "SelectionDirection" + ], + "optimizationBailout": [], + "depth": 9, + "source": "export var SELECTION_CHANGE = 'change';\n/**\n * {@docCategory Selection}\n */\nexport var SelectionMode;\n(function (SelectionMode) {\n SelectionMode[SelectionMode[\"none\"] = 0] = \"none\";\n SelectionMode[SelectionMode[\"single\"] = 1] = \"single\";\n SelectionMode[SelectionMode[\"multiple\"] = 2] = \"multiple\";\n})(SelectionMode || (SelectionMode = {}));\n/**\n * {@docCategory Selection}\n */\nexport var SelectionDirection;\n(function (SelectionDirection) {\n SelectionDirection[SelectionDirection[\"horizontal\"] = 0] = \"horizontal\";\n SelectionDirection[SelectionDirection[\"vertical\"] = 1] = \"vertical\";\n})(SelectionDirection || (SelectionDirection = {}));\n//# sourceMappingURL=Selection.types.js.map" + }, + { + "id": "/A2d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/telemetry-js/dist/index.js", + "name": "./node_modules/@pnp/telemetry-js/dist/index.js", + "index": 372, + "index2": 367, + "size": 5072, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "issuerId": "TVYz", + "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "TVYz", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "TVYz", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "type": "harmony side effect evaluation", + "userRequest": "@pnp/telemetry-js", + "loc": "12:0-45" + }, + { + "moduleId": "TVYz", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", + "type": "harmony import specifier", + "userRequest": "@pnp/telemetry-js", + "loc": "18:20-32" + } + ], + "providedExports": null, + "optimizationBailout": [], + "depth": 5, + "source": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nrequire(\"whatwg-fetch\");\nvar PNP_TELEMETRY_URL = \"https://pnptelemetryproxy.azurewebsites.net/track\";\n/**\n * PnP Telemetry class\n *\n * This can be used to track PnP client-side events\n */\nvar PnPTelemetry = /** @class */ (function () {\n function PnPTelemetry() {\n this.events = [];\n this.timeout = null;\n this.tracking = true;\n }\n /**\n * Initialize the telemetry class and return the instance\n */\n PnPTelemetry.getInstance = function () {\n if (typeof window.pnpTelemetry === \"undefined\") {\n window.pnpTelemetry = new PnPTelemetry();\n }\n return window.pnpTelemetry;\n };\n /**\n * Opt out of tracking\n */\n PnPTelemetry.prototype.optOut = function () {\n this.tracking = false;\n };\n /**\n * Track the event information\n *\n * @param name\n * @param props\n */\n PnPTelemetry.prototype.trackEvent = function (name, properties) {\n if (this.tracking) {\n this.events.push({ name: name, properties: properties });\n this.debounceTracking();\n }\n };\n /**\n * Delay event tracking\n */\n PnPTelemetry.prototype.debounceTracking = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n // Check if timeout was defined\n if (this.timeout) {\n clearTimeout(this.timeout);\n }\n // Set a new timeout\n this.timeout = setTimeout(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, fetch(PNP_TELEMETRY_URL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify(this.events)\n })];\n case 1:\n _a.sent();\n // Reset the events\n this.events = [];\n return [2 /*return*/];\n }\n });\n }); }, 1000);\n return [2 /*return*/];\n });\n });\n };\n return PnPTelemetry;\n}());\nexports.default = PnPTelemetry;\n" + }, + { + "id": "/HB8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/usePrevious.js", + "name": "./node_modules/@uifabric/react-hooks/lib/usePrevious.js", + "index": 332, + "index2": 313, + "size": 453, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "issuerId": "/m0d", + "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" + }, + { + "id": "/m0d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "name": "./node_modules/@uifabric/react-hooks/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./usePrevious", + "loc": "11:0-30" + }, + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./usePrevious", + "loc": "11:0-30" + }, + { + "moduleId": "sNMJ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "type": "harmony side effect evaluation", + "userRequest": "./usePrevious", + "loc": "4:0-44" + }, + { + "moduleId": "sNMJ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "type": "harmony import specifier", + "userRequest": "./usePrevious", + "loc": "18:23-34" + } + ], + "providedExports": [ + "usePrevious" + ], + "optimizationBailout": [], + "depth": 12, + "source": "import { useRef, useEffect } from 'react';\n/**\n * Hook keeping track of a given value from a previous execution of the component the Hook is used in.\n *\n * See [React Hooks FAQ](https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state)\n */\nexport function usePrevious(value) {\n var ref = useRef();\n useEffect(function () {\n ref.current = value;\n });\n return ref.current;\n}\n//# sourceMappingURL=usePrevious.js.map" + }, + { + "id": "/Phj", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "index": 342, + "index2": 330, + "size": 68, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "issuerId": "pgS/", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "rJVp", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" + }, + { + "id": "jq/3", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" + }, + { + "id": "pgS/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "pgS/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "type": "harmony side effect evaluation", + "userRequest": "./components/Divider/index", + "loc": "1:0-43" + }, + { + "moduleId": "pgS/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "type": "harmony export imported specifier", + "userRequest": "./components/Divider/index", + "loc": "1:0-43" + } + ], + "providedExports": [ + "VerticalDivider" + ], + "optimizationBailout": [], + "depth": 13, + "source": "export * from './VerticalDivider';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "/f8K", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/FabricPerformance.js", + "name": "./node_modules/@uifabric/utilities/lib/FabricPerformance.js", + "index": 77, + "index2": 69, + "size": 1886, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./FabricPerformance", + "loc": "6:0-36" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./FabricPerformance", + "loc": "6:0-36" + } + ], + "providedExports": [ + "FabricPerformance" + ], + "optimizationBailout": [], + "depth": 8, + "source": "var now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nvar RESET_INTERVAL = 3 * 60 * 1000; // auto reset every 3 minutes\n/**\n * Performance helper class for measuring things.\n *\n * @public\n * {@docCategory FabricPerformance}\n */\nvar FabricPerformance = /** @class */ (function () {\n function FabricPerformance() {\n }\n /**\n * Measures execution time of the given syncronous function. If the same logic is executed multiple times,\n * each individual measurement will be collected as well the overall numbers.\n * @param name - The name of this measurement\n * @param func - The logic to be measured for execution time\n */\n FabricPerformance.measure = function (name, func) {\n if (FabricPerformance._timeoutId) {\n FabricPerformance.setPeriodicReset();\n }\n var start = now();\n func();\n var end = now();\n var measurement = FabricPerformance.summary[name] || {\n totalDuration: 0,\n count: 0,\n all: [],\n };\n var duration = end - start;\n measurement.totalDuration += duration;\n measurement.count++;\n measurement.all.push({\n duration: duration,\n timeStamp: end,\n });\n FabricPerformance.summary[name] = measurement;\n };\n FabricPerformance.reset = function () {\n FabricPerformance.summary = {};\n clearTimeout(FabricPerformance._timeoutId);\n FabricPerformance._timeoutId = NaN;\n };\n FabricPerformance.setPeriodicReset = function () {\n FabricPerformance._timeoutId = setTimeout(function () { return FabricPerformance.reset(); }, RESET_INTERVAL);\n };\n FabricPerformance.summary = {};\n return FabricPerformance;\n}());\nexport { FabricPerformance };\n//# sourceMappingURL=FabricPerformance.js.map" + }, + { + "id": "/m0d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "name": "./node_modules/@uifabric/react-hooks/lib/index.js", + "index": 321, + "index2": 319, + "size": 527, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "issuerId": "5Zh/", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "5Zh/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/react-hooks", + "loc": "3:0-62" + }, + { + "moduleId": "5Zh/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/react-hooks", + "loc": "13:24-32" + }, + { + "moduleId": "5Zh/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/react-hooks", + "loc": "14:22-33" + } + ], + "providedExports": [ + "useAsync", + "useBoolean", + "useConst", + "useConstCallback", + "useControllableValue", + "useForceUpdate", + "useId", + "useMergedRefs", + "useOnEvent", + "usePrevious", + "useRefEffect", + "useSetInterval", + "useSetTimeout", + "useTarget", + "useWarnings" + ], + "optimizationBailout": [], + "depth": 11, + "source": "import './version';\nexport * from './useAsync';\nexport * from './useBoolean';\nexport * from './useConst';\nexport * from './useConstCallback';\nexport * from './useControllableValue';\nexport * from './useForceUpdate';\nexport * from './useId';\nexport * from './useMergedRefs';\nexport * from './useOnEvent';\nexport * from './usePrevious';\nexport * from './useRefEffect';\nexport * from './useSetInterval';\nexport * from './useSetTimeout';\nexport * from './useTarget';\nexport * from './useWarnings';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "/olZ", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/math.js", + "name": "./node_modules/@uifabric/utilities/lib/math.js", + "index": 139, + "index2": 131, + "size": 3244, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./math", + "loc": "39:0-23" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./math", + "loc": "39:0-23" + } + ], + "providedExports": [ + "getDistanceBetweenPoints", + "fitContentToBounds", + "calculatePrecision", + "precisionRound" + ], + "optimizationBailout": [], + "depth": 8, + "source": "/**\n * Determines the distance between two points.\n *\n * @public\n */\n/* eslint-disable deprecation/deprecation */\nexport function getDistanceBetweenPoints(point1, point2) {\n var left1 = point1.left || point1.x || 0;\n var top1 = point1.top || point1.y || 0;\n var left2 = point2.left || point2.x || 0;\n var top2 = point2.top || point2.y || 0;\n /* eslint-enable deprecation/deprecation */\n var distance = Math.sqrt(Math.pow(left1 - left2, 2) + Math.pow(top1 - top2, 2));\n return distance;\n}\n/**\n * Produces a proportionally-scaled version of an input content size when fit to a bounding size.\n * Given a `contentSize` and a `boundsSize`, this function scales `contentSize` proportionally\n * using either `contain` or `cover` fit behaviors.\n * Use this function to pre-calculate the layout for the CSS `object-fit` and `background-fit` behaviors.\n * With `contain`, the output size must be the largest it can be while completely within the `boundsSize`.\n * With `cover`, the output size must be the smallest it can be while completely around the `boundsSize`.\n * By default, there is a `maxScale` value of 1, which prevents the `contentSize` from being scaled larger.\n *\n * @param options - the options for the bounds fit operation\n */\nexport function fitContentToBounds(options) {\n var contentSize = options.contentSize, boundsSize = options.boundsSize, _a = options.mode, mode = _a === void 0 ? 'contain' : _a, _b = options.maxScale, maxScale = _b === void 0 ? 1 : _b;\n var contentAspectRatio = contentSize.width / contentSize.height;\n var boundsAspectRatio = boundsSize.width / boundsSize.height;\n var scale;\n if (mode === 'contain' ? contentAspectRatio > boundsAspectRatio : contentAspectRatio < boundsAspectRatio) {\n scale = boundsSize.width / contentSize.width;\n }\n else {\n scale = boundsSize.height / contentSize.height;\n }\n var finalScale = Math.min(maxScale, scale);\n return {\n width: contentSize.width * finalScale,\n height: contentSize.height * finalScale,\n };\n}\n/**\n * Calculates a number's precision based on the number of trailing\n * zeros if the number does not have a decimal indicated by a negative\n * precision. Otherwise, it calculates the number of digits after\n * the decimal point indicated by a positive precision.\n * @param value - the value to determine the precision of\n */\nexport function calculatePrecision(value) {\n /**\n * Group 1:\n * [1-9]([0]+$) matches trailing zeros\n * Group 2:\n * \\.([0-9]*) matches all digits after a decimal point.\n */\n var groups = /[1-9]([0]+$)|\\.([0-9]*)/.exec(String(value));\n if (!groups) {\n return 0;\n }\n if (groups[1]) {\n return -groups[1].length;\n }\n if (groups[2]) {\n return groups[2].length;\n }\n return 0;\n}\n/**\n * Rounds a number to a certain level of precision. Accepts negative precision.\n * @param value - The value that is being rounded.\n * @param precision - The number of decimal places to round the number to\n */\nexport function precisionRound(value, precision, base) {\n if (base === void 0) { base = 10; }\n var exp = Math.pow(base, precision);\n return Math.round(value * exp) / exp;\n}\n//# sourceMappingURL=math.js.map" + }, + { + "id": "/sqS", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", + "name": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", + "index": 330, + "index2": 311, + "size": 1150, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "issuerId": "/m0d", + "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" + }, + { + "id": "/m0d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "name": "./node_modules/@uifabric/react-hooks/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./useMergedRefs", + "loc": "9:0-32" + }, + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./useMergedRefs", + "loc": "9:0-32" + } + ], + "providedExports": [ + "useMergedRefs" + ], + "optimizationBailout": [], + "depth": 12, + "source": "import { __spreadArrays } from \"tslib\";\nimport * as React from 'react';\n/**\n * React hook to merge multiple React refs (either MutableRefObjects or ref callbacks) into a single ref callback that\n * updates all provided refs\n * @param refs - Refs to collectively update with one ref value.\n * @returns A function with an attached \"current\" prop, so that it can be treated like a RefObject.\n */\nexport function useMergedRefs() {\n var refs = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n refs[_i] = arguments[_i];\n }\n var mergedCallback = React.useCallback(function (value) {\n // Update the \"current\" prop hanging on the function.\n mergedCallback.current = value;\n for (var _i = 0, refs_1 = refs; _i < refs_1.length; _i++) {\n var ref = refs_1[_i];\n if (typeof ref === 'function') {\n ref(value);\n }\n else if (ref) {\n // work around the immutability of the React.Ref type\n ref.current = value;\n }\n }\n }, __spreadArrays(refs));\n return mergedCallback;\n}\n//# sourceMappingURL=useMergedRefs.js.map" + }, + { + "id": "01ST", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", + "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", + "index": 63, + "index2": 53, + "size": 2932, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "issuerId": "65oB", + "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "9h5o", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "name": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js" + }, + { + "id": "65oB", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "name": "./node_modules/@uifabric/merge-styles/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "65oB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "module": "./node_modules/@uifabric/merge-styles/lib/index.js", + "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./mergeStyleSets", + "loc": "2:0-64" + }, + { + "moduleId": "65oB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "module": "./node_modules/@uifabric/merge-styles/lib/index.js", + "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./mergeStyleSets", + "loc": "2:0-64" + }, + { + "moduleId": "65oB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "module": "./node_modules/@uifabric/merge-styles/lib/index.js", + "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./mergeStyleSets", + "loc": "2:0-64" + } + ], + "providedExports": [ + "mergeStyleSets", + "mergeCssSets" + ], + "optimizationBailout": [], + "depth": 10, + "source": "import { concatStyleSets } from './concatStyleSets';\nimport { extractStyleParts } from './extractStyleParts';\nimport { getStyleOptions } from './StyleOptionsState';\nimport { applyRegistration, styleToRegistration } from './styleToClassName';\n/**\n * Takes in one or more style set objects, each consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeStyles` for each property in the object, but ensures we maintain the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n */\nexport function mergeStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n return mergeCssSets(styleSets, getStyleOptions());\n}\n/**\n * Takes in one or more style set objects, each1consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeCss` for each property in the object, but ensures the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n * @param options - (optional) Options to use when creating rules.\n */\nexport function mergeCssSets(styleSets, options) {\n var _a, _b;\n var classNameSet = { subComponentStyles: {} };\n var styleSet = styleSets[0];\n if (!styleSet && styleSets.length <= 1) {\n return { subComponentStyles: {} };\n }\n var concatenatedStyleSet = concatStyleSets.apply(void 0, styleSets);\n var registrations = [];\n for (var styleSetArea in concatenatedStyleSet) {\n if (concatenatedStyleSet.hasOwnProperty(styleSetArea)) {\n if (styleSetArea === 'subComponentStyles') {\n classNameSet.subComponentStyles = concatenatedStyleSet.subComponentStyles || {};\n continue;\n }\n var styles = concatenatedStyleSet[styleSetArea];\n var _c = extractStyleParts(styles), classes = _c.classes, objects = _c.objects;\n if ((_a = objects) === null || _a === void 0 ? void 0 : _a.length) {\n var registration = styleToRegistration(options || {}, { displayName: styleSetArea }, objects);\n if (registration) {\n registrations.push(registration);\n classNameSet[styleSetArea] = classes.concat([registration.className]).join(' ');\n }\n }\n else {\n classNameSet[styleSetArea] = classes.join(' ');\n }\n }\n }\n for (var _i = 0, registrations_1 = registrations; _i < registrations_1.length; _i++) {\n var registration = registrations_1[_i];\n if (registration) {\n applyRegistration(registration, (_b = options) === null || _b === void 0 ? void 0 : _b.specificityMultiplier);\n }\n }\n return classNameSet;\n}\n//# sourceMappingURL=mergeStyleSets.js.map" + }, + { + "id": "0NDg", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/raiseClick.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/raiseClick.js", + "index": 110, + "index2": 100, + "size": 543, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "issuerId": "4aJh", + "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/raiseClick", + "loc": "13:0-33" + }, + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony export imported specifier", + "userRequest": "./dom/raiseClick", + "loc": "13:0-33" + } + ], + "providedExports": [ + "raiseClick" + ], + "optimizationBailout": [], + "depth": 9, + "source": "/** Raises a click event. */\nexport function raiseClick(target) {\n var event = createNewEvent('MouseEvents');\n event.initEvent('click', true, true);\n target.dispatchEvent(event);\n}\nfunction createNewEvent(eventName) {\n var event;\n if (typeof Event === 'function') {\n // Chrome, Opera, Firefox\n event = new Event(eventName);\n }\n else {\n // IE\n event = document.createEvent('Event');\n event.initEvent(eventName, true, true);\n }\n return event;\n}\n//# sourceMappingURL=raiseClick.js.map" + }, + { + "id": "0R3a", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/WindowProvider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/WindowProvider.js", + "index": 271, + "index2": 260, + "size": 111, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "issuerId": "p6i1", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "p6i1", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "p6i1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "type": "harmony side effect evaluation", + "userRequest": "../../WindowProvider", + "loc": "5:0-53" + }, + { + "moduleId": "p6i1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", + "type": "harmony import specifier", + "userRequest": "../../WindowProvider", + "loc": "80:25-38" + } + ], + "providedExports": [ + "WindowContext", + "useWindow", + "useDocument", + "WindowProvider" + ], + "optimizationBailout": [], + "depth": 11, + "source": "import './version';\nexport * from '@fluentui/react-window-provider';\n//# sourceMappingURL=WindowProvider.js.map" + }, + { + "id": "0Xhg", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "index": 350, + "index2": 355, + "size": 1845, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerId": "gCc8", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./Button", + "loc": "3:0-25" + }, + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony export imported specifier", + "userRequest": "./Button", + "loc": "3:0-25" + } + ], + "providedExports": [ + "Button" + ], + "optimizationBailout": [], + "depth": 6, + "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { warn } from '../../Utilities';\nimport { ButtonType } from './Button.types';\nimport { DefaultButton } from './DefaultButton/DefaultButton';\nimport { ActionButton } from './ActionButton/ActionButton';\nimport { CompoundButton } from './CompoundButton/CompoundButton';\nimport { IconButton } from './IconButton/IconButton';\nimport { PrimaryButton } from './PrimaryButton/PrimaryButton';\n/**\n * This class is deprecated. Use the individual *Button components instead.\n * @deprecated Use the individual *Button components instead.\n * {@docCategory Button}\n */\nvar Button = /** @class */ (function (_super) {\n __extends(Button, _super);\n function Button(props) {\n var _this = _super.call(this, props) || this;\n warn(\"The Button component has been deprecated. Use specific variants instead. \" +\n \"(PrimaryButton, DefaultButton, IconButton, ActionButton, etc.)\");\n return _this;\n }\n Button.prototype.render = function () {\n var props = this.props;\n // eslint-disable-next-line deprecation/deprecation\n switch (props.buttonType) {\n case ButtonType.command:\n return React.createElement(ActionButton, __assign({}, props));\n case ButtonType.compound:\n return React.createElement(CompoundButton, __assign({}, props));\n case ButtonType.icon:\n return React.createElement(IconButton, __assign({}, props));\n case ButtonType.primary:\n return React.createElement(PrimaryButton, __assign({}, props));\n default:\n return React.createElement(DefaultButton, __assign({}, props));\n }\n };\n return Button;\n}(React.Component));\nexport { Button };\n//# sourceMappingURL=Button.js.map" + }, + { + "id": "0xmZ", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/elementContains.js", + "name": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", + "index": 92, + "index2": 83, + "size": 1134, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "issuerId": "nvVZ", + "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js" + }, + { + "id": "xu/W", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/elementContains.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" + }, + { + "id": "nvVZ", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "nvVZ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./elementContains", + "loc": "1:0-34" + }, + { + "moduleId": "nvVZ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./elementContains", + "loc": "1:0-34" + } + ], + "providedExports": [ + "elementContains" + ], + "optimizationBailout": [], + "depth": 11, + "source": "import { getParent } from './getParent';\n/**\n * Determines whether or not a parent element contains a given child element.\n * If `allowVirtualParents` is true, this method may return `true` if the child\n * has the parent in its virtual element hierarchy.\n *\n * @public\n */\nexport function elementContains(parent, child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n var isContained = false;\n if (parent && child) {\n if (allowVirtualParents) {\n if (parent === child) {\n isContained = true;\n }\n else {\n isContained = false;\n while (child) {\n var nextParent = getParent(child);\n if (nextParent === parent) {\n isContained = true;\n break;\n }\n child = nextParent;\n }\n }\n }\n else if (parent.contains) {\n isContained = parent.contains(child);\n }\n }\n return isContained;\n}\n//# sourceMappingURL=elementContains.js.map" + }, + { + "id": "1/U1", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/fonts.js", + "name": "./node_modules/@uifabric/styling/lib/styles/fonts.js", + "index": 196, + "index2": 183, + "size": 184, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "issuerId": "vH3w", + "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "vH3w", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "name": "./node_modules/@uifabric/styling/lib/styles/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./fonts", + "loc": "5:0-82" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony export imported specifier", + "userRequest": "./fonts", + "loc": "5:0-82" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony export imported specifier", + "userRequest": "./fonts", + "loc": "5:0-82" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony export imported specifier", + "userRequest": "./fonts", + "loc": "5:0-82" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony export imported specifier", + "userRequest": "./fonts", + "loc": "5:0-82" + } + ], + "providedExports": [ + "LocalizedFontNames", + "LocalizedFontFamilies", + "FontSizes", + "FontWeights", + "IconFontSizes", + "createFontStyles" + ], + "optimizationBailout": [], + "depth": 10, + "source": "export { LocalizedFontNames, LocalizedFontFamilies, FontSizes, FontWeights, IconFontSizes, createFontStyles, } from '@fluentui/theme/lib/fonts/index';\n//# sourceMappingURL=fonts.js.map" + }, + { + "id": "1Rkx", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", + "index": 174, + "index2": 212, + "size": 1647, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "issuerId": "W/x7", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "AvzG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Label.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Label.js" + }, + { + "id": "QBoD", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/index.js" + }, + { + "id": "W/x7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "W/x7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "type": "harmony side effect evaluation", + "userRequest": "./Label.styles", + "loc": "3:0-43" + }, + { + "moduleId": "W/x7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", + "type": "harmony import specifier", + "userRequest": "./Label.styles", + "loc": "4:37-46" + } + ], + "providedExports": [ + "getStyles" + ], + "optimizationBailout": [], + "depth": 7, + "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, FontWeights, getHighContrastNoAdjustStyle } from '../../Styling';\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, disabled = props.disabled, required = props.required;\n var semanticColors = theme.semanticColors;\n // Tokens\n var labelFontWeight = FontWeights.semibold;\n var labelColor = semanticColors.bodyText;\n var labelDisabledColor = semanticColors.disabledBodyText;\n var labelRequiredStarColor = semanticColors.errorText;\n return {\n root: [\n 'ms-Label',\n theme.fonts.medium,\n {\n fontWeight: labelFontWeight,\n color: labelColor,\n boxSizing: 'border-box',\n boxShadow: 'none',\n margin: 0,\n display: 'block',\n padding: '5px 0',\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n },\n disabled && {\n color: labelDisabledColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n required && {\n selectors: {\n '::after': {\n content: \"' *'\",\n color: labelRequiredStarColor,\n paddingRight: 12,\n },\n },\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=Label.styles.js.map" + }, + { + "id": "1XSK", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", + "index": 285, + "index2": 266, + "size": 6679, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "issuerId": "Iqyr", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "Bswb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js" + }, + { + "id": "z2r6", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" + }, + { + "id": "XZgV", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" + }, + { + "id": "LkE5", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Popup.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Popup.js" + }, + { + "id": "Iqyr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "Iqyr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./Popup", + "loc": "1:0-24" + }, + { + "moduleId": "Iqyr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", + "type": "harmony export imported specifier", + "userRequest": "./Popup", + "loc": "1:0-24" + } + ], + "providedExports": [ + "Popup" + ], + "optimizationBailout": [], + "depth": 15, + "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, KeyCodes, divProperties, doesElementContainFocus, getDocument, getNativeProps, on, getWindow, elementContains, } from '../../Utilities';\n/**\n * This adds accessibility to Dialog and Panel controls\n */\nvar Popup = /** @class */ (function (_super) {\n __extends(Popup, _super);\n function Popup(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._disposables = [];\n _this._onKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.escape:\n if (_this.props.onDismiss) {\n _this.props.onDismiss(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n }\n };\n _this._onFocus = function () {\n _this._containsFocus = true;\n };\n _this._onBlur = function (ev) {\n /** The popup should update this._containsFocus when:\n * relatedTarget exists AND\n * the relatedTarget is not contained within the popup.\n * If the relatedTarget is within the popup, that means the popup still has focus\n * and focused moved from one element to another within the popup.\n * If relatedTarget is undefined or null that usually means that a\n * keyboard event occured and focus didn't change\n */\n if (_this._root.current &&\n ev.relatedTarget &&\n !elementContains(_this._root.current, ev.relatedTarget)) {\n _this._containsFocus = false;\n }\n };\n _this._async = new Async(_this);\n _this.state = { needsVerticalScrollBar: false };\n return _this;\n }\n Popup.prototype.UNSAFE_componentWillMount = function () {\n this._originalFocusedElement = getDocument().activeElement;\n };\n Popup.prototype.componentDidMount = function () {\n if (this._root.current) {\n this._disposables.push(on(this._root.current, 'focus', this._onFocus, true), on(this._root.current, 'blur', this._onBlur, true));\n var currentWindow = getWindow(this._root.current);\n if (currentWindow) {\n this._disposables.push(on(currentWindow, 'keydown', this._onKeyDown));\n }\n if (doesElementContainFocus(this._root.current)) {\n this._containsFocus = true;\n }\n }\n this._updateScrollBarAsync();\n };\n Popup.prototype.componentDidUpdate = function () {\n this._updateScrollBarAsync();\n this._async.dispose();\n };\n Popup.prototype.componentWillUnmount = function () {\n var _a;\n this._disposables.forEach(function (dispose) { return dispose(); });\n // eslint-disable-next-line deprecation/deprecation\n if (this.props.shouldRestoreFocus) {\n var _b = this.props.onRestoreFocus, onRestoreFocus = _b === void 0 ? defaultFocusRestorer : _b;\n onRestoreFocus({\n originalElement: this._originalFocusedElement,\n containsFocus: this._containsFocus,\n documentContainsFocus: ((_a = getDocument()) === null || _a === void 0 ? void 0 : _a.hasFocus()) || false,\n });\n }\n // De-reference DOM Node to avoid retainment via transpiled closure of _onKeyDown\n delete this._originalFocusedElement;\n };\n Popup.prototype.render = function () {\n var _a = this.props, role = _a.role, className = _a.className, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, style = _a.style;\n return (React.createElement(\"div\", __assign({ ref: this._root }, getNativeProps(this.props, divProperties), { className: className, role: role, \"aria-label\": ariaLabel, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy, onKeyDown: this._onKeyDown, style: __assign({ overflowY: this.state.needsVerticalScrollBar ? 'scroll' : undefined, outline: 'none' }, style) }), this.props.children));\n };\n Popup.prototype._updateScrollBarAsync = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n _this._getScrollBar();\n });\n };\n Popup.prototype._getScrollBar = function () {\n // If overflowY is overriden, don't waste time calculating whether the scrollbar is necessary.\n if (this.props.style && this.props.style.overflowY) {\n return;\n }\n var needsVerticalScrollBar = false;\n if (this._root && this._root.current && this._root.current.firstElementChild) {\n // ClientHeight returns the client height of an element rounded to an\n // integer. On some browsers at different zoom levels this rounding\n // can generate different results for the root container and child even\n // though they are the same height. This causes us to show a scroll bar\n // when not needed. Ideally we would use BoundingClientRect().height\n // instead however seems that the API is 90% slower than using ClientHeight.\n // Therefore instead we will calculate the difference between heights and\n // allow for a 1px difference to still be considered ok and not show the\n // scroll bar.\n var rootHeight = this._root.current.clientHeight;\n var firstChildHeight = this._root.current.firstElementChild.clientHeight;\n if (rootHeight > 0 && firstChildHeight > rootHeight) {\n needsVerticalScrollBar = firstChildHeight - rootHeight > 1;\n }\n }\n if (this.state.needsVerticalScrollBar !== needsVerticalScrollBar) {\n this.setState({\n needsVerticalScrollBar: needsVerticalScrollBar,\n });\n }\n };\n Popup.defaultProps = {\n shouldRestoreFocus: true,\n };\n return Popup;\n}(React.Component));\nexport { Popup };\nfunction defaultFocusRestorer(options) {\n var originalElement = options.originalElement, containsFocus = options.containsFocus;\n if (originalElement && containsFocus && originalElement !== window) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n if (originalElement.focus) {\n originalElement.focus();\n }\n }\n}\n//# sourceMappingURL=Popup.js.map" + }, + { + "id": "1q2t", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", + "name": "./node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", + "index": 147, + "index2": 139, + "size": 1029, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./safeRequestAnimationFrame", + "loc": "51:0-44" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./safeRequestAnimationFrame", + "loc": "51:0-44" + } + ], + "providedExports": [ + "safeRequestAnimationFrame" + ], + "optimizationBailout": [], + "depth": 8, + "source": "import { extendComponent } from './extendComponent';\n/**\n * Generates a function to be attached to a React component, which can be called\n * as a replacement to RAF. In-flight async calls will be auto canceled if the component\n * is unmounting before the async code is executed, preventing bugs where code\n * accesses things within the component after being unmounted.\n */\nexport var safeRequestAnimationFrame = function (component) {\n var activeTimeouts;\n return function (cb) {\n if (!activeTimeouts) {\n activeTimeouts = new Set();\n extendComponent(component, {\n componentWillUnmount: function () {\n activeTimeouts.forEach(function (id) { return cancelAnimationFrame(id); });\n },\n });\n }\n var timeoutId = requestAnimationFrame(function () {\n activeTimeouts.delete(timeoutId);\n cb();\n });\n activeTimeouts.add(timeoutId);\n };\n};\n//# sourceMappingURL=safeRequestAnimationFrame.js.map" + }, + { + "id": "1sZu", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", + "index": 261, + "index2": 253, + "size": 72, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "issuerId": "5U38", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "5U38", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "5U38", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "type": "harmony side effect evaluation", + "userRequest": "./components/FocusZone/index", + "loc": "1:0-45" + }, + { + "moduleId": "5U38", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "type": "harmony export imported specifier", + "userRequest": "./components/FocusZone/index", + "loc": "1:0-45" + } + ], + "providedExports": [ + "FocusZone", + "FocusZoneTabbableElements", + "FocusZoneDirection" + ], + "optimizationBailout": [], + "depth": 11, + "source": "export * from '@fluentui/react-focus';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "1xxT", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", + "index": 365, + "index2": 358, + "size": 176, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerId": "gCc8", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./CommandButton/CommandButton", + "loc": "6:0-46" + }, + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony export imported specifier", + "userRequest": "./CommandButton/CommandButton", + "loc": "6:0-46" + } + ], + "providedExports": [ + "CommandButton" + ], + "optimizationBailout": [], + "depth": 6, + "source": "import { ActionButton } from '../ActionButton/ActionButton';\n/**\n * {@docCategory Button}\n */\nexport var CommandButton = ActionButton;\n//# sourceMappingURL=CommandButton.js.map" + }, + { + "id": "1yCa", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "index": 36, + "index2": 30, + "size": 406, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerId": "bQ/l", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony side effect evaluation", + "userRequest": "./correctHSV", + "loc": "20:0-29" + }, + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony export imported specifier", + "userRequest": "./correctHSV", + "loc": "20:0-29" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./correctHSV", + "loc": "24:0-29" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony export imported specifier", + "userRequest": "./correctHSV", + "loc": "24:0-29" + } + ], + "providedExports": [ + "correctHSV" + ], + "optimizationBailout": [], + "depth": 5, + "source": "import { MAX_COLOR_HUE, MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from './consts';\nimport { clamp } from './clamp';\n/** Corrects an HSV color to fall within the valid range. */\nexport function correctHSV(color) {\n return {\n h: clamp(color.h, MAX_COLOR_HUE),\n s: clamp(color.s, MAX_COLOR_SATURATION),\n v: clamp(color.v, MAX_COLOR_VALUE),\n };\n}\n//# sourceMappingURL=correctHSV.js.map" + }, + { + "id": "2GE3", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/FluentFonts.js", + "name": "./node_modules/@fluentui/theme/lib/fonts/FluentFonts.js", + "index": 194, + "index2": 178, + "size": 3686, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/index.js", + "issuerId": "qcM2", + "issuerName": "./node_modules/@fluentui/theme/lib/fonts/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "xfqs", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" + }, + { + "id": "6lVU", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/createTheme.js", + "name": "./node_modules/@fluentui/theme/lib/createTheme.js" + }, + { + "id": "qcM2", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/index.js", + "name": "./node_modules/@fluentui/theme/lib/fonts/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "./FluentFonts", + "loc": "2:0-87" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "23:54-65" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "24:58-69" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "25:56-67" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "26:57-68" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "27:53-64" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "33:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "34:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "35:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "36:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "37:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "38:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "39:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "40:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "41:38-59" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "42:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "43:38-56" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "46:102-113" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "49:97-108" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "./FluentFonts", + "loc": "1:0-98" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "6:42-60" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "9:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "10:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "11:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "12:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "13:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "14:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "15:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "16:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "17:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "18:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "19:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "20:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "21:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "22:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "23:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "24:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "25:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "26:15-36" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "27:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "28:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "29:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "30:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "31:15-36" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "32:15-36" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "33:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "34:8-29" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "65:26-35" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "65:42-53" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "66:28-37" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "66:46-57" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "67:27-36" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "67:44-55" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "68:31-40" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "68:52-63" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "69:28-37" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "69:46-57" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "70:32-41" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "70:54-65" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "71:27-36" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "71:44-55" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "72:28-37" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "72:46-57" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "73:32-41" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "73:54-65" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "74:29-38" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "74:48-59" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "75:33-42" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "75:56-67" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "76:32-41" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "76:54-65" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "77:26-35" + }, + { + "moduleId": "idU1", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", + "type": "harmony import specifier", + "userRequest": "./FluentFonts", + "loc": "77:42-53" + }, + { + "moduleId": "qcM2", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/index.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./FluentFonts", + "loc": "1:0-30" + }, + { + "moduleId": "qcM2", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/index.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", + "type": "harmony export imported specifier", + "userRequest": "./FluentFonts", + "loc": "1:0-30" + } + ], + "providedExports": [ + "LocalizedFontNames", + "LocalizedFontFamilies", + "FontSizes", + "FontWeights", + "IconFontSizes" + ], + "optimizationBailout": [], + "depth": 12, + "source": "// Font face names to be registered.\nexport var LocalizedFontNames;\n(function (LocalizedFontNames) {\n LocalizedFontNames.Arabic = 'Segoe UI Web (Arabic)';\n LocalizedFontNames.Cyrillic = 'Segoe UI Web (Cyrillic)';\n LocalizedFontNames.EastEuropean = 'Segoe UI Web (East European)';\n LocalizedFontNames.Greek = 'Segoe UI Web (Greek)';\n LocalizedFontNames.Hebrew = 'Segoe UI Web (Hebrew)';\n LocalizedFontNames.Thai = 'Leelawadee UI Web';\n LocalizedFontNames.Vietnamese = 'Segoe UI Web (Vietnamese)';\n LocalizedFontNames.WestEuropean = 'Segoe UI Web (West European)';\n LocalizedFontNames.Selawik = 'Selawik Web';\n LocalizedFontNames.Armenian = 'Segoe UI Web (Armenian)';\n LocalizedFontNames.Georgian = 'Segoe UI Web (Georgian)';\n})(LocalizedFontNames || (LocalizedFontNames = {}));\n// Font families with fallbacks, for the general regions.\nexport var LocalizedFontFamilies;\n(function (LocalizedFontFamilies) {\n LocalizedFontFamilies.Arabic = \"'\" + LocalizedFontNames.Arabic + \"'\";\n LocalizedFontFamilies.ChineseSimplified = \"'Microsoft Yahei UI', Verdana, Simsun\";\n LocalizedFontFamilies.ChineseTraditional = \"'Microsoft Jhenghei UI', Pmingliu\";\n LocalizedFontFamilies.Cyrillic = \"'\" + LocalizedFontNames.Cyrillic + \"'\";\n LocalizedFontFamilies.EastEuropean = \"'\" + LocalizedFontNames.EastEuropean + \"'\";\n LocalizedFontFamilies.Greek = \"'\" + LocalizedFontNames.Greek + \"'\";\n LocalizedFontFamilies.Hebrew = \"'\" + LocalizedFontNames.Hebrew + \"'\";\n LocalizedFontFamilies.Hindi = \"'Nirmala UI'\";\n LocalizedFontFamilies.Japanese = \"'Yu Gothic UI', 'Meiryo UI', Meiryo, 'MS Pgothic', Osaka\";\n LocalizedFontFamilies.Korean = \"'Malgun Gothic', Gulim\";\n LocalizedFontFamilies.Selawik = \"'\" + LocalizedFontNames.Selawik + \"'\";\n LocalizedFontFamilies.Thai = \"'Leelawadee UI Web', 'Kmer UI'\";\n LocalizedFontFamilies.Vietnamese = \"'\" + LocalizedFontNames.Vietnamese + \"'\";\n LocalizedFontFamilies.WestEuropean = \"'\" + LocalizedFontNames.WestEuropean + \"'\";\n LocalizedFontFamilies.Armenian = \"'\" + LocalizedFontNames.Armenian + \"'\";\n LocalizedFontFamilies.Georgian = \"'\" + LocalizedFontNames.Georgian + \"'\";\n})(LocalizedFontFamilies || (LocalizedFontFamilies = {}));\n// Standard font sizes.\nexport var FontSizes;\n(function (FontSizes) {\n FontSizes.size10 = '10px';\n FontSizes.size12 = '12px';\n FontSizes.size14 = '14px';\n FontSizes.size16 = '16px';\n FontSizes.size18 = '18px';\n FontSizes.size20 = '20px';\n FontSizes.size24 = '24px';\n FontSizes.size28 = '28px';\n FontSizes.size32 = '32px';\n FontSizes.size42 = '42px';\n FontSizes.size68 = '68px';\n FontSizes.mini = '10px';\n FontSizes.xSmall = '10px';\n FontSizes.small = '12px';\n FontSizes.smallPlus = '12px';\n FontSizes.medium = '14px';\n FontSizes.mediumPlus = '16px';\n FontSizes.icon = '16px';\n FontSizes.large = '18px';\n FontSizes.xLarge = '20px';\n FontSizes.xLargePlus = '24px';\n FontSizes.xxLarge = '28px';\n FontSizes.xxLargePlus = '32px';\n FontSizes.superLarge = '42px';\n FontSizes.mega = '68px';\n})(FontSizes || (FontSizes = {}));\n// Standard font weights.\nexport var FontWeights;\n(function (FontWeights) {\n FontWeights.light = 100;\n FontWeights.semilight = 300;\n FontWeights.regular = 400;\n FontWeights.semibold = 600;\n FontWeights.bold = 700;\n})(FontWeights || (FontWeights = {}));\n// Standard Icon Sizes.\nexport var IconFontSizes;\n(function (IconFontSizes) {\n IconFontSizes.xSmall = '10px';\n IconFontSizes.small = '12px';\n IconFontSizes.medium = '16px';\n IconFontSizes.large = '20px';\n})(IconFontSizes || (IconFontSizes = {}));\n//# sourceMappingURL=FluentFonts.js.map" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "index": 256, + "index2": 337, + "size": 290, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "issuerId": "lB5j", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "lB5j", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "type": "harmony side effect evaluation", + "userRequest": "./components/ContextualMenu/index", + "loc": "1:0-50" + }, + { + "moduleId": "lB5j", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "type": "harmony export imported specifier", + "userRequest": "./components/ContextualMenu/index", + "loc": "1:0-50" + } + ], + "providedExports": [ + "ContextualMenu", + "getSubmenuItems", + "canAnyMenuItemsCheck", + "ContextualMenuBase", + "DirectionalHint", + "ContextualMenuItemType", + "ContextualMenuItem", + "ContextualMenuItemBase", + "getMenuItemStyles" + ], + "optimizationBailout": [], + "depth": 8, + "source": "export * from './ContextualMenu';\nexport * from './ContextualMenu.base';\nexport * from './ContextualMenu.types';\nexport * from './ContextualMenuItem';\nexport * from './ContextualMenuItem.base';\nexport { getMenuItemStyles } from './ContextualMenu.cnstyles';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "3VRL", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", + "index": 257, + "index2": 336, + "size": 698, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "issuerId": "2bYP", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "2bYP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./ContextualMenu", + "loc": "1:0-33" + }, + { + "moduleId": "2bYP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "type": "harmony export imported specifier", + "userRequest": "./ContextualMenu", + "loc": "1:0-33" + } + ], + "providedExports": [ + "ContextualMenu" + ], + "optimizationBailout": [], + "depth": 9, + "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { styled } from '../../Utilities';\nimport { ContextualMenuBase } from './ContextualMenu.base';\nimport { getStyles } from './ContextualMenu.styles';\nfunction onRenderSubMenu(subMenuProps) {\n return React.createElement(LocalContextualMenu, __assign({}, subMenuProps));\n}\n// This is to prevent cyclic import with ContextualMenu.base.tsx.\nvar LocalContextualMenu = styled(ContextualMenuBase, getStyles, function () { return ({ onRenderSubMenu: onRenderSubMenu }); }, { scope: 'ContextualMenu' });\n/**\n * ContextualMenu description\n */\nexport var ContextualMenu = LocalContextualMenu;\n//# sourceMappingURL=ContextualMenu.js.map" + }, + { + "id": "3nfX", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "index": 343, + "index2": 329, + "size": 316, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "issuerId": "/Phj", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "rJVp", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" + }, + { + "id": "jq/3", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" + }, + { + "id": "pgS/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js" + }, + { + "id": "/Phj", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "/Phj", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./VerticalDivider", + "loc": "1:0-34" + }, + { + "moduleId": "/Phj", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "type": "harmony export imported specifier", + "userRequest": "./VerticalDivider", + "loc": "1:0-34" + } + ], + "providedExports": [ + "VerticalDivider" + ], + "optimizationBailout": [], + "depth": 14, + "source": "import { getStyles } from './VerticalDivider.styles';\nimport { VerticalDividerBase } from './VerticalDivider.base';\nimport { styled } from '../../Utilities';\nexport var VerticalDivider = styled(VerticalDividerBase, getStyles, undefined, {\n scope: 'VerticalDivider',\n});\n//# sourceMappingURL=VerticalDivider.js.map" + }, + { + "id": "3uSm", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/getWindow.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", + "index": 45, + "index2": 37, + "size": 1029, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "issuerId": "elao", + "issuerName": "./node_modules/@uifabric/utilities/lib/Async.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "elao", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "name": "./node_modules/@uifabric/utilities/lib/Async.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "9:0-32" + }, + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony export imported specifier", + "userRequest": "./dom/getWindow", + "loc": "9:0-32" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "3:0-44" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "160:13-22" + }, + { + "moduleId": "DU53", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/osDetector.js", + "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "DU53", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/osDetector.js", + "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "9:18-27" + }, + { + "moduleId": "JaMU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/localStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "JaMU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/localStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "9:18-27" + }, + { + "moduleId": "JaMU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/localStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/localStorage.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "24:18-27" + }, + { + "moduleId": "LQdl", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "LQdl", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "18:23-32" + }, + { + "moduleId": "LQdl", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "18:43-52" + }, + { + "moduleId": "VCDA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "VCDA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "70:14-23" + }, + { + "moduleId": "WgWP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/focus.js", + "module": "./node_modules/@uifabric/utilities/lib/focus.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "4:0-44" + }, + { + "moduleId": "WgWP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/focus.js", + "module": "./node_modules/@uifabric/utilities/lib/focus.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "267:18-27" + }, + { + "moduleId": "elao", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "module": "./node_modules/@uifabric/utilities/lib/Async.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "elao", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "module": "./node_modules/@uifabric/utilities/lib/Async.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "120:18-27" + }, + { + "moduleId": "elao", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "module": "./node_modules/@uifabric/utilities/lib/Async.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "149:18-27" + }, + { + "moduleId": "elao", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "module": "./node_modules/@uifabric/utilities/lib/Async.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "374:18-27" + }, + { + "moduleId": "elao", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/Async.js", + "module": "./node_modules/@uifabric/utilities/lib/Async.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "399:18-27" + }, + { + "moduleId": "mWkG", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/getId.js", + "module": "./node_modules/@uifabric/utilities/lib/getId.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "mWkG", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/getId.js", + "module": "./node_modules/@uifabric/utilities/lib/getId.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "7:14-23" + }, + { + "moduleId": "qXI7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/sessionStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "qXI7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/sessionStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "9:18-27" + }, + { + "moduleId": "qXI7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/sessionStorage.js", + "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "25:14-23" + }, + { + "moduleId": "yQoK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "yQoK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "22:25-34" + }, + { + "moduleId": "ybKx", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/useFocusRects.js", + "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "2:0-44" + }, + { + "moduleId": "ybKx", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/useFocusRects.js", + "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "40:18-27" + }, + { + "moduleId": "zmAb", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/ie11Detector.js", + "module": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getWindow", + "loc": "1:0-44" + }, + { + "moduleId": "zmAb", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/ie11Detector.js", + "module": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", + "type": "harmony import specifier", + "userRequest": "./dom/getWindow", + "loc": "4:14-23" + } + ], + "providedExports": [ + "getWindow" + ], + "optimizationBailout": [], + "depth": 9, + "source": "import { _isSSR } from './setSSR';\nvar _window = undefined;\n// Note: Accessing \"window\" in IE11 is somewhat expensive, and calling \"typeof window\"\n// hits a memory leak, whereas aliasing it and calling \"typeof _window\" does not.\n// Caching the window value at the file scope lets us minimize the impact.\ntry {\n _window = window;\n}\ncatch (e) {\n /* no-op */\n}\n/**\n * Helper to get the window object. The helper will make sure to use a cached variable\n * of \"window\", to avoid overhead and memory leaks in IE11. Note that in popup scenarios the\n * window object won't match the \"global\" window object, and for these scenarios, you should\n * pass in an element hosted within the popup.\n *\n * @public\n */\nexport function getWindow(rootElement) {\n if (_isSSR || typeof _window === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument && el.ownerDocument.defaultView ? el.ownerDocument.defaultView : _window;\n }\n}\n//# sourceMappingURL=getWindow.js.map" + }, + { + "id": "3x2G", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/modalize.js", + "name": "./node_modules/@uifabric/utilities/lib/modalize.js", + "index": 142, + "index2": 134, + "size": 1949, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./modalize", + "loc": "43:0-27" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./modalize", + "loc": "43:0-27" + } + ], + "providedExports": [ + "modalize" + ], + "optimizationBailout": [], + "depth": 8, + "source": "/**\n * The helper functions here will make the target element as modal to screen readers, by placing aria-hidden on elements\n * that are siblings to the target element and the target element's ancestors (because aria-hidden gets inherited).\n * That way, all other elements on the page are hidden to the screen reader.\n */\nimport { getDocument } from './dom/getDocument';\n/**\n * Call this on a target element to make it modal to screen readers.\n * Returns a function that undoes the changes it made.\n */\nexport function modalize(target) {\n var _a;\n var affectedNodes = [];\n var targetDocument = getDocument(target) || document;\n // start at target, then recurse and do the same for parent, until we reach \n while (target !== targetDocument.body) {\n // grab all siblings of current element\n for (var _i = 0, _b = target.parentElement.children; _i < _b.length; _i++) {\n var sibling = _b[_i];\n // but ignore elements that are already aria-hidden\n if (sibling !== target && ((_a = sibling.getAttribute('aria-hidden')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== 'true') {\n affectedNodes.push(sibling);\n }\n }\n if (!target.parentElement) {\n break;\n }\n target = target.parentElement;\n }\n // take all those elements and set aria-hidden=true on them\n affectedNodes.forEach(function (node) {\n node.setAttribute('aria-hidden', 'true');\n });\n return function () {\n unmodalize(affectedNodes);\n affectedNodes = []; // dispose\n };\n}\n/**\n * Undoes the changes that modalize() did.\n */\nfunction unmodalize(affectedNodes) {\n affectedNodes.forEach(function (node) {\n // set instead of removing in case other components explicitly set aria-hidden and do ==\"true\" or ==\"false\"\n node.setAttribute('aria-hidden', 'false');\n });\n}\n//# sourceMappingURL=modalize.js.map" + }, + { + "id": "4/X0", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "index": 222, + "index2": 244, + "size": 100, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "issuerId": "8oE+", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "8oE+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "8oE+", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "type": "harmony side effect evaluation", + "userRequest": "./components/ColorPicker/index", + "loc": "1:0-47" + }, + { + "moduleId": "8oE+", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "type": "harmony export imported specifier", + "userRequest": "./components/ColorPicker/index", + "loc": "1:0-47" + } + ], + "providedExports": [ + "ColorPicker", + "ColorPickerBase" + ], + "optimizationBailout": [], + "depth": 5, + "source": "export * from './ColorPicker';\nexport * from './ColorPicker.base';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "48QA", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButtonHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButtonHost.js", + "index": 379, + "index2": 380, + "size": 1930, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "issuerId": "KR5Y", + "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jHFE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSpinButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSpinButton.js" + }, + { + "id": "KR5Y", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "HXYo", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "type": "harmony side effect evaluation", + "userRequest": "./PropertyFieldSpinButtonHost", + "loc": "4:0-72" + }, + { + "moduleId": "HXYo", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/PropertyFieldSpinButton.js", + "type": "harmony import specifier", + "userRequest": "./PropertyFieldSpinButtonHost", + "loc": "39:42-69" + }, + { + "moduleId": "KR5Y", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./PropertyFieldSpinButtonHost", + "loc": "3:0-46" + }, + { + "moduleId": "KR5Y", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/spinButton/index.js", + "type": "harmony export imported specifier", + "userRequest": "./PropertyFieldSpinButtonHost", + "loc": "3:0-46" + } + ], + "providedExports": [ + "default" + ], + "optimizationBailout": [], + "depth": 3, + "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { SpinButton } from 'office-ui-fabric-react/lib/SpinButton';\nimport { Position } from 'office-ui-fabric-react/lib/utilities/positioning';\nimport * as telemetry from '../../common/telemetry';\nvar PropertyFieldSpinButtonHost = /** @class */ (function (_super) {\n __extends(PropertyFieldSpinButtonHost, _super);\n function PropertyFieldSpinButtonHost(props, state) {\n var _this = _super.call(this, props) || this;\n telemetry.track('PropertyFieldSpinButton', {\n disabled: props.disabled\n });\n _this.state = {\n errorMessage: undefined\n };\n return _this;\n }\n PropertyFieldSpinButtonHost.prototype.render = function () {\n return (React.createElement(\"div\", null,\n React.createElement(SpinButton, { label: this.props.label, labelPosition: Position.top, value: this.props.value, onValidate: this.props.onValidate, onIncrement: this.props.onIncrement, onDecrement: this.props.onDecrement, disabled: this.props.disabled, incrementButtonIcon: { iconName: this.props.incrementIconName }, decrementButtonIcon: { iconName: this.props.decrementIconName } })));\n };\n return PropertyFieldSpinButtonHost;\n}(React.Component));\nexport default PropertyFieldSpinButtonHost;\n//# sourceMappingURL=PropertyFieldSpinButtonHost.js.map" + }, + { + "id": "4PRO", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/getDocument.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", + "index": 51, + "index2": 41, + "size": 625, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "issuerId": "4aJh", + "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "3x2G", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/modalize.js", + "module": "./node_modules/@uifabric/utilities/lib/modalize.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/modalize.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "6:0-48" + }, + { + "moduleId": "3x2G", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/modalize.js", + "module": "./node_modules/@uifabric/utilities/lib/modalize.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/modalize.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "14:25-36" + }, + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "5:0-34" + }, + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony export imported specifier", + "userRequest": "./dom/getDocument", + "loc": "5:0-34" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "1:0-48" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "87:14-25" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "101:18-29" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "138:14-25" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "2:0-48" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "23:18-29" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "36:14-25" + }, + { + "moduleId": "WgWP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/focus.js", + "module": "./node_modules/@uifabric/utilities/lib/focus.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "5:0-48" + }, + { + "moduleId": "WgWP", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/focus.js", + "module": "./node_modules/@uifabric/utilities/lib/focus.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "236:19-30" + }, + { + "moduleId": "m5xa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/language.js", + "module": "./node_modules/@uifabric/utilities/lib/language.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/getDocument", + "loc": "1:0-48" + }, + { + "moduleId": "m5xa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/language.js", + "module": "./node_modules/@uifabric/utilities/lib/language.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "15:18-29" + }, + { + "moduleId": "m5xa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/language.js", + "module": "./node_modules/@uifabric/utilities/lib/language.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", + "type": "harmony import specifier", + "userRequest": "./dom/getDocument", + "loc": "34:14-25" + } + ], + "providedExports": [ + "getDocument" + ], + "optimizationBailout": [], + "depth": 9, + "source": "import { _isSSR } from './setSSR';\n/**\n * Helper to get the document object. Note that in popup window cases, document\n * might be the wrong document, which is why we look at ownerDocument for the\n * truth. Also note that the SSR flag is used to test ssr scenarios even if\n * document is defined (from JSDOM for example.)\n *\n * @public\n */\nexport function getDocument(rootElement) {\n if (_isSSR || typeof document === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument ? el.ownerDocument : document;\n }\n}\n//# sourceMappingURL=getDocument.js.map" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js", + "index": 89, + "index2": 103, + "size": 596, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "9h5o", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom", + "loc": "3:0-34" + }, + { + "moduleId": "9h5o", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "type": "harmony import specifier", + "userRequest": "./dom", + "loc": "79:22-31" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom", + "loc": "26:0-22" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./dom", + "loc": "26:0-22" + } + ], + "providedExports": [ + "elementContains", + "elementContainsAttribute", + "findElementRecursive", + "getChildren", + "getDocument", + "getParent", + "getRect", + "getVirtualParent", + "getWindow", + "isVirtualElement", + "on", + "portalContainsElement", + "raiseClick", + "DATA_PORTAL_ATTRIBUTE", + "setPortalAttribute", + "setVirtualParent" + ], + "optimizationBailout": [], + "depth": 8, + "source": "export * from './dom/elementContains';\nexport * from './dom/elementContainsAttribute';\nexport * from './dom/findElementRecursive';\nexport * from './dom/getChildren';\nexport * from './dom/getDocument';\nexport * from './dom/getParent';\nexport * from './dom/getRect';\nexport * from './dom/getVirtualParent';\nexport * from './dom/getWindow';\nexport * from './dom/isVirtualElement';\nexport * from './dom/on';\nexport * from './dom/portalContainsElement';\nexport * from './dom/raiseClick';\nexport * from './dom/setPortalAttribute';\nexport * from './dom/setVirtualParent';\n//# sourceMappingURL=dom.js.map" + }, + { + "id": "4iH1", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", + "name": "./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", + "index": 74, + "index2": 65, + "size": 1023, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/BaseComponent.js", + "issuerId": "7Uas", + "issuerName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "7Uas", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/BaseComponent.js", + "name": "./node_modules/@uifabric/utilities/lib/BaseComponent.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "7Uas", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/BaseComponent.js", + "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "type": "harmony side effect evaluation", + "userRequest": "./warn/warnMutuallyExclusive", + "loc": "6:0-69" + }, + { + "moduleId": "7Uas", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/BaseComponent.js", + "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "type": "harmony import specifier", + "userRequest": "./warn/warnMutuallyExclusive", + "loc": "172:8-29" + }, + { + "moduleId": "PHYm", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "module": "./node_modules/@uifabric/utilities/lib/warn.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", + "type": "harmony side effect evaluation", + "userRequest": "./warn/warnMutuallyExclusive", + "loc": "5:0-45" + }, + { + "moduleId": "PHYm", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "module": "./node_modules/@uifabric/utilities/lib/warn.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", + "type": "harmony export imported specifier", + "userRequest": "./warn/warnMutuallyExclusive", + "loc": "5:0-45" + } + ], + "providedExports": [ + "warnMutuallyExclusive" + ], + "optimizationBailout": [], + "depth": 9, + "source": "import { warn } from './warn';\n/**\n * Warns when two props which are mutually exclusive are both being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param exclusiveMap - A map where the key is a parameter, and the value is the other parameter.\n */\nexport function warnMutuallyExclusive(componentName, props, exclusiveMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in exclusiveMap) {\n if (props && props[propName] !== undefined) {\n var propInExclusiveMapValue = exclusiveMap[propName];\n if (propInExclusiveMapValue && props[propInExclusiveMapValue] !== undefined) {\n warn(componentName + \" property '\" + propName + \"' is mutually exclusive with '\" + exclusiveMap[propName] + \"'. \" +\n \"Use one or the other.\");\n }\n }\n }\n }\n}\n//# sourceMappingURL=warnMutuallyExclusive.js.map" + }, + { + "id": "4qJ4", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/KeyCodes.js", + "name": "./node_modules/@uifabric/utilities/lib/KeyCodes.js", + "index": 79, + "index2": 71, + "size": 1838, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony side effect evaluation", + "userRequest": "./KeyCodes", + "loc": "1:0-38" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "52:20-28" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "53:18-26" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "55:25-33" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "56:18-26" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./KeyCodes", + "loc": "8:0-27" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./KeyCodes", + "loc": "8:0-27" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony side effect evaluation", + "userRequest": "./KeyCodes", + "loc": "2:0-38" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "4:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "5:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "6:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "7:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "8:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "9:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "10:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "11:7-15" + }, + { + "moduleId": "oyCK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/keyboard.js", + "module": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/keyboard.js", + "type": "harmony import specifier", + "userRequest": "./KeyCodes", + "loc": "12:7-15" + } + ], + "providedExports": [ + "KeyCodes" + ], + "optimizationBailout": [], + "depth": 8, + "source": "/**\n * Simulated enum for keycodes. These will get inlined by uglify when used much like an enum\n *\n * @public\n * {@docCategory KeyCodes}\n */\nexport var KeyCodes = {\n backspace: 8,\n tab: 9,\n enter: 13,\n shift: 16,\n ctrl: 17,\n alt: 18,\n pauseBreak: 19,\n capslock: 20,\n escape: 27,\n space: 32,\n pageUp: 33,\n pageDown: 34,\n end: 35,\n home: 36,\n left: 37,\n up: 38,\n right: 39,\n down: 40,\n insert: 45,\n del: 46,\n zero: 48,\n one: 49,\n two: 50,\n three: 51,\n four: 52,\n five: 53,\n six: 54,\n seven: 55,\n eight: 56,\n nine: 57,\n a: 65,\n b: 66,\n c: 67,\n d: 68,\n e: 69,\n f: 70,\n g: 71,\n h: 72,\n i: 73,\n j: 74,\n k: 75,\n l: 76,\n m: 77,\n n: 78,\n o: 79,\n p: 80,\n q: 81,\n r: 82,\n s: 83,\n t: 84,\n u: 85,\n v: 86,\n w: 87,\n x: 88,\n y: 89,\n z: 90,\n leftWindow: 91,\n rightWindow: 92,\n select: 93,\n /* eslint-disable @typescript-eslint/naming-convention */\n zero_numpad: 96,\n one_numpad: 97,\n two_numpad: 98,\n three_numpad: 99,\n four_numpad: 100,\n five_numpad: 101,\n six_numpad: 102,\n seven_numpad: 103,\n eight_numpad: 104,\n nine_numpad: 105,\n /* eslint-enable @typescript-eslint/naming-convention */\n multiply: 106,\n add: 107,\n subtract: 109,\n decimalPoint: 110,\n divide: 111,\n f1: 112,\n f2: 113,\n f3: 114,\n f4: 115,\n f5: 116,\n f6: 117,\n f7: 118,\n f8: 119,\n f9: 120,\n f10: 121,\n f11: 122,\n f12: 123,\n numlock: 144,\n scrollLock: 145,\n semicolon: 186,\n equalSign: 187,\n comma: 188,\n dash: 189,\n period: 190,\n forwardSlash: 191,\n graveAccent: 192,\n openBracket: 219,\n backSlash: 220,\n closeBracket: 221,\n singleQuote: 222,\n};\n//# sourceMappingURL=KeyCodes.js.map" + }, + { + "id": "4s9U", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/zIndexes.js", + "name": "./node_modules/@uifabric/styling/lib/styles/zIndexes.js", + "index": 200, + "index2": 185, + "size": 344, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "issuerId": "vH3w", + "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "vH3w", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "name": "./node_modules/@uifabric/styling/lib/styles/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "EP45", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "type": "harmony side effect evaluation", + "userRequest": "./zIndexes", + "loc": "3:0-38" + }, + { + "moduleId": "EP45", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", + "type": "harmony import specifier", + "userRequest": "./zIndexes", + "loc": "46:24-32" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./zIndexes", + "loc": "16:0-27" + }, + { + "moduleId": "vH3w", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "module": "./node_modules/@uifabric/styling/lib/styles/index.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", + "type": "harmony export imported specifier", + "userRequest": "./zIndexes", + "loc": "16:0-27" + } + ], + "providedExports": [ + "ZIndexes" + ], + "optimizationBailout": [], + "depth": 10, + "source": "export var ZIndexes;\n(function (ZIndexes) {\n ZIndexes.Nav = 1;\n /**\n * @deprecated ScrollablePane\n */\n ZIndexes.ScrollablePane = 1;\n ZIndexes.FocusStyle = 1;\n ZIndexes.Coachmark = 1000;\n ZIndexes.Layer = 1000000;\n ZIndexes.KeytipLayer = 1000001;\n})(ZIndexes || (ZIndexes = {}));\n//# sourceMappingURL=zIndexes.js.map" + }, + { + "id": "4wCw", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", + "index": 268, + "index2": 255, + "size": 1007, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "issuerId": "cRpF", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "cRpF", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "cRpF", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./contextualMenuUtility", + "loc": "1:0-40" + }, + { + "moduleId": "cRpF", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", + "type": "harmony export imported specifier", + "userRequest": "./contextualMenuUtility", + "loc": "1:0-40" + } + ], + "providedExports": [ + "getIsChecked", + "hasSubmenu", + "isItemDisabled", + "getMenuItemAriaRole" + ], + "optimizationBailout": [], + "depth": 11, + "source": "/**\n * Determines the effective checked state of a menu item.\n *\n * @param item {IContextualMenuItem} to get the check state of.\n * @returns {true} if the item is checked.\n * @returns {false} if the item is unchecked.\n * @returns {null} if the item is not checkable.\n */\nexport function getIsChecked(item) {\n if (item.canCheck) {\n return !!(item.isChecked || item.checked);\n }\n if (typeof item.isChecked === 'boolean') {\n return item.isChecked;\n }\n if (typeof item.checked === 'boolean') {\n return item.checked;\n }\n // Item is not checkable.\n return null;\n}\nexport function hasSubmenu(item) {\n return !!(item.subMenuProps || item.items);\n}\nexport function isItemDisabled(item) {\n return !!(item.isDisabled || item.disabled);\n}\nexport function getMenuItemAriaRole(item) {\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n return canCheck ? 'menuitemcheckbox' : 'menuitem';\n}\n//# sourceMappingURL=contextualMenuUtility.js.map" + }, + { + "id": "50wY", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/FluentDepths.js", + "name": "./node_modules/@fluentui/theme/lib/effects/FluentDepths.js", + "index": 191, + "index2": 175, + "size": 548, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "issuerId": "NqRq", + "issuerName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "vH3w", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/index.js", + "name": "./node_modules/@uifabric/styling/lib/styles/index.js" + }, + { + "id": "X8m0", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", + "name": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js" + }, + { + "id": "NqRq", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "name": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "NqRq", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "type": "harmony side effect evaluation", + "userRequest": "./FluentDepths", + "loc": "1:0-40" + }, + { + "moduleId": "NqRq", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "type": "harmony import specifier", + "userRequest": "./FluentDepths", + "loc": "3:16-22" + }, + { + "moduleId": "NqRq", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "type": "harmony import specifier", + "userRequest": "./FluentDepths", + "loc": "4:16-22" + }, + { + "moduleId": "NqRq", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "type": "harmony import specifier", + "userRequest": "./FluentDepths", + "loc": "5:17-23" + }, + { + "moduleId": "NqRq", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", + "type": "harmony import specifier", + "userRequest": "./FluentDepths", + "loc": "6:17-23" + }, + { + "moduleId": "SjmI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/index.js", + "module": "./node_modules/@fluentui/theme/lib/effects/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./FluentDepths", + "loc": "2:0-40" + }, + { + "moduleId": "SjmI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/effects/index.js", + "module": "./node_modules/@fluentui/theme/lib/effects/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", + "type": "harmony export imported specifier", + "userRequest": "./FluentDepths", + "loc": "2:0-40" + } + ], + "providedExports": [ + "Depths" + ], + "optimizationBailout": [], + "depth": 12, + "source": "export var Depths;\n(function (Depths) {\n Depths.depth0 = '0 0 0 0 transparent';\n Depths.depth4 = '0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth8 = '0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth16 = '0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth64 = '0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)';\n})(Depths || (Depths = {}));\n//# sourceMappingURL=FluentDepths.js.map" + }, + { + "id": "53eK", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "index": 224, + "index2": 241, + "size": 15670, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "issuerId": "4/X0", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "8oE+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ColorPicker.js" + }, + { + "id": "4/X0", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "4/X0", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./ColorPicker.base", + "loc": "2:0-35" + }, + { + "moduleId": "4/X0", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", + "type": "harmony export imported specifier", + "userRequest": "./ColorPicker.base", + "loc": "2:0-35" + }, + { + "moduleId": "JTa0", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "type": "harmony side effect evaluation", + "userRequest": "./ColorPicker.base", + "loc": "2:0-53" + }, + { + "moduleId": "JTa0", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", + "type": "harmony import specifier", + "userRequest": "./ColorPicker.base", + "loc": "4:32-47" + } + ], + "providedExports": [ + "ColorPickerBase" + ], + "optimizationBailout": [], + "depth": 6, + "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef, warnDeprecations, warn } from '../../Utilities';\nimport { TextField } from '../../TextField';\nimport { ColorRectangle } from './ColorRectangle/ColorRectangle';\nimport { ColorSlider } from './ColorSlider/ColorSlider';\nimport { MAX_COLOR_ALPHA, MAX_COLOR_RGB, MAX_HEX_LENGTH, MAX_RGBA_LENGTH, MIN_HEX_LENGTH, MIN_RGBA_LENGTH, HEX_REGEX, RGBA_REGEX, } from '../../utilities/color/consts';\nimport { getColorFromString } from '../../utilities/color/getColorFromString';\nimport { getColorFromRGBA } from '../../utilities/color/getColorFromRGBA';\nimport { clamp } from '../../utilities/color/clamp';\nimport { updateA } from '../../utilities/color/updateA';\nimport { updateT } from '../../utilities/color/updateT';\nimport { updateH } from '../../utilities/color/updateH';\nimport { correctRGB } from '../../utilities/color/correctRGB';\nimport { correctHex } from '../../utilities/color/correctHex';\nimport { ColorRectangleBase } from './ColorRectangle/ColorRectangle.base';\nvar getClassNames = classNamesFunction();\nvar allColorComponents = ['hex', 'r', 'g', 'b', 'a', 't'];\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorPickerBase = /** @class */ (function (_super) {\n __extends(ColorPickerBase, _super);\n function ColorPickerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onSVChanged = function (ev, color) {\n _this._updateColor(ev, color);\n };\n _this._onHChanged = function (ev, h) {\n _this._updateColor(ev, updateH(_this.state.color, h));\n };\n /** Callback for when the alpha/transparency slider changes */\n _this._onATChanged = function (ev, value) {\n var updater = _this.props.alphaType === 'transparency' ? updateT : updateA;\n _this._updateColor(ev, updater(_this.state.color, Math.round(value)));\n };\n _this._onBlur = function (event) {\n var _a;\n var _b = _this.state, color = _b.color, editingColor = _b.editingColor;\n if (!editingColor) {\n return;\n }\n // If there was an intermediate incorrect value (such as too large or empty), correct it.\n var value = editingColor.value, component = editingColor.component;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n var minLength = isHex ? MIN_HEX_LENGTH : MIN_RGBA_LENGTH;\n if (value.length >= minLength && (isHex || !isNaN(Number(value)))) {\n // Real value. Clamp to appropriate length (hex) or range (rgba).\n var newColor = void 0;\n if (isHex) {\n newColor = getColorFromString('#' + correctHex(value));\n }\n else if (isAlpha || isTransparency) {\n var updater = isAlpha ? updateA : updateT;\n newColor = updater(color, clamp(Number(value), MAX_COLOR_ALPHA));\n }\n else {\n newColor = getColorFromRGBA(correctRGB(__assign(__assign({}, color), (_a = {}, _a[component] = Number(value), _a))));\n }\n // Update state and call onChange\n _this._updateColor(event, newColor);\n }\n else {\n // Intermediate value was an empty string or too short (hex only).\n // Just clear the intermediate state and revert to the previous value.\n _this.setState({ editingColor: undefined });\n }\n };\n initializeComponentRef(_this);\n var strings = props.strings; // always defined since it's in defaultProps\n warnDeprecations('ColorPicker', props, {\n hexLabel: 'strings.hex',\n redLabel: 'strings.red',\n greenLabel: 'strings.green',\n blueLabel: 'strings.blue',\n alphaLabel: 'strings.alpha',\n alphaSliderHidden: 'alphaType',\n });\n // eslint-disable-next-line deprecation/deprecation\n if (strings.hue) {\n // warnDeprecations can't handle nested deprecated props\n warn(\"ColorPicker property 'strings.hue' was used but has been deprecated. Use 'strings.hueAriaLabel' instead.\");\n }\n _this.state = {\n color: _getColorFromProps(props) || getColorFromString('#ffffff'),\n };\n _this._textChangeHandlers = {};\n for (var _i = 0, allColorComponents_1 = allColorComponents; _i < allColorComponents_1.length; _i++) {\n var component = allColorComponents_1[_i];\n _this._textChangeHandlers[component] = _this._onTextChange.bind(_this, component);\n }\n var defaultStrings = ColorPickerBase.defaultProps.strings;\n _this._textLabels = {\n /* eslint-disable deprecation/deprecation */\n r: props.redLabel || strings.red || defaultStrings.red,\n g: props.greenLabel || strings.green || defaultStrings.green,\n b: props.blueLabel || strings.blue || defaultStrings.blue,\n a: props.alphaLabel || strings.alpha || defaultStrings.alpha,\n hex: props.hexLabel || strings.hex || defaultStrings.hex,\n t: strings.transparency || defaultStrings.transparency,\n };\n _this._strings = __assign(__assign(__assign({}, defaultStrings), { \n // these aria labels default to the visible labels\n alphaAriaLabel: _this._textLabels.a, transparencyAriaLabel: _this._textLabels.t }), strings);\n return _this;\n }\n Object.defineProperty(ColorPickerBase.prototype, \"color\", {\n get: function () {\n return this.state.color;\n },\n enumerable: true,\n configurable: true\n });\n ColorPickerBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), update the color\n if (prevProps !== this.props) {\n var color = _getColorFromProps(this.props);\n if (color) {\n this._updateColor(undefined, color);\n }\n }\n };\n ColorPickerBase.prototype.render = function () {\n var _this = this;\n var props = this.props;\n var strings = this._strings;\n var textLabels = this._textLabels;\n var theme = props.theme, className = props.className, styles = props.styles, alphaType = props.alphaType, \n // eslint-disable-next-line deprecation/deprecation\n _a = props.alphaSliderHidden, \n // eslint-disable-next-line deprecation/deprecation\n alphaSliderHidden = _a === void 0 ? alphaType === 'none' : _a;\n var color = this.state.color;\n var useTransparency = alphaType === 'transparency';\n var colorComponents = ['hex', 'r', 'g', 'b', useTransparency ? 't' : 'a'];\n var atValue = useTransparency ? color.t : color.a;\n var atLabel = useTransparency ? textLabels.t : textLabels.a;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n alphaType: alphaType,\n });\n var selectedColorAriaParts = [textLabels.r, color.r, textLabels.g, color.g, textLabels.b, color.b];\n if (!alphaSliderHidden && typeof atValue === 'number') {\n selectedColorAriaParts.push(atLabel, atValue + \"%\");\n }\n var ariaLabel = strings.rootAriaLabelFormat.replace('{0}', selectedColorAriaParts.join(' '));\n return (React.createElement(\"div\", { className: classNames.root, role: \"group\", \"aria-label\": ariaLabel },\n React.createElement(\"div\", { className: classNames.panel },\n React.createElement(ColorRectangle, { color: color, onChange: this._onSVChanged, ariaLabel: strings.svAriaLabel, ariaDescription: strings.svAriaDescription, ariaValueFormat: strings.svAriaValueFormat, className: classNames.colorRectangle }),\n React.createElement(\"div\", { className: classNames.flexContainer },\n React.createElement(\"div\", { className: classNames.flexSlider },\n React.createElement(ColorSlider, { className: \"is-hue\", type: \"hue\", \n // eslint-disable-next-line deprecation/deprecation\n ariaLabel: strings.hue || strings.hueAriaLabel, value: color.h, onChange: this._onHChanged }),\n !alphaSliderHidden && (React.createElement(ColorSlider, { className: \"is-alpha\", type: alphaType, ariaLabel: useTransparency ? strings.transparencyAriaLabel : strings.alphaAriaLabel, overlayColor: color.hex, value: atValue, onChange: this._onATChanged }))),\n props.showPreview && (React.createElement(\"div\", { className: classNames.flexPreviewBox },\n React.createElement(\"div\", { className: classNames.colorSquare + ' is-preview', style: {\n backgroundColor: color.str,\n } })))),\n React.createElement(\"table\", { className: classNames.table, role: \"group\", cellPadding: \"0\", cellSpacing: \"0\" },\n React.createElement(\"thead\", null,\n React.createElement(\"tr\", { className: classNames.tableHeader },\n React.createElement(\"td\", { className: classNames.tableHexCell }, textLabels.hex),\n React.createElement(\"td\", null, textLabels.r),\n React.createElement(\"td\", null, textLabels.g),\n React.createElement(\"td\", null, textLabels.b),\n !alphaSliderHidden && React.createElement(\"td\", { className: classNames.tableAlphaCell }, atLabel))),\n React.createElement(\"tbody\", null,\n React.createElement(\"tr\", null, colorComponents.map(function (comp) {\n if ((comp === 'a' || comp === 't') && alphaSliderHidden) {\n return null;\n }\n return (React.createElement(\"td\", { key: comp },\n React.createElement(TextField, { className: classNames.input, onChange: _this._textChangeHandlers[comp], onBlur: _this._onBlur, value: _this._getDisplayValue(comp), spellCheck: false, ariaLabel: textLabels[comp], \"aria-live\": comp !== 'hex' ? 'assertive' : undefined, autoComplete: \"off\" })));\n })))))));\n };\n ColorPickerBase.prototype._getDisplayValue = function (component) {\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n if (editingColor && editingColor.component === component) {\n return editingColor.value;\n }\n if (component === 'hex') {\n return color[component] || '';\n }\n else if (typeof color[component] === 'number' && !isNaN(color[component])) {\n return String(color[component]);\n }\n return '';\n };\n ColorPickerBase.prototype._onTextChange = function (component, event, newValue) {\n var _a;\n var color = this.state.color;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n newValue = (newValue || '').substr(0, isHex ? MAX_HEX_LENGTH : MAX_RGBA_LENGTH);\n // Ignore what the user typed if it contains invalid characters\n var validCharsRegex = isHex ? HEX_REGEX : RGBA_REGEX;\n if (!validCharsRegex.test(newValue)) {\n return;\n }\n // Determine if the entry is valid (different methods for hex, alpha, and RGB)\n var isValid;\n if (newValue === '') {\n // Empty string is obviously not valid\n isValid = false;\n }\n else if (isHex) {\n // Technically hex values of length 3 are also valid, but committing the value here would\n // cause it to be automatically converted to a value of length 6, which may not be what the\n // user wanted if they're not finished typing. (Values of length 3 will be committed on blur.)\n isValid = newValue.length === MAX_HEX_LENGTH;\n }\n else if (isAlpha || isTransparency) {\n isValid = Number(newValue) <= MAX_COLOR_ALPHA;\n }\n else {\n isValid = Number(newValue) <= MAX_COLOR_RGB;\n }\n if (!isValid) {\n // If the new value is an empty string or other invalid value, save that to display.\n // (if the user still hasn't entered anything on blur, the last value is restored)\n this.setState({ editingColor: { component: component, value: newValue } });\n }\n else if (String(color[component]) === newValue) {\n // If the new value is the same as the current value, mostly ignore it.\n // Exception is that if the user was previously editing the value (but hadn't yet entered\n // a new valid value), we should clear the intermediate value.\n if (this.state.editingColor) {\n this.setState({ editingColor: undefined });\n }\n }\n else {\n // Should be a valid color. Update the value.\n var newColor = isHex\n ? getColorFromString('#' + newValue)\n : isTransparency\n ? updateT(color, Number(newValue))\n : getColorFromRGBA(__assign(__assign({}, color), (_a = {}, _a[component] = Number(newValue), _a)));\n this._updateColor(event, newColor);\n }\n };\n /**\n * Update the displayed color and call change handlers if appropriate.\n * @param ev - Event if call was triggered by an event (undefined if triggered by props change)\n * @param newColor - Updated color\n */\n ColorPickerBase.prototype._updateColor = function (ev, newColor) {\n if (!newColor) {\n return;\n }\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n // For black or white, the hue can change without changing the string.\n var isDifferentColor = newColor.h !== color.h || newColor.str !== color.str;\n if (isDifferentColor || editingColor) {\n // If ev is undefined, it's an update from props (which should be unconditionally respected\n // and not call onChange).\n if (ev && this.props.onChange) {\n this.props.onChange(ev, newColor);\n if (ev.defaultPrevented) {\n return;\n }\n }\n this.setState({ color: newColor, editingColor: undefined });\n }\n };\n ColorPickerBase.defaultProps = {\n alphaType: 'alpha',\n strings: {\n rootAriaLabelFormat: 'Color picker, {0} selected.',\n hex: 'Hex',\n red: 'Red',\n green: 'Green',\n blue: 'Blue',\n alpha: 'Alpha',\n transparency: 'Transparency',\n hueAriaLabel: 'Hue',\n svAriaLabel: ColorRectangleBase.defaultProps.ariaLabel,\n svAriaValueFormat: ColorRectangleBase.defaultProps.ariaValueFormat,\n svAriaDescription: ColorRectangleBase.defaultProps.ariaDescription,\n },\n };\n return ColorPickerBase;\n}(React.Component));\nexport { ColorPickerBase };\nfunction _getColorFromProps(props) {\n var color = props.color;\n return typeof color === 'string' ? getColorFromString(color) : color;\n}\n//# sourceMappingURL=ColorPicker.base.js.map" + }, + { + "id": "57t7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", + "name": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", + "index": 119, + "index2": 110, + "size": 249, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "IIvt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "type": "harmony side effect evaluation", + "userRequest": "./CustomizerContext", + "loc": "3:0-56" + }, + { + "moduleId": "IIvt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", + "type": "harmony import specifier", + "userRequest": "./CustomizerContext", + "loc": "10:42-59" + }, + { + "moduleId": "Z4jB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "type": "harmony side effect evaluation", + "userRequest": "./CustomizerContext", + "loc": "5:0-56" + }, + { + "moduleId": "Z4jB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "type": "harmony import specifier", + "userRequest": "./CustomizerContext", + "loc": "28:48-65" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./customizations/CustomizerContext", + "loc": "21:0-51" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./customizations/CustomizerContext", + "loc": "21:0-51" + }, + { + "moduleId": "sc7n", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "type": "harmony side effect evaluation", + "userRequest": "./CustomizerContext", + "loc": "4:0-56" + }, + { + "moduleId": "sc7n", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "type": "harmony import specifier", + "userRequest": "./CustomizerContext", + "loc": "36:36-53" + }, + { + "moduleId": "sc7n", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", + "type": "harmony import specifier", + "userRequest": "./CustomizerContext", + "loc": "41:39-56" + } + ], + "providedExports": [ + "CustomizerContext" + ], + "optimizationBailout": [], + "depth": 8, + "source": "import * as React from 'react';\nexport var CustomizerContext = React.createContext({\n customizations: {\n inCustomizerContext: false,\n settings: {},\n scopedSettings: {},\n },\n});\n//# sourceMappingURL=CustomizerContext.js.map" + }, + { + "id": "5AgF", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@microsoft/load-themed-styles/lib-es6/index.js", + "name": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", + "index": 206, + "index2": 191, + "size": 10876, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "issuerId": "xfqs", + "issuerName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "xfqs", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony side effect evaluation", + "userRequest": "@microsoft/load-themed-styles", + "loc": "3:0-77" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony import specifier", + "userRequest": "@microsoft/load-themed-styles", + "loc": "69:4-19" + } + ], + "providedExports": [ + "loadStyles", + "configureLoadStyles", + "configureRunMode", + "flush", + "loadTheme", + "clearStyles", + "detokenize", + "splitStyles" + ], + "optimizationBailout": [], + "depth": 10, + "source": "// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = typeof window === 'undefined' ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign(__assign({}, state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign(__assign({}, state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nexport function loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nexport function configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nexport function configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nexport function flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nexport function loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nexport function clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nexport function detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme &&\n !themedValue &&\n console &&\n !(themeSlot in theme) &&\n typeof DEBUG !== 'undefined' &&\n DEBUG) {\n console.warn(\"Theming value not provided for \\\"\".concat(themeSlot, \"\\\". Falling back to \\\"\").concat(defaultValue, \"\\\".\"));\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nexport function splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0;\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" + }, + { + "id": "5KJk", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/isVirtualElement.js", + "name": "./node_modules/@fluentui/dom-utilities/lib/isVirtualElement.js", + "index": 95, + "index2": 80, + "size": 231, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "issuerId": "nvVZ", + "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js" + }, + { + "id": "xu/W", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/elementContains.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" + }, + { + "id": "nvVZ", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "XxKQ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "type": "harmony side effect evaluation", + "userRequest": "./isVirtualElement", + "loc": "1:0-54" + }, + { + "moduleId": "XxKQ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", + "type": "harmony import specifier", + "userRequest": "./isVirtualElement", + "loc": "16:36-52" + }, + { + "moduleId": "nvVZ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./isVirtualElement", + "loc": "7:0-35" + }, + { + "moduleId": "nvVZ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/index.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./isVirtualElement", + "loc": "7:0-35" + }, + { + "moduleId": "ro2j", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "type": "harmony side effect evaluation", + "userRequest": "./isVirtualElement", + "loc": "1:0-54" + }, + { + "moduleId": "ro2j", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "module": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", + "type": "harmony import specifier", + "userRequest": "./isVirtualElement", + "loc": "9:17-33" + } + ], + "providedExports": [ + "isVirtualElement" + ], + "optimizationBailout": [], + "depth": 11, + "source": "/**\n * Determines whether or not an element has the virtual hierarchy extension.\n *\n * @public\n */\nexport function isVirtualElement(element) {\n return element && !!element._virtual;\n}\n//# sourceMappingURL=isVirtualElement.js.map" + }, + { + "id": "5SYA", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", + "index": 297, + "index2": 279, + "size": 1042, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "issuerId": "iePh", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "Bswb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js" + }, + { + "id": "z2r6", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" + }, + { + "id": "zLl/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" + }, + { + "id": "FQnb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Layer.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Layer.js" + }, + { + "id": "D89h", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" + }, + { + "id": "iePh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "iePh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "type": "harmony side effect evaluation", + "userRequest": "./Layer.styles", + "loc": "3:0-43" + }, + { + "moduleId": "iePh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", + "type": "harmony import specifier", + "userRequest": "./Layer.styles", + "loc": "4:37-46" + } + ], + "providedExports": [ + "getStyles" + ], + "optimizationBailout": [], + "depth": 16, + "source": "import { ZIndexes, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Layer',\n rootNoHost: 'ms-Layer--fixed',\n content: 'ms-Layer-content',\n};\nexport var getStyles = function (props) {\n var className = props.className, isNotHost = props.isNotHost, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isNotHost && [\n classNames.rootNoHost,\n {\n position: 'fixed',\n zIndex: ZIndexes.Layer,\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n visibility: 'hidden',\n },\n ],\n className,\n ],\n content: [\n classNames.content,\n {\n visibility: 'visible',\n },\n ],\n };\n};\n//# sourceMappingURL=Layer.styles.js.map" + }, + { + "id": "5U38", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/FocusZone.js", + "index": 260, + "index2": 254, + "size": 83, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "issuerId": "IypE", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "IypE", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "type": "harmony side effect evaluation", + "userRequest": "../../FocusZone", + "loc": "5:0-91" + }, + { + "moduleId": "IypE", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "type": "harmony import specifier", + "userRequest": "../../FocusZone", + "loc": "216:64-82" + }, + { + "moduleId": "IypE", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "type": "harmony import specifier", + "userRequest": "../../FocusZone", + "loc": "564:65-74" + }, + { + "moduleId": "IypE", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "type": "harmony import specifier", + "userRequest": "../../FocusZone", + "loc": "564:163-188" + }, + { + "moduleId": "IypE", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "type": "harmony import specifier", + "userRequest": "../../FocusZone", + "loc": "626:14-32" + } + ], + "providedExports": [ + "FocusZone", + "FocusZoneTabbableElements", + "FocusZoneDirection" + ], + "optimizationBailout": [], + "depth": 10, + "source": "export * from './components/FocusZone/index';\n//# sourceMappingURL=FocusZone.js.map" + }, + { + "id": "5Ymc", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", + "index": 239, + "index2": 221, + "size": 1127, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "issuerId": "v+No", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "uUJR", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Icon.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Icon.js" + }, + { + "id": "Bxs9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" + }, + { + "id": "v+No", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "8ORN", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "type": "harmony side effect evaluation", + "userRequest": "./Icon.styles", + "loc": "3:0-52" + }, + { + "moduleId": "8ORN", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "36:124-131" + }, + { + "moduleId": "8ORN", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "36:133-143" + }, + { + "moduleId": "8ORN", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "36:178-188" + }, + { + "moduleId": "OTe6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "type": "harmony side effect evaluation", + "userRequest": "./Icon.styles", + "loc": "5:0-52" + }, + { + "moduleId": "OTe6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "20:98-105" + }, + { + "moduleId": "OTe6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "20:107-117" + }, + { + "moduleId": "OTe6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "20:124-134" + }, + { + "moduleId": "v+No", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "type": "harmony side effect evaluation", + "userRequest": "./Icon.styles", + "loc": "3:0-42" + }, + { + "moduleId": "v+No", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", + "type": "harmony import specifier", + "userRequest": "./Icon.styles", + "loc": "9:35-44" + } + ], + "providedExports": [ + "classNames", + "MS_ICON", + "getStyles" + ], + "optimizationBailout": [], + "depth": 10, + "source": "import { mergeStyleSets } from '../../Styling';\n/** Class names used in themeable and non-themeable Icon components */\nexport var classNames = mergeStyleSets({\n root: {\n display: 'inline-block',\n },\n placeholder: [\n 'ms-Icon-placeHolder',\n {\n width: '1em',\n },\n ],\n image: [\n 'ms-Icon-imageContainer',\n {\n overflow: 'hidden',\n },\n ],\n});\n/** Class name used only in non-themeable Icon components */\nexport var MS_ICON = 'ms-Icon';\nexport var getStyles = function (props) {\n var className = props.className, iconClassName = props.iconClassName, isPlaceholder = props.isPlaceholder, isImage = props.isImage, styles = props.styles;\n return {\n root: [\n isPlaceholder && classNames.placeholder,\n classNames.root,\n isImage && classNames.image,\n iconClassName,\n className,\n styles && styles.root,\n // eslint-disable-next-line deprecation/deprecation\n styles && styles.imageContainer,\n ],\n };\n};\n//# sourceMappingURL=Icon.styles.js.map" + }, + { + "id": "5ZAT", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", + "index": 347, + "index2": 339, + "size": 4651, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "issuerId": "zKx7", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony side effect evaluation", + "userRequest": "../BaseButton.classNames", + "loc": "6:0-66" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "48:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "51:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "60:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "63:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "72:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "75:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "83:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "86:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "95:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "98:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "109:25-47" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "151:33-55" + }, + { + "moduleId": "CZVv", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", + "type": "harmony import specifier", + "userRequest": "../BaseButton.classNames", + "loc": "159:33-55" + }, + { + "moduleId": "zKx7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "type": "harmony side effect evaluation", + "userRequest": "./BaseButton.classNames", + "loc": "7:0-66" + }, + { + "moduleId": "zKx7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "type": "harmony import specifier", + "userRequest": "./BaseButton.classNames", + "loc": "316:14-37" + } + ], + "providedExports": [ + "ButtonGlobalClassNames", + "getBaseButtonClassNames" + ], + "optimizationBailout": [], + "depth": 7, + "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\nimport { getGlobalClassNames } from '../../Styling';\nexport var ButtonGlobalClassNames = {\n msButton: 'ms-Button',\n msButtonHasMenu: 'ms-Button--hasMenu',\n msButtonIcon: 'ms-Button-icon',\n msButtonMenuIcon: 'ms-Button-menuIcon',\n msButtonLabel: 'ms-Button-label',\n msButtonDescription: 'ms-Button-description',\n msButtonScreenReaderText: 'ms-Button-screenReaderText',\n msButtonFlexContainer: 'ms-Button-flexContainer',\n msButtonTextContainer: 'ms-Button-textContainer',\n};\nexport var getBaseButtonClassNames = memoizeFunction(function (theme, styles, className, variantClassName, iconClassName, menuIconClassName, disabled, hasMenu, checked, expanded, isSplit) {\n var _a, _b;\n var classNames = getGlobalClassNames(ButtonGlobalClassNames, theme || {});\n var isExpanded = expanded && !isSplit;\n return mergeStyleSets({\n root: [\n classNames.msButton,\n styles.root,\n variantClassName,\n checked && ['is-checked', styles.rootChecked],\n isExpanded && [\n 'is-expanded',\n styles.rootExpanded,\n {\n selectors: (_a = {},\n _a[\":hover .\" + classNames.msButtonIcon] = styles.iconExpandedHovered,\n // menuIcon falls back to rootExpandedHovered to support original behavior\n _a[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconExpandedHovered || styles.rootExpandedHovered,\n _a[':hover'] = styles.rootExpandedHovered,\n _a),\n },\n ],\n hasMenu && [ButtonGlobalClassNames.msButtonHasMenu, styles.rootHasMenu],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n _b[\":hover .\" + classNames.msButtonLabel] = styles.labelHovered,\n _b[\":hover .\" + classNames.msButtonIcon] = styles.iconHovered,\n _b[\":hover .\" + classNames.msButtonDescription] = styles.descriptionHovered,\n _b[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconHovered,\n _b[':focus'] = styles.rootFocused,\n _b[':active'] = styles.rootPressed,\n _b[\":active .\" + classNames.msButtonIcon] = styles.iconPressed,\n _b[\":active .\" + classNames.msButtonDescription] = styles.descriptionPressed,\n _b[\":active .\" + classNames.msButtonMenuIcon] = styles.menuIconPressed,\n _b),\n },\n disabled && checked && [styles.rootCheckedDisabled],\n !disabled &&\n checked && {\n selectors: {\n ':hover': styles.rootCheckedHovered,\n ':active': styles.rootCheckedPressed,\n },\n },\n className,\n ],\n flexContainer: [classNames.msButtonFlexContainer, styles.flexContainer],\n textContainer: [classNames.msButtonTextContainer, styles.textContainer],\n icon: [\n classNames.msButtonIcon,\n iconClassName,\n styles.icon,\n isExpanded && styles.iconExpanded,\n checked && styles.iconChecked,\n disabled && styles.iconDisabled,\n ],\n label: [classNames.msButtonLabel, styles.label, checked && styles.labelChecked, disabled && styles.labelDisabled],\n menuIcon: [\n classNames.msButtonMenuIcon,\n menuIconClassName,\n styles.menuIcon,\n checked && styles.menuIconChecked,\n disabled && !isSplit && styles.menuIconDisabled,\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: {\n ':hover': styles.menuIconHovered,\n ':active': styles.menuIconPressed,\n },\n },\n isExpanded && ['is-expanded', styles.menuIconExpanded],\n ],\n description: [\n classNames.msButtonDescription,\n styles.description,\n checked && styles.descriptionChecked,\n disabled && styles.descriptionDisabled,\n ],\n screenReaderText: [classNames.msButtonScreenReaderText, styles.screenReaderText],\n });\n});\n//# sourceMappingURL=BaseButton.classNames.js.map" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "index": 320, + "index2": 320, + "size": 2931, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "issuerId": "bJL8", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "UV9c", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "type": "harmony side effect evaluation", + "userRequest": "./useKeytipData", + "loc": "3:0-48" + }, + { + "moduleId": "UV9c", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", + "type": "harmony import specifier", + "userRequest": "./useKeytipData", + "loc": "9:13-26" + }, + { + "moduleId": "bJL8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "type": "harmony side effect evaluation", + "userRequest": "./useKeytipData", + "loc": "3:0-48" + }, + { + "moduleId": "bJL8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "type": "harmony import specifier", + "userRequest": "./useKeytipData", + "loc": "11:13-26" + } + ], + "providedExports": [ + "useKeytipData" + ], + "optimizationBailout": [], + "depth": 10, + "source": "import { __assign, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { useConst, usePrevious } from '@uifabric/react-hooks';\nimport { mergeAriaAttributeValues } from '../../Utilities';\nimport { KeytipManager, mergeOverflows, sequencesToID, getAriaDescribedBy } from '../../utilities/keytips/index';\n/**\n * Hook that creates attributes for components which are enabled with Keytip.\n */\nexport function useKeytipData(options) {\n var uniqueId = React.useRef();\n var keytipProps = options.keytipProps\n ? __assign({ disabled: options.disabled }, options.keytipProps) : undefined;\n var keytipManager = useConst(KeytipManager.getInstance());\n var prevOptions = usePrevious(options);\n // useLayoutEffect used to strictly emulate didUpdate/didMount behavior\n React.useLayoutEffect(function () {\n var _a, _b;\n if (uniqueId.current &&\n keytipProps &&\n (((_a = prevOptions) === null || _a === void 0 ? void 0 : _a.keytipProps) !== options.keytipProps || ((_b = prevOptions) === null || _b === void 0 ? void 0 : _b.disabled) !== options.disabled)) {\n keytipManager.update(keytipProps, uniqueId.current);\n }\n });\n React.useLayoutEffect(function () {\n // Register Keytip in KeytipManager\n if (keytipProps) {\n uniqueId.current = keytipManager.register(keytipProps);\n }\n return function () {\n // Unregister Keytip in KeytipManager\n keytipProps && keytipManager.unregister(keytipProps, uniqueId.current);\n };\n // this is meant to run only at mount, and updates are handled separately\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n var nativeKeytipProps = {\n ariaDescribedBy: undefined,\n keytipId: undefined,\n };\n if (keytipProps) {\n nativeKeytipProps = getKeytipData(keytipManager, keytipProps, options.ariaDescribedBy);\n }\n return nativeKeytipProps;\n}\n/**\n * Gets the aria- and data- attributes to attach to the component\n * @param keytipProps - options for Keytip\n * @param describedByPrepend - ariaDescribedBy value to prepend\n */\nfunction getKeytipData(keytipManager, keytipProps, describedByPrepend) {\n // Add the parent overflow sequence if necessary\n var newKeytipProps = keytipManager.addParentOverflow(keytipProps);\n // Construct aria-describedby and data-ktp-id attributes\n var ariaDescribedBy = mergeAriaAttributeValues(describedByPrepend, getAriaDescribedBy(newKeytipProps.keySequences));\n var keySequences = __spreadArrays(newKeytipProps.keySequences);\n if (newKeytipProps.overflowSetSequence) {\n keySequences = mergeOverflows(keySequences, newKeytipProps.overflowSetSequence);\n }\n var keytipId = sequencesToID(keySequences);\n return {\n ariaDescribedBy: ariaDescribedBy,\n keytipId: keytipId,\n };\n}\n//# sourceMappingURL=useKeytipData.js.map" + }, + { + "id": "5fkN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/DelayedRender.js", + "name": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", + "index": 76, + "index2": 68, + "size": 1385, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./DelayedRender", + "loc": "4:0-32" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./DelayedRender", + "loc": "4:0-32" + } + ], + "providedExports": [ + "DelayedRender" + ], + "optimizationBailout": [], + "depth": 8, + "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\n/**\n * Utility component for delaying the render of a child component after a given delay. This component\n * requires a single child component; don't pass in many components. Wrap multiple components in a DIV\n * if necessary.\n *\n * @public\n * {@docCategory DelayedRender}\n */\nvar DelayedRender = /** @class */ (function (_super) {\n __extends(DelayedRender, _super);\n function DelayedRender(props) {\n var _this = _super.call(this, props) || this;\n _this.state = {\n isRendered: false,\n };\n return _this;\n }\n DelayedRender.prototype.componentDidMount = function () {\n var _this = this;\n var delay = this.props.delay;\n this._timeoutId = window.setTimeout(function () {\n _this.setState({\n isRendered: true,\n });\n }, delay);\n };\n DelayedRender.prototype.componentWillUnmount = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n }\n };\n DelayedRender.prototype.render = function () {\n return this.state.isRendered ? React.Children.only(this.props.children) : null;\n };\n DelayedRender.defaultProps = {\n delay: 0,\n };\n return DelayedRender;\n}(React.Component));\nexport { DelayedRender };\n//# sourceMappingURL=DelayedRender.js.map" + }, + { + "id": "5wKk", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", + "name": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", + "index": 155, + "index2": 146, + "size": 4599, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "issuerId": "PHYm", + "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "PHYm", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "name": "./node_modules/@uifabric/utilities/lib/warn.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "PHYm", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "module": "./node_modules/@uifabric/utilities/lib/warn.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", + "type": "harmony side effect evaluation", + "userRequest": "./warn/warnControlledUsage", + "loc": "3:0-43" + }, + { + "moduleId": "PHYm", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/warn.js", + "module": "./node_modules/@uifabric/utilities/lib/warn.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", + "type": "harmony export imported specifier", + "userRequest": "./warn/warnControlledUsage", + "loc": "3:0-43" + } + ], + "providedExports": [ + "resetControlledWarnings", + "warnControlledUsage" + ], + "optimizationBailout": [], + "depth": 9, + "source": "import { warn } from './warn';\nimport { isControlled as checkIsControlled } from '../controlled';\nvar warningsMap;\nif (process.env.NODE_ENV !== 'production') {\n warningsMap = {\n valueOnChange: {},\n valueDefaultValue: {},\n controlledToUncontrolled: {},\n uncontrolledToControlled: {},\n };\n}\n/** Reset controlled usage warnings for testing purposes. */\nexport function resetControlledWarnings() {\n if (process.env.NODE_ENV !== 'production') {\n warningsMap.valueOnChange = {};\n warningsMap.valueDefaultValue = {};\n warningsMap.controlledToUncontrolled = {};\n warningsMap.uncontrolledToControlled = {};\n }\n}\n/**\n * Check for and warn on the following error conditions with a form component:\n * - A value prop is provided (indicated it's being used as controlled) without a change handler,\n * and the component is not read-only\n * - Both the value and defaultValue props are provided\n * - The component is attempting to switch between controlled and uncontrolled\n *\n * The messages mimic the warnings React gives for these error conditions on input elements.\n * The warning will only be displayed once per component ID.\n */\nexport function warnControlledUsage(params) {\n if (process.env.NODE_ENV !== 'production') {\n var componentId = params.componentId, componentName = params.componentName, defaultValueProp = params.defaultValueProp, props = params.props, oldProps = params.oldProps, onChangeProp = params.onChangeProp, readOnlyProp = params.readOnlyProp, valueProp = params.valueProp;\n // This warning logic closely follows what React does for native elements.\n var oldIsControlled = oldProps ? checkIsControlled(oldProps, valueProp) : undefined;\n var newIsControlled = checkIsControlled(props, valueProp);\n if (newIsControlled) {\n // onChange (or readOnly) must be provided if value is provided\n var hasOnChange = !!props[onChangeProp];\n var isReadOnly = !!(readOnlyProp && props[readOnlyProp]);\n if (!(hasOnChange || isReadOnly) && !warningsMap.valueOnChange[componentId]) {\n warningsMap.valueOnChange[componentId] = true;\n warn(\"Warning: You provided a '\" + valueProp + \"' prop to a \" + componentName + \" without an '\" + onChangeProp + \"' handler. \" +\n (\"This will render a read-only field. If the field should be mutable use '\" + defaultValueProp + \"'. \") +\n (\"Otherwise, set '\" + onChangeProp + \"'\" + (readOnlyProp ? \" or '\" + readOnlyProp + \"'\" : '') + \".\"));\n }\n // value and defaultValue are mutually exclusive\n var defaultValue = props[defaultValueProp];\n if (defaultValue !== undefined && defaultValue !== null && !warningsMap.valueDefaultValue[componentId]) {\n warningsMap.valueDefaultValue[componentId] = true;\n warn(\"Warning: You provided both '\" + valueProp + \"' and '\" + defaultValueProp + \"' to a \" + componentName + \". \" +\n (\"Form fields must be either controlled or uncontrolled (specify either the '\" + valueProp + \"' prop, \") +\n (\"or the '\" + defaultValueProp + \"' prop, but not both). Decide between using a controlled or uncontrolled \") +\n (componentName + \" and remove one of these props. More info: https://fb.me/react-controlled-components\"));\n }\n }\n // Warn if switching between uncontrolled and controlled. (One difference between this implementation\n // and React's is that if oldIsControlled is indeterminate and newIsControlled true, we don't warn.)\n if (oldProps && newIsControlled !== oldIsControlled) {\n var oldType = oldIsControlled ? 'a controlled' : 'an uncontrolled';\n var newType = oldIsControlled ? 'uncontrolled' : 'controlled';\n var warnMap = oldIsControlled ? warningsMap.controlledToUncontrolled : warningsMap.uncontrolledToControlled;\n if (!warnMap[componentId]) {\n warnMap[componentId] = true;\n warn(\"Warning: A component is changing \" + oldType + \" \" + componentName + \" to be \" + newType + \". \" +\n (componentName + \"s should not switch from controlled to uncontrolled (or vice versa). \") +\n \"Decide between using controlled or uncontrolled for the lifetime of the component. \" +\n \"More info: https://fb.me/react-controlled-components\");\n }\n }\n }\n}\n//# sourceMappingURL=warnControlledUsage.js.map" + }, + { + "id": "5zuL", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", + "index": 163, + "index2": 159, + "size": 3998, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "issuerId": "yVpZ", + "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "yVpZ", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "yVpZ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", + "type": "harmony side effect evaluation", + "userRequest": "./String.extensions", + "loc": "1:0-29" + } + ], + "providedExports": [], + "optimizationBailout": [], + "depth": 5, + "source": "import { InvariantCulture } from './Constants';\n/**\n * Parses number in invariant culture\n */\nString.prototype.parseNumberInvariant = function () {\n return this._parseNumber((window.Sys && window.Sys.CultureInfo && window.Sys.CultureInfo.InvariantCulture) || InvariantCulture);\n};\n/**\n * Parses number in provided culture\n */\nString.prototype._parseNumber = function (culture) {\n var str = '' + this;\n str = str.trim();\n if (str.match(/^[+-]?infinity$/i)) {\n return parseFloat(str);\n }\n if (str.match(/^0x[a-f0-9]+$/i)) {\n return parseInt(str);\n }\n var numberFormat = culture.numberFormat;\n var patternParsed = str._parseNumberNegativePattern(numberFormat, numberFormat.NumberNegativePattern);\n var symbol = patternParsed[0];\n var digit = patternParsed[1];\n if (symbol === '' && numberFormat.NumberNegativePattern !== 1) {\n patternParsed = str._parseNumberNegativePattern(numberFormat, 1);\n symbol = patternParsed[0];\n digit = patternParsed[1];\n }\n if (symbol === '') {\n symbol = '+';\n }\n var exponent;\n var base;\n var scientificSymbolIndex = digit.indexOf('e');\n if (scientificSymbolIndex < 0) {\n scientificSymbolIndex = digit.indexOf('E');\n }\n if (scientificSymbolIndex < 0) {\n base = digit;\n exponent = null;\n }\n else {\n base = digit.substr(0, scientificSymbolIndex);\n exponent = digit.substr(scientificSymbolIndex + 1);\n }\n var intPart;\n var fractionalPart;\n var decimalSeparatorIdx = base.indexOf(numberFormat.NumberDecimalSeparator);\n if (decimalSeparatorIdx < 0) {\n intPart = base;\n fractionalPart = null;\n }\n else {\n intPart = base.substr(0, decimalSeparatorIdx);\n fractionalPart = base.substr(decimalSeparatorIdx + numberFormat.NumberDecimalSeparator.length);\n }\n intPart = intPart.split(numberFormat.NumberGroupSeparator).join('');\n var n = numberFormat.NumberGroupSeparator.replace(/\\u00A0/g, ' ');\n if (numberFormat.NumberGroupSeparator !== n) {\n intPart = intPart.split(n).join('');\n }\n var result = symbol + intPart;\n if (fractionalPart !== null) {\n result += '.' + fractionalPart;\n }\n if (exponent !== null) {\n var exponentParsed = exponent._parseNumberNegativePattern(numberFormat, 1);\n if (exponentParsed[0] === '') {\n exponentParsed[0] = '+';\n }\n result += 'e' + exponentParsed[0] + exponentParsed[1];\n }\n if (result.match(/^[+-]?\\d*\\.?\\d*(e[+-]?\\d+)?$/)) {\n return parseFloat(result);\n }\n return Number.NaN;\n};\n/**\n * Internal method, Microsoft's replica to parse FriendlyFormat of date or digit\n */\nString.prototype._parseNumberNegativePattern = function (numberFormat, pattern) {\n var negativeSign = numberFormat.NegativeSign;\n var positiveSign = numberFormat.PositiveSign;\n switch (pattern) {\n case 4:\n negativeSign = ' ' + negativeSign;\n positiveSign = ' ' + positiveSign;\n break;\n case 3:\n if (this.endsWith(negativeSign)) {\n return ['-', this.substr(0, this.length - negativeSign.length)];\n }\n else if (this.endsWith(positiveSign)) {\n return ['+', this.substr(0, this.length - positiveSign.length)];\n }\n break;\n case 2:\n negativeSign += ' ';\n positiveSign += ' ';\n break;\n case 1:\n if (this.startsWith(negativeSign)) {\n return ['-', this.substr(negativeSign.length)];\n }\n else if (this.startsWith(positiveSign)) {\n return ['+', this.substr(positiveSign.length)];\n }\n break;\n case 0:\n if (this.startsWith('(') && this.endsWith(')')) {\n return ['-', this.substr(1, this.length - 2)];\n }\n }\n return ['', this];\n};\n//# sourceMappingURL=String.extensions.js.map" + }, + { + "id": "6/CH", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/fontFace.js", + "name": "./node_modules/@uifabric/merge-styles/lib/fontFace.js", + "index": 66, + "index2": 55, + "size": 389, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "issuerId": "65oB", + "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "9h5o", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "name": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js" + }, + { + "id": "65oB", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "name": "./node_modules/@uifabric/merge-styles/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "65oB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "module": "./node_modules/@uifabric/merge-styles/lib/index.js", + "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./fontFace", + "loc": "5:0-38" + }, + { + "moduleId": "65oB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "module": "./node_modules/@uifabric/merge-styles/lib/index.js", + "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./fontFace", + "loc": "5:0-38" + } + ], + "providedExports": [ + "fontFace" + ], + "optimizationBailout": [], + "depth": 10, + "source": "import { getStyleOptions } from './StyleOptionsState';\nimport { Stylesheet } from './Stylesheet';\nimport { serializeRuleEntries } from './styleToClassName';\n/**\n * Registers a font face.\n * @public\n */\nexport function fontFace(font) {\n Stylesheet.getInstance().insertRule(\"@font-face{\" + serializeRuleEntries(getStyleOptions(), font) + \"}\", true);\n}\n//# sourceMappingURL=fontFace.js.map" + }, + { + "id": "61Fo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", + "index": 237, + "index2": 219, + "size": 5068, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "issuerId": "Rosp", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "uUJR", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Icon.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Icon.js" + }, + { + "id": "Bxs9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" + }, + { + "id": "nTT2", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" + }, + { + "id": "Rosp", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "Rosp", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "type": "harmony side effect evaluation", + "userRequest": "./Image.styles", + "loc": "3:0-43" + }, + { + "moduleId": "Rosp", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", + "type": "harmony import specifier", + "userRequest": "./Image.styles", + "loc": "4:37-46" + } + ], + "providedExports": [ + "getStyles" + ], + "optimizationBailout": [], + "depth": 11, + "source": "import { AnimationClassNames, getGlobalClassNames } from '../../Styling';\nimport { getWindow } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Image',\n rootMaximizeFrame: 'ms-Image--maximizeFrame',\n image: 'ms-Image-image',\n imageCenter: 'ms-Image-image--center',\n imageContain: 'ms-Image-image--contain',\n imageCover: 'ms-Image-image--cover',\n imageCenterContain: 'ms-Image-image--centerContain',\n imageCenterCover: 'ms-Image-image--centerCover',\n imageNone: 'ms-Image-image--none',\n imageLandscape: 'ms-Image-image--landscape',\n imagePortrait: 'ms-Image-image--portrait',\n};\nexport var getStyles = function (props) {\n var className = props.className, width = props.width, height = props.height, maximizeFrame = props.maximizeFrame, isLoaded = props.isLoaded, shouldFadeIn = props.shouldFadeIn, shouldStartVisible = props.shouldStartVisible, isLandscape = props.isLandscape, isCenter = props.isCenter, isContain = props.isContain, isCover = props.isCover, isCenterContain = props.isCenterContain, isCenterCover = props.isCenterCover, isNone = props.isNone, isError = props.isError, isNotImageFit = props.isNotImageFit, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ImageFitStyles = {\n position: 'absolute',\n left: '50% /* @noflip */',\n top: '50%',\n transform: 'translate(-50%,-50%)',\n };\n // Cut the mustard using msMaxTouchPoints to detect IE11 which does not support CSS object-fit\n var window = getWindow();\n var supportsObjectFit = window !== undefined && window.navigator.msMaxTouchPoints === undefined;\n var fallbackObjectFitStyles = (isContain && isLandscape) || (isCover && !isLandscape)\n ? { width: '100%', height: 'auto' }\n : { width: 'auto', height: '100%' };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n overflow: 'hidden',\n },\n maximizeFrame && [\n classNames.rootMaximizeFrame,\n {\n height: '100%',\n width: '100%',\n },\n ],\n isLoaded && shouldFadeIn && !shouldStartVisible && AnimationClassNames.fadeIn400,\n (isCenter || isContain || isCover || isCenterContain || isCenterCover) && {\n position: 'relative',\n },\n className,\n ],\n image: [\n classNames.image,\n {\n display: 'block',\n opacity: 0,\n },\n isLoaded && [\n 'is-loaded',\n {\n opacity: 1,\n },\n ],\n isCenter && [classNames.imageCenter, ImageFitStyles],\n isContain && [\n classNames.imageContain,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'contain',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCover && [\n classNames.imageCover,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'cover',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCenterContain && [\n classNames.imageCenterContain,\n isLandscape && {\n maxWidth: '100%',\n },\n !isLandscape && {\n maxHeight: '100%',\n },\n ImageFitStyles,\n ],\n isCenterCover && [\n classNames.imageCenterCover,\n isLandscape && {\n maxHeight: '100%',\n },\n !isLandscape && {\n maxWidth: '100%',\n },\n ImageFitStyles,\n ],\n isNone && [\n classNames.imageNone,\n {\n width: 'auto',\n height: 'auto',\n },\n ],\n isNotImageFit && [\n !!width &&\n !height && {\n height: 'auto',\n width: '100%',\n },\n !width &&\n !!height && {\n height: '100%',\n width: 'auto',\n },\n !!width &&\n !!height && {\n height: '100%',\n width: '100%',\n },\n ],\n isLandscape && classNames.imageLandscape,\n !isLandscape && classNames.imagePortrait,\n !isLoaded && 'is-notLoaded',\n shouldFadeIn && 'is-fadeIn',\n isError && 'is-error',\n ],\n };\n};\n//# sourceMappingURL=Image.styles.js.map" + }, + { + "id": "65oB", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/merge-styles/lib/index.js", + "name": "./node_modules/@uifabric/merge-styles/lib/index.js", + "index": 52, + "index2": 58, + "size": 453, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "issuerId": "9h5o", + "issuerName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "9h5o", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "name": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "2:0-53" + }, + { + "moduleId": "8lCt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/scroll.js", + "module": "./node_modules/@uifabric/utilities/lib/scroll.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "6:30-41" + }, + { + "moduleId": "9h5o", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-67" + }, + { + "moduleId": "9h5o", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "7:17-27" + }, + { + "moduleId": "9h5o", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "68:34-46" + }, + { + "moduleId": "CBcM", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "3:0-53" + }, + { + "moduleId": "CBcM", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "20:26-37" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "4:0-69" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "26:12-29" + }, + { + "moduleId": "FbcY", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/rtl.js", + "module": "./node_modules/@uifabric/utilities/lib/rtl.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "44:4-21" + }, + { + "moduleId": "HhHV", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-53" + }, + { + "moduleId": "HhHV", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "16:20-31" + }, + { + "moduleId": "PS8X", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/icons.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "3:0-75" + }, + { + "moduleId": "PS8X", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/icons.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "13:17-27" + }, + { + "moduleId": "PS8X", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/icons.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "115:20-28" + }, + { + "moduleId": "PS8X", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/utilities/icons.js", + "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "119:39-50" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-50" + }, + { + "moduleId": "T90h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "12:4-12" + }, + { + "moduleId": "WOvX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/styled.js", + "module": "./node_modules/@uifabric/utilities/lib/styled.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "3:0-66" + }, + { + "moduleId": "WOvX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/styled.js", + "module": "./node_modules/@uifabric/utilities/lib/styled.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "19:23-47" + }, + { + "moduleId": "Z4jB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "6:0-57" + }, + { + "moduleId": "Z4jB", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "40:51-66" + }, + { + "moduleId": "itTX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-53" + }, + { + "moduleId": "itTX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "30:19-30" + }, + { + "moduleId": "mWkG", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/getId.js", + "module": "./node_modules/@uifabric/utilities/lib/getId.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "2:0-52" + }, + { + "moduleId": "mWkG", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/getId.js", + "module": "./node_modules/@uifabric/utilities/lib/getId.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "20:25-35" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "mrvO", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/MergeStyles.js", + "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", + "type": "harmony export imported specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-161" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-51" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "9:14-23" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "13:15-24" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "41:18-27" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "45:19-28" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "49:20-29" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "53:18-27" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "57:15-24" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "61:17-26" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "129:11-20" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "135:11-20" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "141:11-20" + }, + { + "moduleId": "polh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "147:11-20" + }, + { + "moduleId": "qUOX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "module": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-52" + }, + { + "moduleId": "qUOX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "module": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "8:21-31" + }, + { + "moduleId": "xL1/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/memoize.js", + "module": "./node_modules/@uifabric/utilities/lib/memoize.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "1:0-52" + }, + { + "moduleId": "xL1/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/memoize.js", + "module": "./node_modules/@uifabric/utilities/lib/memoize.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "66:25-35" + }, + { + "moduleId": "xL1/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/memoize.js", + "module": "./node_modules/@uifabric/utilities/lib/memoize.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "68:12-22" + }, + { + "moduleId": "yCKU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "type": "harmony side effect evaluation", + "userRequest": "@uifabric/merge-styles", + "loc": "2:0-51" + }, + { + "moduleId": "yCKU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "40:11-20" + }, + { + "moduleId": "yCKU", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", + "type": "harmony import specifier", + "userRequest": "@uifabric/merge-styles", + "loc": "61:11-20" + } + ], + "providedExports": [ + "mergeStyles", + "mergeCss", + "mergeStyleSets", + "mergeCssSets", + "concatStyleSets", + "concatStyleSetsWithProps", + "fontFace", + "keyframes", + "InjectionMode", + "Stylesheet", + "setRTL" + ], + "optimizationBailout": [], + "depth": 9, + "source": "export { mergeStyles, mergeCss } from './mergeStyles';\nexport { mergeStyleSets, mergeCssSets } from './mergeStyleSets';\nexport { concatStyleSets } from './concatStyleSets';\nexport { concatStyleSetsWithProps } from './concatStyleSetsWithProps';\nexport { fontFace } from './fontFace';\nexport { keyframes } from './keyframes';\nexport * from './Stylesheet';\nexport { setRTL } from './StyleOptionsState';\nimport './version';\n//# sourceMappingURL=index.js.map" + }, + { + "id": "69HH", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", + "name": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", + "index": 111, + "index2": 101, + "size": 131, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "issuerId": "4aJh", + "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + }, + { + "id": "4aJh", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "name": "./node_modules/@uifabric/utilities/lib/dom.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony side effect evaluation", + "userRequest": "./dom/setPortalAttribute", + "loc": "14:0-41" + }, + { + "moduleId": "4aJh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/dom.js", + "module": "./node_modules/@uifabric/utilities/lib/dom.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", + "type": "harmony export imported specifier", + "userRequest": "./dom/setPortalAttribute", + "loc": "14:0-41" + } + ], + "providedExports": [ + "DATA_PORTAL_ATTRIBUTE", + "setPortalAttribute" + ], + "optimizationBailout": [], + "depth": 9, + "source": "export { DATA_PORTAL_ATTRIBUTE, setPortalAttribute } from '@fluentui/dom-utilities';\n//# sourceMappingURL=setPortalAttribute.js.map" + }, + { + "id": "6Evp", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "name": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "index": 334, + "index2": 315, + "size": 1011, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "issuerId": "/m0d", + "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" + }, + { + "id": "/m0d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "name": "./node_modules/@uifabric/react-hooks/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./useSetInterval", + "loc": "13:0-33" + }, + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./useSetInterval", + "loc": "13:0-33" + } + ], + "providedExports": [ + "useSetInterval" + ], + "optimizationBailout": [], + "depth": 12, + "source": "import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Returns a wrapper function for `setInterval` which automatically handles disposal.\n */\nexport var useSetInterval = function () {\n var intervalIds = useConst({});\n React.useEffect(function () { return function () {\n for (var _i = 0, _a = Object.keys(intervalIds); _i < _a.length; _i++) {\n var id = _a[_i];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n clearInterval(id);\n }\n }; }, \n // useConst ensures this will never change, but react-hooks/exhaustive-deps doesn't know that\n [intervalIds]);\n return useConst({\n setInterval: function (func, duration) {\n var id = setInterval(func, duration);\n intervalIds[id] = 1;\n return id;\n },\n clearInterval: function (id) {\n delete intervalIds[id];\n clearInterval(id);\n },\n });\n};\n//# sourceMappingURL=useSetInterval.js.map" + }, + { + "id": "6QFK", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", + "index": 15, + "index2": 9, + "size": 907, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerId": "bQ/l", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-25" + }, + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony export imported specifier", + "userRequest": "./consts", + "loc": "1:0-25" + }, + { + "moduleId": "1yCa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-80" + }, + { + "moduleId": "1yCa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "6:26-39" + }, + { + "moduleId": "1yCa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "7:26-46" + }, + { + "moduleId": "1yCa", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "8:26-41" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony side effect evaluation", + "userRequest": "../../utilities/color/consts", + "loc": "7:0-168" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "48:36-50" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "48:53-68" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "57:67-82" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "199:54-68" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "199:71-86" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "201:38-47" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "201:50-60" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "215:42-56" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "218:42-57" + }, + { + "moduleId": "53eK", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", + "type": "harmony import specifier", + "userRequest": "../../utilities/color/consts", + "loc": "221:42-55" + }, + { + "moduleId": "7NRl", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-41" + }, + { + "moduleId": "7NRl", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "28:30-43" + }, + { + "moduleId": "A6zI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "type": "harmony side effect evaluation", + "userRequest": "../../../utilities/color/consts", + "loc": "5:0-81" + }, + { + "moduleId": "A6zI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "136:42-55" + }, + { + "moduleId": "A6zI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "136:58-73" + }, + { + "moduleId": "B2Cu", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-58" + }, + { + "moduleId": "B2Cu", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "6:26-39" + }, + { + "moduleId": "B2Cu", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "7:26-39" + }, + { + "moduleId": "B2Cu", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "8:26-39" + }, + { + "moduleId": "B2Cu", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:56-71" + }, + { + "moduleId": "BB33", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-43" + }, + { + "moduleId": "BB33", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "7:41-56" + }, + { + "moduleId": "BB33", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "11:12-27" + }, + { + "moduleId": "BT+F", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-43" + }, + { + "moduleId": "BT+F", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "14:36-51" + }, + { + "moduleId": "BT+F", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "18:12-27" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-41" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "47:23-36" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "47:52-65" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "47:81-94" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "166:34-47" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "167:34-47" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "168:34-47" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "171:34-47" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "172:34-47" + }, + { + "moduleId": "BoHr", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "173:34-47" + }, + { + "moduleId": "ICEt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "3:0-43" + }, + { + "moduleId": "ICEt", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:52-67" + }, + { + "moduleId": "LTJ4", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-41" + }, + { + "moduleId": "LTJ4", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "32:22-35" + }, + { + "moduleId": "LTJ4", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "33:22-35" + }, + { + "moduleId": "LTJ4", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "34:22-35" + }, + { + "moduleId": "PSe/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-43" + }, + { + "moduleId": "PSe/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:17-32" + }, + { + "moduleId": "PSe/", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:119-134" + }, + { + "moduleId": "SYcA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-41" + }, + { + "moduleId": "SYcA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:21-34" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "3:0-25" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony export imported specifier", + "userRequest": "./consts", + "loc": "3:0-25" + }, + { + "moduleId": "bQtI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "3:0-43" + }, + { + "moduleId": "bQtI", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "9:12-27" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony side effect evaluation", + "userRequest": "../../../utilities/color/consts", + "loc": "4:0-88" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "50:60-80" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "50:92-107" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "106:366-381" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "110:105-120" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "143:62-82" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "143:85-105" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "143:125-140" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "143:157-172" + }, + { + "moduleId": "cLFc", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", + "type": "harmony import specifier", + "userRequest": "../../../utilities/color/consts", + "loc": "143:175-190" + }, + { + "moduleId": "hNd6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-65" + }, + { + "moduleId": "hNd6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "4:9-29" + }, + { + "moduleId": "hNd6", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "5:9-24" + }, + { + "moduleId": "iZYe", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-43" + }, + { + "moduleId": "iZYe", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "80:47-62" + }, + { + "moduleId": "iZYe", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "97:49-64" + }, + { + "moduleId": "iZYe", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "112:15-30" + }, + { + "moduleId": "iZYe", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "126:15-30" + }, + { + "moduleId": "kxY9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-65" + }, + { + "moduleId": "kxY9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "8:34-54" + }, + { + "moduleId": "kxY9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "8:56-71" + }, + { + "moduleId": "lOt9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "type": "harmony side effect evaluation", + "userRequest": "./consts", + "loc": "1:0-58" + }, + { + "moduleId": "lOt9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "8:29-43" + }, + { + "moduleId": "lOt9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "11:22-36" + }, + { + "moduleId": "lOt9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "12:32-46" + }, + { + "moduleId": "lOt9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", + "type": "harmony import specifier", + "userRequest": "./consts", + "loc": "14:28-42" + } + ], + "providedExports": [ + "MAX_COLOR_SATURATION", + "MAX_COLOR_HUE", + "MAX_COLOR_VALUE", + "MAX_COLOR_RGB", + "MAX_COLOR_RGBA", + "MAX_COLOR_ALPHA", + "MIN_HEX_LENGTH", + "MAX_HEX_LENGTH", + "MIN_RGBA_LENGTH", + "MAX_RGBA_LENGTH", + "HEX_REGEX", + "RGBA_REGEX" + ], + "optimizationBailout": [], + "depth": 5, + "source": "export var MAX_COLOR_SATURATION = 100;\nexport var MAX_COLOR_HUE = 359;\nexport var MAX_COLOR_VALUE = 100;\nexport var MAX_COLOR_RGB = 255;\n/** @deprecated Use MAX_COLOR_RGB (255) or MAX_COLOR_ALPHA (100) */\nexport var MAX_COLOR_RGBA = MAX_COLOR_RGB;\nexport var MAX_COLOR_ALPHA = 100;\n/** Minimum length for a hexadecimal color string (not including the #) */\nexport var MIN_HEX_LENGTH = 3;\n/** Maximum length for a hexadecimal color string (not including the #) */\nexport var MAX_HEX_LENGTH = 6;\n/** Minimum length for a string of an RGBA color component */\nexport var MIN_RGBA_LENGTH = 1;\n/** Maximum length for a string of an RGBA color component */\nexport var MAX_RGBA_LENGTH = 3;\n/** Regular expression matching only valid hexadecimal chars */\nexport var HEX_REGEX = /^[\\da-f]{0,6}$/i;\n/** Regular expression matching only numbers */\nexport var RGBA_REGEX = /^\\d{0,3}$/;\n//# sourceMappingURL=consts.js.map" + }, + { + "id": "6SDC", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useConst.js", + "name": "./node_modules/@uifabric/react-hooks/lib/useConst.js", + "index": 324, + "index2": 304, + "size": 1344, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "issuerId": "/m0d", + "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "ASEy", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/KeytipData.js" + }, + { + "id": "IMrf", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" + }, + { + "id": "bJL8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" + }, + { + "id": "5Zh/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" + }, + { + "id": "/m0d", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "name": "./node_modules/@uifabric/react-hooks/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "4:0-27" + }, + { + "moduleId": "/m0d", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/index.js", + "module": "./node_modules/@uifabric/react-hooks/lib/index.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./useConst", + "loc": "4:0-27" + }, + { + "moduleId": "6Evp", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "2:0-38" + }, + { + "moduleId": "6Evp", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "7:22-30" + }, + { + "moduleId": "6Evp", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "17:11-19" + }, + { + "moduleId": "FLjh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "2:0-38" + }, + { + "moduleId": "FLjh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "7:21-29" + }, + { + "moduleId": "FLjh", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "19:11-19" + }, + { + "moduleId": "KB00", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "2:0-38" + }, + { + "moduleId": "KB00", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "8:22-30" + }, + { + "moduleId": "KVSy", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "2:0-38" + }, + { + "moduleId": "KVSy", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "5:23-31" + }, + { + "moduleId": "KVSy", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "17:33-41" + }, + { + "moduleId": "KwlQ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useAsync.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "3:0-38" + }, + { + "moduleId": "KwlQ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useAsync.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "8:16-24" + }, + { + "moduleId": "jEFs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "2:0-38" + }, + { + "moduleId": "jEFs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "15:18-26" + }, + { + "moduleId": "jEFs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "19:19-27" + }, + { + "moduleId": "jEFs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "23:17-25" + }, + { + "moduleId": "sNMJ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "type": "harmony side effect evaluation", + "userRequest": "./useConst", + "loc": "5:0-38" + }, + { + "moduleId": "sNMJ", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", + "type": "harmony import specifier", + "userRequest": "./useConst", + "loc": "17:26-34" + } + ], + "providedExports": [ + "useConst" + ], + "optimizationBailout": [], + "depth": 12, + "source": "import * as React from 'react';\n/**\n * Hook to initialize and return a constant value. Unlike `React.useMemo`, this is guaranteed to\n * always return the same value (and if the initializer is a function, only call it once).\n * This is similar to setting a private member in a class constructor.\n *\n * If the value should ever change based on dependencies, use `React.useMemo` instead.\n *\n * @param initialValue - Initial value, or function to get the initial value. Similar to `useState`,\n * only the value/function passed in the first time this is called is respected.\n * @returns The value. The identity of this value will always be the same.\n */\nexport function useConst(initialValue) {\n // Use useRef to store the value because it's the least expensive built-in hook that works here\n // (we could also use `const [value] = React.useState(initialValue)` but that's more expensive\n // internally due to reducer handling which we don't need)\n var ref = React.useRef();\n if (ref.current === undefined) {\n // Box the value in an object so we can tell if it's initialized even if the initializer\n // returns/is undefined\n ref.current = {\n value: typeof initialValue === 'function' ? initialValue() : initialValue,\n };\n }\n return ref.current.value;\n}\n//# sourceMappingURL=useConst.js.map" + }, + { + "id": "6dv4", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/css-loader/dist/cjs.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/postcss-loader/src/index.js??postcss!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.css", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.css", + "index": 369, + "index2": 364, + "size": 588, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "issuerId": "PkS7", + "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "PkS7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "PkS7", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.module.scss.js", + "type": "cjs require", + "userRequest": "./PropertyFieldColorPickerHost.module.css", + "loc": "2:0-52" + } + ], + "providedExports": null, + "optimizationBailout": [], + "depth": 5, + "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldColorPickerHost.module.css\");\nvar loader = require(\"/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" + }, + { + "id": "6lVU", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/createTheme.js", + "name": "./node_modules/@fluentui/theme/lib/createTheme.js", + "index": 207, + "index2": 199, + "size": 1136, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "issuerId": "xfqs", + "issuerName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "xfqs", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony side effect evaluation", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "4:0-62" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony side effect evaluation", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "5:0-62" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony export imported specifier", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "5:0-62" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony import specifier", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "6:13-24" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony import specifier", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "20:21-32" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony import specifier", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "34:17-28" + }, + { + "moduleId": "xfqs", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", + "type": "harmony import specifier", + "userRequest": "@fluentui/theme/lib/createTheme", + "loc": "67:13-24" + } + ], + "providedExports": [ + "createTheme" + ], + "optimizationBailout": [], + "depth": 10, + "source": "import { DefaultPalette } from './colors/index';\nimport { DefaultEffects } from './effects/index';\nimport { DefaultFontStyles } from './fonts/index';\nimport { mergeThemes } from './mergeThemes';\nimport { DefaultSpacing } from './spacing/index';\nimport { makeSemanticColors } from './utilities/makeSemanticColors';\n/**\n * Creates a custom theme definition.\n * @param theme - Partial theme object.\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function createTheme(theme, depComments) {\n if (theme === void 0) { theme = {}; }\n if (depComments === void 0) { depComments = false; }\n var isInverted = !!theme.isInverted;\n var baseTheme = {\n palette: DefaultPalette,\n effects: DefaultEffects,\n fonts: DefaultFontStyles,\n spacing: DefaultSpacing,\n isInverted: isInverted,\n disableGlobalClassNames: false,\n semanticColors: makeSemanticColors(DefaultPalette, DefaultEffects, undefined, isInverted, depComments),\n rtl: undefined,\n };\n return mergeThemes(baseTheme, theme);\n}\n//# sourceMappingURL=createTheme.js.map" + }, + { + "id": "7BzU", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", + "index": 344, + "index2": 327, + "size": 899, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "issuerId": "3nfX", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "rJVp", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" + }, + { + "id": "jq/3", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" + }, + { + "id": "pgS/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Divider.js" + }, + { + "id": "/Phj", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/index.js" + }, + { + "id": "3nfX", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "3nfX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "type": "harmony side effect evaluation", + "userRequest": "./VerticalDivider.styles", + "loc": "1:0-53" + }, + { + "moduleId": "3nfX", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", + "type": "harmony import specifier", + "userRequest": "./VerticalDivider.styles", + "loc": "4:57-66" + } + ], + "providedExports": [ + "getStyles" + ], + "optimizationBailout": [], + "depth": 15, + "source": "export var getStyles = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var theme = props.theme, getClassNames = props.getClassNames, className = props.className;\n if (!theme) {\n throw new Error('Theme is undefined or null.');\n }\n if (getClassNames) {\n var names = getClassNames(theme);\n return {\n wrapper: [names.wrapper],\n divider: [names.divider],\n };\n }\n return {\n wrapper: [\n {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center',\n },\n className,\n ],\n divider: [\n {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n ],\n };\n};\n//# sourceMappingURL=VerticalDivider.styles.js.map" + }, + { + "id": "7HGX", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/spacing/DefaultSpacing.js", + "name": "./node_modules/@fluentui/theme/lib/spacing/DefaultSpacing.js", + "index": 214, + "index2": 197, + "size": 152, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/spacing/index.js", + "issuerId": "NpKg", + "issuerName": "./node_modules/@fluentui/theme/lib/spacing/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "BxdP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js" + }, + { + "id": "Gc2k", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Styling.js" + }, + { + "id": "tqYG", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/index.js", + "name": "./node_modules/@uifabric/styling/lib/index.js" + }, + { + "id": "xfqs", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/styling/lib/styles/theme.js", + "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" + }, + { + "id": "6lVU", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/createTheme.js", + "name": "./node_modules/@fluentui/theme/lib/createTheme.js" + }, + { + "id": "NpKg", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/spacing/index.js", + "name": "./node_modules/@fluentui/theme/lib/spacing/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "NpKg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/spacing/index.js", + "module": "./node_modules/@fluentui/theme/lib/spacing/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/spacing/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./DefaultSpacing", + "loc": "1:0-50" + }, + { + "moduleId": "NpKg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@fluentui/theme/lib/spacing/index.js", + "module": "./node_modules/@fluentui/theme/lib/spacing/index.js", + "moduleName": "./node_modules/@fluentui/theme/lib/spacing/index.js", + "type": "harmony export imported specifier", + "userRequest": "./DefaultSpacing", + "loc": "1:0-50" + } + ], + "providedExports": [ + "DefaultSpacing" + ], + "optimizationBailout": [], + "depth": 12, + "source": "export var DefaultSpacing = {\n s2: '4px',\n s1: '8px',\n m: '16px',\n l1: '20px',\n l2: '32px',\n};\n//# sourceMappingURL=DefaultSpacing.js.map" + }, + { + "id": "7NRl", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", + "index": 23, + "index2": 17, + "size": 771, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerId": "bQ/l", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony side effect evaluation", + "userRequest": "./rgb2hsv", + "loc": "9:0-26" + }, + { + "moduleId": "+HNA", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", + "type": "harmony export imported specifier", + "userRequest": "./rgb2hsv", + "loc": "9:0-26" + }, + { + "moduleId": "BB33", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "type": "harmony side effect evaluation", + "userRequest": "./rgb2hsv", + "loc": "2:0-36" + }, + { + "moduleId": "BB33", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", + "type": "harmony import specifier", + "userRequest": "./rgb2hsv", + "loc": "8:13-20" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./rgb2hsv", + "loc": "11:0-26" + }, + { + "moduleId": "bQ/l", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "type": "harmony export imported specifier", + "userRequest": "./rgb2hsv", + "loc": "11:0-26" + } + ], + "providedExports": [ + "rgb2hsv" + ], + "optimizationBailout": [], + "depth": 5, + "source": "import { MAX_COLOR_RGB } from './consts';\n/** Converts RGB components to an HSV color. */\nexport function rgb2hsv(r, g, b) {\n var h = NaN;\n var max = Math.max(r, g, b);\n var min = Math.min(r, g, b);\n var delta = max - min;\n // hue\n if (delta === 0) {\n h = 0;\n }\n else if (r === max) {\n h = ((g - b) / delta) % 6;\n }\n else if (g === max) {\n h = (b - r) / delta + 2;\n }\n else if (b === max) {\n h = (r - g) / delta + 4;\n }\n h = Math.round(h * 60);\n if (h < 0) {\n h += 360;\n }\n // saturation\n var s = Math.round((max === 0 ? 0 : delta / max) * 100);\n // value\n var v = Math.round((max / MAX_COLOR_RGB) * 100);\n return { h: h, s: s, v: v };\n}\n//# sourceMappingURL=rgb2hsv.js.map" + }, + { + "id": "7Uas", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/BaseComponent.js", + "name": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", + "index": 70, + "index2": 67, + "size": 9613, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./BaseComponent", + "loc": "3:0-32" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./BaseComponent", + "loc": "3:0-32" + } + ], + "providedExports": [ + "BaseComponent", + "nullRender" + ], + "optimizationBailout": [], + "depth": 8, + "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async } from './Async';\nimport { EventGroup } from './EventGroup';\nimport { warnConditionallyRequiredProps } from './warn/warnConditionallyRequiredProps';\nimport { warnMutuallyExclusive } from './warn/warnMutuallyExclusive';\nimport { warnDeprecations } from './warn/warnDeprecations';\n/**\n * BaseComponent class, which provides basic helpers for all components.\n *\n * @public\n * {@docCategory BaseComponent}\n *\n * @deprecated Do not use. We are moving away from class component.\n */\nvar BaseComponent = /** @class */ (function (_super) {\n __extends(BaseComponent, _super);\n /**\n * BaseComponent constructor\n * @param props - The props for the component.\n * @param context - The context for the component.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n function BaseComponent(props, context) {\n var _this = _super.call(this, props, context) || this;\n // eslint-disable-next-line deprecation/deprecation\n _makeAllSafe(_this, BaseComponent.prototype, [\n 'componentDidMount',\n 'shouldComponentUpdate',\n 'getSnapshotBeforeUpdate',\n 'render',\n 'componentDidUpdate',\n 'componentWillUnmount',\n ]);\n return _this;\n }\n /**\n * When the component receives props, make sure the componentRef is updated.\n */\n BaseComponent.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._updateComponentRef(prevProps, this.props);\n };\n /**\n * When the component has mounted, update the componentRef.\n */\n BaseComponent.prototype.componentDidMount = function () {\n this._setComponentRef(this.props.componentRef, this);\n };\n /**\n * If we have disposables, dispose them automatically on unmount.\n */\n BaseComponent.prototype.componentWillUnmount = function () {\n this._setComponentRef(this.props.componentRef, null);\n if (this.__disposables) {\n for (var i = 0, len = this._disposables.length; i < len; i++) {\n var disposable = this.__disposables[i];\n if (disposable.dispose) {\n disposable.dispose();\n }\n }\n this.__disposables = null;\n }\n };\n Object.defineProperty(BaseComponent.prototype, \"className\", {\n /**\n * Gets the object's class name.\n */\n get: function () {\n if (!this.__className) {\n var funcNameRegex = /function (.{1,})\\(/;\n var results = funcNameRegex.exec(this.constructor.toString());\n this.__className = results && results.length > 1 ? results[1] : '';\n }\n return this.__className;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_disposables\", {\n /**\n * Allows subclasses to push things to this._disposables to be auto disposed.\n */\n get: function () {\n if (!this.__disposables) {\n this.__disposables = [];\n }\n return this.__disposables;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_async\", {\n /**\n * Gets the async instance associated with the component, created on demand. The async instance gives\n * subclasses a way to execute setTimeout/setInterval async calls safely, where the callbacks\n * will be cleared/ignored automatically after unmounting. The helpers within the async object also\n * preserve the this pointer so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__async) {\n this.__async = new Async(this);\n this._disposables.push(this.__async);\n }\n return this.__async;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_events\", {\n /**\n * Gets the event group instance assocaited with the component, created on demand. The event instance\n * provides on/off methods for listening to DOM (or regular javascript object) events. The event callbacks\n * will be automatically disconnected after unmounting. The helpers within the events object also\n * preserve the this reference so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__events) {\n this.__events = new EventGroup(this);\n this._disposables.push(this.__events);\n }\n return this.__events;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Helper to return a memoized ref resolver function.\n * @param refName - Name of the member to assign the ref to.\n * @returns A function instance keyed from the given refname.\n * @deprecated Use `createRef` from React.createRef.\n */\n BaseComponent.prototype._resolveRef = function (refName) {\n var _this = this;\n if (!this.__resolves) {\n this.__resolves = {};\n }\n if (!this.__resolves[refName]) {\n this.__resolves[refName] = function (ref) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (_this[refName] = ref);\n };\n }\n return this.__resolves[refName];\n };\n /**\n * Updates the componentRef (by calling it with \"this\" when necessary.)\n */\n BaseComponent.prototype._updateComponentRef = function (currentProps, newProps) {\n if (newProps === void 0) { newProps = {}; }\n // currentProps *should* always be defined, but verify that just in case a subclass is manually\n // calling a lifecycle method with no parameters (which has happened) or other odd usage.\n if (currentProps && newProps && currentProps.componentRef !== newProps.componentRef) {\n this._setComponentRef(currentProps.componentRef, null);\n this._setComponentRef(newProps.componentRef, this);\n }\n };\n /**\n * Warns when a deprecated props are being used.\n *\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\n BaseComponent.prototype._warnDeprecations = function (deprecationMap) {\n warnDeprecations(this.className, this.props, deprecationMap);\n };\n /**\n * Warns when props which are mutually exclusive with each other are both used.\n *\n * @param mutuallyExclusiveMap - The map of mutually exclusive props.\n */\n BaseComponent.prototype._warnMutuallyExclusive = function (mutuallyExclusiveMap) {\n warnMutuallyExclusive(this.className, this.props, mutuallyExclusiveMap);\n };\n /**\n * Warns when props are required if a condition is met.\n *\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\n BaseComponent.prototype._warnConditionallyRequiredProps = function (requiredProps, conditionalPropName, condition) {\n warnConditionallyRequiredProps(this.className, this.props, requiredProps, conditionalPropName, condition);\n };\n BaseComponent.prototype._setComponentRef = function (ref, value) {\n if (!this._skipComponentRefResolution && ref) {\n if (typeof ref === 'function') {\n ref(value);\n }\n if (typeof ref === 'object') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ref.current = value;\n }\n }\n };\n return BaseComponent;\n}(React.Component));\nexport { BaseComponent };\n/**\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\n */\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeAllSafe(obj, prototype, methodNames) {\n for (var i = 0, len = methodNames.length; i < len; i++) {\n _makeSafe(obj, prototype, methodNames[i]);\n }\n}\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeSafe(obj, prototype, methodName) {\n /* eslint-disable @typescript-eslint/no-explicit-any */\n var classMethod = obj[methodName];\n var prototypeMethod = prototype[methodName];\n if (classMethod || prototypeMethod) {\n obj[methodName] = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n /* eslint-enable @typescript-eslint/no-explicit-any */\n var retVal;\n if (prototypeMethod) {\n retVal = prototypeMethod.apply(this, args);\n }\n if (classMethod !== prototypeMethod) {\n retVal = classMethod.apply(this, args);\n }\n return retVal;\n };\n }\n}\n/**\n * Simple constant function for returning null, used to render empty templates in JSX.\n *\n * @public\n */\nexport function nullRender() {\n return null;\n}\n//# sourceMappingURL=BaseComponent.js.map" + }, + { + "id": "7nsc", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/initials.js", + "name": "./node_modules/@uifabric/utilities/lib/initials.js", + "index": 136, + "index2": 128, + "size": 3189, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./initials", + "loc": "36:0-27" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./initials", + "loc": "36:0-27" + } + ], + "providedExports": [ + "getInitials" + ], + "optimizationBailout": [], + "depth": 8, + "source": "/**\n * Regular expression matching characters to ignore when calculating the initials.\n */\n/**\n * Regular expression matching characters within various types of enclosures, including the enclosures themselves\n * so for example, (xyz) [xyz] {xyz} all would be ignored\n */\nvar UNWANTED_ENCLOSURES_REGEX = /[\\(\\[\\{][^\\)\\]\\}]*[\\)\\]\\}]/g;\n/**\n * Regular expression matching special ASCII characters except space, plus some unicode special characters.\n * Applies after unwanted enclosures have been removed\n */\nvar UNWANTED_CHARS_REGEX = /[\\0-\\u001F\\!-/:-@\\[-`\\{-\\u00BF\\u0250-\\u036F\\uD800-\\uFFFF]/g;\n/**\n * Regular expression matching phone numbers. Applied after chars matching UNWANTED_CHARS_REGEX have been removed\n * and number has been trimmed for whitespaces\n */\nvar PHONENUMBER_REGEX = /^\\d+[\\d\\s]*(:?ext|x|)\\s*\\d+$/i;\n/** Regular expression matching one or more spaces. */\nvar MULTIPLE_WHITESPACES_REGEX = /\\s+/g;\n/**\n * Regular expression matching languages for which we currently don't support initials.\n * Arabic: Arabic, Arabic Supplement, Arabic Extended-A.\n * Korean: Hangul Jamo, Hangul Compatibility Jamo, Hangul Jamo Extended-A, Hangul Syllables, Hangul Jamo Extended-B.\n * Japanese: Hiragana, Katakana.\n * CJK: CJK Unified Ideographs Extension A, CJK Unified Ideographs, CJK Compatibility Ideographs,\n * CJK Unified Ideographs Extension B\n */\n// eslint-disable-next-line @fluentui/max-len\nvar UNSUPPORTED_TEXT_REGEX = /[\\u0600-\\u06FF\\u0750-\\u077F\\u08A0-\\u08FF\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7AF\\uD7B0-\\uD7FF\\u3040-\\u309F\\u30A0-\\u30FF\\u3400-\\u4DBF\\u4E00-\\u9FFF\\uF900-\\uFAFF]|[\\uD840-\\uD869][\\uDC00-\\uDED6]/;\nfunction getInitialsLatin(displayName, isRtl) {\n var initials = '';\n var splits = displayName.split(' ');\n if (splits.length === 2) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[1].charAt(0).toUpperCase();\n }\n else if (splits.length === 3) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[2].charAt(0).toUpperCase();\n }\n else if (splits.length !== 0) {\n initials += splits[0].charAt(0).toUpperCase();\n }\n if (isRtl && initials.length > 1) {\n return initials.charAt(1) + initials.charAt(0);\n }\n return initials;\n}\nfunction cleanupDisplayName(displayName) {\n displayName = displayName.replace(UNWANTED_ENCLOSURES_REGEX, '');\n displayName = displayName.replace(UNWANTED_CHARS_REGEX, '');\n displayName = displayName.replace(MULTIPLE_WHITESPACES_REGEX, ' ');\n displayName = displayName.trim();\n return displayName;\n}\n/**\n * Get (up to 2 characters) initials based on display name of the persona.\n *\n * @public\n */\nexport function getInitials(displayName, isRtl, allowPhoneInitials) {\n if (!displayName) {\n return '';\n }\n displayName = cleanupDisplayName(displayName);\n // For names containing CJK characters, and phone numbers, we don't display initials\n if (UNSUPPORTED_TEXT_REGEX.test(displayName) || (!allowPhoneInitials && PHONENUMBER_REGEX.test(displayName))) {\n return '';\n }\n return getInitialsLatin(displayName, isRtl);\n}\n//# sourceMappingURL=initials.js.map" + }, + { + "id": "7wWa", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", + "index": 298, + "index2": 281, + "size": 956, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "issuerId": "D89h", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + }, + { + "id": "zKx7", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" + }, + { + "id": "lB5j", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" + }, + { + "id": "2bYP", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" + }, + { + "id": "IypE", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" + }, + { + "id": "Bswb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Callout.js" + }, + { + "id": "z2r6", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" + }, + { + "id": "zLl/", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" + }, + { + "id": "FQnb", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Layer.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Layer.js" + }, + { + "id": "D89h", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "D89h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./LayerHost", + "loc": "3:0-28" + }, + { + "moduleId": "D89h", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", + "type": "harmony export imported specifier", + "userRequest": "./LayerHost", + "loc": "3:0-28" + } + ], + "providedExports": [ + "LayerHost" + ], + "optimizationBailout": [], + "depth": 15, + "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { css } from '../../Utilities';\nimport { notifyHostChanged } from './Layer.notification';\nvar LayerHost = /** @class */ (function (_super) {\n __extends(LayerHost, _super);\n function LayerHost() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LayerHost.prototype.shouldComponentUpdate = function () {\n return false;\n };\n LayerHost.prototype.componentDidMount = function () {\n notifyHostChanged(this.props.id);\n };\n LayerHost.prototype.componentWillUnmount = function () {\n notifyHostChanged(this.props.id);\n };\n LayerHost.prototype.render = function () {\n return React.createElement(\"div\", __assign({}, this.props, { className: css('ms-LayerHost', this.props.className) }));\n };\n return LayerHost;\n}(React.Component));\nexport { LayerHost };\n//# sourceMappingURL=LayerHost.js.map" + }, + { + "id": "8G5b", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/array.js", + "name": "./node_modules/@uifabric/utilities/lib/array.js", + "index": 83, + "index2": 75, + "size": 3870, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "issuerId": "ZQy9", + "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "AQiI", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPicker.js" + }, + { + "id": "bQ/l", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/index.js" + }, + { + "id": "BoHr", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" + }, + { + "id": "iRzo", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Utilities.js" + }, + { + "id": "ZQy9", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "name": "./node_modules/@uifabric/utilities/lib/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./array", + "loc": "12:0-24" + }, + { + "moduleId": "ZQy9", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/index.js", + "module": "./node_modules/@uifabric/utilities/lib/index.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", + "type": "harmony export imported specifier", + "userRequest": "./array", + "loc": "12:0-24" + }, + { + "moduleId": "rZia", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/createMergedRef.js", + "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", + "type": "harmony side effect evaluation", + "userRequest": "./array", + "loc": "1:0-38" + }, + { + "moduleId": "rZia", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@uifabric/utilities/lib/createMergedRef.js", + "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", + "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", + "type": "harmony import specifier", + "userRequest": "./array", + "loc": "30:32-43" + } + ], + "providedExports": [ + "findIndex", + "find", + "createArray", + "toMatrix", + "removeIndex", + "replaceElement", + "addElementAtIndex", + "flatten", + "arraysEqual" + ], + "optimizationBailout": [], + "depth": 8, + "source": "/**\n * Helper to find the index of an item within an array, using a callback to\n * determine the match.\n *\n * @public\n * @param array - Array to search.\n * @param cb - Callback which returns true on matches.\n * @param fromIndex - Optional index to start from (defaults to 0)\n */\nexport function findIndex(array, cb, fromIndex) {\n if (fromIndex === void 0) { fromIndex = 0; }\n var index = -1;\n for (var i = fromIndex; array && i < array.length; i++) {\n if (cb(array[i], i)) {\n index = i;\n break;\n }\n }\n return index;\n}\n/**\n * Helper to find the first item within an array that satisfies the callback.\n * @param array - Array to search\n * @param cb - Callback which returns true on matches\n */\nexport function find(array, cb) {\n var index = findIndex(array, cb);\n if (index < 0) {\n return undefined;\n }\n return array[index];\n}\n/**\n * Creates an array of a given size and helper method to populate.\n *\n * @public\n * @param size - Size of array.\n * @param getItem - Callback to populate given cell index.\n */\nexport function createArray(size, getItem) {\n var array = [];\n for (var i = 0; i < size; i++) {\n array.push(getItem(i));\n }\n return array;\n}\n/**\n * Convert the given array to a matrix with columnCount number\n * of columns.\n *\n * @public\n * @param items - The array to convert\n * @param columnCount - The number of columns for the resulting matrix\n * @returns A matrix of items\n */\nexport function toMatrix(items, columnCount) {\n return items.reduce(function (rows, currentValue, index) {\n if (index % columnCount === 0) {\n rows.push([currentValue]);\n }\n else {\n rows[rows.length - 1].push(currentValue);\n }\n return rows;\n }, []);\n}\n/**\n * Given an array, it returns a new array that does not contain the item at the given index.\n * @param array - The array to operate on\n * @param index - The index of the element to remove\n */\nexport function removeIndex(array, index) {\n return array.filter(function (_, i) { return index !== i; });\n}\n/**\n * Given an array, this function returns a new array where the element at a given index has been replaced.\n * @param array - The array to operate on\n * @param newElement - The element that will be placed in the new array\n * @param index - The index of the element that should be replaced\n */\nexport function replaceElement(array, newElement, index) {\n var copy = array.slice();\n copy[index] = newElement;\n return copy;\n}\n/**\n * Given an array, this function returns a new array where an element has been inserted at the given index.\n * @param array - The array to operate on\n * @param index - The index where an element should be inserted\n * @param itemToAdd - The element to insert\n */\nexport function addElementAtIndex(array, index, itemToAdd) {\n var copy = array.slice();\n copy.splice(index, 0, itemToAdd);\n return copy;\n}\n/**\n * Given an array where each element is of type T or T[], flatten it into an array of T\n * @param array - The array where each element can optionally also be an array\n */\nexport function flatten(array) {\n var result = [];\n array.forEach(function (item) { return (result = result.concat(item)); });\n return result;\n}\n/**\n * Returns a boolean indicating if the two given arrays are equal in length and values.\n *\n * @param array1 - First array to compare\n * @param array2 - Second array to compare\n * @returns True if the arrays are the same length and have the same values in the same positions, false otherwise.\n */\nexport function arraysEqual(array1, array2) {\n if (array1.length !== array2.length) {\n return false;\n }\n for (var i = 0; i < array1.length; i++) {\n if (array1[i] !== array2[i]) {\n return false;\n }\n }\n return true;\n}\n//# sourceMappingURL=array.js.map" + }, + { + "id": "8Hty", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js", + "index": 349, + "index2": 342, + "size": 816, + "cacheable": true, + "built": true, + "optional": false, + "prefetched": false, + "chunks": [ + "svg-hero-web-part" + ], + "issuer": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerId": "gCc8", + "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "issuerPath": [ + { + "id": "we3T", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/source-map-loader/index.js!/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/lib/webparts/svgHero/SvgHeroWebPart.js", + "name": "./lib/webparts/svgHero/SvgHeroWebPart.js" + }, + { + "id": "jl/f", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldColorPicker.js" + }, + { + "id": "OU8Q", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/index.js" + }, + { + "id": "TPZ+", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js", + "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/colorPicker/PropertyFieldColorPickerHost.js" + }, + { + "id": "9QpN", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/Button.js" + }, + { + "id": "gCc8", + "identifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "name": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js" + } + ], + "failed": false, + "errors": 0, + "warnings": 0, + "assets": [], + "reasons": [ + { + "moduleId": "0Xhg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "type": "harmony side effect evaluation", + "userRequest": "./Button.types", + "loc": "4:0-44" + }, + { + "moduleId": "0Xhg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "type": "harmony import specifier", + "userRequest": "./Button.types", + "loc": "27:17-27" + }, + { + "moduleId": "0Xhg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "type": "harmony import specifier", + "userRequest": "./Button.types", + "loc": "29:17-27" + }, + { + "moduleId": "0Xhg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "type": "harmony import specifier", + "userRequest": "./Button.types", + "loc": "31:17-27" + }, + { + "moduleId": "0Xhg", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", + "type": "harmony import specifier", + "userRequest": "./Button.types", + "loc": "33:17-27" + }, + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony side effect evaluation", + "userRequest": "./Button.types", + "loc": "2:0-31" + }, + { + "moduleId": "gCc8", + "moduleIdentifier": "/home/jonah/git/sp-dev-fx-webparts/samples/js-propertycontrols-svg/node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "module": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/office-ui-fabric-react/lib/components/Button/index.js", + "type": "harmony export imported specifier", + "userRequest": "./Button.types", + "loc": "2:0-31" + } + ], + "providedExports": [ + "ElementType", + "ButtonType" + ], + "optimizationBailout": [], + "depth": 6, + "source": "/**\n * {@docCategory Button}\n */\nexport var ElementType;\n(function (ElementType) {\n /**