- {props.time !== '00:00' && (
+ {time !== '00:00' && (
{t('order.initial1')}:{' '}
- {props.time}
+ {time}
)}
{t('order.pay')}{' '}
- {parseFloat(props.order.amount_quote)} {props.order.pair.quote.code}
+ {parseFloat(amount_quote)} {pair.quote.code}
@@ -173,10 +206,10 @@ class OrderInitial extends Component {
className="btn btn-default btn-lg"
name="checkoutButton"
data-toggle="tooltip"
- title={this.state.enablePayment ? '' : t('order.tooltipTC')}
+ title={isPaymentEnabled ? '' : t('order.tooltipTC')}
style={{ pointerEvents: 'auto' }}
onClick={() => {
- props.order.payment_url && this.state.enablePayment && this.tooglePaymentIFrame();
+ payment_url && isPaymentEnabled && this.togglePaymentIFrame();
}}
>
@@ -203,7 +236,7 @@ class OrderInitial extends Component {
) : (
)}
- >
+
);
}
}
@@ -218,20 +251,20 @@ const removeUnnecessaryURLParams = url => {
const removeURLParam = (url, parameter) => {
if (!_.isEmpty(url) && !_.isEmpty(parameter)) {
//prefer to use l.search if you have a location/link object
- var urlparts = url.split('?');
- if (urlparts.length >= 2) {
- var prefix = encodeURIComponent(parameter) + '=';
- var pars = urlparts[1].split(/[&;]/g);
+ const urlParts = url.split('?');
+ if (urlParts.length >= 2) {
+ const prefix = encodeURIComponent(parameter) + '=';
+ const pars = urlParts[1].split(/[&;]/g);
//reverse iteration as may be destructive
- for (var i = pars.length; i-- > 0; ) {
+ for (let i = pars.length; i-- > 0; ) {
//idiom for string.startsWith
if (pars[i].lastIndexOf(prefix, 0) !== -1) {
pars.splice(i, 1);
}
}
- return urlparts[0] + (pars.length > 0 ? '?' + pars.join('&') : '');
+ return urlParts[0] + (pars.length > 0 ? '?' + pars.join('&') : '');
}
}
return url;
@@ -240,8 +273,7 @@ const removeURLParam = (url, parameter) => {
const getUrlPram = parameter => {
const url_string = window.location.href;
const url = new URL(url_string);
- const value = url.searchParams.get(parameter);
- return value;
+ return url.searchParams.get(parameter);
};
export default OrderInitial;
diff --git a/src/config.js b/src/config.js
index 6f973a3f8..624b157db 100644
--- a/src/config.js
+++ b/src/config.js
@@ -6,12 +6,14 @@ const config = {
API_BASE_URL: 'https://api.n.exchange/en/api/v1',
// API_BASE_URL: 'http://localhost:8000/en/api/v1',
SUPPORT_EMAIL: 'support@n.exchange',
+
PRICE_FETCH_INTERVAL: 60000,
ORDER_BOOK_FETCH_INTERVAL: 10000,
ORDER_DETAILS_FETCH_INTERVAL: 20000,
RECENT_ORDERS_INTERVAL: 20000,
RECENT_ORDERS_COUNT: 5,
PRICE_COMPARISON_INTERVAL: 60000,
+
REFERRAL_CODE: null,
KYC_DETAILS_FETCH_INTERVAL: 20000,
ADVANCED_MODE_ENABLED: true,
@@ -21,6 +23,8 @@ const config = {
AUTH_CLIENT_SECRET: development
? 'hpS5mRTDN8EWRgTFlDetU6mlMJw5VintTSPazuP0MUil4KyvEQnNAZHN79PObFtjTR8lL9XwTWxboXiMA19f6s4AeWNuZK7X2d1B2icmRj9q1ol5m0Qpp8RAJHVBvSji'
: '5cNFTdJGtR0qwRYevWOMFjNIepkl6TMieZP6wdqOOIVplL0YWB8Lw5WvizU6CHiIBn21JnUd0Twc1W52MyzFRsGrV8AixFcZJpnHY3fzgiaYv9AyXS1zDbNP0xUqAxgp',
+
+ RECAPTCHA_SITE_KEY_FIAT_PAYMENT: '6LcAmxobAAAAAGOWz7NdouMXZafGpJ-4wWNf_dDe',
};
export default config;
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 000000000..1fe59baac
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,17600 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@apollo/react-common@^3.1.4":
+ version "3.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-common/-/react-common-3.1.4.tgz#ec13c985be23ea8e799c9ea18e696eccc97be345"
+ integrity sha1-7BPJhb4j6o55nJ6hjmluzMl740U=
+ dependencies:
+ ts-invariant "^0.4.4"
+ tslib "^1.10.0"
+
+"@apollo/react-components@^3.1.5":
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-components/-/react-components-3.1.5.tgz#040d2f35ce4947747efe16f76d59dcbd797ffdaf"
+ integrity sha1-BA0vNc5JR3R+/hb3bVncvXl//a8=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ "@apollo/react-hooks" "^3.1.5"
+ prop-types "^15.7.2"
+ ts-invariant "^0.4.4"
+ tslib "^1.10.0"
+
+"@apollo/react-hoc@^3.1.5":
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-hoc/-/react-hoc-3.1.5.tgz#6552d2fb4aafc59fdc8f4e353358b98b89cfab6f"
+ integrity sha1-ZVLS+0qvxZ/cj041M1i5i4nPq28=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ "@apollo/react-components" "^3.1.5"
+ hoist-non-react-statics "^3.3.0"
+ ts-invariant "^0.4.4"
+ tslib "^1.10.0"
+
+"@apollo/react-hooks@^3.1.5":
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-hooks/-/react-hooks-3.1.5.tgz#7e710be52461255ae7fc0b3b9c2ece64299c10e6"
+ integrity sha1-fnEL5SRhJVrn/As7nC7OZCmcEOY=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ "@wry/equality" "^0.1.9"
+ ts-invariant "^0.4.4"
+ tslib "^1.10.0"
+
+"@apollo/react-ssr@^3.1.5":
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-ssr/-/react-ssr-3.1.5.tgz#53703cd493afcde567acc6d5512cab03dafce6de"
+ integrity sha1-U3A81JOvzeVnrMbVUSyrA9r85t4=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ "@apollo/react-hooks" "^3.1.5"
+ tslib "^1.10.0"
+
+"@apollo/react-testing@^3.1.3":
+ version "3.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@apollo/react-testing/-/react-testing-3.1.4.tgz#f2e1b9b65a0bd773facf54db4fdb5995d162a72a"
+ integrity sha1-8uG5tloL13P6z1TbT9tZldFipyo=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ fast-json-stable-stringify "^2.0.0"
+ tslib "^1.10.0"
+
+"@babel/code-frame@7.0.0":
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
+ integrity sha1-BuKrGb21NThVWaq7W6WXKUgoAPg=
+ dependencies:
+ "@babel/highlight" "^7.0.0"
+
+"@babel/code-frame@7.5.5":
+ version "7.5.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
+ integrity sha1-vAeC9tafe31JUxIZaZuYj2aaj50=
+ dependencies:
+ "@babel/highlight" "^7.0.0"
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
+ integrity sha1-3PyCa+72XnXFDiHTg319lXmN1lg=
+ dependencies:
+ "@babel/highlight" "^7.12.13"
+
+"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.4":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/compat-data/-/compat-data-7.14.4.tgz#45720fe0cecf3fd42019e1d12cc3d27fadc98d58"
+ integrity sha1-RXIP4M7PP9QgGeHRLMPSf63JjVg=
+
+"@babel/core@7.2.2":
+ version "7.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
+ integrity sha1-B626bd4nu1rY2GcvFf3j4IGEpoc=
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/generator" "^7.2.2"
+ "@babel/helpers" "^7.2.0"
+ "@babel/parser" "^7.2.2"
+ "@babel/template" "^7.2.2"
+ "@babel/traverse" "^7.2.2"
+ "@babel/types" "^7.2.2"
+ convert-source-map "^1.1.0"
+ debug "^4.1.0"
+ json5 "^2.1.0"
+ lodash "^4.17.10"
+ resolve "^1.3.2"
+ semver "^5.4.1"
+ source-map "^0.5.0"
+
+"@babel/core@^7.4.3", "@babel/core@^7.4.5", "@babel/core@^7.7.5":
+ version "7.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
+ integrity sha1-U5XjBAXwd2Bn+9nPCITxW/t3Cjg=
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/generator" "^7.14.3"
+ "@babel/helper-compilation-targets" "^7.13.16"
+ "@babel/helper-module-transforms" "^7.14.2"
+ "@babel/helpers" "^7.14.0"
+ "@babel/parser" "^7.14.3"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.2"
+ 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"
+
+"@babel/generator@^7.12.11", "@babel/generator@^7.14.2", "@babel/generator@^7.14.3", "@babel/generator@^7.2.2":
+ version "7.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/generator/-/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
+ integrity sha1-DCZS2R973at8zMa6gVfk9A3O25E=
+ dependencies:
+ "@babel/types" "^7.14.2"
+ jsesc "^2.5.1"
+ source-map "^0.5.0"
+
+"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
+ integrity sha1-D1jobfxLs7H819uAZXDhd9Q5tqs=
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
+ integrity sha1-a8IDYciLCnTQUTemXKyNPL9vYfw=
+ dependencies:
+ "@babel/helper-explode-assignable-expression" "^7.12.13"
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.14.4":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz#33ebd0ffc34248051ee2089350a929ab02f2a516"
+ integrity sha1-M+vQ/8NCSAUe4giTUKkpqwLypRY=
+ dependencies:
+ "@babel/compat-data" "^7.14.4"
+ "@babel/helper-validator-option" "^7.12.17"
+ browserslist "^4.16.6"
+ semver "^6.3.0"
+
+"@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3", "@babel/helper-create-class-features-plugin@^7.14.4", "@babel/helper-create-class-features-plugin@^7.3.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz#abf888d836a441abee783c75229279748705dc42"
+ integrity sha1-q/iI2DakQavueDx1IpJ5dIcF3EI=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-function-name" "^7.14.2"
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/helper-replace-supers" "^7.14.4"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+
+"@babel/helper-create-regexp-features-plugin@^7.12.13":
+ version "7.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz#149aa6d78c016e318c43e2409a0ae9c136a86688"
+ integrity sha1-FJqm14wBbjGMQ+JAmgrpwTaoZog=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ regexpu-core "^4.7.1"
+
+"@babel/helper-define-map@^7.1.0":
+ version "7.13.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-define-map/-/helper-define-map-7.13.12.tgz#4f7a67d164560137a820f3cfe12f142123e66063"
+ integrity sha1-T3pn0WRWATeoIPPP4S8UISPmYGM=
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-define-polyfill-provider@^0.2.2":
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
+ integrity sha1-BSXt7FCUZTooJojTTYRuTHXpwLY=
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.13.0"
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/traverse" "^7.13.0"
+ debug "^4.1.1"
+ lodash.debounce "^4.0.8"
+ resolve "^1.14.2"
+ semver "^6.1.2"
+
+"@babel/helper-explode-assignable-expression@^7.12.13":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f"
+ integrity sha1-F7XFn/Rz2flW9A71cM86dsoSZX8=
+ dependencies:
+ "@babel/types" "^7.13.0"
+
+"@babel/helper-function-name@^7.1.0", "@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
+ integrity sha1-OXaItZB2C273cltfCGDIJCfrqsI=
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.12.13"
+ "@babel/template" "^7.12.13"
+ "@babel/types" "^7.14.2"
+
+"@babel/helper-get-function-arity@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
+ integrity sha1-vGNFHUA6OzCCuX4diz/lvUCR5YM=
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-hoist-variables@^7.13.0":
+ version "7.13.16"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz#1b1651249e94b51f8f0d33439843e33e39775b30"
+ integrity sha1-GxZRJJ6UtR+PDTNDmEPjPjl3WzA=
+ dependencies:
+ "@babel/traverse" "^7.13.15"
+ "@babel/types" "^7.13.16"
+
+"@babel/helper-member-expression-to-functions@^7.13.12":
+ version "7.13.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
+ integrity sha1-3+No8m1CagcpnY1lE4IXaCFubXI=
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12":
+ version "7.13.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
+ integrity sha1-xqNppvNiHLJdoBQHhoTakZa2GXc=
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5"
+ integrity sha1-rBzDDuR7lF4+DE2xL6DFOJUJ3+U=
+ dependencies:
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-replace-supers" "^7.13.12"
+ "@babel/helper-simple-access" "^7.13.12"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ "@babel/helper-validator-identifier" "^7.14.0"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.2"
+
+"@babel/helper-optimise-call-expression@^7.0.0", "@babel/helper-optimise-call-expression@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
+ integrity sha1-XALRcbTIYVsecWP4iMHIHDCiquo=
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
+ integrity sha1-gGUmzhJa7QM3O8QWqCgyHjpqM68=
+
+"@babel/helper-remap-async-to-generator@^7.13.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209"
+ integrity sha1-N2p2DZ97SyB3qd0Fqpw5J8rbIgk=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-wrap-function" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.4":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz#b2ab16875deecfff3ddfcd539bc315f72998d836"
+ integrity sha1-sqsWh13uz/89381Tm8MV9ymY2DY=
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/traverse" "^7.14.2"
+ "@babel/types" "^7.14.4"
+
+"@babel/helper-simple-access@^7.13.12":
+ version "7.13.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
+ integrity sha1-3WxTivthgZ0gWgEsMXkqOcel6vY=
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
+ version "7.12.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
+ integrity sha1-Ri3GOn5DWt6EaDhcY9K4TM5LPL8=
+ dependencies:
+ "@babel/types" "^7.12.1"
+
+"@babel/helper-split-export-declaration@^7.0.0", "@babel/helper-split-export-declaration@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
+ integrity sha1-6UML4AuvPoiw4T5vnU6vITY3KwU=
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
+ integrity sha1-0mytikfGUoaxXfFUcxml0Lzycog=
+
+"@babel/helper-validator-option@^7.12.17":
+ version "7.12.17"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
+ integrity sha1-0fvwEuGnm37rv9xtJwuq+NnrmDE=
+
+"@babel/helper-wrap-function@^7.13.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4"
+ integrity sha1-vbXGb9qFJuwjWriUrVOhI1x5/MQ=
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/helpers@^7.14.0", "@babel/helpers@^7.2.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
+ integrity sha1-6ptr6UeKE9b5Ydu182v3Xi87j2I=
+ dependencies:
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.14.0"
+ "@babel/types" "^7.14.0"
+
+"@babel/highlight@^7.0.0", "@babel/highlight@^7.12.13":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
+ integrity sha1-MZfjdXEe9r+DTmfQ2uyI5PRhE88=
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.14.0"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
+"@babel/parser@^7.12.13", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3", "@babel/parser@^7.2.2", "@babel/parser@^7.7.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/parser/-/parser-7.14.4.tgz#a5c560d6db6cd8e6ed342368dea8039232cbab18"
+ integrity sha1-pcVg1tts2ObtNCNo3qgDkjLLqxg=
+
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
+ version "7.13.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
+ integrity sha1-o0hNhNC1SfP8kWuZ7keD8m+rrSo=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
+
+"@babel/plugin-proposal-async-generator-functions@^7.14.2", "@babel/plugin-proposal-async-generator-functions@^7.2.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz#3a2085abbf5d5f962d480dbc81347385ed62eb1e"
+ integrity sha1-OiCFq79dX5YtSA28gTRzhe1i6x4=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+
+"@babel/plugin-proposal-class-properties@7.3.0":
+ version "7.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.0.tgz#272636bc0fa19a0bc46e601ec78136a173ea36cd"
+ integrity sha1-JyY2vA+hmgvEbmAex4E2oXPqNs0=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.3.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.7.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
+ integrity sha1-FGN2AAuU79AB5XpAqIpSWvqrnzc=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-proposal-class-static-block@^7.14.3":
+ version "7.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz#5a527e2cae4a4753119c3a3e7f64ecae8ccf1360"
+ integrity sha1-WlJ+LK5KR1MRnDo+f2TsrozPE2A=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.14.3"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
+
+"@babel/plugin-proposal-decorators@7.3.0":
+ version "7.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.3.0.tgz#637ba075fa780b1f75d08186e8fb4357d03a72a7"
+ integrity sha1-Y3ugdfp4Cx910IGG6PtDV9A6cqc=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.3.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-syntax-decorators" "^7.2.0"
+
+"@babel/plugin-proposal-dynamic-import@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz#01ebabd7c381cff231fa43e302939a9de5be9d9f"
+ integrity sha1-Aeur18OBz/Ix+kPjApOaneW+nZ8=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+
+"@babel/plugin-proposal-export-namespace-from@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791"
+ integrity sha1-YlQvlKqc6Pbbp57saYryIRIlN5E=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-json-strings@^7.14.2", "@babel/plugin-proposal-json-strings@^7.2.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz#830b4e2426a782e8b2878fbfe2cba85b70cbf98c"
+ integrity sha1-gwtOJCanguiyh4+/4suoW3DL+Yw=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+
+"@babel/plugin-proposal-logical-assignment-operators@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz#222348c080a1678e0e74ea63fe76f275882d1fd7"
+ integrity sha1-IiNIwIChZ44OdOpj/nbydYgtH9c=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz#425b11dc62fc26939a2ab42cbba680bdf5734546"
+ integrity sha1-QlsR3GL8JpOaKrQsu6aAvfVzRUY=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-proposal-numeric-separator@^7.14.2":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e"
+ integrity sha1-grTMBlcRQ/r1BiYQSzNd1xuqT54=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-proposal-object-rest-spread@7.3.2":
+ version "7.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz#6d1859882d4d778578e41f82cc5d7bf3d5daf6c1"
+ integrity sha1-bRhZiC1Nd4V45B+CzF1789Xa9sE=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
+
+"@babel/plugin-proposal-object-rest-spread@^7.14.4", "@babel/plugin-proposal-object-rest-spread@^7.3.1", "@babel/plugin-proposal-object-rest-spread@^7.6.2":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz#0e2b4de419915dc0b409378e829412e2031777c4"
+ integrity sha1-DitN5BmRXcC0CTeOgpQS4gMXd8Q=
+ dependencies:
+ "@babel/compat-data" "^7.14.4"
+ "@babel/helper-compilation-targets" "^7.14.4"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.14.2"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.14.2", "@babel/plugin-proposal-optional-catch-binding@^7.2.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz#150d4e58e525b16a9a1431bd5326c4eed870d717"
+ integrity sha1-FQ1OWOUlsWqaFDG9UybE7thw1xc=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.14.2", "@babel/plugin-proposal-optional-chaining@^7.7.5":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz#df8171a8b9c43ebf4c1dabe6311b432d83e1b34e"
+ integrity sha1-34FxqLnEPr9MHavmMRtDLYPhs04=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+"@babel/plugin-proposal-private-methods@^7.13.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
+ integrity sha1-BL1MbUD25rv6L1fi2AlLrZAO94c=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-proposal-private-property-in-object@^7.14.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz#b1a1f2030586b9d3489cc26179d2eb5883277636"
+ integrity sha1-saHyAwWGudNInMJhedLrWIMndjY=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-create-class-features-plugin" "^7.14.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.0"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.2.0", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
+ integrity sha1-vr3lEzm+gpwXqqrO0YZB3rYrObo=
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-async-generators@^7.2.0", "@babel/plugin-syntax-async-generators@^7.8.4":
+ version "7.8.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+ integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+ integrity sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-class-static-block@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz#8e3d674b0613e67975ceac2776c97b60cafc5c9c"
+ integrity sha1-jj1nSwYT5nl1zqwndsl7YMr8XJw=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-decorators@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz#fac829bf3c7ef4a1bc916257b403e58c6bdaf648"
+ integrity sha1-+sgpvzx+9KG8kWJXtAPljGva9kg=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-dynamic-import@7.2.0":
+ version "7.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
+ integrity sha1-acFZ/69JmBIhYa2OvF5tH1XfhhI=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+ integrity sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha1-AolkqbqA28CUyRXEh618TnpmRlo=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-flow@^7.12.13", "@babel/plugin-syntax-flow@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz#5df9962503c0a9c918381c929d51d4d6949e7e86"
+ integrity sha1-XfmWJQPAqckYOBySnVHU1pSefoY=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-json-strings@^7.2.0", "@babel/plugin-syntax-json-strings@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+ integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-jsx@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15"
+ integrity sha1-BE+4HrrWaY/mLEeIdVdby7m3DxU=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
+ version "7.10.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ integrity sha1-ypHvRjA1MESLkGZSusLp/plB9pk=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+ integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.10.4":
+ version "7.10.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@^7.2.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+ integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.2.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+ integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.3":
+ version "7.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+ integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-private-property-in-object@^7.14.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz#762a4babec61176fec6c88480dec40372b140c0b"
+ integrity sha1-dipLq+xhF2/sbIhIDexANysUDAs=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-syntax-top-level-await@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
+ integrity sha1-xfD6biSfW3OXJ/kjVAz3qAYTAXg=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-typescript@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474"
+ integrity sha1-nf8RHKZBVM7w9NxSz4Q9nxLORHQ=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-arrow-functions@^7.13.0", "@babel/plugin-transform-arrow-functions@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae"
+ integrity sha1-EKWb661S1jegJ6+mkujVzv9ePa4=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-async-to-generator@^7.13.0", "@babel/plugin-transform-async-to-generator@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f"
+ integrity sha1-jhEr9ncbgr8el05eJoBsXJmqUW8=
+ dependencies:
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
+
+"@babel/plugin-transform-block-scoped-functions@^7.12.13", "@babel/plugin-transform-block-scoped-functions@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
+ integrity sha1-qb8YNvKjm062zwmWdzneKepL9MQ=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-block-scoping@^7.14.4", "@babel/plugin-transform-block-scoping@^7.2.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.4.tgz#caf140b0b2e2462c509553d140e6d0abefb61ed8"
+ integrity sha1-yvFAsLLiRixQlVPRQObQq++2Htg=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-classes@7.2.2":
+ version "7.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953"
+ integrity sha1-bJBULyEO6XWqKqjIta9/pzoSaVM=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.0.0"
+ "@babel/helper-define-map" "^7.1.0"
+ "@babel/helper-function-name" "^7.1.0"
+ "@babel/helper-optimise-call-expression" "^7.0.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/helper-replace-supers" "^7.1.0"
+ "@babel/helper-split-export-declaration" "^7.0.0"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-classes@^7.14.4", "@babel/plugin-transform-classes@^7.2.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.4.tgz#a83c15503fc71a0f99e876fdce7dadbc6575ec3a"
+ integrity sha1-qDwVUD/HGg+Z6Hb9zn2tvGV17Do=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-function-name" "^7.14.2"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-replace-supers" "^7.14.4"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.13.0", "@babel/plugin-transform-computed-properties@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed"
+ integrity sha1-hFxui5u1U3ax+guS7wvcjqBmRO0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-destructuring@7.3.2":
+ version "7.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.3.2.tgz#f2f5520be055ba1c38c41c0e094d8a461dd78f2d"
+ integrity sha1-8vVSC+BVuhw4xBwOCU2KRh3Xjy0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-transform-destructuring@^7.14.4", "@babel/plugin-transform-destructuring@^7.2.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.4.tgz#acbec502e9951f30f4441eaca1d2f29efade59ed"
+ integrity sha1-rL7FAumVHzD0RB6sodLynvreWe0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.2.0", "@babel/plugin-transform-dotall-regex@^7.4.4":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
+ integrity sha1-PxYBzCmQW/y2f1ORDxl66v67Ja0=
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-duplicate-keys@^7.12.13", "@babel/plugin-transform-duplicate-keys@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
+ integrity sha1-bwa4eouAP9ko5UuBwljwoAM5BN4=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-exponentiation-operator@^7.12.13", "@babel/plugin-transform-exponentiation-operator@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
+ integrity sha1-TVI5C5onPmUeSrpq7knvQOgM0KE=
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-flow-strip-types@7.2.3":
+ version "7.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.3.tgz#e3ac2a594948454e7431c7db33e1d02d51b5cd69"
+ integrity sha1-46wqWUlIRU50McfbM+HQLVG1zWk=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-syntax-flow" "^7.2.0"
+
+"@babel/plugin-transform-flow-strip-types@^7.13.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3"
+ integrity sha1-WBd6SMIJlx6CNOmZBstr0RIq3dM=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-flow" "^7.12.13"
+
+"@babel/plugin-transform-for-of@^7.13.0", "@babel/plugin-transform-for-of@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062"
+ integrity sha1-x5n4gagJGsJrVIZ6hFw+l9JpYGI=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-function-name@^7.12.13", "@babel/plugin-transform-function-name@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
+ integrity sha1-uwJEUvmq7YYdN0yOeiQlLOOlAFE=
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-literals@^7.12.13", "@babel/plugin-transform-literals@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
+ integrity sha1-LKRbr+SoIBl88xV5Sk0mVg/kvbk=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-member-expression-literals@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
+ integrity sha1-X/pmzVm54ZExTJ8fgDuTjowIHkA=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-modules-amd@^7.14.2", "@babel/plugin-transform-modules-amd@^7.2.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz#6622806fe1a7c07a1388444222ef9535f2ca17b0"
+ integrity sha1-ZiKAb+GnwHoTiERCIu+VNfLKF7A=
+ dependencies:
+ "@babel/helper-module-transforms" "^7.14.2"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-commonjs@^7.14.0", "@babel/plugin-transform-modules-commonjs@^7.2.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz#52bc199cb581e0992edba0f0f80356467587f161"
+ integrity sha1-UrwZnLWB4Jku26Dw+ANWRnWH8WE=
+ dependencies:
+ "@babel/helper-module-transforms" "^7.14.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-simple-access" "^7.13.12"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-systemjs@^7.13.8", "@babel/plugin-transform-modules-systemjs@^7.2.0":
+ version "7.13.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
+ integrity sha1-bQZu4r/zx7PWC/KN7Baa2ZODGuM=
+ dependencies:
+ "@babel/helper-hoist-variables" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-identifier" "^7.12.11"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-umd@^7.14.0", "@babel/plugin-transform-modules-umd@^7.2.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz#2f8179d1bbc9263665ce4a65f305526b2ea8ac34"
+ integrity sha1-L4F50bvJJjZlzkpl8wVSay6orDQ=
+ dependencies:
+ "@babel/helper-module-transforms" "^7.14.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13", "@babel/plugin-transform-named-capturing-groups-regex@^7.3.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
+ integrity sha1-IhNyWl9bu+NktQw7pZmMlZnFydk=
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+
+"@babel/plugin-transform-new-target@^7.0.0", "@babel/plugin-transform-new-target@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
+ integrity sha1-4i2MOvJLFQ3VKMvW5oXnmb8cNRw=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-object-super@^7.12.13", "@babel/plugin-transform-object-super@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
+ integrity sha1-tEFqLWO4974xTz00m9VanBtRcfc=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-replace-supers" "^7.12.13"
+
+"@babel/plugin-transform-parameters@^7.14.2", "@babel/plugin-transform-parameters@^7.2.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz#e4290f72e0e9e831000d066427c4667098decc31"
+ integrity sha1-5CkPcuDp6DEADQZkJ8RmcJjezDE=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-property-literals@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
+ integrity sha1-TmqeN4ZNjxs7wOLc57+IV9uLGoE=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-constant-elements@7.2.0":
+ version "7.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.2.0.tgz#ed602dc2d8bff2f0cb1a5ce29263dbdec40779f7"
+ integrity sha1-7WAtwti/8vDLGlzikmPb3sQHefc=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.0.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0", "@babel/plugin-transform-react-constant-elements@^7.6.3":
+ version "7.13.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.13.13.tgz#0208b1d942bf939cd4f7aa5b255d42602aa4a920"
+ integrity sha1-Agix2UK/k5zU96pbJV1CYCqkqSA=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-react-display-name@7.2.0":
+ version "7.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0"
+ integrity sha1-6/rth4NM6NxCeWCaTwwyTBVuPrA=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.12.13":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.2.tgz#2e854544d42ab3bb9c21f84e153d62e800fbd593"
+ integrity sha1-LoVFRNQqs7ucIfhOFT1i6AD71ZM=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-react-jsx-development@^7.12.17":
+ version "7.12.17"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447"
+ integrity sha1-9RDA+nzXI0FTU5+aNiztQaXKFEc=
+ dependencies:
+ "@babel/plugin-transform-react-jsx" "^7.12.17"
+
+"@babel/plugin-transform-react-jsx-self@^7.0.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz#422d99d122d592acab9c35ea22a6cfd9bf189f60"
+ integrity sha1-Qi2Z0SLVkqyrnDXqIqbP2b8Yn2A=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-jsx-source@^7.0.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.2.tgz#2620b57e7de775c0687f65d464026d15812941da"
+ integrity sha1-JiC1fn3ndcBof2XUZAJtFYEpQdo=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.13.12":
+ version "7.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.3.tgz#0e26597805cf0862da735f264550933c38babb66"
+ integrity sha1-DiZZeAXPCGLac18mRVCTPDi6u2Y=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-jsx" "^7.12.13"
+ "@babel/types" "^7.14.2"
+
+"@babel/plugin-transform-react-pure-annotations@^7.12.1":
+ version "7.12.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42"
+ integrity sha1-BdRvCrTRM5rFmt8goUYskbN6GkI=
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.13.15":
+ version "7.13.15"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39"
+ integrity sha1-5esolFv4tlY+f4GJRflmqNKZfzk=
+ dependencies:
+ regenerator-transform "^0.14.2"
+
+"@babel/plugin-transform-reserved-words@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
+ integrity sha1-fZmI1PBuD+aX6h2YAxiKoYtHJpU=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-runtime@7.2.0":
+ version "7.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz#566bc43f7d0aedc880eaddbd29168d0f248966ea"
+ integrity sha1-VmvEP30K7ciA6t29KRaNDySJZuo=
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+ resolve "^1.8.1"
+ semver "^5.5.1"
+
+"@babel/plugin-transform-shorthand-properties@^7.12.13", "@babel/plugin-transform-shorthand-properties@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
+ integrity sha1-23VXMrcMU51QTGOQ2c6Q/mSv960=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-spread@^7.13.0", "@babel/plugin-transform-spread@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
+ integrity sha1-hIh3EOJzwYFaznrkWfb0Kl0x1f0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+
+"@babel/plugin-transform-sticky-regex@^7.12.13", "@babel/plugin-transform-sticky-regex@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
+ integrity sha1-dg/9k2+s5z+GCuZG+4bugvPQbR8=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-template-literals@^7.13.0", "@babel/plugin-transform-template-literals@^7.2.0":
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d"
+ integrity sha1-o2BJEnl3rZRDje50Q1mNHO/fQJ0=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-typeof-symbol@^7.12.13", "@babel/plugin-transform-typeof-symbol@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
+ integrity sha1-eF3Weh8upXnZwr5yLejITLhfWn8=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-typescript@^7.1.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.4.tgz#1c48829fa6d5f2de646060cd08abb6cda4b521a7"
+ integrity sha1-HEiCn6bV8t5kYGDNCKu2zaS1Iac=
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.14.4"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-typescript" "^7.12.13"
+
+"@babel/plugin-transform-unicode-escapes@^7.12.13":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
+ integrity sha1-hAztO4FtO1En3R0S3O3F3q0aXnQ=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-unicode-regex@^7.12.13", "@babel/plugin-transform-unicode-regex@^7.2.0":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
+ integrity sha1-tSUhaFgE4VWxIC6D/BiNNLtw9aw=
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/preset-env@7.3.1":
+ version "7.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-env/-/preset-env-7.3.1.tgz#389e8ca6b17ae67aaf9a2111665030be923515db"
+ integrity sha1-OJ6MprF65nqvmiERZlAwvpI1Fds=
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-proposal-async-generator-functions" "^7.2.0"
+ "@babel/plugin-proposal-json-strings" "^7.2.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.3.1"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.2.0"
+ "@babel/plugin-syntax-async-generators" "^7.2.0"
+ "@babel/plugin-syntax-json-strings" "^7.2.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
+ "@babel/plugin-transform-arrow-functions" "^7.2.0"
+ "@babel/plugin-transform-async-to-generator" "^7.2.0"
+ "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
+ "@babel/plugin-transform-block-scoping" "^7.2.0"
+ "@babel/plugin-transform-classes" "^7.2.0"
+ "@babel/plugin-transform-computed-properties" "^7.2.0"
+ "@babel/plugin-transform-destructuring" "^7.2.0"
+ "@babel/plugin-transform-dotall-regex" "^7.2.0"
+ "@babel/plugin-transform-duplicate-keys" "^7.2.0"
+ "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
+ "@babel/plugin-transform-for-of" "^7.2.0"
+ "@babel/plugin-transform-function-name" "^7.2.0"
+ "@babel/plugin-transform-literals" "^7.2.0"
+ "@babel/plugin-transform-modules-amd" "^7.2.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.2.0"
+ "@babel/plugin-transform-modules-systemjs" "^7.2.0"
+ "@babel/plugin-transform-modules-umd" "^7.2.0"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.3.0"
+ "@babel/plugin-transform-new-target" "^7.0.0"
+ "@babel/plugin-transform-object-super" "^7.2.0"
+ "@babel/plugin-transform-parameters" "^7.2.0"
+ "@babel/plugin-transform-regenerator" "^7.0.0"
+ "@babel/plugin-transform-shorthand-properties" "^7.2.0"
+ "@babel/plugin-transform-spread" "^7.2.0"
+ "@babel/plugin-transform-sticky-regex" "^7.2.0"
+ "@babel/plugin-transform-template-literals" "^7.2.0"
+ "@babel/plugin-transform-typeof-symbol" "^7.2.0"
+ "@babel/plugin-transform-unicode-regex" "^7.2.0"
+ browserslist "^4.3.4"
+ invariant "^2.2.2"
+ js-levenshtein "^1.1.3"
+ semver "^5.3.0"
+
+"@babel/preset-env@^7.4.5":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-env/-/preset-env-7.14.4.tgz#73fc3228c59727e5e974319156f304f0d6685a2d"
+ integrity sha1-c/wyKMWXJ+XpdDGRVvME8NZoWi0=
+ dependencies:
+ "@babel/compat-data" "^7.14.4"
+ "@babel/helper-compilation-targets" "^7.14.4"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
+ "@babel/plugin-proposal-async-generator-functions" "^7.14.2"
+ "@babel/plugin-proposal-class-properties" "^7.13.0"
+ "@babel/plugin-proposal-class-static-block" "^7.14.3"
+ "@babel/plugin-proposal-dynamic-import" "^7.14.2"
+ "@babel/plugin-proposal-export-namespace-from" "^7.14.2"
+ "@babel/plugin-proposal-json-strings" "^7.14.2"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.14.2"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2"
+ "@babel/plugin-proposal-numeric-separator" "^7.14.2"
+ "@babel/plugin-proposal-object-rest-spread" "^7.14.4"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.14.2"
+ "@babel/plugin-proposal-optional-chaining" "^7.14.2"
+ "@babel/plugin-proposal-private-methods" "^7.13.0"
+ "@babel/plugin-proposal-private-property-in-object" "^7.14.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+ "@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/plugin-syntax-private-property-in-object" "^7.14.0"
+ "@babel/plugin-syntax-top-level-await" "^7.12.13"
+ "@babel/plugin-transform-arrow-functions" "^7.13.0"
+ "@babel/plugin-transform-async-to-generator" "^7.13.0"
+ "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
+ "@babel/plugin-transform-block-scoping" "^7.14.4"
+ "@babel/plugin-transform-classes" "^7.14.4"
+ "@babel/plugin-transform-computed-properties" "^7.13.0"
+ "@babel/plugin-transform-destructuring" "^7.14.4"
+ "@babel/plugin-transform-dotall-regex" "^7.12.13"
+ "@babel/plugin-transform-duplicate-keys" "^7.12.13"
+ "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
+ "@babel/plugin-transform-for-of" "^7.13.0"
+ "@babel/plugin-transform-function-name" "^7.12.13"
+ "@babel/plugin-transform-literals" "^7.12.13"
+ "@babel/plugin-transform-member-expression-literals" "^7.12.13"
+ "@babel/plugin-transform-modules-amd" "^7.14.2"
+ "@babel/plugin-transform-modules-commonjs" "^7.14.0"
+ "@babel/plugin-transform-modules-systemjs" "^7.13.8"
+ "@babel/plugin-transform-modules-umd" "^7.14.0"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
+ "@babel/plugin-transform-new-target" "^7.12.13"
+ "@babel/plugin-transform-object-super" "^7.12.13"
+ "@babel/plugin-transform-parameters" "^7.14.2"
+ "@babel/plugin-transform-property-literals" "^7.12.13"
+ "@babel/plugin-transform-regenerator" "^7.13.15"
+ "@babel/plugin-transform-reserved-words" "^7.12.13"
+ "@babel/plugin-transform-shorthand-properties" "^7.12.13"
+ "@babel/plugin-transform-spread" "^7.13.0"
+ "@babel/plugin-transform-sticky-regex" "^7.12.13"
+ "@babel/plugin-transform-template-literals" "^7.13.0"
+ "@babel/plugin-transform-typeof-symbol" "^7.12.13"
+ "@babel/plugin-transform-unicode-escapes" "^7.12.13"
+ "@babel/plugin-transform-unicode-regex" "^7.12.13"
+ "@babel/preset-modules" "^0.1.4"
+ "@babel/types" "^7.14.4"
+ babel-plugin-polyfill-corejs2 "^0.2.0"
+ babel-plugin-polyfill-corejs3 "^0.2.0"
+ babel-plugin-polyfill-regenerator "^0.2.0"
+ core-js-compat "^3.9.0"
+ semver "^6.3.0"
+
+"@babel/preset-flow@^7.0.0":
+ version "7.13.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-flow/-/preset-flow-7.13.13.tgz#a61a1c149b3f77589d795287744393444d5cdd9e"
+ integrity sha1-phocFJs/d1ideVKHdEOTRE1c3Z4=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-flow-strip-types" "^7.13.0"
+
+"@babel/preset-modules@^0.1.4":
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
+ integrity sha1-Ni8raMZihClw/bXiVP/I/BwuQV4=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
+ "@babel/plugin-transform-dotall-regex" "^7.4.4"
+ "@babel/types" "^7.4.4"
+ esutils "^2.0.2"
+
+"@babel/preset-react@7.0.0":
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
+ integrity sha1-6GtLPZlDPHs+npF0fiZTlYvGs8A=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-transform-react-display-name" "^7.0.0"
+ "@babel/plugin-transform-react-jsx" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-self" "^7.0.0"
+ "@babel/plugin-transform-react-jsx-source" "^7.0.0"
+
+"@babel/preset-react@^7.0.0":
+ version "7.13.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-react/-/preset-react-7.13.13.tgz#fa6895a96c50763fe693f9148568458d5a839761"
+ integrity sha1-+miVqWxQdj/mk/kUhWhFjVqDl2E=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-react-display-name" "^7.12.13"
+ "@babel/plugin-transform-react-jsx" "^7.13.12"
+ "@babel/plugin-transform-react-jsx-development" "^7.12.17"
+ "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
+
+"@babel/preset-typescript@7.1.0":
+ version "7.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/preset-typescript/-/preset-typescript-7.1.0.tgz#49ad6e2084ff0bfb5f1f7fb3b5e76c434d442c7f"
+ integrity sha1-Sa1uIIT/C/tfH3+ztedsQ01ELH8=
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-transform-typescript" "^7.1.0"
+
+"@babel/runtime-corejs2@^7.0.0":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/runtime-corejs2/-/runtime-corejs2-7.14.0.tgz#5519b92ccc819bd3d0a1ecb25ab3cb5a775485f8"
+ integrity sha1-VRm5LMyBm9PQoeyyWrPLWndUhfg=
+ dependencies:
+ core-js "^2.6.5"
+ regenerator-runtime "^0.13.4"
+
+"@babel/runtime@7.3.1":
+ version "7.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/runtime/-/runtime-7.3.1.tgz#574b03e8e8a9898eaf4a872a92ea20b7846f6f2a"
+ integrity sha1-V0sD6OipiY6vSocqkuogt4Rvbyo=
+ dependencies:
+ regenerator-runtime "^0.12.0"
+
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+ version "7.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
+ integrity sha1-RnlLwgthLF915i3QceJN/ZXxy+Y=
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
+"@babel/template@^7.12.13", "@babel/template@^7.2.2":
+ version "7.12.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
+ integrity sha1-UwJlvooliduzdSOETFvLVZR/syc=
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/parser" "^7.12.13"
+ "@babel/types" "^7.12.13"
+
+"@babel/traverse@^7.1.6", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2", "@babel/traverse@^7.2.2", "@babel/traverse@^7.7.0":
+ version "7.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
+ integrity sha1-kgGo2RJyOoMcJnnH678v4UFtdls=
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/generator" "^7.14.2"
+ "@babel/helper-function-name" "^7.14.2"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ "@babel/parser" "^7.14.2"
+ "@babel/types" "^7.14.2"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
+"@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.14.4", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
+ version "7.14.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@babel/types/-/types-7.14.4.tgz#bfd6980108168593b38b3eb48a24aa026b919bc0"
+ integrity sha1-v9aYAQgWhZOziz60iiSqAmuRm8A=
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.14.0"
+ to-fast-properties "^2.0.0"
+
+"@bcoe/v8-coverage@^0.2.3":
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
+ integrity sha1-daLotRy3WKdVPWgEpZMteqznXDk=
+
+"@colony/purser-core@2.2.1":
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@colony/purser-core/-/purser-core-2.2.1.tgz#519f3f354279c813030ff0b00d9c893e1f4afccd"
+ integrity sha1-UZ8/NUJ5yBMDD/CwDZyJPh9K/M0=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ bn.js "^5.0.0"
+ ethereumjs-common "^1.3.0"
+ ethereumjs-util "^6.0.0"
+ ethers "^4.0.33"
+ hdkey "^1.1.0"
+
+"@colony/purser-metamask@^2.2.0":
+ version "2.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@colony/purser-metamask/-/purser-metamask-2.4.1.tgz#131eb5cf178f92c4164c9650c156e55b829a6b22"
+ integrity sha1-Ex61zxePksQWTJZQwVblW4KaayI=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ "@colony/purser-core" "2.2.1"
+ await-transaction-mined "^1.0.12"
+ bn.js "^5.0.0"
+ ethereumjs-tx "^2.1.0"
+ lodash.isequal "^4.5.0"
+ web3 "1.0.0-beta.36"
+
+"@cypress/listr-verbose-renderer@0.4.1":
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a"
+ integrity sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo=
+ dependencies:
+ chalk "^1.1.3"
+ cli-cursor "^1.0.2"
+ date-fns "^1.27.2"
+ figures "^1.7.0"
+
+"@cypress/xvfb@1.1.3":
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@cypress/xvfb/-/xvfb-1.1.3.tgz#6294a7d1feb751f12302248f2089fc534c4acb7f"
+ integrity sha1-YpSn0f63UfEjAiSPIIn8U0xKy38=
+ dependencies:
+ lodash.once "^4.1.1"
+
+"@emotion/cache@^10.0.27":
+ version "10.0.29"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0"
+ integrity sha1-h+fmT0EsBgEC1Yn+fG3AQub50eA=
+ dependencies:
+ "@emotion/sheet" "0.9.4"
+ "@emotion/stylis" "0.8.5"
+ "@emotion/utils" "0.11.3"
+ "@emotion/weak-memoize" "0.2.5"
+
+"@emotion/core@^10.0.20", "@emotion/core@^10.0.22":
+ version "10.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
+ integrity sha1-yVbBNl8vJIGWAGS8uMRzLl+2EsM=
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/cache" "^10.0.27"
+ "@emotion/css" "^10.0.27"
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/sheet" "0.9.4"
+ "@emotion/utils" "0.11.3"
+
+"@emotion/css@^10.0.27":
+ version "10.0.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c"
+ integrity sha1-OnRYGY+767U7AbK4f2Tl4hJB4Uw=
+ dependencies:
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/utils" "0.11.3"
+ babel-plugin-emotion "^10.0.27"
+
+"@emotion/hash@0.8.0":
+ version "0.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
+ integrity sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM=
+
+"@emotion/hash@^0.6.2":
+ version "0.6.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/hash/-/hash-0.6.6.tgz#62266c5f0eac6941fece302abad69f2ee7e25e44"
+ integrity sha1-YiZsXw6saUH+zjAqutafLufiXkQ=
+
+"@emotion/is-prop-valid@0.8.8":
+ version "0.8.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
+ integrity sha1-2yixxDaKJZtgqXMR1qlS1P0BrBo=
+ dependencies:
+ "@emotion/memoize" "0.7.4"
+
+"@emotion/is-prop-valid@^0.6.1":
+ version "0.6.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz#68ad02831da41213a2089d2cab4e8ac8b30cbd85"
+ integrity sha1-aK0Cgx2kEhOiCJ0sq06KyLMMvYU=
+ dependencies:
+ "@emotion/memoize" "^0.6.6"
+
+"@emotion/memoize@0.7.4":
+ version "0.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
+ integrity sha1-Gb8PWvGRSREcQNmLsM+CEZ9dnus=
+
+"@emotion/memoize@^0.6.1", "@emotion/memoize@^0.6.6":
+ version "0.6.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/memoize/-/memoize-0.6.6.tgz#004b98298d04c7ca3b4f50ca2035d4f60d2eed1b"
+ integrity sha1-AEuYKY0Ex8o7T1DKIDXU9g0u7Rs=
+
+"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
+ version "0.11.16"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad"
+ integrity sha1-3uBfnpatL7JaUga211my0e0zea0=
+ dependencies:
+ "@emotion/hash" "0.8.0"
+ "@emotion/memoize" "0.7.4"
+ "@emotion/unitless" "0.7.5"
+ "@emotion/utils" "0.11.3"
+ csstype "^2.5.7"
+
+"@emotion/sheet@0.9.4":
+ version "0.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5"
+ integrity sha1-iUN0vqOeww9Im7/DQ4GSuXdNMuU=
+
+"@emotion/styled-base@^10.0.27":
+ version "10.0.31"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a"
+ integrity sha1-lAlX7gqhXGl0rcfUlP8ZdlovdCo=
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/is-prop-valid" "0.8.8"
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/utils" "0.11.3"
+
+"@emotion/styled@^10.0.17", "@emotion/styled@^10.0.23":
+ version "10.0.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf"
+ integrity sha1-Estn6R9610MeGHWx2DqUuBQTPq8=
+ dependencies:
+ "@emotion/styled-base" "^10.0.27"
+ babel-plugin-emotion "^10.0.27"
+
+"@emotion/stylis@0.8.5":
+ version "0.8.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
+ integrity sha1-3qyzib1u530ef8rMzp4WxcfnjgQ=
+
+"@emotion/stylis@^0.7.0":
+ version "0.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/stylis/-/stylis-0.7.1.tgz#50f63225e712d99e2b2b39c19c70fff023793ca5"
+ integrity sha1-UPYyJecS2Z4rKznBnHD/8CN5PKU=
+
+"@emotion/unitless@0.7.5":
+ version "0.7.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
+ integrity sha1-dyESkcGQCnALinjPr9oxYNdpSe0=
+
+"@emotion/unitless@^0.6.2":
+ version "0.6.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/unitless/-/unitless-0.6.7.tgz#53e9f1892f725b194d5e6a1684a7b394df592397"
+ integrity sha1-U+nxiS9yWxlNXmoWhKezlN9ZI5c=
+
+"@emotion/utils@0.11.3":
+ version "0.11.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924"
+ integrity sha1-p1mGOGe++n5YNADTImUqP0SCCSQ=
+
+"@emotion/weak-memoize@0.2.5":
+ version "0.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
+ integrity sha1-ju2YLi7m9/TkTCU+EpYpgHke/UY=
+
+"@hapi/hoek@^9.0.0":
+ version "9.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@hapi/hoek/-/hoek-9.2.0.tgz#f3933a44e365864f4dad5db94158106d511e8131"
+ integrity sha1-85M6RONlhk9NrV25QVgQbVEegTE=
+
+"@hapi/topo@^5.0.0":
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@hapi/topo/-/topo-5.0.0.tgz#c19af8577fa393a06e9c77b60995af959be721e7"
+ integrity sha1-wZr4V3+jk6BunHe2CZWvlZvnIec=
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@hypnosphi/create-react-context@^0.3.1":
+ version "0.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6"
+ integrity sha1-+L/r3HZl9dQmy6N1Pg6cfTFU18Y=
+ dependencies:
+ gud "^1.0.0"
+ warning "^4.0.3"
+
+"@istanbuljs/schema@^0.1.2":
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
+ integrity sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=
+
+"@mrmlnc/readdir-enhanced@^2.2.1":
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
+ integrity sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=
+ dependencies:
+ call-me-maybe "^1.0.1"
+ glob-to-regexp "^0.3.0"
+
+"@nodelib/fs.stat@^1.1.2":
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
+ integrity sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=
+
+"@reach/router@^1.2.1":
+ version "1.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c"
+ integrity sha1-0ldLGTcKcMgEgO2R89qEATbRD4w=
+ dependencies:
+ create-react-context "0.3.0"
+ invariant "^2.2.3"
+ prop-types "^15.6.1"
+ react-lifecycles-compat "^3.0.4"
+
+"@salte-auth/salte-auth@^2.14.2":
+ version "2.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@salte-auth/salte-auth/-/salte-auth-2.14.2.tgz#40f45f056cde507153c383a7b7a3955e0762e178"
+ integrity sha1-QPRfBWzeUHFTw4Ont6OVXgdi4Xg=
+
+"@sideway/address@^4.1.0":
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@sideway/address/-/address-4.1.2.tgz#811b84333a335739d3969cfc434736268170cad1"
+ integrity sha1-gRuEMzozVznTlpz8Q0c2JoFwytE=
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@sideway/formula@^3.0.0":
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c"
+ integrity sha1-/hWK7jLmvV3oUES+YVvAhHigoTw=
+
+"@sideway/pinpoint@^2.0.0":
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df"
+ integrity sha1-z/j/rcNyrSn9P3gneusp5jLMcN8=
+
+"@sinonjs/commons@^1.7.0":
+ version "1.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
+ integrity sha1-OALd0hpQqUm2ch3dcto25n5/Gy0=
+ dependencies:
+ type-detect "4.0.8"
+
+"@sinonjs/fake-timers@^7.1.0":
+ version "7.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz#2524eae70c4910edccf99b2f4e6efc5894aff7b5"
+ integrity sha1-JSTq5wxJEO3M+ZsvTm78WJSv97U=
+ dependencies:
+ "@sinonjs/commons" "^1.7.0"
+
+"@storybook/addon-actions@^5.0.8":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/addon-actions/-/addon-actions-5.3.21.tgz#16eed3eb24996adfcbf70bd476a261324d6de593"
+ integrity sha1-Fu7T6ySZat/L9wvUdqJhMk1t5ZM=
+ dependencies:
+ "@storybook/addons" "5.3.21"
+ "@storybook/api" "5.3.21"
+ "@storybook/client-api" "5.3.21"
+ "@storybook/components" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/theming" "5.3.21"
+ core-js "^3.0.1"
+ fast-deep-equal "^2.0.1"
+ global "^4.3.2"
+ polished "^3.3.1"
+ prop-types "^15.7.2"
+ react "^16.8.3"
+ react-inspector "^4.0.0"
+ uuid "^3.3.2"
+
+"@storybook/addon-links@^5.0.8":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/addon-links/-/addon-links-5.3.21.tgz#4bae11c5de77fcce1f5429be3454376870512db2"
+ integrity sha1-S64Rxd53/M4fVCm+NFQ3aHBRLbI=
+ dependencies:
+ "@storybook/addons" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/csf" "0.0.1"
+ "@storybook/router" "5.3.21"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ prop-types "^15.7.2"
+ qs "^6.6.0"
+ ts-dedent "^1.1.0"
+
+"@storybook/addons@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/addons/-/addons-5.3.21.tgz#ee312c738c33e8c34dc11777ef93522c3c36e56a"
+ integrity sha1-7jEsc4wz6MNNwRd375NSLDw25Wo=
+ dependencies:
+ "@storybook/api" "5.3.21"
+ "@storybook/channels" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ util-deprecate "^1.0.2"
+
+"@storybook/addons@^3.4.12":
+ version "3.4.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/addons/-/addons-3.4.12.tgz#b973479b9910d60dd5ab087f875e10085ab3a0f9"
+ integrity sha1-uXNHm5kQ1g3Vqwh/h14QCFqzoPk=
+
+"@storybook/api@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/api/-/api-5.3.21.tgz#8f1772de53b65e1a65d2f0257463d621a8617c58"
+ integrity sha1-jxdy3lO2Xhpl0vAldGPWIahhfFg=
+ dependencies:
+ "@reach/router" "^1.2.1"
+ "@storybook/channels" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/csf" "0.0.1"
+ "@storybook/router" "5.3.21"
+ "@storybook/theming" "5.3.21"
+ "@types/reach__router" "^1.2.3"
+ core-js "^3.0.1"
+ fast-deep-equal "^2.0.1"
+ global "^4.3.2"
+ lodash "^4.17.15"
+ memoizerific "^1.11.3"
+ prop-types "^15.6.2"
+ react "^16.8.3"
+ semver "^6.0.0"
+ shallow-equal "^1.1.0"
+ store2 "^2.7.1"
+ telejson "^3.2.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/channel-postmessage@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/channel-postmessage/-/channel-postmessage-5.3.21.tgz#9c08bf1c108ff973dbca18e582680d25178db1d4"
+ integrity sha1-nAi/HBCP+XPbyhjlgmgNJReNsdQ=
+ dependencies:
+ "@storybook/channels" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ telejson "^3.2.0"
+
+"@storybook/channels@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/channels/-/channels-5.3.21.tgz#53ba622b171d68b3b102983a62aa05149a49497b"
+ integrity sha1-U7piKxcdaLOxApg6YqoFFJpJSXs=
+ dependencies:
+ core-js "^3.0.1"
+
+"@storybook/client-api@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/client-api/-/client-api-5.3.21.tgz#5b218a28f24219c32ab4b92a6af2a3e452fb8089"
+ integrity sha1-WyGKKPJCGcMqtLkqavKj5FL7gIk=
+ dependencies:
+ "@storybook/addons" "5.3.21"
+ "@storybook/channel-postmessage" "5.3.21"
+ "@storybook/channels" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/csf" "0.0.1"
+ "@types/webpack-env" "^1.15.0"
+ core-js "^3.0.1"
+ eventemitter3 "^4.0.0"
+ global "^4.3.2"
+ is-plain-object "^3.0.0"
+ lodash "^4.17.15"
+ memoizerific "^1.11.3"
+ qs "^6.6.0"
+ stable "^0.1.8"
+ ts-dedent "^1.1.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/client-logger@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/client-logger/-/client-logger-5.3.21.tgz#912c83b0d358e70acad1ad4abe199de4c38b109f"
+ integrity sha1-kSyDsNNY5wrK0a1Kvhmd5MOLEJ8=
+ dependencies:
+ core-js "^3.0.1"
+
+"@storybook/components@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/components/-/components-5.3.21.tgz#17ee371a2455c6e807c3d3135a9266e63ad7651a"
+ integrity sha1-F+43GiRVxugHw9MTWpJm5jrXZRo=
+ dependencies:
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/theming" "5.3.21"
+ "@types/react-syntax-highlighter" "11.0.4"
+ "@types/react-textarea-autosize" "^4.3.3"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ lodash "^4.17.15"
+ markdown-to-jsx "^6.11.4"
+ memoizerific "^1.11.3"
+ polished "^3.3.1"
+ popper.js "^1.14.7"
+ prop-types "^15.7.2"
+ react "^16.8.3"
+ react-dom "^16.8.3"
+ react-focus-lock "^2.1.0"
+ react-helmet-async "^1.0.2"
+ react-popper-tooltip "^2.8.3"
+ react-syntax-highlighter "^11.0.2"
+ react-textarea-autosize "^7.1.0"
+ simplebar-react "^1.0.0-alpha.6"
+ ts-dedent "^1.1.0"
+
+"@storybook/core-events@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/core-events/-/core-events-5.3.21.tgz#41d81c3f107302a032545fc86ff344230c04b9e9"
+ integrity sha1-QdgcPxBzAqAyVF/Ib/NEIwwEuek=
+ dependencies:
+ core-js "^3.0.1"
+
+"@storybook/core@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/core/-/core-5.3.21.tgz#da963166ea24601f318266a3aa6bbc06fc8fb175"
+ integrity sha1-2pYxZuokYB8xgmajqmu8BvyPsXU=
+ dependencies:
+ "@babel/plugin-proposal-class-properties" "^7.7.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.6.2"
+ "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+ "@babel/plugin-transform-react-constant-elements" "^7.2.0"
+ "@babel/preset-env" "^7.4.5"
+ "@storybook/addons" "5.3.21"
+ "@storybook/channel-postmessage" "5.3.21"
+ "@storybook/client-api" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/csf" "0.0.1"
+ "@storybook/node-logger" "5.3.21"
+ "@storybook/router" "5.3.21"
+ "@storybook/theming" "5.3.21"
+ "@storybook/ui" "5.3.21"
+ airbnb-js-shims "^2.2.1"
+ ansi-to-html "^0.6.11"
+ autoprefixer "^9.7.2"
+ babel-plugin-add-react-displayname "^0.0.5"
+ babel-plugin-emotion "^10.0.20"
+ babel-plugin-macros "^2.7.0"
+ babel-preset-minify "^0.5.0 || 0.6.0-alpha.5"
+ boxen "^4.1.0"
+ case-sensitive-paths-webpack-plugin "^2.2.0"
+ chalk "^3.0.0"
+ cli-table3 "0.5.1"
+ commander "^4.0.1"
+ core-js "^3.0.1"
+ corejs-upgrade-webpack-plugin "^2.2.0"
+ css-loader "^3.0.0"
+ detect-port "^1.3.0"
+ dotenv-webpack "^1.7.0"
+ ejs "^2.7.4"
+ express "^4.17.0"
+ file-loader "^4.2.0"
+ file-system-cache "^1.0.5"
+ find-cache-dir "^3.0.0"
+ find-up "^4.1.0"
+ fs-extra "^8.0.1"
+ glob-base "^0.3.0"
+ global "^4.3.2"
+ html-webpack-plugin "^4.0.0-beta.2"
+ inquirer "^7.0.0"
+ interpret "^2.0.0"
+ ip "^1.1.5"
+ json5 "^2.1.1"
+ lazy-universal-dotenv "^3.0.1"
+ micromatch "^4.0.2"
+ node-fetch "^2.6.0"
+ open "^7.0.0"
+ pnp-webpack-plugin "1.5.0"
+ postcss-flexbugs-fixes "^4.1.0"
+ postcss-loader "^3.0.0"
+ pretty-hrtime "^1.0.3"
+ qs "^6.6.0"
+ raw-loader "^3.1.0"
+ react-dev-utils "^9.0.0"
+ regenerator-runtime "^0.13.3"
+ resolve "^1.11.0"
+ resolve-from "^5.0.0"
+ semver "^6.0.0"
+ serve-favicon "^2.5.0"
+ shelljs "^0.8.3"
+ style-loader "^1.0.0"
+ terser-webpack-plugin "^2.1.2"
+ ts-dedent "^1.1.0"
+ unfetch "^4.1.0"
+ url-loader "^2.0.1"
+ util-deprecate "^1.0.2"
+ webpack "^4.33.0"
+ webpack-dev-middleware "^3.7.0"
+ webpack-hot-middleware "^2.25.0"
+ webpack-virtual-modules "^0.2.0"
+
+"@storybook/csf@0.0.1":
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6"
+ integrity sha1-lZAVB9wC8LxvmsjuGYPi/Fu5jOY=
+ dependencies:
+ lodash "^4.17.15"
+
+"@storybook/node-logger@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/node-logger/-/node-logger-5.3.21.tgz#f11d45042bd57dc69e9037d8f374d9fd0aad8071"
+ integrity sha1-8R1FBCvVfcaekDfY83TZ/QqtgHE=
+ dependencies:
+ "@types/npmlog" "^4.1.2"
+ chalk "^3.0.0"
+ core-js "^3.0.1"
+ npmlog "^4.1.2"
+ pretty-hrtime "^1.0.3"
+ regenerator-runtime "^0.13.3"
+
+"@storybook/react@^5.0.8":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/react/-/react-5.3.21.tgz#f7f364d3d3adc70746a12cf8b6614952f41d4bd0"
+ integrity sha1-9/Nk09OtxwdGoSz4tmFJUvQdS9A=
+ dependencies:
+ "@babel/plugin-transform-react-constant-elements" "^7.6.3"
+ "@babel/preset-flow" "^7.0.0"
+ "@babel/preset-react" "^7.0.0"
+ "@storybook/addons" "5.3.21"
+ "@storybook/core" "5.3.21"
+ "@storybook/node-logger" "5.3.21"
+ "@svgr/webpack" "^4.0.3"
+ "@types/webpack-env" "^1.15.0"
+ babel-plugin-add-react-displayname "^0.0.5"
+ babel-plugin-named-asset-import "^0.3.1"
+ babel-plugin-react-docgen "^4.0.0"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ lodash "^4.17.15"
+ mini-css-extract-plugin "^0.7.0"
+ prop-types "^15.7.2"
+ react-dev-utils "^9.0.0"
+ regenerator-runtime "^0.13.3"
+ semver "^6.0.0"
+ ts-dedent "^1.1.0"
+ webpack "^4.33.0"
+
+"@storybook/router@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/router/-/router-5.3.21.tgz#32b08e5daa90a6ffa024bb670b874525a712a901"
+ integrity sha1-MrCOXaqQpv+gJLtnC4dFJacSqQE=
+ dependencies:
+ "@reach/router" "^1.2.1"
+ "@storybook/csf" "0.0.1"
+ "@types/reach__router" "^1.2.3"
+ core-js "^3.0.1"
+ global "^4.3.2"
+ lodash "^4.17.15"
+ memoizerific "^1.11.3"
+ qs "^6.6.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/theming@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/theming/-/theming-5.3.21.tgz#ae2dc101aa57c3be4df1724ae729e11bad118e0b"
+ integrity sha1-ri3BAapXw75N8XJK5ynhG60Rjgs=
+ dependencies:
+ "@emotion/core" "^10.0.20"
+ "@emotion/styled" "^10.0.17"
+ "@storybook/client-logger" "5.3.21"
+ core-js "^3.0.1"
+ deep-object-diff "^1.1.0"
+ emotion-theming "^10.0.19"
+ global "^4.3.2"
+ memoizerific "^1.11.3"
+ polished "^3.3.1"
+ prop-types "^15.7.2"
+ resolve-from "^5.0.0"
+ ts-dedent "^1.1.0"
+
+"@storybook/ui@5.3.21":
+ version "5.3.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@storybook/ui/-/ui-5.3.21.tgz#b42568e03353b47aaab1b6449311f38858585f81"
+ integrity sha1-tCVo4DNTtHqqsbZEkxHziFhYX4E=
+ dependencies:
+ "@emotion/core" "^10.0.20"
+ "@storybook/addons" "5.3.21"
+ "@storybook/api" "5.3.21"
+ "@storybook/channels" "5.3.21"
+ "@storybook/client-logger" "5.3.21"
+ "@storybook/components" "5.3.21"
+ "@storybook/core-events" "5.3.21"
+ "@storybook/router" "5.3.21"
+ "@storybook/theming" "5.3.21"
+ copy-to-clipboard "^3.0.8"
+ core-js "^3.0.1"
+ core-js-pure "^3.0.1"
+ emotion-theming "^10.0.19"
+ fast-deep-equal "^2.0.1"
+ fuse.js "^3.4.6"
+ global "^4.3.2"
+ lodash "^4.17.15"
+ markdown-to-jsx "^6.11.4"
+ memoizerific "^1.11.3"
+ polished "^3.3.1"
+ prop-types "^15.7.2"
+ qs "^6.6.0"
+ react "^16.8.3"
+ react-dom "^16.8.3"
+ react-draggable "^4.0.3"
+ react-helmet-async "^1.0.2"
+ react-hotkeys "2.0.0"
+ react-sizeme "^2.6.7"
+ regenerator-runtime "^0.13.2"
+ resolve-from "^5.0.0"
+ semver "^6.0.0"
+ store2 "^2.7.1"
+ telejson "^3.2.0"
+ util-deprecate "^1.0.2"
+
+"@svgr/babel-plugin-add-jsx-attribute@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz#dadcb6218503532d6884b210e7f3c502caaa44b1"
+ integrity sha1-2ty2IYUDUy1ohLIQ5/PFAsqqRLE=
+
+"@svgr/babel-plugin-remove-jsx-attribute@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz#297550b9a8c0c7337bea12bdfc8a80bb66f85abc"
+ integrity sha1-KXVQuajAxzN76hK9/IqAu2b4Wrw=
+
+"@svgr/babel-plugin-remove-jsx-empty-expression@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz#c196302f3e68eab6a05e98af9ca8570bc13131c7"
+ integrity sha1-wZYwLz5o6ragXpivnKhXC8ExMcc=
+
+"@svgr/babel-plugin-replace-jsx-attribute-value@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz#310ec0775de808a6a2e4fd4268c245fd734c1165"
+ integrity sha1-MQ7Ad13oCKai5P1CaMJF/XNMEWU=
+
+"@svgr/babel-plugin-svg-dynamic-title@^4.3.3":
+ version "4.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz#2cdedd747e5b1b29ed4c241e46256aac8110dd93"
+ integrity sha1-LN7ddH5bGyntTCQeRiVqrIEQ3ZM=
+
+"@svgr/babel-plugin-svg-em-dimensions@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz#9a94791c9a288108d20a9d2cc64cac820f141391"
+ integrity sha1-mpR5HJoogQjSCp0sxkysgg8UE5E=
+
+"@svgr/babel-plugin-transform-react-native-svg@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz#151487322843359a1ca86b21a3815fd21a88b717"
+ integrity sha1-FRSHMihDNZocqGsho4Ff0hqItxc=
+
+"@svgr/babel-plugin-transform-svg-component@^4.2.0":
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz#5f1e2f886b2c85c67e76da42f0f6be1b1767b697"
+ integrity sha1-Xx4viGsshcZ+dtpC8Pa+Gxdntpc=
+
+"@svgr/babel-preset@^4.3.3":
+ version "4.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/babel-preset/-/babel-preset-4.3.3.tgz#a75d8c2f202ac0e5774e6bfc165d028b39a1316c"
+ integrity sha1-p12MLyAqwOV3Tmv8Fl0CizmhMWw=
+ dependencies:
+ "@svgr/babel-plugin-add-jsx-attribute" "^4.2.0"
+ "@svgr/babel-plugin-remove-jsx-attribute" "^4.2.0"
+ "@svgr/babel-plugin-remove-jsx-empty-expression" "^4.2.0"
+ "@svgr/babel-plugin-replace-jsx-attribute-value" "^4.2.0"
+ "@svgr/babel-plugin-svg-dynamic-title" "^4.3.3"
+ "@svgr/babel-plugin-svg-em-dimensions" "^4.2.0"
+ "@svgr/babel-plugin-transform-react-native-svg" "^4.2.0"
+ "@svgr/babel-plugin-transform-svg-component" "^4.2.0"
+
+"@svgr/core@^4.3.3":
+ version "4.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/core/-/core-4.3.3.tgz#b37b89d5b757dc66e8c74156d00c368338d24293"
+ integrity sha1-s3uJ1bdX3Gbox0FW0Aw2gzjSQpM=
+ dependencies:
+ "@svgr/plugin-jsx" "^4.3.3"
+ camelcase "^5.3.1"
+ cosmiconfig "^5.2.1"
+
+"@svgr/hast-util-to-babel-ast@^4.3.2":
+ version "4.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz#1d5a082f7b929ef8f1f578950238f630e14532b8"
+ integrity sha1-HVoIL3uSnvjx9XiVAjj2MOFFMrg=
+ dependencies:
+ "@babel/types" "^7.4.4"
+
+"@svgr/plugin-jsx@^4.3.3":
+ version "4.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz#e2ba913dbdfbe85252a34db101abc7ebd50992fa"
+ integrity sha1-4rqRPb376FJSo02xAavH69UJkvo=
+ dependencies:
+ "@babel/core" "^7.4.5"
+ "@svgr/babel-preset" "^4.3.3"
+ "@svgr/hast-util-to-babel-ast" "^4.3.2"
+ svg-parser "^2.0.0"
+
+"@svgr/plugin-svgo@^4.3.1":
+ version "4.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz#daac0a3d872e3f55935c6588dd370336865e9e32"
+ integrity sha1-2qwKPYcuP1WTXGWI3TcDNoZenjI=
+ dependencies:
+ cosmiconfig "^5.2.1"
+ merge-deep "^3.0.2"
+ svgo "^1.2.2"
+
+"@svgr/webpack@^4.0.3":
+ version "4.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@svgr/webpack/-/webpack-4.3.3.tgz#13cc2423bf3dff2d494f16b17eb7eacb86895017"
+ integrity sha1-E8wkI789/y1JTxaxfrfqy4aJUBc=
+ dependencies:
+ "@babel/core" "^7.4.5"
+ "@babel/plugin-transform-react-constant-elements" "^7.0.0"
+ "@babel/preset-env" "^7.4.5"
+ "@babel/preset-react" "^7.0.0"
+ "@svgr/core" "^4.3.3"
+ "@svgr/plugin-jsx" "^4.3.3"
+ "@svgr/plugin-svgo" "^4.3.1"
+ loader-utils "^1.2.3"
+
+"@typeform/embed@^0.10.0":
+ version "0.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@typeform/embed/-/embed-0.10.0.tgz#377a0558c8c743e2f2b0d87761ad8557bc0e955e"
+ integrity sha1-N3oFWMjHQ+LysNh3Ya2FV7wOlV4=
+ dependencies:
+ classnames "^2.2.5"
+ core-js "^3.0.1"
+ create-emotion "^9.0.2"
+ create-emotion-styled "^9.0.1"
+ custom-event "^1.0.1"
+ fetch-jsonp "^1.0.6"
+ is-url "^1.2.2"
+ preact "^8.2.7"
+ preact-compat "^3.15.0"
+ prop-types "^15.5.10"
+ scrollbar-width "^3.1.1"
+ spin.js "^2.3.2"
+ tinycolor2 "^1.4.1"
+ url-parse "^1.1.7"
+ webfontloader "^1.6.27"
+
+"@types/blob-util@1.3.3":
+ version "1.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/blob-util/-/blob-util-1.3.3.tgz#adba644ae34f88e1dd9a5864c66ad651caaf628a"
+ integrity sha1-rbpkSuNPiOHdmlhkxmrWUcqvYoo=
+
+"@types/bluebird@3.5.18":
+ version "3.5.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/bluebird/-/bluebird-3.5.18.tgz#6a60435d4663e290f3709898a4f75014f279c4d6"
+ integrity sha1-amBDXUZj4pDzcJiYpPdQFPJ5xNY=
+
+"@types/bn.js@^4.11.3":
+ version "4.11.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c"
+ integrity sha1-wwbHDZNYquozzU7aCSp0K5UFlnw=
+ dependencies:
+ "@types/node" "*"
+
+"@types/chai-jquery@1.1.35":
+ version "1.1.35"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/chai-jquery/-/chai-jquery-1.1.35.tgz#9a8f0a39ec0851b2768a8f8c764158c2a2568d04"
+ integrity sha1-mo8KOewIUbJ2io+MdkFYwqJWjQQ=
+ dependencies:
+ "@types/chai" "*"
+ "@types/jquery" "*"
+
+"@types/chai@*":
+ version "4.2.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/chai/-/chai-4.2.18.tgz#0c8e298dbff8205e2266606c1ea5fbdba29b46e4"
+ integrity sha1-DI4pjb/4IF4iZmBsHqX726KbRuQ=
+
+"@types/chai@4.0.8":
+ version "4.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/chai/-/chai-4.0.8.tgz#d27600e9ba2f371e08695d90a0fe0408d89c7be7"
+ integrity sha1-0nYA6bovNx4IaV2QoP4ECNice+c=
+
+"@types/glob@^7.1.1":
+ version "7.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
+ integrity sha1-5rqA82t9qtLGhazZJmOC5omFwYM=
+ dependencies:
+ "@types/minimatch" "*"
+ "@types/node" "*"
+
+"@types/html-minifier-terser@^5.0.0":
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50"
+ integrity sha1-PJ7pgPGhDWAhrmYyyj55yi7E+1A=
+
+"@types/is-function@^1.0.0":
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83"
+ integrity sha1-GwuBmxY2x7rw1nhdAw0S7fcMPoM=
+
+"@types/istanbul-lib-coverage@^2.0.1":
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
+ integrity sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I=
+
+"@types/jquery@*":
+ version "3.5.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/jquery/-/jquery-3.5.5.tgz#2c63f47c9c8d96693d272f5453602afd8338c903"
+ integrity sha1-LGP0fJyNlmk9Jy9UU2Aq/YM4yQM=
+ dependencies:
+ "@types/sizzle" "*"
+
+"@types/jquery@3.2.16":
+ version "3.2.16"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/jquery/-/jquery-3.2.16.tgz#04419c404a3194350e7d3f339a90e72c88db3111"
+ integrity sha1-BEGcQEoxlDUOfT8zmpDnLIjbMRE=
+
+"@types/json-schema@^7.0.5":
+ version "7.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
+ integrity sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0=
+
+"@types/json5@^0.0.29":
+ version "0.0.29"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+ integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
+
+"@types/lodash@4.14.87":
+ version "4.14.87"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/lodash/-/lodash-4.14.87.tgz#55f92183b048c2c64402afe472f8333f4e319a6b"
+ integrity sha1-Vfkhg7BIwsZEAq/kcvgzP04xmms=
+
+"@types/minimatch@*":
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
+ integrity sha1-8Owl2/Lw5LGGRzE6wDETTKWySyE=
+
+"@types/minimatch@3.0.1":
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550"
+ integrity sha1-toPrYL41gwTvFG9XddtMDjaWpVA=
+
+"@types/mocha@2.2.44":
+ version "2.2.44"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/mocha/-/mocha-2.2.44.tgz#1d4a798e53f35212fd5ad4d04050620171cd5b5e"
+ integrity sha1-HUp5jlPzUhL9WtTQQFBiAXHNW14=
+
+"@types/node@*", "@types/node@>=6":
+ version "15.12.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/node/-/node-15.12.1.tgz#9b60797dee1895383a725f828a869c86c6caa5c2"
+ integrity sha1-m2B5fe4YlTg6cl+CioachsbKpcI=
+
+"@types/node@^10.3.2":
+ version "10.17.60"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b"
+ integrity sha1-NfPWIT2u2V2n8Pc+dbzGmA6QWXs=
+
+"@types/npmlog@^4.1.2":
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/npmlog/-/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4"
+ integrity sha1-0HD+amt4dV0QkqPcSS00w9j4ccQ=
+
+"@types/parse-json@^4.0.0":
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
+ integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=
+
+"@types/pbkdf2@^3.0.0":
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/pbkdf2/-/pbkdf2-3.1.0.tgz#039a0e9b67da0cdc4ee5dab865caa6b267bb66b1"
+ integrity sha1-A5oOm2faDNxO5dq4Zcqmsme7ZrE=
+ dependencies:
+ "@types/node" "*"
+
+"@types/prop-types@*":
+ version "15.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
+ integrity sha1-KrDV2i5YFflLC51LldHl8kOrLKc=
+
+"@types/q@^1.5.1":
+ version "1.5.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
+ integrity sha1-FZJUFOCtLNdlv+9YhC9+JqesyyQ=
+
+"@types/reach__router@^1.2.3":
+ version "1.3.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/reach__router/-/reach__router-1.3.8.tgz#7b8607abf13704f918a9543257bcb7ec63028bfa"
+ integrity sha1-e4YHq/E3BPkYqVQyV7y37GMCi/o=
+ dependencies:
+ "@types/react" "*"
+
+"@types/react-syntax-highlighter@11.0.4":
+ version "11.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd"
+ integrity sha1-2G0XaX22L5gEaHT2L9s+U6C7xM0=
+ dependencies:
+ "@types/react" "*"
+
+"@types/react-textarea-autosize@^4.3.3":
+ version "4.3.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de"
+ integrity sha1-bE0nU/oYZMmMCytRf2e7H25MRt4=
+ dependencies:
+ "@types/react" "*"
+
+"@types/react@*":
+ version "17.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/react/-/react-17.0.9.tgz#1147fb520024a62c9b3841f5cb4db89b73ddb87f"
+ integrity sha1-EUf7UgAkpiybOEH1y024m3PduH8=
+ dependencies:
+ "@types/prop-types" "*"
+ "@types/scheduler" "*"
+ csstype "^3.0.2"
+
+"@types/scheduler@*":
+ version "0.16.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275"
+ integrity sha1-GIRSBehv8AOFF6q3oYpiprn3EnU=
+
+"@types/secp256k1@^4.0.1":
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/secp256k1/-/secp256k1-4.0.2.tgz#20c29a87149d980f64464e56539bf4810fdb5d1d"
+ integrity sha1-IMKahxSdmA9kRk5WU5v0gQ/bXR0=
+ dependencies:
+ "@types/node" "*"
+
+"@types/sinon-chai@2.7.29":
+ version "2.7.29"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/sinon-chai/-/sinon-chai-2.7.29.tgz#4db01497e2dd1908b2bd30d1782f456353f5f723"
+ integrity sha1-TbAUl+LdGQiyvTDReC9FY1P19yM=
+ dependencies:
+ "@types/chai" "*"
+ "@types/sinon" "*"
+
+"@types/sinon@*":
+ version "10.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/sinon/-/sinon-10.0.2.tgz#f360d2f189c0fd433d14aeb97b9d705d7e4cc0e4"
+ integrity sha1-82DS8YnA/UM9FK65e51wXX5MwOQ=
+ dependencies:
+ "@sinonjs/fake-timers" "^7.1.0"
+
+"@types/sinon@4.0.0":
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/sinon/-/sinon-4.0.0.tgz#9a93ffa4ee1329e85166278a5ed99f81dc4c8362"
+ integrity sha1-mpP/pO4TKehRZieKXtmfgdxMg2I=
+
+"@types/sizzle@*":
+ version "2.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef"
+ integrity sha1-/14vGQKWnTBSJaBHyKD9XJFc6+8=
+
+"@types/source-list-map@*":
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
+ integrity sha1-AHiDYGP/rxdBI0m7o2QIfgrALsk=
+
+"@types/tapable@^1", "@types/tapable@^1.0.5":
+ version "1.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4"
+ integrity sha1-VFFYNC+Uno/Tv9gTIklx7N3D+sQ=
+
+"@types/uglify-js@*":
+ version "3.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/uglify-js/-/uglify-js-3.13.0.tgz#1cad8df1fb0b143c5aba08de5712ea9d1ff71124"
+ integrity sha1-HK2N8fsLFDxaugjeVxLqnR/3ESQ=
+ dependencies:
+ source-map "^0.6.1"
+
+"@types/webpack-env@^1.15.0":
+ version "1.16.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/webpack-env/-/webpack-env-1.16.0.tgz#8c0a9435dfa7b3b1be76562f3070efb3f92637b4"
+ integrity sha1-jAqUNd+ns7G+dlYvMHDvs/kmN7Q=
+
+"@types/webpack-sources@*":
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/webpack-sources/-/webpack-sources-2.1.0.tgz#8882b0bd62d1e0ce62f183d0d01b72e6e82e8c10"
+ integrity sha1-iIKwvWLR4M5i8YPQ0Bty5ugujBA=
+ dependencies:
+ "@types/node" "*"
+ "@types/source-list-map" "*"
+ source-map "^0.7.3"
+
+"@types/webpack@^4.41.8":
+ version "4.41.29"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/webpack/-/webpack-4.41.29.tgz#2e66c1de8223c440366469415c50a47d97625773"
+ integrity sha1-LmbB3oIjxEA2ZGlBXFCkfZdiV3M=
+ dependencies:
+ "@types/node" "*"
+ "@types/tapable" "^1"
+ "@types/uglify-js" "*"
+ "@types/webpack-sources" "*"
+ anymatch "^3.0.0"
+ source-map "^0.6.0"
+
+"@types/zen-observable@^0.8.0":
+ version "0.8.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@types/zen-observable/-/zen-observable-0.8.2.tgz#808c9fa7e4517274ed555fa158f2de4b4f468e71"
+ integrity sha1-gIyfp+RRcnTtVV+hWPLeS09GjnE=
+
+"@webassemblyjs/ast@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/ast/-/ast-1.5.13.tgz#81155a570bd5803a30ec31436bc2c9c0ede38f25"
+ integrity sha1-gRVaVwvVgDow7DFDa8LJwO3jjyU=
+ dependencies:
+ "@webassemblyjs/helper-module-context" "1.5.13"
+ "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
+ "@webassemblyjs/wast-parser" "1.5.13"
+ debug "^3.1.0"
+ mamacro "^0.0.3"
+
+"@webassemblyjs/ast@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
+ integrity sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.13.tgz#29ce0baa97411f70e8cce68ce9c0f9d819a4e298"
+ integrity sha1-Kc4LqpdBH3DozOaM6cD52Bmk4pg=
+
+"@webassemblyjs/floating-point-hex-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
+ integrity sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q=
+
+"@webassemblyjs/helper-api-error@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.13.tgz#e49b051d67ee19a56e29b9aa8bd949b5b4442a59"
+ integrity sha1-5JsFHWfuGaVuKbmqi9lJtbREKlk=
+
+"@webassemblyjs/helper-api-error@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
+ integrity sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI=
+
+"@webassemblyjs/helper-buffer@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.13.tgz#873bb0a1b46449231137c1262ddfd05695195a1e"
+ integrity sha1-hzuwobRkSSMRN8EmLd/QVpUZWh4=
+ dependencies:
+ debug "^3.1.0"
+
+"@webassemblyjs/helper-buffer@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
+ integrity sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA=
+
+"@webassemblyjs/helper-code-frame@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.13.tgz#1bd2181b6a0be14e004f0fe9f5a660d265362b58"
+ integrity sha1-G9IYG2oL4U4ATw/p9aZg0mU2K1g=
+ dependencies:
+ "@webassemblyjs/wast-printer" "1.5.13"
+
+"@webassemblyjs/helper-code-frame@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
+ integrity sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc=
+ dependencies:
+ "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/helper-fsm@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.13.tgz#cdf3d9d33005d543a5c5e5adaabf679ffa8db924"
+ integrity sha1-zfPZ0zAF1UOlxeWtqr9nn/qNuSQ=
+
+"@webassemblyjs/helper-fsm@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
+ integrity sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg=
+
+"@webassemblyjs/helper-module-context@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.13.tgz#dc29ddfb51ed657655286f94a5d72d8a489147c5"
+ integrity sha1-3Cnd+1HtZXZVKG+UpdctikiRR8U=
+ dependencies:
+ debug "^3.1.0"
+ mamacro "^0.0.3"
+
+"@webassemblyjs/helper-module-context@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
+ integrity sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc=
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+
+"@webassemblyjs/helper-wasm-bytecode@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.13.tgz#03245817f0a762382e61733146f5773def15a747"
+ integrity sha1-AyRYF/CnYjguYXMxRvV3Pe8Vp0c=
+
+"@webassemblyjs/helper-wasm-bytecode@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
+ integrity sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A=
+
+"@webassemblyjs/helper-wasm-section@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.13.tgz#efc76f44a10d3073b584b43c38a179df173d5c7d"
+ integrity sha1-78dvRKENMHO1hLQ8OKF53xc9XH0=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-buffer" "1.5.13"
+ "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
+ "@webassemblyjs/wasm-gen" "1.5.13"
+ debug "^3.1.0"
+
+"@webassemblyjs/helper-wasm-section@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
+ integrity sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/ieee754/-/ieee754-1.5.13.tgz#573e97c8c12e4eebb316ca5fde0203ddd90b0364"
+ integrity sha1-Vz6XyMEuTuuzFspf3gID3dkLA2Q=
+ dependencies:
+ ieee754 "^1.1.11"
+
+"@webassemblyjs/ieee754@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
+ integrity sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ=
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
+
+"@webassemblyjs/leb128@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/leb128/-/leb128-1.5.13.tgz#ab52ebab9cec283c1c1897ac1da833a04a3f4cee"
+ integrity sha1-q1Lrq5zsKDwcGJesHagzoEo/TO4=
+ dependencies:
+ long "4.0.0"
+
+"@webassemblyjs/leb128@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
+ integrity sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU=
+ dependencies:
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/utf8@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/utf8/-/utf8-1.5.13.tgz#6b53d2cd861cf94fa99c1f12779dde692fbc2469"
+ integrity sha1-a1PSzYYc+U+pnB8Sd53eaS+8JGk=
+
+"@webassemblyjs/utf8@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
+ integrity sha1-BNM7Y2945qaBMifoJAL3Y3tiKas=
+
+"@webassemblyjs/wasm-edit@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.13.tgz#c9cef5664c245cf11b3b3a73110c9155831724a8"
+ integrity sha1-yc71ZkwkXPEbOzpzEQyRVYMXJKg=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-buffer" "1.5.13"
+ "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
+ "@webassemblyjs/helper-wasm-section" "1.5.13"
+ "@webassemblyjs/wasm-gen" "1.5.13"
+ "@webassemblyjs/wasm-opt" "1.5.13"
+ "@webassemblyjs/wasm-parser" "1.5.13"
+ "@webassemblyjs/wast-printer" "1.5.13"
+ debug "^3.1.0"
+
+"@webassemblyjs/wasm-edit@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
+ integrity sha1-P+bXnT8PkiGDqoYALELdJWz+6c8=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.13.tgz#8e6ea113c4b432fa66540189e79b16d7a140700e"
+ integrity sha1-jm6hE8S0MvpmVAGJ55sW16FAcA4=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
+ "@webassemblyjs/ieee754" "1.5.13"
+ "@webassemblyjs/leb128" "1.5.13"
+ "@webassemblyjs/utf8" "1.5.13"
+
+"@webassemblyjs/wasm-gen@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
+ integrity sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.13.tgz#147aad7717a7ee4211c36b21a5f4c30dddf33138"
+ integrity sha1-FHqtdxen7kIRw2shpfTDDd3zMTg=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-buffer" "1.5.13"
+ "@webassemblyjs/wasm-gen" "1.5.13"
+ "@webassemblyjs/wasm-parser" "1.5.13"
+ debug "^3.1.0"
+
+"@webassemblyjs/wasm-opt@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
+ integrity sha1-IhEYHlsxMmRDzIES658LkChyGmE=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.13.tgz#6f46516c5bb23904fbdf58009233c2dd8a54c72f"
+ integrity sha1-b0ZRbFuyOQT731gAkjPC3YpUxy8=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-api-error" "1.5.13"
+ "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
+ "@webassemblyjs/ieee754" "1.5.13"
+ "@webassemblyjs/leb128" "1.5.13"
+ "@webassemblyjs/utf8" "1.5.13"
+
+"@webassemblyjs/wasm-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
+ integrity sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wast-parser/-/wast-parser-1.5.13.tgz#5727a705d397ae6a3ae99d7f5460acf2ec646eea"
+ integrity sha1-VyenBdOXrmo66Z1/VGCs8uxkbuo=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/floating-point-hex-parser" "1.5.13"
+ "@webassemblyjs/helper-api-error" "1.5.13"
+ "@webassemblyjs/helper-code-frame" "1.5.13"
+ "@webassemblyjs/helper-fsm" "1.5.13"
+ long "^3.2.0"
+ mamacro "^0.0.3"
+
+"@webassemblyjs/wast-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
+ integrity sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ=
+ dependencies:
+ "@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@1.5.13":
+ version "1.5.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wast-printer/-/wast-printer-1.5.13.tgz#bb34d528c14b4f579e7ec11e793ec50ad7cd7c95"
+ integrity sha1-uzTVKMFLT1eefsEeeT7FCtfNfJU=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/wast-parser" "1.5.13"
+ long "^3.2.0"
+
+"@webassemblyjs/wast-printer@1.9.0":
+ version "1.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
+ integrity sha1-STXVTIX+9jewDOn1I3dFHQDUeJk=
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/wast-parser" "1.9.0"
+ "@xtuc/long" "4.2.2"
+
+"@wry/context@^0.4.0":
+ version "0.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@wry/context/-/context-0.4.4.tgz#e50f5fa1d6cfaabf2977d1fda5ae91717f8815f8"
+ integrity sha1-5Q9fodbPqr8pd9H9pa6RcX+IFfg=
+ dependencies:
+ "@types/node" ">=6"
+ tslib "^1.9.3"
+
+"@wry/equality@^0.1.2", "@wry/equality@^0.1.9":
+ version "0.1.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@wry/equality/-/equality-0.1.11.tgz#35cb156e4a96695aa81a9ecc4d03787bc17f1790"
+ integrity sha1-NcsVbkqWaVqoGp7MTQN4e8F/F5A=
+ dependencies:
+ tslib "^1.9.3"
+
+"@xtuc/ieee754@^1.2.0":
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+ integrity sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=
+
+"@xtuc/long@4.2.2":
+ version "4.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+ integrity sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=
+
+abab@^2.0.0:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
+ integrity sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=
+
+abbrev@1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+ integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=
+
+accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
+ version "1.3.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+ integrity sha1-UxvHJlF6OytB+FACHGzBXqq1B80=
+ dependencies:
+ mime-types "~2.1.24"
+ negotiator "0.6.2"
+
+acorn-dynamic-import@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278"
+ integrity sha1-kBzu5Mf6rvfgetKkfokGddpQong=
+ dependencies:
+ acorn "^5.0.0"
+
+acorn-globals@^4.1.0:
+ version "4.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
+ integrity sha1-n6GSat3BHJcwjE5m163Q1Awycuc=
+ dependencies:
+ acorn "^6.0.1"
+ acorn-walk "^6.0.1"
+
+acorn-jsx@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
+ integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=
+ dependencies:
+ acorn "^3.0.4"
+
+acorn-walk@^6.0.1:
+ version "6.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
+ integrity sha1-Ejy487hMIXHx9/slJhWxx4prGow=
+
+acorn@^3.0.4:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
+ integrity sha1-ReN/s56No/JbruP/U2niu18iAXo=
+
+acorn@^5.0.0, acorn@^5.5.0, acorn@^5.5.3, acorn@^5.6.2:
+ version "5.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
+ integrity sha1-Po2KmUfQWZoXltECJddDL0pKz14=
+
+acorn@^6.0.1, acorn@^6.4.1:
+ version "6.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
+ integrity sha1-NYZv1xBSjpLeEM8GAWSY5H454eY=
+
+address@1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
+ integrity sha1-tfUGMfjWzsi9IMljljr7VeBsvOk=
+
+address@1.1.2, address@^1.0.1:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
+ integrity sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=
+
+aes-js@3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d"
+ integrity sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0=
+
+aggregate-error@^3.0.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
+ integrity sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=
+ dependencies:
+ clean-stack "^2.0.0"
+ indent-string "^4.0.0"
+
+airbnb-js-shims@^2.2.1:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040"
+ integrity sha1-20gRAtaCuY7R2qTFuqaXoFzlwEA=
+ dependencies:
+ array-includes "^3.0.3"
+ array.prototype.flat "^1.2.1"
+ array.prototype.flatmap "^1.2.1"
+ es5-shim "^4.5.13"
+ es6-shim "^0.35.5"
+ function.prototype.name "^1.1.0"
+ globalthis "^1.0.0"
+ object.entries "^1.1.0"
+ object.fromentries "^2.0.0 || ^1.0.0"
+ object.getownpropertydescriptors "^2.0.3"
+ object.values "^1.1.0"
+ promise.allsettled "^1.0.0"
+ promise.prototype.finally "^3.1.0"
+ string.prototype.matchall "^4.0.0 || ^3.0.1"
+ string.prototype.padend "^3.0.0"
+ string.prototype.padstart "^3.0.0"
+ symbol.prototype.description "^1.0.0"
+
+airbnb-prop-types@^2.16.0:
+ version "2.16.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2"
+ integrity sha1-uWJ0zvoauxT2I/gEFz7pfBOXHcI=
+ dependencies:
+ array.prototype.find "^2.1.1"
+ function.prototype.name "^1.1.2"
+ is-regex "^1.1.0"
+ object-is "^1.1.2"
+ object.assign "^4.1.0"
+ object.entries "^1.1.2"
+ prop-types "^15.7.2"
+ prop-types-exact "^1.2.0"
+ react-is "^16.13.1"
+
+ajv-errors@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
+ integrity sha1-81mGrOuRr63sQQL72FAUlQzvpk0=
+
+ajv-keywords@^2.1.0:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
+ integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=
+
+ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
+ version "3.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ integrity sha1-MfKdpatuANHC0yms97WSlhTVAU0=
+
+ajv@^4.9.1:
+ version "4.11.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
+ integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=
+ dependencies:
+ co "^4.6.0"
+ json-stable-stringify "^1.0.1"
+
+ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0:
+ version "5.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
+ integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=
+ dependencies:
+ co "^4.6.0"
+ fast-deep-equal "^1.0.0"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.3.0"
+
+ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4:
+ version "6.12.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ integrity sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
+ integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
+
+amdefine@>=0.0.4:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
+ integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=
+
+ansi-align@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
+ integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=
+ dependencies:
+ string-width "^2.0.0"
+
+ansi-align@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
+ integrity sha1-tTazcc9ofKrvI2wY0+If43l0Z8s=
+ dependencies:
+ string-width "^3.0.0"
+
+ansi-colors@^3.0.0:
+ version "3.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
+ integrity sha1-46PaS/uubIapwoViXeEkojQCb78=
+
+ansi-escapes@^1.0.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
+ integrity sha1-06ioOzGapneTZisT52HHkRQiMG4=
+
+ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
+ integrity sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=
+
+ansi-escapes@^4.2.1:
+ version "4.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+ integrity sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=
+ dependencies:
+ type-fest "^0.21.3"
+
+ansi-html@0.0.7:
+ version "0.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
+ integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+
+ansi-regex@^2.0.0:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+ integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+
+ansi-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
+ integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+
+ansi-regex@^4.1.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
+ integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=
+
+ansi-regex@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+ integrity sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=
+
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+ integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+
+ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1:
+ version "3.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=
+ dependencies:
+ color-convert "^1.9.0"
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ integrity sha1-7dgDYornHATIWuegkG7a00tkiTc=
+ dependencies:
+ color-convert "^2.0.1"
+
+ansi-to-html@^0.6.11:
+ version "0.6.15"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ansi-to-html/-/ansi-to-html-0.6.15.tgz#ac6ad4798a00f6aa045535d7f6a9cb9294eebea7"
+ integrity sha1-rGrUeYoA9qoEVTXX9qnLkpTuvqc=
+ dependencies:
+ entities "^2.0.0"
+
+any-promise@1.3.0, any-promise@^1.0.0, any-promise@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
+ integrity sha1-q8av7tzqUugJzcA3au0845Y10X8=
+
+anymatch@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
+ integrity sha1-vLJLTzeTTZqnrBe0ra+J58du8us=
+ dependencies:
+ micromatch "^3.1.4"
+ normalize-path "^2.1.1"
+
+anymatch@^3.0.0, anymatch@~3.1.1:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
+ integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY=
+ dependencies:
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
+
+apollo-cache-inmemory@^1.6.3:
+ version "1.6.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz#56d1f2a463a6b9db32e9fa990af16d2a008206fd"
+ integrity sha1-VtHypGOmudsy6fqZCvFtKgCCBv0=
+ dependencies:
+ apollo-cache "^1.3.5"
+ apollo-utilities "^1.3.4"
+ optimism "^0.10.0"
+ ts-invariant "^0.4.0"
+ tslib "^1.10.0"
+
+apollo-cache@1.3.5, apollo-cache@^1.3.5:
+ version "1.3.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-cache/-/apollo-cache-1.3.5.tgz#9dbebfc8dbe8fe7f97ba568a224bca2c5d81f461"
+ integrity sha1-nb6/yNvo/n+XulaKIkvKLF2B9GE=
+ dependencies:
+ apollo-utilities "^1.3.4"
+ tslib "^1.10.0"
+
+apollo-client@^2.6.4:
+ version "2.6.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-client/-/apollo-client-2.6.10.tgz#86637047b51d940c8eaa771a4ce1b02df16bea6a"
+ integrity sha1-hmNwR7UdlAyOqncaTOGwLfFr6mo=
+ dependencies:
+ "@types/zen-observable" "^0.8.0"
+ apollo-cache "1.3.5"
+ apollo-link "^1.0.0"
+ apollo-utilities "1.3.4"
+ symbol-observable "^1.0.2"
+ ts-invariant "^0.4.0"
+ tslib "^1.10.0"
+ zen-observable "^0.8.0"
+
+apollo-link-http-common@^0.2.16:
+ version "0.2.16"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz#756749dafc732792c8ca0923f9a40564b7c59ecc"
+ integrity sha1-dWdJ2vxzJ5LIygkj+aQFZLfFnsw=
+ dependencies:
+ apollo-link "^1.2.14"
+ ts-invariant "^0.4.0"
+ tslib "^1.9.3"
+
+apollo-link-http@^1.5.16:
+ version "1.5.17"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-link-http/-/apollo-link-http-1.5.17.tgz#499e9f1711bf694497f02c51af12d82de5d8d8ba"
+ integrity sha1-SZ6fFxG/aUSX8CxRrxLYLeXY2Lo=
+ dependencies:
+ apollo-link "^1.2.14"
+ apollo-link-http-common "^0.2.16"
+ tslib "^1.9.3"
+
+apollo-link@^1.0.0, apollo-link@^1.2.14:
+ version "1.2.14"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9"
+ integrity sha1-P+2ktH+eu6f0Fgvvi5d7pyW2hNk=
+ dependencies:
+ apollo-utilities "^1.3.0"
+ ts-invariant "^0.4.0"
+ tslib "^1.9.3"
+ zen-observable-ts "^0.8.21"
+
+apollo-utilities@1.3.4, apollo-utilities@^1.3.0, apollo-utilities@^1.3.4:
+ version "1.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/apollo-utilities/-/apollo-utilities-1.3.4.tgz#6129e438e8be201b6c55b0f13ce49d2c7175c9cf"
+ integrity sha1-YSnkOOi+IBtsVbDxPOSdLHF1yc8=
+ dependencies:
+ "@wry/equality" "^0.1.2"
+ fast-json-stable-stringify "^2.0.0"
+ ts-invariant "^0.4.0"
+ tslib "^1.10.0"
+
+app-root-dir@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
+ integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=
+
+append-transform@^0.4.0:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
+ integrity sha1-126/jKlNJ24keja61EpLdKthGZE=
+ dependencies:
+ default-require-extensions "^1.0.0"
+
+aproba@^1.0.3, aproba@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
+ integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo=
+
+are-we-there-yet@~1.1.2:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
+ integrity sha1-SzXClE8GKov82mZBB2A1D+nd/CE=
+ dependencies:
+ delegates "^1.0.0"
+ readable-stream "^2.0.6"
+
+argparse@^1.0.7:
+ version "1.0.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+ integrity sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=
+ dependencies:
+ sprintf-js "~1.0.2"
+
+aria-query@^0.7.0:
+ version "0.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aria-query/-/aria-query-0.7.1.tgz#26cbb5aff64144b0a825be1846e0b16cfa00b11e"
+ integrity sha1-Jsu1r/ZBRLCoJb4YRuCxbPoAsR4=
+ dependencies:
+ ast-types-flow "0.0.7"
+ commander "^2.11.0"
+
+arr-diff@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
+ integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=
+ dependencies:
+ arr-flatten "^1.0.1"
+
+arr-diff@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
+ integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
+
+arr-flatten@^1.0.1, arr-flatten@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+ integrity sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=
+
+arr-union@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+ integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+
+array-equal@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
+ integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
+
+array-filter@~0.0.0:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
+ integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw=
+
+array-find-index@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
+ integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
+
+array-flatten@1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+ integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+
+array-flatten@^2.1.0:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
+ integrity sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=
+
+array-includes@^3.0.3, array-includes@^3.1.2, array-includes@^3.1.3:
+ version "3.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
+ integrity sha1-x/YZs4KtKvr1Mmzd/cCvxhr3aQo=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ get-intrinsic "^1.1.1"
+ is-string "^1.0.5"
+
+array-map@~0.0.0:
+ version "0.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
+ integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=
+
+array-reduce@~0.0.0:
+ version "0.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
+ integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=
+
+array-union@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
+ integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
+ dependencies:
+ array-uniq "^1.0.1"
+
+array-uniq@^1.0.1:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
+ integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
+
+array-unique@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
+ integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=
+
+array-unique@^0.3.2:
+ version "0.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
+ integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
+
+array.prototype.filter@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz#24d63e38983cdc6bf023a3c574b2f2a3f384c301"
+ integrity sha1-JNY+OJg83GvwI6PFdLLyo/OEwwE=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0"
+ es-array-method-boxes-properly "^1.0.0"
+ is-string "^1.0.5"
+
+array.prototype.find@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c"
+ integrity sha1-O6yiYQjKev+wjbBr8L5ssxFalpw=
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.4"
+
+array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3, array.prototype.flat@^1.2.4:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
+ integrity sha1-bvY4tDMSvUAbTGGZ/ex+LcnpoSM=
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+
+array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.4:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
+ integrity sha1-lM/UfMFVbsB0fZf3x3OMWBIgBMk=
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ function-bind "^1.1.1"
+
+array.prototype.map@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/array.prototype.map/-/array.prototype.map-1.0.3.tgz#1609623618d3d84134a37d4a220030c2bd18420b"
+ integrity sha1-FgliNhjT2EE0o31KIgAwwr0YQgs=
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ es-array-method-boxes-properly "^1.0.0"
+ is-string "^1.0.5"
+
+arrify@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
+ integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
+
+asap@~2.0.3:
+ version "2.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
+ integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
+
+asn1.js@^5.2.0:
+ version "5.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
+ integrity sha1-EamAuE67kXgc41sP3C7ilON4Pwc=
+ dependencies:
+ bn.js "^4.0.0"
+ inherits "^2.0.1"
+ minimalistic-assert "^1.0.0"
+ safer-buffer "^2.1.0"
+
+asn1@~0.2.3:
+ version "0.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
+ integrity sha1-jSR136tVO7M+d7VOWeiAu4ziMTY=
+ dependencies:
+ safer-buffer "~2.1.0"
+
+assert-plus@1.0.0, assert-plus@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
+ integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
+
+assert-plus@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
+ integrity sha1-104bh+ev/A24qttwIfP+SBAasjQ=
+
+assert@^1.1.1:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
+ integrity sha1-VcEJqvbgrv2z3EtxJAxwv1dLGOs=
+ dependencies:
+ object-assign "^4.1.1"
+ util "0.10.3"
+
+assign-symbols@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
+ integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
+
+ast-types-flow@0.0.7:
+ version "0.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
+ integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
+
+ast-types@^0.14.2:
+ version "0.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd"
+ integrity sha1-YAuILfhYPjzU8t9fog+oN1nUvf0=
+ dependencies:
+ tslib "^2.0.1"
+
+astral-regex@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
+ integrity sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k=
+
+async-each@^1.0.1:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
+ integrity sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8=
+
+async-foreach@^0.1.3:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
+ integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=
+
+async-limiter@~1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
+ integrity sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=
+
+async@2.1.4:
+ version "2.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4"
+ integrity sha1-LSFgx3iAMuTdbL4lAvH5osj2zeQ=
+ dependencies:
+ lodash "^4.14.0"
+
+async@^2.1.4, async@^2.4.1, async@^2.6.2:
+ version "2.6.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
+ integrity sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8=
+ dependencies:
+ lodash "^4.17.14"
+
+asynckit@^0.4.0:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
+
+atob@^2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
+ integrity sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=
+
+autoprefixer@7.1.6:
+ version "7.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/autoprefixer/-/autoprefixer-7.1.6.tgz#fb933039f74af74a83e71225ce78d9fd58ba84d7"
+ integrity sha1-+5MwOfdK90qD5xIlznjZ/Vi6hNc=
+ dependencies:
+ browserslist "^2.5.1"
+ caniuse-lite "^1.0.30000748"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^6.0.13"
+ postcss-value-parser "^3.2.3"
+
+autoprefixer@^6.3.1:
+ version "6.7.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
+ integrity sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=
+ dependencies:
+ browserslist "^1.7.6"
+ caniuse-db "^1.0.30000634"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^5.2.16"
+ postcss-value-parser "^3.2.3"
+
+autoprefixer@^9.7.2:
+ version "9.8.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
+ integrity sha1-O3NZTKG/kmYyDFrPFYjXTep0IQ8=
+ dependencies:
+ browserslist "^4.12.0"
+ caniuse-lite "^1.0.30001109"
+ colorette "^1.2.1"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^7.0.32"
+ postcss-value-parser "^4.1.0"
+
+await-transaction-mined@^1.0.12:
+ version "1.0.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/await-transaction-mined/-/await-transaction-mined-1.0.12.tgz#be7b3eed6ce01e5b28f6e0588d38e70eaf2c81f8"
+ integrity sha1-vns+7WzgHlso9uBYjTjnDq8sgfg=
+
+aws-sign2@~0.6.0:
+ version "0.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
+ integrity sha1-FDQt0428yU0OW4fXY81jYSwOeU8=
+
+aws-sign2@~0.7.0:
+ version "0.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
+ integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
+
+aws4@^1.2.1, aws4@^1.8.0:
+ version "1.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
+ integrity sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk=
+
+axios-mock-adapter@^1.15.0:
+ version "1.19.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/axios-mock-adapter/-/axios-mock-adapter-1.19.0.tgz#9d72e321a6c5418e1eff067aa99761a86c5188a4"
+ integrity sha1-nXLjIabFQY4e/wZ6qZdhqGxRiKQ=
+ dependencies:
+ fast-deep-equal "^3.1.3"
+ is-buffer "^2.0.3"
+
+axios@^0.18.0:
+ version "0.18.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/axios/-/axios-0.18.1.tgz#ff3f0de2e7b5d180e757ad98000f1081b87bcea3"
+ integrity sha1-/z8N4ue10YDnV62YAA8Qgbh7zqM=
+ dependencies:
+ follow-redirects "1.5.10"
+ is-buffer "^2.0.2"
+
+axios@^0.21.1:
+ version "0.21.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8"
+ integrity sha1-IlY0gZYvTWvemnbVFu8OXTwJsrg=
+ dependencies:
+ follow-redirects "^1.10.0"
+
+axobject-query@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
+ integrity sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=
+ dependencies:
+ ast-types-flow "0.0.7"
+
+babel-code-frame@^6.11.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
+ integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
+ dependencies:
+ chalk "^1.1.3"
+ esutils "^2.0.2"
+ js-tokens "^3.0.2"
+
+babel-core@^6.0.0, babel-core@^6.26.0:
+ version "6.26.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
+ integrity sha1-suLwnjQtDwyI4vAuBneUEl51wgc=
+ dependencies:
+ babel-code-frame "^6.26.0"
+ babel-generator "^6.26.0"
+ babel-helpers "^6.24.1"
+ babel-messages "^6.23.0"
+ babel-register "^6.26.0"
+ babel-runtime "^6.26.0"
+ babel-template "^6.26.0"
+ babel-traverse "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ convert-source-map "^1.5.1"
+ debug "^2.6.9"
+ json5 "^0.5.1"
+ lodash "^4.17.4"
+ minimatch "^3.0.4"
+ path-is-absolute "^1.0.1"
+ private "^0.1.8"
+ slash "^1.0.0"
+ source-map "^0.5.7"
+
+babel-core@^7.0.0-bridge.0:
+ version "7.0.0-bridge.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
+ integrity sha1-laSS3dkPm06aSh2hTrM1uHtjTs4=
+
+babel-eslint@^10.0.3:
+ version "10.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
+ integrity sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/parser" "^7.7.0"
+ "@babel/traverse" "^7.7.0"
+ "@babel/types" "^7.7.0"
+ eslint-visitor-keys "^1.0.0"
+ resolve "^1.12.0"
+
+babel-generator@^6.18.0, babel-generator@^6.26.0:
+ version "6.26.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
+ integrity sha1-GERAjTuPDTWkBOp6wYDwh6YBvZA=
+ dependencies:
+ babel-messages "^6.23.0"
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ detect-indent "^4.0.0"
+ jsesc "^1.3.0"
+ lodash "^4.17.4"
+ source-map "^0.5.7"
+ trim-right "^1.0.1"
+
+babel-helper-builder-react-jsx@^6.24.1:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
+ integrity sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=
+ dependencies:
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ esutils "^2.0.2"
+
+babel-helper-evaluate-path@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c"
+ integrity sha1-pi+pxOZP9+pc6pNTF07wI6kApnw=
+
+babel-helper-flip-expressions@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd"
+ integrity sha1-NpZzahKKwYvCUlS19AoizrPB0/0=
+
+babel-helper-is-nodes-equiv@^0.0.1:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684"
+ integrity sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ=
+
+babel-helper-is-void-0@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e"
+ integrity sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4=
+
+babel-helper-mark-eval-scopes@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562"
+ integrity sha1-0kSjvvmESHJgP/tG4izorN9VFWI=
+
+babel-helper-remove-or-void@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60"
+ integrity sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA=
+
+babel-helper-to-multiple-sequence-expressions@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d"
+ integrity sha1-o/kk41YYgtQvz0iQeqmPeXmkWI0=
+
+babel-helpers@^6.24.1:
+ version "6.24.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
+ integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
+babel-jest@^23.4.2, babel-jest@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1"
+ integrity sha1-pkQjI2ZVeiJAoMCD2msleGGFovE=
+ dependencies:
+ babel-plugin-istanbul "^4.1.6"
+ babel-preset-jest "^23.2.0"
+
+babel-loader@8.0.5:
+ version "8.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-loader/-/babel-loader-8.0.5.tgz#225322d7509c2157655840bba52e46b6c2f2fe33"
+ integrity sha1-IlMi11CcIVdlWEC7pS5GtsLy/jM=
+ dependencies:
+ find-cache-dir "^2.0.0"
+ loader-utils "^1.0.2"
+ mkdirp "^0.5.1"
+ util.promisify "^1.0.0"
+
+babel-loader@^8.0.5:
+ version "8.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81"
+ integrity sha1-k2POhMEMmkDmx1N0jhRBtgyKC4E=
+ dependencies:
+ find-cache-dir "^3.3.1"
+ loader-utils "^1.4.0"
+ make-dir "^3.1.0"
+ schema-utils "^2.6.5"
+
+babel-messages@^6.23.0:
+ version "6.23.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
+ integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-add-react-displayname@^0.0.5:
+ version "0.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5"
+ integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
+
+babel-plugin-dynamic-import-node@2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.2.0.tgz#c0adfb07d95f4a4495e9aaac6ec386c4d7c2524e"
+ integrity sha1-wK37B9lfSkSV6aqsbsOGxNfCUk4=
+ dependencies:
+ object.assign "^4.1.0"
+
+babel-plugin-dynamic-import-node@^2.3.3:
+ version "2.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
+ integrity sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=
+ dependencies:
+ object.assign "^4.1.0"
+
+babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27:
+ version "10.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz#a1fe3503cff80abfd0bdda14abd2e8e57a79d17d"
+ integrity sha1-of41A8/4Cr/QvdoUq9Lo5Xp50X0=
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@emotion/hash" "0.8.0"
+ "@emotion/memoize" "0.7.4"
+ "@emotion/serialize" "^0.11.16"
+ babel-plugin-macros "^2.0.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ convert-source-map "^1.5.0"
+ escape-string-regexp "^1.0.5"
+ find-root "^1.1.0"
+ source-map "^0.5.7"
+
+babel-plugin-istanbul@^4.1.6:
+ version "4.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
+ integrity sha1-NsWbIZLvzoHFs3gyG3QXWt0cmkU=
+ dependencies:
+ babel-plugin-syntax-object-rest-spread "^6.13.0"
+ find-up "^2.1.0"
+ istanbul-lib-instrument "^1.10.1"
+ test-exclude "^4.2.1"
+
+babel-plugin-jest-hoist@^23.2.0:
+ version "23.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167"
+ integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=
+
+babel-plugin-macros@2.5.0:
+ version "2.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-macros/-/babel-plugin-macros-2.5.0.tgz#01f4d3b50ed567a67b80a30b9da066e94f4097b6"
+ integrity sha1-AfTTtQ7VZ6Z7gKMLnaBm6U9Al7Y=
+ dependencies:
+ cosmiconfig "^5.0.5"
+ resolve "^1.8.1"
+
+babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.7.0:
+ version "2.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
+ integrity sha1-D5WKfMZVax5lNERl2ZERoeXhATg=
+ dependencies:
+ "@babel/runtime" "^7.7.2"
+ cosmiconfig "^6.0.0"
+ resolve "^1.12.0"
+
+babel-plugin-minify-builtins@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b"
+ integrity sha1-MeuC7RoNDv3DExL5O25HQc6Cw2s=
+
+babel-plugin-minify-constant-folding@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e"
+ integrity sha1-+EvI2/alYeXjUP+VriFrCtVRW24=
+ dependencies:
+ babel-helper-evaluate-path "^0.5.0"
+
+babel-plugin-minify-dead-code-elimination@^0.5.1:
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f"
+ integrity sha1-Ggxo5EvjDeSXbKaf/FNeCL4TaD8=
+ dependencies:
+ babel-helper-evaluate-path "^0.5.0"
+ babel-helper-mark-eval-scopes "^0.4.3"
+ babel-helper-remove-or-void "^0.4.3"
+ lodash "^4.17.11"
+
+babel-plugin-minify-flip-comparisons@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a"
+ integrity sha1-AMqHDLjxO0XAOLPB68DyJyk8llo=
+ dependencies:
+ babel-helper-is-void-0 "^0.4.3"
+
+babel-plugin-minify-guarded-expressions@^0.4.4:
+ version "0.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135"
+ integrity sha1-gYlg9kzAiu6dbHW+xtqXTE1iETU=
+ dependencies:
+ babel-helper-evaluate-path "^0.5.0"
+ babel-helper-flip-expressions "^0.4.3"
+
+babel-plugin-minify-infinity@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca"
+ integrity sha1-37h2obCKBldjhO8/kuZTumB7Oco=
+
+babel-plugin-minify-mangle-names@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3"
+ integrity sha1-vN21B8kdLJnhOL1rF6GcPCceP9M=
+ dependencies:
+ babel-helper-mark-eval-scopes "^0.4.3"
+
+babel-plugin-minify-numeric-literals@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc"
+ integrity sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw=
+
+babel-plugin-minify-replace@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c"
+ integrity sha1-0+LJlGyQlsBw78lnYc4ojsXD9xw=
+
+babel-plugin-minify-simplify@^0.5.1:
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a"
+ integrity sha1-8hYTyLla80UKLKcVAv29kXk8jWo=
+ dependencies:
+ babel-helper-evaluate-path "^0.5.0"
+ babel-helper-flip-expressions "^0.4.3"
+ babel-helper-is-nodes-equiv "^0.0.1"
+ babel-helper-to-multiple-sequence-expressions "^0.5.0"
+
+babel-plugin-minify-type-constructors@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500"
+ integrity sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA=
+ dependencies:
+ babel-helper-is-void-0 "^0.4.3"
+
+babel-plugin-named-asset-import@^0.3.1:
+ version "0.3.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz#156cd55d3f1228a5765774340937afc8398067dd"
+ integrity sha1-FWzVXT8SKKV2V3Q0CTevyDmAZ90=
+
+babel-plugin-polyfill-corejs2@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
+ integrity sha1-6RJHheb9lPlLYYp5VOVpMFO/Uyc=
+ dependencies:
+ "@babel/compat-data" "^7.13.11"
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+ semver "^6.1.1"
+
+babel-plugin-polyfill-corejs3@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz#7424a1682ee44baec817327710b1b094e5f8f7f5"
+ integrity sha1-dCShaC7kS67IFzJ3ELGwlOX49/U=
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+ core-js-compat "^3.9.1"
+
+babel-plugin-polyfill-regenerator@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
+ integrity sha1-sxDI1kKsraNIwfo7Pmzg6FG+4Hc=
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
+
+babel-plugin-react-docgen@^4.0.0:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz#7cc8e2f94e8dc057a06e953162f0810e4e72257b"
+ integrity sha1-fMji+U6NwFegbpUxYvCBDk5yJXs=
+ dependencies:
+ ast-types "^0.14.2"
+ lodash "^4.17.15"
+ react-docgen "^5.0.0"
+
+babel-plugin-react-svg@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-react-svg/-/babel-plugin-react-svg-2.1.0.tgz#169eeba1a20fa2dee3a71ff38eedd63d08e69487"
+ integrity sha1-Fp7roaIPot7jpx/zju3WPQjmlIc=
+
+babel-plugin-syntax-flow@^6.18.0:
+ version "6.18.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
+ integrity sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=
+
+babel-plugin-syntax-jsx@^6.18.0, babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
+ version "6.18.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
+ integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
+
+babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0:
+ version "6.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
+ integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
+
+babel-plugin-transform-flow-strip-types@^6.22.0:
+ version "6.22.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
+ integrity sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=
+ dependencies:
+ babel-plugin-syntax-flow "^6.18.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-inline-consecutive-adds@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1"
+ integrity sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE=
+
+babel-plugin-transform-member-expression-literals@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf"
+ integrity sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8=
+
+babel-plugin-transform-merge-sibling-variables@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae"
+ integrity sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4=
+
+babel-plugin-transform-minify-booleans@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198"
+ integrity sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg=
+
+babel-plugin-transform-object-rest-spread@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
+ integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
+ dependencies:
+ babel-plugin-syntax-object-rest-spread "^6.8.0"
+ babel-runtime "^6.26.0"
+
+babel-plugin-transform-property-literals@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39"
+ integrity sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk=
+ dependencies:
+ esutils "^2.0.2"
+
+babel-plugin-transform-react-display-name@^6.23.0:
+ version "6.25.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
+ integrity sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-react-jsx-self@^6.22.0:
+ version "6.22.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
+ integrity sha1-322AqdomEqEh5t3XVYvL7PBuY24=
+ dependencies:
+ babel-plugin-syntax-jsx "^6.8.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-react-jsx-source@^6.22.0:
+ version "6.22.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
+ integrity sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=
+ dependencies:
+ babel-plugin-syntax-jsx "^6.8.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-react-jsx@^6.24.1:
+ version "6.24.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
+ integrity sha1-hAoCjn30YN/DotKfDA2R9jduZqM=
+ dependencies:
+ babel-helper-builder-react-jsx "^6.24.1"
+ babel-plugin-syntax-jsx "^6.8.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-react-remove-prop-types@0.4.24:
+ version "0.4.24"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
+ integrity sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=
+
+babel-plugin-transform-regexp-constructors@^0.4.3:
+ version "0.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965"
+ integrity sha1-WLd3W2OvzzMyj66aX4j71PsLSWU=
+
+babel-plugin-transform-remove-console@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780"
+ integrity sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A=
+
+babel-plugin-transform-remove-debugger@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2"
+ integrity sha1-QrcnYxyXl44estGZp67IShgznvI=
+
+babel-plugin-transform-remove-undefined@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd"
+ integrity sha1-gCCLMSJXZsYwyX+i0oiVIFbqIt0=
+ dependencies:
+ babel-helper-evaluate-path "^0.5.0"
+
+babel-plugin-transform-simplify-comparison-operators@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9"
+ integrity sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk=
+
+babel-plugin-transform-undefined-to-void@^6.9.4:
+ version "6.9.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280"
+ integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA=
+
+babel-preset-flow@^6.23.0:
+ version "6.23.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
+ integrity sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=
+ dependencies:
+ babel-plugin-transform-flow-strip-types "^6.22.0"
+
+babel-preset-jest@^23.2.0:
+ version "23.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46"
+ integrity sha1-jsegOhOPABoaj7HoETZSvxpV2kY=
+ dependencies:
+ babel-plugin-jest-hoist "^23.2.0"
+ babel-plugin-syntax-object-rest-spread "^6.13.0"
+
+"babel-preset-minify@^0.5.0 || 0.6.0-alpha.5":
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f"
+ integrity sha1-JfXQvONuyBi+gDONDllBBuIeqp8=
+ dependencies:
+ babel-plugin-minify-builtins "^0.5.0"
+ babel-plugin-minify-constant-folding "^0.5.0"
+ babel-plugin-minify-dead-code-elimination "^0.5.1"
+ babel-plugin-minify-flip-comparisons "^0.4.3"
+ babel-plugin-minify-guarded-expressions "^0.4.4"
+ babel-plugin-minify-infinity "^0.4.3"
+ babel-plugin-minify-mangle-names "^0.5.0"
+ babel-plugin-minify-numeric-literals "^0.4.3"
+ babel-plugin-minify-replace "^0.5.0"
+ babel-plugin-minify-simplify "^0.5.1"
+ babel-plugin-minify-type-constructors "^0.4.3"
+ babel-plugin-transform-inline-consecutive-adds "^0.4.3"
+ babel-plugin-transform-member-expression-literals "^6.9.4"
+ babel-plugin-transform-merge-sibling-variables "^6.9.4"
+ babel-plugin-transform-minify-booleans "^6.9.4"
+ babel-plugin-transform-property-literals "^6.9.4"
+ babel-plugin-transform-regexp-constructors "^0.4.3"
+ babel-plugin-transform-remove-console "^6.9.4"
+ babel-plugin-transform-remove-debugger "^6.9.4"
+ babel-plugin-transform-remove-undefined "^0.5.0"
+ babel-plugin-transform-simplify-comparison-operators "^6.9.4"
+ babel-plugin-transform-undefined-to-void "^6.9.4"
+ lodash "^4.17.11"
+
+babel-preset-react-app@7.0.2:
+ version "7.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-preset-react-app/-/babel-preset-react-app-7.0.2.tgz#d01ae973edc93b9f1015cb0236dd55889a584308"
+ integrity sha1-0Brpc+3JO58QFcsCNt1ViJpYQwg=
+ dependencies:
+ "@babel/core" "7.2.2"
+ "@babel/plugin-proposal-class-properties" "7.3.0"
+ "@babel/plugin-proposal-decorators" "7.3.0"
+ "@babel/plugin-proposal-object-rest-spread" "7.3.2"
+ "@babel/plugin-syntax-dynamic-import" "7.2.0"
+ "@babel/plugin-transform-classes" "7.2.2"
+ "@babel/plugin-transform-destructuring" "7.3.2"
+ "@babel/plugin-transform-flow-strip-types" "7.2.3"
+ "@babel/plugin-transform-react-constant-elements" "7.2.0"
+ "@babel/plugin-transform-react-display-name" "7.2.0"
+ "@babel/plugin-transform-runtime" "7.2.0"
+ "@babel/preset-env" "7.3.1"
+ "@babel/preset-react" "7.0.0"
+ "@babel/preset-typescript" "7.1.0"
+ "@babel/runtime" "7.3.1"
+ babel-loader "8.0.5"
+ babel-plugin-dynamic-import-node "2.2.0"
+ babel-plugin-macros "2.5.0"
+ babel-plugin-transform-react-remove-prop-types "0.4.24"
+
+babel-preset-react@^6.24.1:
+ version "6.24.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
+ integrity sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=
+ dependencies:
+ babel-plugin-syntax-jsx "^6.3.13"
+ babel-plugin-transform-react-display-name "^6.23.0"
+ babel-plugin-transform-react-jsx "^6.24.1"
+ babel-plugin-transform-react-jsx-self "^6.22.0"
+ babel-plugin-transform-react-jsx-source "^6.22.0"
+ babel-preset-flow "^6.23.0"
+
+babel-register@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
+ integrity sha1-btAhFz4vy0htestFxgCahW9kcHE=
+ dependencies:
+ babel-core "^6.26.0"
+ babel-runtime "^6.26.0"
+ core-js "^2.5.0"
+ home-or-tmp "^2.0.0"
+ lodash "^4.17.4"
+ mkdirp "^0.5.1"
+ source-map-support "^0.4.15"
+
+babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
+ integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
+ dependencies:
+ core-js "^2.4.0"
+ regenerator-runtime "^0.11.0"
+
+babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
+ integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
+ dependencies:
+ babel-runtime "^6.26.0"
+ babel-traverse "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ lodash "^4.17.4"
+
+babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
+ integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
+ dependencies:
+ babel-code-frame "^6.26.0"
+ babel-messages "^6.23.0"
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ debug "^2.6.8"
+ globals "^9.18.0"
+ invariant "^2.2.2"
+ lodash "^4.17.4"
+
+babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0:
+ version "6.26.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
+ integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
+ dependencies:
+ babel-runtime "^6.26.0"
+ esutils "^2.0.2"
+ lodash "^4.17.4"
+ to-fast-properties "^1.0.3"
+
+babylon@^6.18.0:
+ version "6.18.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
+ integrity sha1-ry87iPpvXB5MY00aD46sT1WzleM=
+
+bail@^1.0.0:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
+ integrity sha1-tvoTNASjksvB+MS/Y/WVM1Hnp3Y=
+
+balanced-match@^0.4.2:
+ version "0.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
+ integrity sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=
+
+balanced-match@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+ integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
+
+base-x@^3.0.2:
+ version "3.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/base-x/-/base-x-3.0.8.tgz#1e1106c2537f0162e8b52474a557ebb09000018d"
+ integrity sha1-HhEGwlN/AWLotSR0pVfrsJAAAY0=
+ dependencies:
+ safe-buffer "^5.0.1"
+
+base64-js@^1.0.2, base64-js@^1.3.1:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
+ integrity sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=
+
+base@^0.11.1:
+ version "0.11.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
+ integrity sha1-e95c7RRbbVUakNuH+DxVi060io8=
+ dependencies:
+ 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"
+
+batch-processor@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/batch-processor/-/batch-processor-1.0.0.tgz#75c95c32b748e0850d10c2b168f6bdbe9891ace8"
+ integrity sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=
+
+batch@0.6.1:
+ version "0.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
+ integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
+
+bcrypt-pbkdf@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
+ integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
+ dependencies:
+ tweetnacl "^0.14.3"
+
+big.js@^3.1.3:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
+ integrity sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4=
+
+big.js@^5.2.2:
+ version "5.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+ integrity sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=
+
+binary-extensions@^1.0.0:
+ version "1.13.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
+ integrity sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=
+
+binary-extensions@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+ integrity sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=
+
+bindings@^1.5.0:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
+ integrity sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=
+ dependencies:
+ file-uri-to-path "1.0.0"
+
+bip66@^1.1.5:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bip66/-/bip66-1.1.5.tgz#01fa8748785ca70955d5011217d1b3139969ca22"
+ integrity sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI=
+ dependencies:
+ safe-buffer "^5.0.1"
+
+bl@^1.0.0:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7"
+ integrity sha1-Ho3YAULqyA1xWMnczAR/tiDgNec=
+ dependencies:
+ readable-stream "^2.3.5"
+ safe-buffer "^5.1.1"
+
+blakejs@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/blakejs/-/blakejs-1.1.0.tgz#69df92ef953aa88ca51a32df6ab1c54a155fc7a5"
+ integrity sha1-ad+S75U6qIylGjLfarHFShVfx6U=
+
+block-stream@*:
+ version "0.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
+ integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=
+ dependencies:
+ inherits "~2.0.0"
+
+bluebird@3.5.0:
+ version "3.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c"
+ integrity sha1-eRQg1/VR7qKJdFOop3ZT+WYG1nw=
+
+bluebird@3.7.2, bluebird@^3.3.5, bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5.5:
+ version "3.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
+ integrity sha1-nyKcFb4nJFT/qXOs4NvueaGww28=
+
+bluebird@^2.9.34:
+ version "2.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1"
+ integrity sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=
+
+bn.js@4.11.6:
+ version "4.11.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
+ integrity sha1-UzRK2xRhehP26N0s4okF0cC6MhU=
+
+bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.0, bn.js@^4.11.1, bn.js@^4.11.6, bn.js@^4.11.8, bn.js@^4.11.9, bn.js@^4.4.0:
+ version "4.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
+ integrity sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=
+
+bn.js@^5.0.0, bn.js@^5.1.1:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
+ integrity sha1-NYhgZ0OWxpl3canQUfzBtX1K4AI=
+
+body-parser@1.19.0, body-parser@^1.16.0:
+ version "1.19.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+ integrity sha1-lrJwnlfJxOCab9Zqj9l5hE9p8Io=
+ dependencies:
+ bytes "3.1.0"
+ content-type "~1.0.4"
+ debug "2.6.9"
+ depd "~1.1.2"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ on-finished "~2.3.0"
+ qs "6.7.0"
+ raw-body "2.4.0"
+ type-is "~1.6.17"
+
+bonjour@^3.5.0:
+ version "3.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
+ integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU=
+ dependencies:
+ 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"
+
+boolbase@^1.0.0, boolbase@~1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
+ integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+
+boom@2.x.x:
+ version "2.10.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
+ integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=
+ dependencies:
+ hoek "2.x.x"
+
+boxen@^1.2.1:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
+ integrity sha1-VcbDmouljZxhrSLNh3Uy3rZlogs=
+ dependencies:
+ ansi-align "^2.0.0"
+ camelcase "^4.0.0"
+ chalk "^2.0.1"
+ cli-boxes "^1.0.0"
+ string-width "^2.0.0"
+ term-size "^1.2.0"
+ widest-line "^2.0.0"
+
+boxen@^4.1.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
+ integrity sha1-5BG2I1fW1tNlh8isPV2XTaoHDmQ=
+ dependencies:
+ ansi-align "^3.0.0"
+ camelcase "^5.3.1"
+ chalk "^3.0.0"
+ cli-boxes "^2.2.0"
+ string-width "^4.1.0"
+ term-size "^2.1.0"
+ type-fest "^0.8.1"
+ widest-line "^3.1.0"
+
+brace-expansion@^1.1.7:
+ version "1.1.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+braces@^1.8.2:
+ version "1.8.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
+ integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=
+ dependencies:
+ expand-range "^1.8.1"
+ preserve "^0.2.0"
+ repeat-element "^1.1.2"
+
+braces@^2.3.1, braces@^2.3.2:
+ version "2.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
+ integrity sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=
+ dependencies:
+ 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"
+
+braces@^3.0.1, braces@~3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+ integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc=
+ dependencies:
+ fill-range "^7.0.1"
+
+brorand@^1.0.1, brorand@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
+ integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+
+browser-process-hrtime@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
+ integrity sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=
+
+browser-resolve@^1.11.3:
+ version "1.11.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
+ integrity sha1-m3y7PQ9RDky4a9vXlhJNKLWJCvY=
+ dependencies:
+ resolve "1.1.7"
+
+browserify-aes@^1.0.0, browserify-aes@^1.0.4, browserify-aes@^1.0.6, browserify-aes@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
+ integrity sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=
+ dependencies:
+ 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@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
+ integrity sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=
+ dependencies:
+ browserify-aes "^1.0.4"
+ browserify-des "^1.0.0"
+ evp_bytestokey "^1.0.0"
+
+browserify-des@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
+ integrity sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=
+ dependencies:
+ cipher-base "^1.0.1"
+ des.js "^1.0.0"
+ inherits "^2.0.1"
+ safe-buffer "^5.1.2"
+
+browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
+ integrity sha1-sv0Gtbda4pf3zi3GUfkY9b4VjI0=
+ dependencies:
+ bn.js "^5.0.0"
+ randombytes "^2.0.1"
+
+browserify-sha3@^0.0.4:
+ version "0.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-sha3/-/browserify-sha3-0.0.4.tgz#086c47b8c82316c9d47022c26185954576dd8e26"
+ integrity sha1-CGxHuMgjFsnUcCLCYYWVRXbdjiY=
+ dependencies:
+ js-sha3 "^0.6.1"
+ safe-buffer "^5.1.1"
+
+browserify-sign@^4.0.0:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
+ integrity sha1-6vSt1G3VS+O7OzbAzxWrvrp5VsM=
+ dependencies:
+ 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"
+
+browserify-zlib@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
+ integrity sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=
+ dependencies:
+ pako "~1.0.5"
+
+browserslist@4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserslist/-/browserslist-4.1.1.tgz#328eb4ff1215b12df6589e9ab82f8adaa4fc8cd6"
+ integrity sha1-Mo60/xIVsS32WJ6auC+K2qT8jNY=
+ dependencies:
+ caniuse-lite "^1.0.30000884"
+ electron-to-chromium "^1.3.62"
+ node-releases "^1.0.0-alpha.11"
+
+browserslist@4.7.0:
+ version "4.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17"
+ integrity sha1-nuiSJf/AfbA0CfL+5STcgidFihc=
+ dependencies:
+ caniuse-lite "^1.0.30000989"
+ electron-to-chromium "^1.3.247"
+ node-releases "^1.1.29"
+
+browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
+ version "1.7.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
+ integrity sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=
+ dependencies:
+ caniuse-db "^1.0.30000639"
+ electron-to-chromium "^1.2.7"
+
+browserslist@^2.5.1:
+ version "2.11.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2"
+ integrity sha1-/jYWeu0bvN5IJ+v+cTR6LMcLmbI=
+ dependencies:
+ caniuse-lite "^1.0.30000792"
+ electron-to-chromium "^1.3.30"
+
+browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.3.4:
+ version "4.16.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
+ integrity sha1-15ASd6WojlVO0wWxg+ybDAj2b6I=
+ dependencies:
+ caniuse-lite "^1.0.30001219"
+ colorette "^1.2.2"
+ electron-to-chromium "^1.3.723"
+ escalade "^3.1.1"
+ node-releases "^1.1.71"
+
+bs58@^4.0.0:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a"
+ integrity sha1-vhYedsNU9veIrkBx9j806MTwpCo=
+ dependencies:
+ base-x "^3.0.2"
+
+bs58check@^2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bs58check/-/bs58check-2.1.2.tgz#53b018291228d82a5aa08e7d796fdafda54aebfc"
+ integrity sha1-U7AYKRIo2CpaoI59eW/a/aVK6/w=
+ dependencies:
+ bs58 "^4.0.0"
+ create-hash "^1.1.0"
+ safe-buffer "^5.1.2"
+
+bser@2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
+ integrity sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=
+ dependencies:
+ node-int64 "^0.4.0"
+
+buffer-alloc-unsafe@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0"
+ integrity sha1-vX3CauKXLQ7aJTvgYdupkjScGfA=
+
+buffer-alloc@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec"
+ integrity sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow=
+ dependencies:
+ buffer-alloc-unsafe "^1.1.0"
+ buffer-fill "^1.0.0"
+
+buffer-crc32@~0.2.3:
+ version "0.2.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
+ integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
+
+buffer-fill@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c"
+ integrity sha1-+PeLdniYiO858gXNY39o5wISKyw=
+
+buffer-from@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
+ integrity sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=
+
+buffer-indexof@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
+ integrity sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=
+
+buffer-to-arraybuffer@^0.0.5:
+ version "0.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz#6064a40fa76eb43c723aba9ef8f6e1216d10511a"
+ integrity sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=
+
+buffer-xor@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
+ integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
+
+buffer@^4.3.0:
+ version "4.9.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
+ integrity sha1-Iw6tNEACmIZEhBqwJEr4xEu+Pvg=
+ dependencies:
+ base64-js "^1.0.2"
+ ieee754 "^1.1.4"
+ isarray "^1.0.0"
+
+buffer@^5.0.5, buffer@^5.2.1:
+ version "5.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
+ integrity sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA=
+ dependencies:
+ base64-js "^1.3.1"
+ ieee754 "^1.1.13"
+
+builtin-status-codes@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
+ integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+
+bytes@3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+ integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+
+bytes@3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
+ integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=
+
+c8@^7.6.0:
+ version "7.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/c8/-/c8-7.7.2.tgz#30ff37b8125d96cab3eb065895a0b68dbc495a0f"
+ integrity sha1-MP83uBJdlsqz6wZYlaC2jbxJWg8=
+ dependencies:
+ "@bcoe/v8-coverage" "^0.2.3"
+ "@istanbuljs/schema" "^0.1.2"
+ find-up "^5.0.0"
+ foreground-child "^2.0.0"
+ istanbul-lib-coverage "^3.0.0"
+ istanbul-lib-report "^3.0.0"
+ istanbul-reports "^3.0.2"
+ rimraf "^3.0.0"
+ test-exclude "^6.0.0"
+ v8-to-istanbul "^7.1.0"
+ yargs "^16.2.0"
+ yargs-parser "^20.2.7"
+
+cacache@^10.0.4:
+ version "10.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460"
+ integrity sha1-ZFI2eZnv+dQYiu/ZoU6dfGomNGA=
+ dependencies:
+ bluebird "^3.5.1"
+ chownr "^1.0.1"
+ glob "^7.1.2"
+ graceful-fs "^4.1.11"
+ lru-cache "^4.1.1"
+ mississippi "^2.0.0"
+ mkdirp "^0.5.1"
+ move-concurrently "^1.0.1"
+ promise-inflight "^1.0.1"
+ rimraf "^2.6.2"
+ ssri "^5.2.4"
+ unique-filename "^1.1.0"
+ y18n "^4.0.0"
+
+cacache@^12.0.2:
+ version "12.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
+ integrity sha1-ZovL0QWutfHZL+JVcOyVJcj6pAw=
+ dependencies:
+ 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"
+
+cacache@^13.0.1:
+ version "13.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c"
+ integrity sha1-qAAMIWlwiQgvhSh6GuxuOCAkpxw=
+ dependencies:
+ chownr "^1.1.2"
+ figgy-pudding "^3.5.1"
+ fs-minipass "^2.0.0"
+ glob "^7.1.4"
+ graceful-fs "^4.2.2"
+ infer-owner "^1.0.4"
+ lru-cache "^5.1.1"
+ minipass "^3.0.0"
+ minipass-collect "^1.0.2"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.2"
+ mkdirp "^0.5.1"
+ move-concurrently "^1.0.1"
+ p-map "^3.0.0"
+ promise-inflight "^1.0.1"
+ rimraf "^2.7.1"
+ ssri "^7.0.0"
+ unique-filename "^1.1.1"
+
+cache-base@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
+ integrity sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=
+ dependencies:
+ 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@^1.0.0, call-bind@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+ integrity sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=
+ dependencies:
+ function-bind "^1.1.1"
+ get-intrinsic "^1.0.2"
+
+call-me-maybe@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
+ integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
+
+caller-callsite@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
+ integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+ dependencies:
+ callsites "^2.0.0"
+
+caller-path@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
+ integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=
+ dependencies:
+ callsites "^0.2.0"
+
+caller-path@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
+ integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+ dependencies:
+ caller-callsite "^2.0.0"
+
+callsites@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
+ integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=
+
+callsites@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
+ integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
+
+callsites@^3.0.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=
+
+camel-case@^4.1.1:
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+ integrity sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=
+ dependencies:
+ pascal-case "^3.1.2"
+ tslib "^2.0.3"
+
+camelcase-keys@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
+ integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc=
+ dependencies:
+ camelcase "^2.0.0"
+ map-obj "^1.0.0"
+
+camelcase@^2.0.0:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
+ integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=
+
+camelcase@^4.0.0, camelcase@^4.1.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
+ integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
+
+camelcase@^5.0.0, camelcase@^5.3.1:
+ version "5.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+ integrity sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=
+
+can-use-dom@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a"
+ integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=
+
+caniuse-api@^1.5.2:
+ version "1.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
+ integrity sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=
+ dependencies:
+ browserslist "^1.3.6"
+ caniuse-db "^1.0.30000529"
+ lodash.memoize "^4.1.2"
+ lodash.uniq "^4.5.0"
+
+caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
+ version "1.0.30001235"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caniuse-db/-/caniuse-db-1.0.30001235.tgz#04433211aed3618df41487b1b1b0a8b3065cdb4e"
+ integrity sha1-BEMyEa7TYY30FIexsbCoswZc204=
+
+caniuse-lite@^1.0.30000748, caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000884, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001219:
+ version "1.0.30001235"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz#ad5ca75bc5a1f7b12df79ad806d715a43a5ac4ed"
+ integrity sha1-rVynW8Wh97Et95rYBtcVpDpaxO0=
+
+capture-exit@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
+ integrity sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=
+ dependencies:
+ rsvp "^3.3.3"
+
+capture-stack-trace@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d"
+ integrity sha1-psC74fOPOqC5Ijjstv9Cw0TUE10=
+
+case-sensitive-paths-webpack-plugin@2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.1.tgz#3d29ced8c1f124bf6f53846fb3f5894731fdc909"
+ integrity sha1-PSnO2MHxJL9vU4Rvs/WJRzH9yQk=
+
+case-sensitive-paths-webpack-plugin@^2.2.0:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4"
+ integrity sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ=
+
+caseless@~0.12.0:
+ version "0.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
+ integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
+
+chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+ dependencies:
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
+
+chalk@2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
+ integrity sha1-rFvs8U+iG5nGySynp9fP1bF+dD4=
+ dependencies:
+ ansi-styles "^3.1.0"
+ escape-string-regexp "^1.0.5"
+ supports-color "^4.0.0"
+
+chalk@2.4.1:
+ version "2.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
+ integrity sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=
+ dependencies:
+ ansi-styles "^3.2.1"
+ escape-string-regexp "^1.0.5"
+ supports-color "^5.3.0"
+
+chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
+ version "2.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+ integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=
+ dependencies:
+ ansi-styles "^3.2.1"
+ escape-string-regexp "^1.0.5"
+ supports-color "^5.3.0"
+
+chalk@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+ integrity sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@^4.1.0:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
+ integrity sha1-yAs/qyi/Y3HmhjMl7uZ+YYt35q0=
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+character-entities-legacy@^1.0.0:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
+ integrity sha1-lLwYRdznClu50uzHSHJWYSk9j8E=
+
+character-entities@^1.0.0:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
+ integrity sha1-4Sw5Obfq9OWxXnrUxeKOHUjFsWs=
+
+character-reference-invalid@^1.0.0:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
+ integrity sha1-CDMpzaDq4nKrPbvzfpo4LBOvFWA=
+
+chardet@^0.4.0:
+ version "0.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
+ integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=
+
+chardet@^0.7.0:
+ version "0.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
+ integrity sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=
+
+check-more-types@2.24.0:
+ version "2.24.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
+ integrity sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=
+
+cheerio-select@^1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cheerio-select/-/cheerio-select-1.4.0.tgz#3a16f21e37a2ef0f211d6d1aa4eff054bb22cdc9"
+ integrity sha1-OhbyHjei7w8hHW0apO/wVLsizck=
+ dependencies:
+ css-select "^4.1.2"
+ css-what "^5.0.0"
+ domelementtype "^2.2.0"
+ domhandler "^4.2.0"
+ domutils "^2.6.0"
+
+cheerio@^1.0.0-rc.3:
+ version "1.0.0-rc.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cheerio/-/cheerio-1.0.0-rc.9.tgz#a3ae6b7ce7af80675302ff836f628e7cb786a67f"
+ integrity sha1-o65rfOevgGdTAv+Db2KOfLeGpn8=
+ dependencies:
+ cheerio-select "^1.4.0"
+ dom-serializer "^1.3.1"
+ domhandler "^4.2.0"
+ htmlparser2 "^6.1.0"
+ parse5 "^6.0.1"
+ parse5-htmlparser2-tree-adapter "^6.0.1"
+ tslib "^2.2.0"
+
+chokidar@^2.0.4, chokidar@^2.1.8:
+ version "2.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
+ integrity sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=
+ dependencies:
+ anymatch "^2.0.0"
+ async-each "^1.0.1"
+ braces "^2.3.2"
+ 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"
+ optionalDependencies:
+ fsevents "^1.2.7"
+
+chokidar@^3.4.1:
+ version "3.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
+ integrity sha1-7pznu+vSt59J8wR5nVRo4x4U5oo=
+ dependencies:
+ anymatch "~3.1.1"
+ braces "~3.0.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"
+ optionalDependencies:
+ fsevents "~2.3.1"
+
+chownr@^1.0.1, chownr@^1.1.1, chownr@^1.1.2:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+ integrity sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=
+
+chrome-trace-event@^1.0.0, chrome-trace-event@^1.0.2:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
+ integrity sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=
+
+ci-info@^1.0.0, ci-info@^1.5.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
+ integrity sha1-LKINu5zrMtRSSmgzAzE/AwSx5Jc=
+
+cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
+ integrity sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=
+ dependencies:
+ inherits "^2.0.1"
+ safe-buffer "^5.0.1"
+
+circular-json@^0.3.1:
+ version "0.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
+ integrity sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=
+
+clap@^1.0.9:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
+ integrity sha1-TzZ0WzIAhJJVf0ZBLWbVDLmbzlE=
+ dependencies:
+ chalk "^1.1.3"
+
+class-utils@^0.3.5:
+ version "0.3.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
+ integrity sha1-+TNprouafOAv1B+q0MqDAzGQxGM=
+ dependencies:
+ arr-union "^3.1.0"
+ define-property "^0.2.5"
+ isobject "^3.0.0"
+ static-extend "^0.1.1"
+
+classnames@^2.0.0, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5:
+ version "2.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e"
+ integrity sha1-38+jiR4wbsHa0QXQ6I9EF7hTXo4=
+
+clean-css@^4.2.3:
+ version "4.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
+ integrity sha1-UHtd59l7SO5T2ErbAWD/YhY4D3g=
+ dependencies:
+ source-map "~0.6.0"
+
+clean-stack@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+ integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=
+
+cli-boxes@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
+ integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
+
+cli-boxes@^2.2.0:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+ integrity sha1-3dUDXSUJT84iDpyrQKRYQKRAMY8=
+
+cli-cursor@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
+ integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=
+ dependencies:
+ restore-cursor "^1.0.1"
+
+cli-cursor@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
+ integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+ dependencies:
+ restore-cursor "^2.0.0"
+
+cli-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+ integrity sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=
+ dependencies:
+ restore-cursor "^3.1.0"
+
+cli-spinners@^0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c"
+ integrity sha1-u3ZNiOGF+54eaiofGXcjGPYF4xw=
+
+cli-table3@0.5.1:
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
+ integrity sha1-AlI3LZTfxA29jfBgBfSPMfZW8gI=
+ dependencies:
+ object-assign "^4.1.0"
+ string-width "^2.1.1"
+ optionalDependencies:
+ colors "^1.1.2"
+
+cli-truncate@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
+ integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=
+ dependencies:
+ slice-ansi "0.0.4"
+ string-width "^1.0.1"
+
+cli-width@^2.0.0:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
+ integrity sha1-sEM9C06chH7xiGik7xb9X8gnHEg=
+
+cli-width@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
+ integrity sha1-ovSEN6LKqaIkNueUvwceyeYc7fY=
+
+clipboard-copy@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clipboard-copy/-/clipboard-copy-2.0.1.tgz#25214db3aabc282109cfa3429ffd885b014fc8b3"
+ integrity sha1-JSFNs6q8KCEJz6NCn/2IWwFPyLM=
+
+clipboard@^2.0.0:
+ version "2.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clipboard/-/clipboard-2.0.8.tgz#ffc6c103dd2967a83005f3f61976aa4655a4cdba"
+ integrity sha1-/8bBA90pZ6gwBfP2GXaqRlWkzbo=
+ dependencies:
+ good-listener "^1.2.2"
+ select "^1.1.2"
+ tiny-emitter "^2.0.0"
+
+cliui@^4.0.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
+ integrity sha1-NIQi2+gtgAswIu709qwQvy5NG0k=
+ dependencies:
+ string-width "^2.1.1"
+ strip-ansi "^4.0.0"
+ wrap-ansi "^2.0.0"
+
+cliui@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
+ integrity sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=
+ dependencies:
+ string-width "^3.1.0"
+ strip-ansi "^5.2.0"
+ wrap-ansi "^5.1.0"
+
+cliui@^7.0.2:
+ version "7.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
+ integrity sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.0"
+ wrap-ansi "^7.0.0"
+
+clone-deep@^0.2.4:
+ version "0.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6"
+ integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=
+ dependencies:
+ for-own "^0.1.3"
+ is-plain-object "^2.0.1"
+ kind-of "^3.0.2"
+ lazy-cache "^1.0.3"
+ shallow-clone "^0.1.2"
+
+clone-deep@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713"
+ integrity sha1-ANs6Hhc2VnMNEYjD1qztbX6pdxM=
+ dependencies:
+ for-own "^1.0.0"
+ is-plain-object "^2.0.4"
+ kind-of "^6.0.0"
+ shallow-clone "^1.0.0"
+
+clone@^1.0.2:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+ integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
+
+co@^4.6.0:
+ version "4.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
+ integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
+
+coa@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
+ integrity sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=
+ dependencies:
+ "@types/q" "^1.5.1"
+ chalk "^2.4.1"
+ q "^1.1.2"
+
+coa@~1.0.1:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
+ integrity sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=
+ dependencies:
+ q "^1.1.2"
+
+code-point-at@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
+ integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+
+collapse-white-space@^1.0.2:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
+ integrity sha1-5jYpwAFmZXkgYNu+t5xCI50sUoc=
+
+collection-visit@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
+ integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
+ dependencies:
+ map-visit "^1.0.0"
+ object-visit "^1.0.0"
+
+color-convert@^1.3.0, color-convert@^1.9.0:
+ version "1.9.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=
+ dependencies:
+ color-name "1.1.3"
+
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
+ dependencies:
+ color-name "~1.1.4"
+
+color-name@1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+ integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+
+color-name@^1.0.0, color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
+
+color-string@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
+ integrity sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=
+ dependencies:
+ color-name "^1.0.0"
+
+color@^0.11.0:
+ version "0.11.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
+ integrity sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=
+ dependencies:
+ clone "^1.0.2"
+ color-convert "^1.3.0"
+ color-string "^0.3.0"
+
+colorette@^1.2.1, colorette@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
+ integrity sha1-y8x51emcrqLb8Q6zom/Ys+as+pQ=
+
+colormin@^1.0.5:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
+ integrity sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=
+ dependencies:
+ color "^0.11.0"
+ css-color-names "0.0.4"
+ has "^1.0.1"
+
+colors@^1.1.2:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
+ integrity sha1-xQSRR51MG9rtLJztMs98fcI2D3g=
+
+colors@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
+ integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
+
+combined-stream@^1.0.5, combined-stream@^1.0.6, combined-stream@~1.0.5, combined-stream@~1.0.6:
+ version "1.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=
+ dependencies:
+ delayed-stream "~1.0.0"
+
+comma-separated-tokens@^1.0.0:
+ version "1.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
+ integrity sha1-YyuAthF4Z6FY8QgK1Jiy++fj9eo=
+
+commander@2.11.0:
+ version "2.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
+ integrity sha1-FXFS/R56bI2YpbcVzzdt+SgARWM=
+
+commander@^2.11.0, commander@^2.19.0, commander@^2.20.0, commander@^2.8.1:
+ version "2.20.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+ integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=
+
+commander@^4.0.1, commander@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+ integrity sha1-n9YCvZNilOnp70aj9NaWQESxgGg=
+
+commander@~2.13.0:
+ version "2.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
+ integrity sha1-aWS8pnaF33wfFDDFhPB9dZeIW5w=
+
+common-tags@1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/common-tags/-/common-tags-1.4.0.tgz#1187be4f3d4cf0c0427d43f74eef1f73501614c0"
+ integrity sha1-EYe+Tz1M8MBCfUP3Tu8fc1AWFMA=
+ dependencies:
+ babel-runtime "^6.18.0"
+
+commondir@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+ integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+
+component-emitter@^1.2.1:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
+ integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=
+
+compressible@~2.0.16:
+ version "2.0.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+ integrity sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=
+ dependencies:
+ mime-db ">= 1.43.0 < 2"
+
+compression@^1.7.4:
+ version "1.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+ integrity sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=
+ dependencies:
+ 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"
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+
+concat-stream@1.6.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
+ integrity sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=
+ dependencies:
+ inherits "^2.0.3"
+ readable-stream "^2.2.2"
+ typedarray "^0.0.6"
+
+concat-stream@^1.5.0, concat-stream@^1.6.0:
+ version "1.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+ integrity sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=
+ dependencies:
+ buffer-from "^1.0.0"
+ inherits "^2.0.3"
+ readable-stream "^2.2.2"
+ typedarray "^0.0.6"
+
+configstore@^3.0.0:
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f"
+ integrity sha1-6a8zH63BTavVRNPn523ERqCaUw8=
+ dependencies:
+ dot-prop "^4.2.1"
+ graceful-fs "^4.1.2"
+ make-dir "^1.0.0"
+ unique-string "^1.0.0"
+ write-file-atomic "^2.0.0"
+ xdg-basedir "^3.0.0"
+
+connect-history-api-fallback@^1.6.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
+ integrity sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=
+
+console-browserify@^1.1.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
+ integrity sha1-ZwY871fOts9Jk6KrOlWECujEkzY=
+
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+ integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
+
+constants-browserify@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
+ integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
+
+content-disposition@0.5.3:
+ version "0.5.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+ integrity sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70=
+ dependencies:
+ safe-buffer "5.1.2"
+
+content-type@~1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
+ integrity sha1-4TjMdeBAxyexlm/l5fjJruJW/js=
+
+convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+ version "1.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
+ integrity sha1-F6LLiC1/d9NJBYXizmxSRCSjpEI=
+ dependencies:
+ safe-buffer "~5.1.1"
+
+cookie-signature@1.0.6:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+
+cookie@0.4.0:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+ integrity sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo=
+
+cookiejar@^2.1.1:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c"
+ integrity sha1-3YojVTB1L5iPmghE8/xYnjERElw=
+
+copy-concurrently@^1.0.0:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
+ integrity sha1-kilzmMrjSTf8r9bsgTnBgFHwteA=
+ dependencies:
+ 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@^0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
+ integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
+
+copy-to-clipboard@^3, copy-to-clipboard@^3.0.8:
+ version "3.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
+ integrity sha1-EVqhqZmP+rYZb5MHatbaO5E2Yq4=
+ dependencies:
+ toggle-selection "^1.0.6"
+
+core-js-compat@^3.9.0, core-js-compat@^3.9.1:
+ version "3.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5"
+ integrity sha1-tXTavykYRoHVsWNXvTPRBN89KaU=
+ dependencies:
+ browserslist "^4.16.6"
+ semver "7.0.0"
+
+core-js-pure@^3.0.1:
+ version "3.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/core-js-pure/-/core-js-pure-3.14.0.tgz#72bcfacba74a65ffce04bf94ae91d966e80ee553"
+ integrity sha1-crz6y6dKZf/OBL+UrpHZZugO5VM=
+
+core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.5:
+ version "2.6.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
+ integrity sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw=
+
+core-js@^3.0.1, core-js@^3.0.4:
+ version "3.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c"
+ integrity sha1-YjIrmMccwgGLAnlxppQZ4kJcKmw=
+
+core-util-is@1.0.2, core-util-is@~1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+ integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+
+corejs-upgrade-webpack-plugin@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/corejs-upgrade-webpack-plugin/-/corejs-upgrade-webpack-plugin-2.2.0.tgz#503293bf1fdcb104918eb40d0294e4776ad6923a"
+ integrity sha1-UDKTvx/csQSRjrQNApTkd2rWkjo=
+ dependencies:
+ resolve-from "^5.0.0"
+ webpack "^4.38.0"
+
+cors@^2.8.1:
+ version "2.8.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
+ integrity sha1-6sEdpRWS3Ya58G9uesKTs9+HXSk=
+ dependencies:
+ object-assign "^4"
+ vary "^1"
+
+cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
+ integrity sha1-YXPOvVb6wELB9DkO33r2wHx8uJI=
+ dependencies:
+ is-directory "^0.3.1"
+ js-yaml "^3.4.3"
+ minimist "^1.2.0"
+ object-assign "^4.1.0"
+ os-homedir "^1.0.1"
+ parse-json "^2.2.0"
+ require-from-string "^1.1.0"
+
+cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.2.1:
+ version "5.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
+ integrity sha1-BA9yaAnFked6F8CjYmykW08Wixo=
+ dependencies:
+ import-fresh "^2.0.0"
+ is-directory "^0.3.1"
+ js-yaml "^3.13.1"
+ parse-json "^4.0.0"
+
+cosmiconfig@^6.0.0:
+ version "6.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
+ integrity sha1-2k/uhTxS9rHmk19BwaL8UL1KmYI=
+ dependencies:
+ "@types/parse-json" "^4.0.0"
+ import-fresh "^3.1.0"
+ parse-json "^5.0.0"
+ path-type "^4.0.0"
+ yaml "^1.7.2"
+
+create-ecdh@^4.0.0:
+ version "4.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
+ integrity sha1-1uf0v/pmc2CFoHYv06YyaE2rzE4=
+ dependencies:
+ bn.js "^4.1.0"
+ elliptic "^6.5.3"
+
+create-emotion-styled@^9.0.1:
+ version "9.2.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz#c0050e768ba439609bec108600467adf2de67cc3"
+ integrity sha1-wAUOdoukOWCb7BCGAEZ63y3mfMM=
+ dependencies:
+ "@emotion/is-prop-valid" "^0.6.1"
+
+create-emotion@^10.0.27:
+ version "10.0.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-emotion/-/create-emotion-10.0.27.tgz#cb4fa2db750f6ca6f9a001a33fbf1f6c46789503"
+ integrity sha1-y0+i23UPbKb5oAGjP78fbEZ4lQM=
+ dependencies:
+ "@emotion/cache" "^10.0.27"
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/sheet" "0.9.4"
+ "@emotion/utils" "0.11.3"
+
+create-emotion@^9.0.2:
+ version "9.2.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-emotion/-/create-emotion-9.2.12.tgz#0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f"
+ integrity sha1-D8jn+SxPi7kksP72eB9msdB8sm8=
+ dependencies:
+ "@emotion/hash" "^0.6.2"
+ "@emotion/memoize" "^0.6.1"
+ "@emotion/stylis" "^0.7.0"
+ "@emotion/unitless" "^0.6.2"
+ csstype "^2.5.2"
+ stylis "^3.5.0"
+ stylis-rule-sheet "^0.0.10"
+
+create-error-class@^3.0.0:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
+ integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=
+ dependencies:
+ capture-stack-trace "^1.0.0"
+
+create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
+ integrity sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=
+ dependencies:
+ 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@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
+ version "1.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
+ integrity sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=
+ dependencies:
+ 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"
+
+create-react-context@0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c"
+ integrity sha1-VG3t6dxCLe8NP8L+A6/gvA9PfYw=
+ dependencies:
+ gud "^1.0.0"
+ warning "^4.0.3"
+
+cross-spawn@6.0.5, cross-spawn@^6.0.0:
+ version "6.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
+ integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=
+ dependencies:
+ nice-try "^1.0.4"
+ path-key "^2.0.1"
+ semver "^5.5.0"
+ shebang-command "^1.2.0"
+ which "^1.2.9"
+
+cross-spawn@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982"
+ integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI=
+ dependencies:
+ lru-cache "^4.0.1"
+ which "^1.2.9"
+
+cross-spawn@^5.0.1, cross-spawn@^5.1.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
+ integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
+ dependencies:
+ lru-cache "^4.0.1"
+ shebang-command "^1.2.0"
+ which "^1.2.9"
+
+cross-spawn@^7.0.0, cross-spawn@^7.0.3:
+ version "7.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY=
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
+cryptiles@2.x.x:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
+ integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=
+ dependencies:
+ boom "2.x.x"
+
+crypto-browserify@3.12.0, crypto-browserify@^3.11.0:
+ version "3.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
+ integrity sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=
+ dependencies:
+ 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"
+
+crypto-random-string@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
+ integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
+
+cryptocurrency-icons@^0.16.1:
+ version "0.16.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cryptocurrency-icons/-/cryptocurrency-icons-0.16.1.tgz#33ec0b828c666f773b53866b4b803b2a06c28efc"
+ integrity sha1-M+wLgoxmb3c7U4ZrS4A7KgbCjvw=
+
+css-color-names@0.0.4:
+ version "0.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
+ integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
+
+css-loader@0.28.7:
+ version "0.28.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b"
+ integrity sha1-Xy7pid0y7dkHcX+VMxdlYWCZnBs=
+ dependencies:
+ babel-code-frame "^6.11.0"
+ css-selector-tokenizer "^0.7.0"
+ cssnano ">=2.6.1 <4"
+ icss-utils "^2.1.0"
+ loader-utils "^1.0.2"
+ lodash.camelcase "^4.3.0"
+ object-assign "^4.0.1"
+ postcss "^5.0.6"
+ postcss-modules-extract-imports "^1.0.0"
+ postcss-modules-local-by-default "^1.0.1"
+ postcss-modules-scope "^1.0.0"
+ postcss-modules-values "^1.1.0"
+ postcss-value-parser "^3.3.0"
+ source-list-map "^2.0.0"
+
+css-loader@^3.0.0:
+ version "3.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
+ integrity sha1-Lkssfm4tJ/jI8o9hv/zS5ske9kU=
+ dependencies:
+ 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.32"
+ postcss-modules-extract-imports "^2.0.0"
+ postcss-modules-local-by-default "^3.0.2"
+ postcss-modules-scope "^2.2.0"
+ postcss-modules-values "^3.0.0"
+ postcss-value-parser "^4.1.0"
+ schema-utils "^2.7.0"
+ semver "^6.3.0"
+
+css-select-base-adapter@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
+ integrity sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=
+
+css-select@^2.0.0, css-select@^2.0.2:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
+ integrity sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=
+ dependencies:
+ boolbase "^1.0.0"
+ css-what "^3.2.1"
+ domutils "^1.7.0"
+ nth-check "^1.0.2"
+
+css-select@^4.1.2:
+ version "4.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067"
+ integrity sha1-pwRA9wMX8maRGK10/xBeZYSccGc=
+ dependencies:
+ boolbase "^1.0.0"
+ css-what "^5.0.0"
+ domhandler "^4.2.0"
+ domutils "^2.6.0"
+ nth-check "^2.0.0"
+
+css-selector-tokenizer@^0.7.0:
+ version "0.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1"
+ integrity sha1-c18mGG5nx0mq8nV4NAXPBmH66PE=
+ dependencies:
+ cssesc "^3.0.0"
+ fastparse "^1.1.2"
+
+css-tree@1.0.0-alpha.37:
+ version "1.0.0-alpha.37"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
+ integrity sha1-mL69YsTB2flg7DQM+fdSLjBwmiI=
+ dependencies:
+ mdn-data "2.0.4"
+ source-map "^0.6.1"
+
+css-tree@^1.1.2:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
+ integrity sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=
+ dependencies:
+ mdn-data "2.0.14"
+ source-map "^0.6.1"
+
+css-what@^3.2.1:
+ version "3.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
+ integrity sha1-6nAm/LAXd+295SEk4h8yfnrpUOQ=
+
+css-what@^5.0.0:
+ version "5.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad"
+ integrity sha1-PvqCATH0ZpqKwkCPnDLnx96fTK0=
+
+cssesc@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ integrity sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=
+
+"cssnano@>=2.6.1 <4":
+ version "3.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
+ integrity sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=
+ dependencies:
+ autoprefixer "^6.3.1"
+ decamelize "^1.1.2"
+ defined "^1.0.0"
+ has "^1.0.1"
+ object-assign "^4.0.1"
+ postcss "^5.0.14"
+ postcss-calc "^5.2.0"
+ postcss-colormin "^2.1.8"
+ postcss-convert-values "^2.3.4"
+ postcss-discard-comments "^2.0.4"
+ postcss-discard-duplicates "^2.0.1"
+ postcss-discard-empty "^2.0.1"
+ postcss-discard-overridden "^0.1.1"
+ postcss-discard-unused "^2.2.1"
+ postcss-filter-plugins "^2.0.0"
+ postcss-merge-idents "^2.1.5"
+ postcss-merge-longhand "^2.0.1"
+ postcss-merge-rules "^2.0.3"
+ postcss-minify-font-values "^1.0.2"
+ postcss-minify-gradients "^1.0.1"
+ postcss-minify-params "^1.0.4"
+ postcss-minify-selectors "^2.0.4"
+ postcss-normalize-charset "^1.1.0"
+ postcss-normalize-url "^3.0.7"
+ postcss-ordered-values "^2.1.0"
+ postcss-reduce-idents "^2.2.2"
+ postcss-reduce-initial "^1.0.0"
+ postcss-reduce-transforms "^1.0.3"
+ postcss-svgo "^2.1.1"
+ postcss-unique-selectors "^2.0.2"
+ postcss-value-parser "^3.2.3"
+ postcss-zindex "^2.0.1"
+
+csso@^4.0.2:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
+ integrity sha1-6jpWE0bo3J9UbW/r7dUBh884lSk=
+ dependencies:
+ css-tree "^1.1.2"
+
+csso@~2.3.1:
+ version "2.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
+ integrity sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=
+ dependencies:
+ clap "^1.0.9"
+ source-map "^0.5.3"
+
+cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
+ version "0.3.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
+ integrity sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=
+
+cssstyle@^1.0.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
+ integrity sha1-nTEyginTxWXGHlhrAgQaKPzNzPE=
+ dependencies:
+ cssom "0.3.x"
+
+csstype@^2.5.2, csstype@^2.5.7:
+ version "2.6.17"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/csstype/-/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e"
+ integrity sha1-TPMOuH4dGgBdi2UQ+VKSQT9qHA4=
+
+csstype@^3.0.2:
+ version "3.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340"
+ integrity sha1-0iZqeScp+yJ80hb7Vy9Dco4a00A=
+
+currently-unhandled@^0.4.1:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
+ integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
+ dependencies:
+ array-find-index "^1.0.1"
+
+custom-event@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425"
+ integrity sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=
+
+cyclist@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
+ integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+
+cypress@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/cypress/-/cypress-2.1.0.tgz#a8bd7d9b89c38a1e380db83b57d9bba0dbb95ba4"
+ integrity sha1-qL19m4nDih44Dbg7V9m7oNu5W6Q=
+ dependencies:
+ "@cypress/listr-verbose-renderer" "0.4.1"
+ "@cypress/xvfb" "1.1.3"
+ "@types/blob-util" "1.3.3"
+ "@types/bluebird" "3.5.18"
+ "@types/chai" "4.0.8"
+ "@types/chai-jquery" "1.1.35"
+ "@types/jquery" "3.2.16"
+ "@types/lodash" "4.14.87"
+ "@types/minimatch" "3.0.1"
+ "@types/mocha" "2.2.44"
+ "@types/sinon" "4.0.0"
+ "@types/sinon-chai" "2.7.29"
+ bluebird "3.5.0"
+ chalk "2.1.0"
+ check-more-types "2.24.0"
+ commander "2.11.0"
+ common-tags "1.4.0"
+ debug "3.1.0"
+ extract-zip "1.6.6"
+ fs-extra "4.0.1"
+ getos "2.8.4"
+ glob "7.1.2"
+ is-ci "1.0.10"
+ is-installed-globally "0.1.0"
+ lazy-ass "1.6.0"
+ listr "0.12.0"
+ lodash "4.17.4"
+ minimist "1.2.0"
+ progress "1.1.8"
+ ramda "0.24.1"
+ request "2.81.0"
+ request-progress "0.3.1"
+ supports-color "5.1.0"
+ tmp "0.0.31"
+ url "0.11.0"
+ yauzl "2.8.0"
+
+damerau-levenshtein@^1.0.0:
+ version "1.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d"
+ integrity sha1-ZDaAA1EqGmmSWTdBoJqdMag29V0=
+
+dashdash@^1.12.0:
+ version "1.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
+ integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
+ dependencies:
+ assert-plus "^1.0.0"
+
+data-urls@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
+ integrity sha1-Fe4Fgrql4iu1nHcUDaj5x2lju/4=
+ dependencies:
+ abab "^2.0.0"
+ whatwg-mimetype "^2.2.0"
+ whatwg-url "^7.0.0"
+
+date-fns@^1.27.2:
+ version "1.30.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
+ integrity sha1-LnG/CxGRU9u0zE6I2epaz7UNwFw=
+
+debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9:
+ version "2.6.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=
+ dependencies:
+ ms "2.0.0"
+
+debug@3.1.0, debug@=3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+ integrity sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=
+ dependencies:
+ ms "2.0.0"
+
+debug@4.3.1, debug@^4.1.0, debug@^4.1.1:
+ version "4.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
+ integrity sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=
+ dependencies:
+ ms "2.1.2"
+
+debug@^3.0.0, debug@^3.1.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.7:
+ version "3.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ integrity sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=
+ dependencies:
+ ms "^2.1.1"
+
+decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
+ integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
+
+decode-uri-component@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
+ integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+
+decompress-response@^3.2.0, decompress-response@^3.3.0:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
+ integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
+ dependencies:
+ mimic-response "^1.0.0"
+
+decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress-tar/-/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1"
+ integrity sha1-cYy9P8sWIJcW5womuE57pFkuWvE=
+ dependencies:
+ file-type "^5.2.0"
+ is-stream "^1.1.0"
+ tar-stream "^1.5.2"
+
+decompress-tarbz2@^4.0.0:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz#3082a5b880ea4043816349f378b56c516be1a39b"
+ integrity sha1-MIKluIDqQEOBY0nzeLVsUWvho5s=
+ dependencies:
+ decompress-tar "^4.1.0"
+ file-type "^6.1.0"
+ is-stream "^1.1.0"
+ seek-bzip "^1.0.5"
+ unbzip2-stream "^1.0.9"
+
+decompress-targz@^4.0.0:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress-targz/-/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee"
+ integrity sha1-wJvDXE0R894J8tLaU+neI+fOHu4=
+ dependencies:
+ decompress-tar "^4.1.1"
+ file-type "^5.2.0"
+ is-stream "^1.1.0"
+
+decompress-unzip@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress-unzip/-/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69"
+ integrity sha1-3qrM39FK6vhVePczroIQ+bSEj2k=
+ dependencies:
+ file-type "^3.8.0"
+ get-stream "^2.2.0"
+ pify "^2.3.0"
+ yauzl "^2.4.2"
+
+decompress@^4.0.0:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118"
+ integrity sha1-AH9VzGpiwFWvo3wH62pO4bdz8Rg=
+ dependencies:
+ decompress-tar "^4.0.0"
+ decompress-tarbz2 "^4.0.0"
+ decompress-targz "^4.0.0"
+ decompress-unzip "^4.0.1"
+ graceful-fs "^4.1.10"
+ make-dir "^1.0.0"
+ pify "^2.3.0"
+ strip-dirs "^2.0.0"
+
+deep-equal@^1.0.1, deep-equal@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
+ integrity sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=
+ dependencies:
+ 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-extend@^0.6.0:
+ version "0.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+ integrity sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw=
+
+deep-is@~0.1.3:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
+ integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
+
+deep-object-diff@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
+ integrity sha1-1vq/R2wu0XUfyU1cppPS7YwYvFo=
+
+default-gateway@^4.2.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b"
+ integrity sha1-FnEEx1AMIRX23WmwpTa7jtcgVSs=
+ dependencies:
+ execa "^1.0.0"
+ ip-regex "^2.1.0"
+
+default-require-extensions@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
+ integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=
+ dependencies:
+ strip-bom "^2.0.0"
+
+define-properties@^1.1.2, define-properties@^1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
+ integrity sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=
+ dependencies:
+ object-keys "^1.0.12"
+
+define-property@^0.2.5:
+ version "0.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
+ integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
+ dependencies:
+ is-descriptor "^0.1.0"
+
+define-property@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
+ integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
+ dependencies:
+ is-descriptor "^1.0.0"
+
+define-property@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
+ integrity sha1-1Flono1lS6d+AqgX+HENcCyxbp0=
+ dependencies:
+ is-descriptor "^1.0.2"
+ isobject "^3.0.1"
+
+defined@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
+ integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
+
+del@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
+ integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=
+ dependencies:
+ globby "^6.1.0"
+ is-path-cwd "^1.0.0"
+ is-path-in-cwd "^1.0.0"
+ p-map "^1.1.1"
+ pify "^3.0.0"
+ rimraf "^2.2.8"
+
+del@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
+ integrity sha1-no8RciLqRKMf86FWwEm5kFKp8LQ=
+ dependencies:
+ "@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"
+
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+
+delegate@^3.1.2:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
+ integrity sha1-tmtxwxWFIuirV0T3INjKDCr1kWY=
+
+delegates@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+ integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
+
+depd@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+
+des.js@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
+ integrity sha1-U4IULhvcU/hdhtU+X0qn3rkeCEM=
+ dependencies:
+ inherits "^2.0.1"
+ minimalistic-assert "^1.0.0"
+
+destroy@~1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
+ integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+
+detect-indent@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
+ integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg=
+ dependencies:
+ repeating "^2.0.0"
+
+detect-newline@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
+ integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
+
+detect-node-es@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493"
+ integrity sha1-FjrN9kMzDKoLTNfCHn7ndV1vpJM=
+
+detect-node@^2.0.4:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
+ integrity sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=
+
+detect-port-alt@1.1.6:
+ version "1.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
+ integrity sha1-JHB96r6TLUo89iEwICfCsmZWgnU=
+ dependencies:
+ address "^1.0.1"
+ debug "^2.6.0"
+
+detect-port@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1"
+ integrity sha1-2cQOmsyt1N9crGp4Ku/QFNVz0fE=
+ dependencies:
+ address "^1.0.1"
+ debug "^2.6.0"
+
+diff@^3.2.0:
+ version "3.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
+ integrity sha1-gAwN0eCov7yVg1wgKtIg/jF+WhI=
+
+diffie-hellman@^5.0.0:
+ version "5.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
+ integrity sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=
+ dependencies:
+ bn.js "^4.1.0"
+ miller-rabin "^4.0.0"
+ randombytes "^2.0.0"
+
+dir-glob@2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
+ integrity sha1-CyBdK2rvmCOMooZZioIE0p0KADQ=
+ dependencies:
+ arrify "^1.0.1"
+ path-type "^3.0.0"
+
+dir-glob@^2.0.0:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
+ integrity sha1-+gnwaUFTyJGLGLoN6vrpR2n8UMQ=
+ dependencies:
+ path-type "^3.0.0"
+
+discontinuous-range@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
+ integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=
+
+dns-equal@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
+ integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
+
+dns-packet@^1.3.1:
+ version "1.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f"
+ integrity sha1-40VQZYJKJQe6iGxVqJljuxB97G8=
+ dependencies:
+ ip "^1.1.0"
+ safe-buffer "^5.0.1"
+
+dns-txt@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
+ integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=
+ dependencies:
+ buffer-indexof "^1.0.0"
+
+doctrine@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
+ integrity sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=
+ dependencies:
+ esutils "^2.0.2"
+
+doctrine@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+ integrity sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=
+ dependencies:
+ esutils "^2.0.2"
+
+dom-converter@^0.2:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
+ integrity sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=
+ dependencies:
+ utila "~0.4"
+
+dom-helpers@^3.2.0, dom-helpers@^3.2.1, dom-helpers@^3.4.0:
+ version "3.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8"
+ integrity sha1-6bNpcA+Vn2Ls3lprq95LzNkWmvg=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+
+dom-serializer@0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
+ integrity sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=
+ dependencies:
+ domelementtype "^2.0.1"
+ entities "^2.0.0"
+
+dom-serializer@^1.0.1, dom-serializer@^1.3.1:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91"
+ integrity sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=
+ dependencies:
+ domelementtype "^2.0.1"
+ domhandler "^4.2.0"
+ entities "^2.0.0"
+
+dom-urls@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-urls/-/dom-urls-1.1.0.tgz#001ddf81628cd1e706125c7176f53ccec55d918e"
+ integrity sha1-AB3fgWKM0ecGElxxdvU8zsVdkY4=
+ dependencies:
+ urijs "^1.16.1"
+
+dom-walk@^0.1.0:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
+ integrity sha1-DFSL7wSPTR8qlySQAiNgYNqj/YQ=
+
+dom7@^2.1.3:
+ version "2.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dom7/-/dom7-2.1.5.tgz#a79411017800b31d8400070cdaebbfc92c1f6377"
+ integrity sha1-p5QRAXgAsx2EAAcM2uu/ySwfY3c=
+ dependencies:
+ ssr-window "^2.0.0"
+
+domain-browser@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
+ integrity sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto=
+
+domelementtype@1, domelementtype@^1.3.1:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
+ integrity sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=
+
+domelementtype@^2.0.1, domelementtype@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
+ integrity sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=
+
+domexception@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
+ integrity sha1-k3RCZEymoxJh7zbj7Gd/6AVYLJA=
+ dependencies:
+ webidl-conversions "^4.0.2"
+
+domhandler@^2.3.0:
+ version "2.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
+ integrity sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=
+ dependencies:
+ domelementtype "1"
+
+domhandler@^3.3.0:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a"
+ integrity sha1-bbfqRuRhfrFc+HXfaLK4UkzgA3o=
+ dependencies:
+ domelementtype "^2.0.1"
+
+domhandler@^4.0.0, domhandler@^4.2.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059"
+ integrity sha1-+XaKXwNL5gqJonwuTQ9066DYsFk=
+ dependencies:
+ domelementtype "^2.2.0"
+
+domutils@^1.5.1, domutils@^1.7.0:
+ version "1.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
+ integrity sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=
+ dependencies:
+ dom-serializer "0"
+ domelementtype "1"
+
+domutils@^2.4.2, domutils@^2.5.2, domutils@^2.6.0:
+ version "2.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442"
+ integrity sha1-jrrwxB66/PVbC3LsMcVjI3EsVEI=
+ dependencies:
+ dom-serializer "^1.0.1"
+ domelementtype "^2.2.0"
+ domhandler "^4.2.0"
+
+dot-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
+ integrity sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+
+dot-prop@^4.2.1:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"
+ integrity sha1-RYhBlKcfws2nHLtLzrOk3S9DO6Q=
+ dependencies:
+ is-obj "^1.0.0"
+
+dotenv-defaults@^1.0.2:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz#032c024f4b5906d9990eb06d722dc74cc60ec1bd"
+ integrity sha1-AywCT0tZBtmZDrBtci3HTMYOwb0=
+ dependencies:
+ dotenv "^6.2.0"
+
+dotenv-expand@4.2.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv-expand/-/dotenv-expand-4.2.0.tgz#def1f1ca5d6059d24a766e587942c21106ce1275"
+ integrity sha1-3vHxyl1gWdJKdm5YeULCEQbOEnU=
+
+dotenv-expand@^5.1.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
+ integrity sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=
+
+dotenv-webpack@^1.7.0:
+ version "1.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e"
+ integrity sha1-fKec7ySX3UB51D6B4HlrydD2il4=
+ dependencies:
+ dotenv-defaults "^1.0.2"
+
+dotenv@4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d"
+ integrity sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0=
+
+dotenv@^6.2.0:
+ version "6.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
+ integrity sha1-lBwEEFNdlCyL7PKNPzV9vZ1HYGQ=
+
+dotenv@^8.0.0:
+ version "8.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b"
+ integrity sha1-Bhr2ZNGff02PxuT/m1hM4jety4s=
+
+drbg.js@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b"
+ integrity sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs=
+ dependencies:
+ browserify-aes "^1.0.6"
+ create-hash "^1.1.2"
+ create-hmac "^1.1.4"
+
+duplexer3@^0.1.4:
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+ integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
+duplexer@^0.1.1, duplexer@~0.1.1:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+ integrity sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=
+
+duplexify@^3.4.2, duplexify@^3.6.0:
+ version "3.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
+ integrity sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=
+ dependencies:
+ end-of-stream "^1.0.0"
+ inherits "^2.0.1"
+ readable-stream "^2.0.0"
+ stream-shift "^1.0.0"
+
+ecc-jsbn@~0.1.1:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
+ integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
+ dependencies:
+ jsbn "~0.1.0"
+ safer-buffer "^2.1.0"
+
+ee-first@1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+
+ejs@^2.7.4:
+ version "2.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
+ integrity sha1-SGYSh1c9zFPjZsehrlLDoSDuybo=
+
+electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.30, electron-to-chromium@^1.3.62, electron-to-chromium@^1.3.723:
+ version "1.3.749"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz#0ecebc529ceb49dd2a7c838ae425236644c3439a"
+ integrity sha1-Ds68UpzrSd0qfIOK5CUjZkTDQ5o=
+
+elegant-spinner@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
+ integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=
+
+element-resize-detector@^1.2.1:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/element-resize-detector/-/element-resize-detector-1.2.2.tgz#bf7c3ff915957e4e62e86241ed2f9c86b078892b"
+ integrity sha1-v3w/+RWVfk5i6GJB7S+chrB4iSs=
+ dependencies:
+ batch-processor "1.0.0"
+
+elliptic@6.3.3:
+ version "6.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f"
+ integrity sha1-VILZZG1UvLif19mU/J4ulWiHbj8=
+ dependencies:
+ bn.js "^4.4.0"
+ brorand "^1.0.1"
+ hash.js "^1.0.0"
+ inherits "^2.0.1"
+
+elliptic@6.5.3:
+ version "6.5.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
+ integrity sha1-y1nrLv2vc6C9eMzXAVpirW4Pk9Y=
+ dependencies:
+ bn.js "^4.4.0"
+ brorand "^1.0.1"
+ hash.js "^1.0.0"
+ hmac-drbg "^1.0.0"
+ inherits "^2.0.1"
+ minimalistic-assert "^1.0.0"
+ minimalistic-crypto-utils "^1.0.0"
+
+elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3:
+ version "6.5.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
+ integrity sha1-2jfOvTHnmhNn6UG1ku0fvr1Yq7s=
+ dependencies:
+ 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"
+
+emoji-regex@^6.1.0:
+ version "6.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2"
+ integrity sha1-m66pKbFVVlwR6kHGYm6qZc75ksI=
+
+emoji-regex@^7.0.1:
+ version "7.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+ integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=
+
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=
+
+emojis-list@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
+ integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+
+emojis-list@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+ integrity sha1-VXBmIEatKeLpFucariYKvf9Pang=
+
+emotion-theming@^10.0.19:
+ version "10.0.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10"
+ integrity sha1-GIe6rsFRmYYsibG5hLeYBvK5qxA=
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/weak-memoize" "0.2.5"
+ hoist-non-react-statics "^3.3.0"
+
+emotion@^10.0.23:
+ version "10.0.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/emotion/-/emotion-10.0.27.tgz#f9ca5df98630980a23c819a56262560562e5d75e"
+ integrity sha1-+cpd+YYwmAojyBmlYmJWBWLl114=
+ dependencies:
+ babel-plugin-emotion "^10.0.27"
+ create-emotion "^10.0.27"
+
+encodeurl@~1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+
+end-of-stream@^1.0.0, end-of-stream@^1.1.0:
+ version "1.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+ integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=
+ dependencies:
+ once "^1.4.0"
+
+enhanced-resolve@^4.1.0, enhanced-resolve@^4.5.0:
+ version "4.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
+ integrity sha1-Lzz9hNvjtIfxjy2y7x4GSlccpew=
+ dependencies:
+ graceful-fs "^4.1.2"
+ memory-fs "^0.5.0"
+ tapable "^1.0.0"
+
+entities@^1.1.1:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
+ integrity sha1-vfpzUplmTfr9NFKe1PhSKidf6lY=
+
+entities@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
+ integrity sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=
+
+enzyme-adapter-react-16@^1.12.1:
+ version "1.15.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz#fd677a658d62661ac5afd7f7f541f141f8085901"
+ integrity sha1-/Wd6ZY1iZhrFr9f39UHxQfgIWQE=
+ dependencies:
+ enzyme-adapter-utils "^1.14.0"
+ enzyme-shallow-equal "^1.0.4"
+ has "^1.0.3"
+ object.assign "^4.1.2"
+ object.values "^1.1.2"
+ prop-types "^15.7.2"
+ react-is "^16.13.1"
+ react-test-renderer "^16.0.0-0"
+ semver "^5.7.0"
+
+enzyme-adapter-utils@^1.14.0:
+ version "1.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz#afbb0485e8033aa50c744efb5f5711e64fbf1ad0"
+ integrity sha1-r7sEhegDOqUMdE77X1cR5k+/GtA=
+ dependencies:
+ airbnb-prop-types "^2.16.0"
+ function.prototype.name "^1.1.3"
+ has "^1.0.3"
+ object.assign "^4.1.2"
+ object.fromentries "^2.0.3"
+ prop-types "^15.7.2"
+ semver "^5.7.1"
+
+enzyme-shallow-equal@^1.0.1, enzyme-shallow-equal@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz#b9256cb25a5f430f9bfe073a84808c1d74fced2e"
+ integrity sha1-uSVsslpfQw+b/gc6hICMHXT87S4=
+ dependencies:
+ has "^1.0.3"
+ object-is "^1.1.2"
+
+enzyme@^3.9.0:
+ version "3.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28"
+ integrity sha1-cdaAxYD+k0n29axsd1vD5rennCg=
+ dependencies:
+ array.prototype.flat "^1.2.3"
+ cheerio "^1.0.0-rc.3"
+ enzyme-shallow-equal "^1.0.1"
+ function.prototype.name "^1.1.2"
+ has "^1.0.3"
+ html-element-map "^1.2.0"
+ is-boolean-object "^1.0.1"
+ is-callable "^1.1.5"
+ is-number-object "^1.0.4"
+ is-regex "^1.0.5"
+ is-string "^1.0.5"
+ is-subset "^0.1.1"
+ lodash.escape "^4.0.1"
+ lodash.isequal "^4.5.0"
+ object-inspect "^1.7.0"
+ object-is "^1.0.2"
+ object.assign "^4.1.0"
+ object.entries "^1.1.1"
+ object.values "^1.1.1"
+ raf "^3.4.1"
+ rst-selector-parser "^2.2.3"
+ string.prototype.trim "^1.2.1"
+
+errno@^0.1.3, errno@~0.1.7:
+ version "0.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
+ integrity sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=
+ dependencies:
+ prr "~1.0.1"
+
+error-ex@^1.2.0, error-ex@^1.3.1:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+ integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8=
+ dependencies:
+ is-arrayish "^0.2.1"
+
+es-abstract@^1.17.0-next.0, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
+ version "1.18.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
+ integrity sha1-JcTDOAonqiA8RLK2hbupTaMbY+A=
+ dependencies:
+ call-bind "^1.0.2"
+ es-to-primitive "^1.2.1"
+ function-bind "^1.1.1"
+ get-intrinsic "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.2"
+ is-callable "^1.2.3"
+ is-negative-zero "^2.0.1"
+ is-regex "^1.1.3"
+ is-string "^1.0.6"
+ object-inspect "^1.10.3"
+ 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-array-method-boxes-properly@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+ integrity sha1-hz8+hEGN5O4Zxb51KZCy5EcY0J4=
+
+es-get-iterator@^1.0.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7"
+ integrity sha1-kjTFSrpxNIbX694CIIZK9eKyg/c=
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.0"
+ has-symbols "^1.0.1"
+ is-arguments "^1.1.0"
+ is-map "^2.0.2"
+ is-set "^2.0.2"
+ is-string "^1.0.5"
+ isarray "^2.0.5"
+
+es-to-primitive@^1.2.1:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ integrity sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=
+ dependencies:
+ is-callable "^1.1.4"
+ is-date-object "^1.0.1"
+ is-symbol "^1.0.2"
+
+es5-shim@^4.5.13:
+ version "4.5.15"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es5-shim/-/es5-shim-4.5.15.tgz#6a26869b261854a3b045273f5583c52d390217fe"
+ integrity sha1-aiaGmyYYVKOwRSc/VYPFLTkCF/4=
+
+es6-promise@^4.0.5:
+ version "4.2.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
+ integrity sha1-TrIVlMlyvEBVPSduUQU5FD21Pgo=
+
+es6-shim@^0.35.5:
+ version "0.35.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0"
+ integrity sha1-0QV4MBqDry3li56tt8LJlF9ziKA=
+
+escalade@^3.1.1:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+ integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=
+
+escape-html@~1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+
+escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+
+escape-string-regexp@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ integrity sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=
+
+escodegen@^1.9.1:
+ version "1.14.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
+ integrity sha1-TnuB+6YVgdyXWC7XjKt/Do1j9QM=
+ dependencies:
+ esprima "^4.0.1"
+ estraverse "^4.2.0"
+ esutils "^2.0.2"
+ optionator "^0.8.1"
+ optionalDependencies:
+ source-map "~0.6.1"
+
+eslint-config-react-app@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz#23c909f71cbaff76b945b831d2d814b8bde169eb"
+ integrity sha1-I8kJ9xy6/3a5Rbgx0tgUuL3haes=
+
+eslint-import-resolver-node@^0.3.4:
+ version "0.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
+ integrity sha1-hf+oGULCUBLYIxCW3fZ5wDBCxxc=
+ dependencies:
+ debug "^2.6.9"
+ resolve "^1.13.1"
+
+eslint-loader@^2.1.2:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-loader/-/eslint-loader-2.2.1.tgz#28b9c12da54057af0845e2a6112701a2f6bf8337"
+ integrity sha1-KLnBLaVAV68IReKmEScBova/gzc=
+ dependencies:
+ loader-fs-cache "^1.0.0"
+ loader-utils "^1.0.2"
+ object-assign "^4.0.1"
+ object-hash "^1.1.4"
+ rimraf "^2.6.1"
+
+eslint-module-utils@^2.6.1:
+ version "2.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233"
+ integrity sha1-tRvh5HPdDeHF6mOOIkKcJJDqgjM=
+ dependencies:
+ debug "^3.2.7"
+ pkg-dir "^2.0.0"
+
+eslint-plugin-flowtype@^2.46.3:
+ version "2.50.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f"
+ integrity sha1-YTedbc4dAQNwrNZoF0D9kT1oF18=
+ dependencies:
+ lodash "^4.17.10"
+
+eslint-plugin-import@^2.11.0:
+ version "2.23.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"
+ integrity sha1-jc6x7Wtz5G5Q7JpbskEbZF59PZc=
+ dependencies:
+ array-includes "^3.1.3"
+ array.prototype.flat "^1.2.4"
+ debug "^2.6.9"
+ doctrine "^2.1.0"
+ eslint-import-resolver-node "^0.3.4"
+ eslint-module-utils "^2.6.1"
+ find-up "^2.0.0"
+ has "^1.0.3"
+ is-core-module "^2.4.0"
+ minimatch "^3.0.4"
+ object.values "^1.1.3"
+ pkg-up "^2.0.0"
+ read-pkg-up "^3.0.0"
+ resolve "^1.20.0"
+ tsconfig-paths "^3.9.0"
+
+eslint-plugin-jsx-a11y@^5.1.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1"
+ integrity sha1-XJa7UYbKFOlNsQlf9Zs+K9lAabE=
+ dependencies:
+ aria-query "^0.7.0"
+ array-includes "^3.0.3"
+ ast-types-flow "0.0.7"
+ axobject-query "^0.1.0"
+ damerau-levenshtein "^1.0.0"
+ emoji-regex "^6.1.0"
+ jsx-ast-utils "^1.4.0"
+
+eslint-plugin-prettier@^2.6.0:
+ version "2.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904"
+ integrity sha1-tDEtzywdllN51/nVtfiqrcakWQQ=
+ dependencies:
+ fast-diff "^1.1.1"
+ jest-docblock "^21.0.0"
+
+eslint-plugin-react@^7.7.0:
+ version "7.24.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"
+ integrity sha1-6t7fo1Gm82tJCqF/T6mxToQrnrQ=
+ dependencies:
+ array-includes "^3.1.3"
+ array.prototype.flatmap "^1.2.4"
+ doctrine "^2.1.0"
+ has "^1.0.3"
+ jsx-ast-utils "^2.4.1 || ^3.0.0"
+ minimatch "^3.0.4"
+ object.entries "^1.1.4"
+ object.fromentries "^2.0.4"
+ object.values "^1.1.4"
+ prop-types "^15.7.2"
+ resolve "^2.0.0-next.3"
+ string.prototype.matchall "^4.0.5"
+
+eslint-scope@^3.7.1:
+ version "3.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535"
+ integrity sha1-u1ByANPRf2AkdjYWC0gmKEsQhTU=
+ dependencies:
+ esrecurse "^4.1.0"
+ estraverse "^4.1.1"
+
+eslint-scope@^4.0.0, eslint-scope@^4.0.3:
+ version "4.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
+ integrity sha1-ygODMxD2iJoyZHgaqC5j65z+eEg=
+ dependencies:
+ esrecurse "^4.1.0"
+ estraverse "^4.1.1"
+
+eslint-visitor-keys@^1.0.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+ integrity sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=
+
+eslint@^4.19.1:
+ version "4.19.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
+ integrity sha1-MtHWU+HZBAiFS/spbwdux+GGowA=
+ dependencies:
+ ajv "^5.3.0"
+ babel-code-frame "^6.22.0"
+ chalk "^2.1.0"
+ concat-stream "^1.6.0"
+ cross-spawn "^5.1.0"
+ debug "^3.1.0"
+ doctrine "^2.1.0"
+ eslint-scope "^3.7.1"
+ eslint-visitor-keys "^1.0.0"
+ espree "^3.5.4"
+ esquery "^1.0.0"
+ esutils "^2.0.2"
+ file-entry-cache "^2.0.0"
+ functional-red-black-tree "^1.0.1"
+ glob "^7.1.2"
+ globals "^11.0.1"
+ ignore "^3.3.3"
+ imurmurhash "^0.1.4"
+ inquirer "^3.0.6"
+ is-resolvable "^1.0.0"
+ js-yaml "^3.9.1"
+ json-stable-stringify-without-jsonify "^1.0.1"
+ levn "^0.3.0"
+ lodash "^4.17.4"
+ minimatch "^3.0.2"
+ mkdirp "^0.5.1"
+ natural-compare "^1.4.0"
+ optionator "^0.8.2"
+ path-is-inside "^1.0.2"
+ pluralize "^7.0.0"
+ progress "^2.0.0"
+ regexpp "^1.0.1"
+ require-uncached "^1.0.3"
+ semver "^5.3.0"
+ strip-ansi "^4.0.0"
+ strip-json-comments "~2.0.1"
+ table "4.0.2"
+ text-table "~0.2.0"
+
+espree@^3.5.4:
+ version "3.5.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
+ integrity sha1-sPRHGHyKi+2US4FaZgvd9d610ac=
+ dependencies:
+ acorn "^5.5.0"
+ acorn-jsx "^3.0.0"
+
+esprima@^2.6.0:
+ version "2.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
+ integrity sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=
+
+esprima@^4.0.0, esprima@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+ integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=
+
+esquery@^1.0.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
+ integrity sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=
+ dependencies:
+ estraverse "^5.1.0"
+
+esrecurse@^4.1.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha1-eteWTWeauyi+5yzsY3WLHF0smSE=
+ dependencies:
+ estraverse "^5.2.0"
+
+estraverse@^4.1.1, estraverse@^4.2.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ integrity sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=
+
+estraverse@^5.1.0, estraverse@^5.2.0:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
+ integrity sha1-MH30JUfmzHMk088DwVXVzbjFOIA=
+
+estree-to-babel@^3.1.0:
+ version "3.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/estree-to-babel/-/estree-to-babel-3.2.1.tgz#82e78315275c3ca74475fdc8ac1a5103c8a75bf5"
+ integrity sha1-gueDFSdcPKdEdf3IrBpRA8inW/U=
+ dependencies:
+ "@babel/traverse" "^7.1.6"
+ "@babel/types" "^7.2.0"
+ c8 "^7.6.0"
+
+esutils@^2.0.2:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ integrity sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=
+
+etag@~1.8.1:
+ version "1.8.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+
+eth-ens-namehash@2.0.8:
+ version "2.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz#229ac46eca86d52e0c991e7cb2aef83ff0f68bcf"
+ integrity sha1-IprEbsqG1S4MmR58sq74P/D2i88=
+ dependencies:
+ idna-uts46-hx "^2.3.1"
+ js-sha3 "^0.5.7"
+
+eth-lib@0.1.27:
+ version "0.1.27"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eth-lib/-/eth-lib-0.1.27.tgz#f0b0fd144f865d2d6bf8257a40004f2e75ca1dd6"
+ integrity sha1-8LD9FE+GXS1r+CV6QABPLnXKHdY=
+ dependencies:
+ bn.js "^4.11.6"
+ elliptic "^6.4.0"
+ keccakjs "^0.2.1"
+ nano-json-stream-parser "^0.1.2"
+ servify "^0.1.12"
+ ws "^3.0.0"
+ xhr-request-promise "^0.1.2"
+
+eth-lib@0.2.7:
+ version "0.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eth-lib/-/eth-lib-0.2.7.tgz#2f93f17b1e23aec3759cd4a3fe20c1286a3fc1ca"
+ integrity sha1-L5Pxex4jrsN1nNSj/iDBKGo/wco=
+ dependencies:
+ bn.js "^4.11.6"
+ elliptic "^6.4.0"
+ xhr-request-promise "^0.1.2"
+
+eth-lib@^0.1.26:
+ version "0.1.29"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eth-lib/-/eth-lib-0.1.29.tgz#0c11f5060d42da9f931eab6199084734f4dbd1d9"
+ integrity sha1-DBH1Bg1C2p+THqthmQhHNPTb0dk=
+ dependencies:
+ bn.js "^4.11.6"
+ elliptic "^6.4.0"
+ nano-json-stream-parser "^0.1.2"
+ servify "^0.1.12"
+ ws "^3.0.0"
+ xhr-request-promise "^0.1.2"
+
+ethereum-cryptography@^0.1.3:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz#8d6143cfc3d74bf79bbd8edecdf29e4ae20dd191"
+ integrity sha1-jWFDz8PXS/ebvY7ezfKeSuIN0ZE=
+ dependencies:
+ "@types/pbkdf2" "^3.0.0"
+ "@types/secp256k1" "^4.0.1"
+ blakejs "^1.1.0"
+ browserify-aes "^1.2.0"
+ bs58check "^2.1.2"
+ create-hash "^1.2.0"
+ create-hmac "^1.1.7"
+ hash.js "^1.1.7"
+ keccak "^3.0.0"
+ pbkdf2 "^3.0.17"
+ randombytes "^2.1.0"
+ safe-buffer "^5.1.2"
+ scrypt-js "^3.0.0"
+ secp256k1 "^4.0.1"
+ setimmediate "^1.0.5"
+
+ethereumjs-common@^1.3.0, ethereumjs-common@^1.5.0:
+ version "1.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz#2065dbe9214e850f2e955a80e650cb6999066979"
+ integrity sha1-IGXb6SFOhQ8ulVqA5lDLaZkGaXk=
+
+ethereumjs-tx@^2.1.0:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz#5dfe7688bf177b45c9a23f86cf9104d47ea35fed"
+ integrity sha1-Xf52iL8Xe0XJoj+Gz5EE1H6jX+0=
+ dependencies:
+ ethereumjs-common "^1.5.0"
+ ethereumjs-util "^6.0.0"
+
+ethereumjs-util@^6.0.0:
+ version "6.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz#fcb4e4dd5ceacb9d2305426ab1a5cd93e3163b69"
+ integrity sha1-/LTk3Vzqy50jBUJqsaXNk+MWO2k=
+ dependencies:
+ "@types/bn.js" "^4.11.3"
+ bn.js "^4.11.0"
+ create-hash "^1.1.2"
+ elliptic "^6.5.2"
+ ethereum-cryptography "^0.1.3"
+ ethjs-util "0.1.6"
+ rlp "^2.2.3"
+
+ethers@4.0.0-beta.1:
+ version "4.0.0-beta.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethers/-/ethers-4.0.0-beta.1.tgz#0648268b83e0e91a961b1af971c662cdf8cbab6d"
+ integrity sha1-Bkgmi4Pg6RqWGxr5ccZizfjLq20=
+ dependencies:
+ "@types/node" "^10.3.2"
+ aes-js "3.0.0"
+ bn.js "^4.4.0"
+ elliptic "6.3.3"
+ hash.js "1.1.3"
+ js-sha3 "0.5.7"
+ scrypt-js "2.0.3"
+ setimmediate "1.0.4"
+ uuid "2.0.1"
+ xmlhttprequest "1.8.0"
+
+ethers@^4.0.33:
+ version "4.0.48"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethers/-/ethers-4.0.48.tgz#330c65b8133e112b0613156e57e92d9009d8fbbe"
+ integrity sha1-MwxluBM+ESsGExVuV+ktkAnY+74=
+ dependencies:
+ aes-js "3.0.0"
+ bn.js "^4.4.0"
+ elliptic "6.5.3"
+ hash.js "1.1.3"
+ js-sha3 "0.5.7"
+ scrypt-js "2.0.4"
+ setimmediate "1.0.4"
+ uuid "2.0.1"
+ xmlhttprequest "1.8.0"
+
+ethjs-unit@0.1.6:
+ version "0.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethjs-unit/-/ethjs-unit-0.1.6.tgz#c665921e476e87bce2a9d588a6fe0405b2c41699"
+ integrity sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=
+ dependencies:
+ bn.js "4.11.6"
+ number-to-bn "1.7.0"
+
+ethjs-util@0.1.6:
+ version "0.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ethjs-util/-/ethjs-util-0.1.6.tgz#f308b62f185f9fe6237132fb2a9818866a5cd536"
+ integrity sha1-8wi2Lxhfn+YjcTL7KpgYhmpc1TY=
+ dependencies:
+ is-hex-prefixed "1.0.0"
+ strip-hex-prefix "1.0.0"
+
+event-stream@=3.3.4:
+ version "3.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571"
+ integrity sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=
+ dependencies:
+ duplexer "~0.1.1"
+ from "~0"
+ map-stream "~0.1.0"
+ pause-stream "0.0.11"
+ split "0.3"
+ stream-combiner "~0.0.4"
+ through "~2.3.1"
+
+eventemitter3@1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eventemitter3/-/eventemitter3-1.1.1.tgz#47786bdaa087caf7b1b75e73abc5c7d540158cd0"
+ integrity sha1-R3hr2qCHyvext15zq8XH1UAVjNA=
+
+eventemitter3@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba"
+ integrity sha1-teEHm1n7XhuidxwKmTvgYKWMmbo=
+
+eventemitter3@^4.0.0:
+ version "4.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ integrity sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=
+
+events@^3.0.0:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+ integrity sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=
+
+eventsource@0.1.6:
+ version "0.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232"
+ integrity sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=
+ dependencies:
+ original ">=0.0.5"
+
+eventsource@^1.0.7:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/eventsource/-/eventsource-1.1.0.tgz#00e8ca7c92109e94b0ddf32dac677d841028cfaf"
+ integrity sha1-AOjKfJIQnpSw3fMtrGd9hBAoz68=
+ dependencies:
+ original "^1.0.0"
+
+evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
+ integrity sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=
+ dependencies:
+ md5.js "^1.3.4"
+ safe-buffer "^5.1.1"
+
+exec-sh@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"
+ integrity sha1-Kl5//L19C6J1W97LFuWkJ9+97DY=
+ dependencies:
+ merge "^1.2.0"
+
+execa@5.1.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
+ integrity sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=
+ dependencies:
+ cross-spawn "^7.0.3"
+ get-stream "^6.0.0"
+ human-signals "^2.1.0"
+ is-stream "^2.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^4.0.1"
+ onetime "^5.1.2"
+ signal-exit "^3.0.3"
+ strip-final-newline "^2.0.0"
+
+execa@^0.7.0:
+ version "0.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
+ integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
+ dependencies:
+ cross-spawn "^5.0.1"
+ get-stream "^3.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"
+
+execa@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
+ integrity sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=
+ dependencies:
+ 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-hook@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
+ integrity sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=
+
+exit@^0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
+ integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
+
+expand-brackets@^0.1.4:
+ version "0.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
+ integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=
+ dependencies:
+ is-posix-bracket "^0.1.0"
+
+expand-brackets@^2.1.4:
+ version "2.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
+ integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+ dependencies:
+ 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"
+
+expand-range@^1.8.1:
+ version "1.8.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
+ integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=
+ dependencies:
+ fill-range "^2.1.0"
+
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
+ integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
+expect@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98"
+ integrity sha1-HgyNO6mlgch71x+5vIhi1ENCX5g=
+ dependencies:
+ ansi-styles "^3.2.0"
+ jest-diff "^23.6.0"
+ jest-get-type "^22.1.0"
+ jest-matcher-utils "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-regex-util "^23.3.0"
+
+expose-loader@^0.7.3:
+ version "0.7.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/expose-loader/-/expose-loader-0.7.5.tgz#e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f"
+ integrity sha1-4p6i2a7u0yVKP6obNfUC25+cP28=
+
+express@^4.14.0, express@^4.17.0, express@^4.17.1:
+ version "4.17.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+ integrity sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ=
+ dependencies:
+ accepts "~1.3.7"
+ array-flatten "1.1.1"
+ body-parser "1.19.0"
+ content-disposition "0.5.3"
+ content-type "~1.0.4"
+ cookie "0.4.0"
+ 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.5"
+ qs "6.7.0"
+ range-parser "~1.2.1"
+ safe-buffer "5.1.2"
+ send "0.17.1"
+ serve-static "1.14.1"
+ setprototypeof "1.1.1"
+ statuses "~1.5.0"
+ type-is "~1.6.18"
+ utils-merge "1.0.1"
+ vary "~1.1.2"
+
+extend-shallow@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+ integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
+ dependencies:
+ is-extendable "^0.1.0"
+
+extend-shallow@^3.0.0, extend-shallow@^3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
+ integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
+ dependencies:
+ assign-symbols "^1.0.0"
+ is-extendable "^1.0.1"
+
+extend@^3.0.0, extend@~3.0.0, extend@~3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+ integrity sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=
+
+external-editor@^2.0.4:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
+ integrity sha1-BFURz9jRM/OEZnPRBHwVTiFK09U=
+ dependencies:
+ chardet "^0.4.0"
+ iconv-lite "^0.4.17"
+ tmp "^0.0.33"
+
+external-editor@^3.0.0, external-editor@^3.0.3:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
+ integrity sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=
+ dependencies:
+ chardet "^0.7.0"
+ iconv-lite "^0.4.24"
+ tmp "^0.0.33"
+
+extglob@^0.3.1:
+ version "0.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
+ integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=
+ dependencies:
+ is-extglob "^1.0.0"
+
+extglob@^2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
+ integrity sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=
+ dependencies:
+ 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"
+
+extract-text-webpack-plugin@^4.0.0-beta.0:
+ version "4.0.0-beta.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extract-text-webpack-plugin/-/extract-text-webpack-plugin-4.0.0-beta.0.tgz#f7361d7ff430b42961f8d1321ba8c1757b5d4c42"
+ integrity sha1-9zYdf/QwtClh+NEyG6jBdXtdTEI=
+ dependencies:
+ async "^2.4.1"
+ loader-utils "^1.1.0"
+ schema-utils "^0.4.5"
+ webpack-sources "^1.1.0"
+
+extract-zip@1.6.6:
+ version "1.6.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c"
+ integrity sha1-EpDt6NINCHK0Kf0/NRyhKOxe+Fw=
+ dependencies:
+ concat-stream "1.6.0"
+ debug "2.6.9"
+ mkdirp "0.5.0"
+ yauzl "2.4.1"
+
+extsprintf@1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
+ integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
+
+extsprintf@^1.2.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
+ integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
+
+fast-deep-equal@3.1.3, fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
+ version "3.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=
+
+fast-deep-equal@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
+ integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=
+
+fast-deep-equal@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
+ integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
+
+fast-diff@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
+ integrity sha1-c+4RmC2Gyq95WYKNUZz+kn+sXwM=
+
+fast-glob@^2.0.2:
+ version "2.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
+ integrity sha1-aVOFfDr6R1//ku5gFdUtpwpM050=
+ dependencies:
+ "@mrmlnc/readdir-enhanced" "^2.2.1"
+ "@nodelib/fs.stat" "^1.1.2"
+ glob-parent "^3.1.0"
+ is-glob "^4.0.0"
+ merge2 "^1.2.3"
+ micromatch "^3.1.10"
+
+fast-json-stable-stringify@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=
+
+fast-levenshtein@~2.0.6:
+ version "2.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
+
+fastparse@^1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
+ integrity sha1-kXKMWllC7O2FMSg8eUQe5BIsNak=
+
+fault@^1.0.2:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
+ integrity sha1-6vz8Cm0hT8lGAeFw3ymVSk+ELxM=
+ dependencies:
+ format "^0.2.0"
+
+faye-websocket@^0.10.0:
+ version "0.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
+ integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=
+ dependencies:
+ websocket-driver ">=0.5.1"
+
+faye-websocket@~0.11.0, faye-websocket@~0.11.1:
+ version "0.11.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
+ integrity sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=
+ dependencies:
+ websocket-driver ">=0.5.1"
+
+fb-watchman@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
+ integrity sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU=
+ dependencies:
+ bser "2.1.1"
+
+fd-slicer@~1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
+ integrity sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=
+ dependencies:
+ pend "~1.2.0"
+
+fd-slicer@~1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e"
+ integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=
+ dependencies:
+ pend "~1.2.0"
+
+fetch-jsonp@^1.0.6:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fetch-jsonp/-/fetch-jsonp-1.1.3.tgz#9eb9e585ba08aaf700563538d17bbebbcd5a3db2"
+ integrity sha1-nrnlhboIqvcAVjU40Xu+u81aPbI=
+
+figgy-pudding@^3.5.1:
+ version "3.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
+ integrity sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=
+
+figures@^1.7.0:
+ version "1.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
+ integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=
+ dependencies:
+ escape-string-regexp "^1.0.5"
+ object-assign "^4.1.0"
+
+figures@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
+ integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
+ dependencies:
+ escape-string-regexp "^1.0.5"
+
+figures@^3.0.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
+ integrity sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=
+ dependencies:
+ escape-string-regexp "^1.0.5"
+
+file-entry-cache@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
+ integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=
+ dependencies:
+ flat-cache "^1.2.1"
+ object-assign "^4.0.1"
+
+file-loader@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa"
+ integrity sha1-+OC6C1mZGLUa3+RdZtHnca1WD6o=
+ dependencies:
+ loader-utils "^1.0.2"
+ schema-utils "^1.0.0"
+
+file-loader@^4.2.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af"
+ integrity sha1-eA8ED3KbPRgBnyBgX3I+hEuKWK8=
+ dependencies:
+ loader-utils "^1.2.3"
+ schema-utils "^2.5.0"
+
+file-system-cache@^1.0.5:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f"
+ integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=
+ dependencies:
+ bluebird "^3.3.5"
+ fs-extra "^0.30.0"
+ ramda "^0.21.0"
+
+file-type@^3.8.0:
+ version "3.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9"
+ integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek=
+
+file-type@^5.2.0:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-type/-/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6"
+ integrity sha1-LdvqfHP/42No365J3DOMBYwritY=
+
+file-type@^6.1.0:
+ version "6.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-type/-/file-type-6.2.0.tgz#e50cd75d356ffed4e306dc4f5bcf52a79903a919"
+ integrity sha1-5QzXXTVv/tTjBtxPW89Sp5kDqRk=
+
+file-uri-to-path@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
+ integrity sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=
+
+filename-regex@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
+ integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=
+
+fileset@^2.0.2:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
+ integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
+ dependencies:
+ glob "^7.0.3"
+ minimatch "^3.0.3"
+
+filesize@3.6.1:
+ version "3.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
+ integrity sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=
+
+fill-range@^2.1.0:
+ version "2.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
+ integrity sha1-6x53OrsFbc2N8r/favWbizqTZWU=
+ dependencies:
+ is-number "^2.1.0"
+ isobject "^2.0.0"
+ randomatic "^3.0.0"
+ repeat-element "^1.1.2"
+ repeat-string "^1.5.2"
+
+fill-range@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
+ integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
+ dependencies:
+ extend-shallow "^2.0.1"
+ is-number "^3.0.0"
+ repeat-string "^1.6.1"
+ to-regex-range "^2.1.0"
+
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+ integrity sha1-GRmmp8df44ssfHflGYU12prN2kA=
+ dependencies:
+ to-regex-range "^5.0.1"
+
+finalhandler@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=
+ dependencies:
+ 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"
+
+find-cache-dir@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
+ integrity sha1-yN765XyKUqinhPnjHFfHQumToLk=
+ dependencies:
+ commondir "^1.0.1"
+ mkdirp "^0.5.1"
+ pkg-dir "^1.0.0"
+
+find-cache-dir@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
+ integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^1.0.0"
+ pkg-dir "^2.0.0"
+
+find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+ integrity sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc=
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^2.0.0"
+ pkg-dir "^3.0.0"
+
+find-cache-dir@^3.0.0, find-cache-dir@^3.3.1:
+ version "3.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
+ integrity sha1-ibM/rUpGcNqpT4Vff74x1thP6IA=
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^3.0.2"
+ pkg-dir "^4.1.0"
+
+find-root@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
+ integrity sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=
+
+find-up@3.0.0, find-up@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+ integrity sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=
+ dependencies:
+ locate-path "^3.0.0"
+
+find-up@^1.0.0:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
+ integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
+ dependencies:
+ path-exists "^2.0.0"
+ pinkie-promise "^2.0.0"
+
+find-up@^2.0.0, find-up@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
+ integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
+ dependencies:
+ locate-path "^2.0.0"
+
+find-up@^4.0.0, find-up@^4.1.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ integrity sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=
+ dependencies:
+ locate-path "^5.0.0"
+ path-exists "^4.0.0"
+
+find-up@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ integrity sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=
+ dependencies:
+ locate-path "^6.0.0"
+ path-exists "^4.0.0"
+
+flat-cache@^1.2.1:
+ version "1.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"
+ integrity sha1-LC73dSXMKSkAff/6HdMUqpyd7m8=
+ dependencies:
+ circular-json "^0.3.1"
+ graceful-fs "^4.1.2"
+ rimraf "~2.6.2"
+ write "^0.2.1"
+
+flatten@^1.0.2:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
+ integrity sha1-wSg6yfJ7Noq8HjbR/3sEUBowNWs=
+
+flush-write-stream@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
+ integrity sha1-jdfYc6G6vCB9lOrQwuDkQnbr8ug=
+ dependencies:
+ inherits "^2.0.3"
+ readable-stream "^2.3.6"
+
+focus-lock@^0.9.1:
+ version "0.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/focus-lock/-/focus-lock-0.9.1.tgz#e8ec7d4821631112193ae09258107f531588da01"
+ integrity sha1-6Ox9SCFjERIZOuCSWBB/UxWI2gE=
+ dependencies:
+ tslib "^2.0.3"
+
+follow-redirects@1.5.10:
+ version "1.5.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a"
+ integrity sha1-e3qfmuov3/NnhqlP9kPtB/T/Xio=
+ dependencies:
+ debug "=3.1.0"
+
+follow-redirects@^1.0.0, follow-redirects@^1.10.0:
+ version "1.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43"
+ integrity sha1-2RFN7Qoc/dM04WTmZirQK/2R/0M=
+
+font-awesome@^4.3.0:
+ version "4.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133"
+ integrity sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=
+
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha1-abRH6IoKXTLD5whPPxcQA0shN24=
+ dependencies:
+ is-callable "^1.1.3"
+
+for-in@^0.1.3:
+ version "0.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1"
+ integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=
+
+for-in@^1.0.1, for-in@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+ integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
+
+for-own@^0.1.3, for-own@^0.1.4:
+ version "0.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
+ integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=
+ dependencies:
+ for-in "^1.0.1"
+
+for-own@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
+ integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=
+ dependencies:
+ for-in "^1.0.1"
+
+foreground-child@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53"
+ integrity sha1-cbMoAMnxWqjy+D9Ka9m/812GGlM=
+ dependencies:
+ cross-spawn "^7.0.0"
+ signal-exit "^3.0.2"
+
+forever-agent@~0.6.1:
+ version "0.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
+ integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
+
+fork-ts-checker-webpack-plugin@1.5.0:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c"
+ integrity sha1-zh13GQtE2Bp2GxC2KEo3N5XkHww=
+ dependencies:
+ babel-code-frame "^6.22.0"
+ chalk "^2.4.1"
+ chokidar "^2.0.4"
+ micromatch "^3.1.10"
+ minimatch "^3.0.4"
+ semver "^5.6.0"
+ tapable "^1.0.0"
+ worker-rpc "^0.1.0"
+
+form-data@~2.1.1:
+ version "2.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
+ integrity sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.5"
+ mime-types "^2.1.12"
+
+form-data@~2.3.2:
+ version "2.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
+ integrity sha1-3M5SwF9kTymManq5Nr1yTO/786Y=
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.6"
+ mime-types "^2.1.12"
+
+format@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
+ integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
+
+forwarded@0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
+ integrity sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=
+
+fragment-cache@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
+ integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+ dependencies:
+ map-cache "^0.2.2"
+
+fresh@0.5.2:
+ version "0.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+
+from2@^2.1.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
+ integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+ dependencies:
+ inherits "^2.0.1"
+ readable-stream "^2.0.0"
+
+from@~0:
+ version "0.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe"
+ integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=
+
+fs-constants@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
+ integrity sha1-a+Dem+mYzhavivwkSXue6bfM2a0=
+
+fs-extra@3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
+ integrity sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^3.0.0"
+ universalify "^0.1.0"
+
+fs-extra@4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-4.0.1.tgz#7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880"
+ integrity sha1-f8DGyJV/mD9X8waiTlud3Y0N2IA=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^3.0.0"
+ universalify "^0.1.0"
+
+fs-extra@^0.30.0:
+ version "0.30.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
+ integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^2.1.0"
+ klaw "^1.0.0"
+ path-is-absolute "^1.0.0"
+ rimraf "^2.2.8"
+
+fs-extra@^2.0.0, fs-extra@^2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
+ integrity sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^2.1.0"
+
+fs-extra@^7.0.0:
+ version "7.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
+ integrity sha1-TxicRKoSO4lfcigE9V6iPq3DSOk=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^4.0.0"
+ universalify "^0.1.0"
+
+fs-extra@^8.0.1:
+ version "8.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
+ integrity sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=
+ dependencies:
+ graceful-fs "^4.2.0"
+ jsonfile "^4.0.0"
+ universalify "^0.1.0"
+
+fs-minipass@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
+ integrity sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=
+ dependencies:
+ minipass "^3.0.0"
+
+fs-promise@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-promise/-/fs-promise-2.0.3.tgz#f64e4f854bcf689aa8bddcba268916db3db46854"
+ integrity sha1-9k5PhUvPaJqovdy6JokW2z20aFQ=
+ dependencies:
+ any-promise "^1.3.0"
+ fs-extra "^2.0.0"
+ mz "^2.6.0"
+ thenify-all "^1.6.0"
+
+fs-write-stream-atomic@^1.0.8:
+ version "1.0.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
+ integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
+ dependencies:
+ graceful-fs "^4.1.2"
+ iferr "^0.1.5"
+ imurmurhash "^0.1.4"
+ readable-stream "1 || 2"
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
+
+fsevents@^1.2.3, fsevents@^1.2.7:
+ version "1.2.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
+ integrity sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=
+ dependencies:
+ bindings "^1.5.0"
+ nan "^2.12.1"
+
+fsevents@~2.3.1:
+ version "2.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
+ integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=
+
+fstream@^1.0.0, fstream@^1.0.12, fstream@^1.0.8:
+ version "1.0.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
+ integrity sha1-Touo7i1Ivk99DeUFRVVI6uWTIEU=
+ dependencies:
+ graceful-fs "^4.1.2"
+ inherits "~2.0.0"
+ mkdirp ">=0.5 0"
+ rimraf "2"
+
+function-bind@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+ integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=
+
+function.prototype.name@^1.1.0, function.prototype.name@^1.1.2, function.prototype.name@^1.1.3:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/function.prototype.name/-/function.prototype.name-1.1.4.tgz#e4ea839b9d3672ae99d0efd9f38d9191c5eaac83"
+ integrity sha1-5OqDm502cq6Z0O/Z842RkcXqrIM=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ functions-have-names "^1.2.2"
+
+functional-red-black-tree@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
+ integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
+
+functions-have-names@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/functions-have-names/-/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21"
+ integrity sha1-mNk5kcOdqTYfjlCzN8T25B8SDiE=
+
+fuse.js@^3.2.0, fuse.js@^3.4.6:
+ version "3.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c"
+ integrity sha1-fehf3W4bM3fCPOAQiSZWOF/ZsQw=
+
+gauge@~2.7.3:
+ version "2.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
+ integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
+ dependencies:
+ 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"
+
+gaze@^1.0.0:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a"
+ integrity sha1-xEFzPhO5J6yMD/C0w7Az8ogSkko=
+ dependencies:
+ globule "^1.0.0"
+
+gensync@^1.0.0-beta.2:
+ version "1.0.0-beta.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ integrity sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=
+
+get-caller-file@^1.0.1:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
+ integrity sha1-+Xj6TJDR3+f/LWvtoqUV5xO9z0o=
+
+get-caller-file@^2.0.1, get-caller-file@^2.0.5:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ integrity sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=
+
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
+ integrity sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.1"
+
+get-stdin@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
+ integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
+
+get-stream@^2.2.0:
+ version "2.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
+ integrity sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=
+ dependencies:
+ object-assign "^4.0.1"
+ pinkie-promise "^2.0.0"
+
+get-stream@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
+ integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
+
+get-stream@^4.0.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+ integrity sha1-wbJVV189wh1Zv8ec09K0axw6VLU=
+ dependencies:
+ pump "^3.0.0"
+
+get-stream@^6.0.0:
+ version "6.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
+ integrity sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=
+
+get-value@^2.0.3, get-value@^2.0.6:
+ version "2.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
+ integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
+
+getos@2.8.4:
+ version "2.8.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/getos/-/getos-2.8.4.tgz#7b8603d3619c28e38cb0fe7a4f63c3acb80d5163"
+ integrity sha1-e4YD02GcKOOMsP56T2PDrLgNUWM=
+ dependencies:
+ async "2.1.4"
+
+getpass@^0.1.1:
+ version "0.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
+ integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
+ dependencies:
+ assert-plus "^1.0.0"
+
+glob-base@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
+ integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=
+ dependencies:
+ glob-parent "^2.0.0"
+ is-glob "^2.0.0"
+
+glob-parent@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
+ integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=
+ dependencies:
+ is-glob "^2.0.0"
+
+glob-parent@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
+ integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+ dependencies:
+ is-glob "^3.1.0"
+ path-dirname "^1.0.0"
+
+glob-parent@~5.1.0:
+ version "5.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ integrity sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=
+ dependencies:
+ is-glob "^4.0.1"
+
+glob-to-regexp@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
+ integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
+
+glob@7.1.2:
+ version "7.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
+ integrity sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=
+ dependencies:
+ 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@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1:
+ version "7.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
+ integrity sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=
+ dependencies:
+ 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"
+
+global-dirs@^0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
+ integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
+ dependencies:
+ ini "^1.3.4"
+
+global-modules@1.0.0, global-modules@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
+ integrity sha1-bXcPDrUjrHgWTXK15xqIdyZcw+o=
+ dependencies:
+ global-prefix "^1.0.1"
+ is-windows "^1.0.1"
+ resolve-dir "^1.0.0"
+
+global-modules@2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
+ integrity sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=
+ dependencies:
+ global-prefix "^3.0.0"
+
+global-prefix@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
+ integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=
+ dependencies:
+ expand-tilde "^2.0.2"
+ homedir-polyfill "^1.0.1"
+ ini "^1.3.4"
+ is-windows "^1.0.1"
+ which "^1.2.14"
+
+global-prefix@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
+ integrity sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=
+ dependencies:
+ ini "^1.3.5"
+ kind-of "^6.0.2"
+ which "^1.3.1"
+
+global@^4.3.2, global@^4.4.0, global@~4.4.0:
+ version "4.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
+ integrity sha1-PnsQUXkAajI+1xqvyj6cV6XMZAY=
+ dependencies:
+ min-document "^2.19.0"
+ process "^0.11.10"
+
+globals@^11.0.1, globals@^11.1.0:
+ version "11.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+ integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=
+
+globals@^9.18.0:
+ version "9.18.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
+ integrity sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=
+
+globalthis@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b"
+ integrity sha1-KiNdNPTYA2IZ9+NJKbXenhgWa4s=
+ dependencies:
+ define-properties "^1.1.3"
+
+globby@8.0.1:
+ version "8.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50"
+ integrity sha1-ta1IuKqAs1uBT8EoHsyFHx0rW1A=
+ dependencies:
+ array-union "^1.0.1"
+ dir-glob "^2.0.0"
+ fast-glob "^2.0.2"
+ glob "^7.1.2"
+ ignore "^3.3.5"
+ pify "^3.0.0"
+ slash "^1.0.0"
+
+globby@8.0.2:
+ version "8.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d"
+ integrity sha1-VpdhnM2VxSdduy1vqkIIfBqUHY0=
+ dependencies:
+ array-union "^1.0.1"
+ dir-glob "2.0.0"
+ fast-glob "^2.0.2"
+ glob "^7.1.2"
+ ignore "^3.3.5"
+ pify "^3.0.0"
+ slash "^1.0.0"
+
+globby@^6.1.0:
+ version "6.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
+ integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+ dependencies:
+ array-union "^1.0.1"
+ glob "^7.0.3"
+ object-assign "^4.0.1"
+ pify "^2.0.0"
+ pinkie-promise "^2.0.0"
+
+globule@^1.0.0:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/globule/-/globule-1.3.2.tgz#d8bdd9e9e4eef8f96e245999a5dee7eb5d8529c4"
+ integrity sha1-2L3Z6eTu+PluJFmZpd7n612FKcQ=
+ dependencies:
+ glob "~7.1.1"
+ lodash "~4.17.10"
+ minimatch "~3.0.2"
+
+good-listener@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
+ integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
+ dependencies:
+ delegate "^3.1.2"
+
+got@7.1.0, got@^7.1.0:
+ version "7.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a"
+ integrity sha1-BUUP2ECU5rvqVvRRpDqcKJFmOFo=
+ dependencies:
+ decompress-response "^3.2.0"
+ duplexer3 "^0.1.4"
+ get-stream "^3.0.0"
+ is-plain-obj "^1.1.0"
+ is-retry-allowed "^1.0.0"
+ is-stream "^1.0.0"
+ isurl "^1.0.0-alpha5"
+ lowercase-keys "^1.0.0"
+ p-cancelable "^0.3.0"
+ p-timeout "^1.1.1"
+ safe-buffer "^5.0.1"
+ timed-out "^4.0.0"
+ url-parse-lax "^1.0.0"
+ url-to-options "^1.0.1"
+
+got@^6.7.1:
+ version "6.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
+ integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=
+ dependencies:
+ create-error-class "^3.0.0"
+ duplexer3 "^0.1.4"
+ get-stream "^3.0.0"
+ is-redirect "^1.0.0"
+ is-retry-allowed "^1.0.0"
+ is-stream "^1.0.0"
+ lowercase-keys "^1.0.0"
+ safe-buffer "^5.0.1"
+ timed-out "^4.0.0"
+ unzip-response "^2.0.1"
+ url-parse-lax "^1.0.0"
+
+graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2:
+ version "4.2.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
+ integrity sha1-/wQLKwhTsjw9MQJ1I3BvGIXXa+4=
+
+graphql-tag@^2.10.1:
+ version "2.12.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/graphql-tag/-/graphql-tag-2.12.4.tgz#d34066688a4f09e72d6f4663c74211e9b4b7c4bf"
+ integrity sha1-00BmaIpPCectb0Zjx0IR6bS3xL8=
+ dependencies:
+ tslib "^2.1.0"
+
+graphql@^14.5.8:
+ version "14.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/graphql/-/graphql-14.7.0.tgz#7fa79a80a69be4a31c27dda824dc04dac2035a72"
+ integrity sha1-f6eagKab5KMcJ92oJNwE2sIDWnI=
+ dependencies:
+ iterall "^1.2.2"
+
+growly@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
+ integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
+
+gud@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
+ integrity sha1-pIlYGxfmpwvsqavjrlfeekmYUsA=
+
+gzip-size@5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gzip-size/-/gzip-size-5.0.0.tgz#a55ecd99222f4c48fd8c01c625ce3b349d0a0e80"
+ integrity sha1-pV7NmSIvTEj9jAHGJc47NJ0KDoA=
+ dependencies:
+ duplexer "^0.1.1"
+ pify "^3.0.0"
+
+gzip-size@5.1.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
+ integrity sha1-y5vuaS+HwGErIyhAqHOQTkwTUnQ=
+ dependencies:
+ duplexer "^0.1.1"
+ pify "^4.0.1"
+
+handle-thing@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
+ integrity sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=
+
+handlebars@^4.0.3:
+ version "4.7.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
+ integrity sha1-nOM0FqrQLb1sj6+oJA1dmABJRaE=
+ dependencies:
+ minimist "^1.2.5"
+ neo-async "^2.6.0"
+ source-map "^0.6.1"
+ wordwrap "^1.0.0"
+ optionalDependencies:
+ uglify-js "^3.1.4"
+
+har-schema@^1.0.5:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
+ integrity sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=
+
+har-schema@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
+ integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
+
+har-validator@~4.2.1:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
+ integrity sha1-M0gdDxu/9gDdID11gSpqX7oALio=
+ dependencies:
+ ajv "^4.9.1"
+ har-schema "^1.0.5"
+
+har-validator@~5.1.3:
+ version "5.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
+ integrity sha1-HwgDufjLIMD6E4It8ezds2veHv0=
+ dependencies:
+ ajv "^6.12.3"
+ har-schema "^2.0.0"
+
+harmony-reflect@^1.4.6:
+ version "1.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710"
+ integrity sha1-Mey9MuZIo00DDYattn1NR1R/5xA=
+
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+ dependencies:
+ ansi-regex "^2.0.0"
+
+has-bigints@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
+ integrity sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=
+
+has-flag@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
+ integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=
+
+has-flag@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
+ integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=
+
+has-flag@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
+
+has-symbol-support-x@^1.4.1:
+ version "1.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
+ integrity sha1-FAn5i8ACR9pF2mfO4KNvKC/yZFU=
+
+has-symbols@^1.0.1, has-symbols@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
+ integrity sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=
+
+has-to-string-tag-x@^1.2.0:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d"
+ integrity sha1-oEWrOD17SyASoAFIqwql8pAETU0=
+ dependencies:
+ has-symbol-support-x "^1.4.1"
+
+has-unicode@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+ integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
+
+has-value@^0.3.1:
+ version "0.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
+ integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
+ dependencies:
+ get-value "^2.0.3"
+ has-values "^0.1.4"
+ isobject "^2.0.0"
+
+has-value@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
+ integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
+ dependencies:
+ get-value "^2.0.6"
+ has-values "^1.0.0"
+ isobject "^3.0.0"
+
+has-values@^0.1.4:
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
+ integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
+
+has-values@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
+ integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
+ dependencies:
+ is-number "^3.0.0"
+ kind-of "^4.0.0"
+
+has@^1.0.1, has@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
+ integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=
+ dependencies:
+ function-bind "^1.1.1"
+
+hash-base@^3.0.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
+ integrity sha1-VcOB2eBuHSmXqIO0o/3f5/DTrzM=
+ dependencies:
+ inherits "^2.0.4"
+ readable-stream "^3.6.0"
+ safe-buffer "^5.2.0"
+
+hash.js@1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
+ integrity sha1-NA3tvmKQGHFRweodd3o0SJNd+EY=
+ dependencies:
+ inherits "^2.0.3"
+ minimalistic-assert "^1.0.0"
+
+hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7:
+ version "1.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
+ integrity sha1-C6vKU46NTuSg+JiNaIZlN6ADz0I=
+ dependencies:
+ inherits "^2.0.3"
+ minimalistic-assert "^1.0.1"
+
+hast-util-parse-selector@^2.0.0:
+ version "2.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a"
+ integrity sha1-1Xwj9NoWrjxjs7bKRhZoMxNJnDo=
+
+hastscript@^5.0.0:
+ version "5.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a"
+ integrity sha1-veLC5W0Exi3SToxd8ojQUKNV+4o=
+ dependencies:
+ comma-separated-tokens "^1.0.0"
+ hast-util-parse-selector "^2.0.0"
+ property-information "^5.0.0"
+ space-separated-tokens "^1.0.0"
+
+hawk@~3.1.3:
+ version "3.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
+ integrity sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=
+ dependencies:
+ boom "2.x.x"
+ cryptiles "2.x.x"
+ hoek "2.x.x"
+ sntp "1.x.x"
+
+hdkey@^1.1.0:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hdkey/-/hdkey-1.1.2.tgz#c60f9cf6f90fbf24a8a52ea06893f36a0108cd3e"
+ integrity sha1-xg+c9vkPvySopS6gaJPzagEIzT4=
+ dependencies:
+ bs58check "^2.1.2"
+ safe-buffer "^5.1.1"
+ secp256k1 "^3.0.1"
+
+he@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+ integrity sha1-hK5l+n6vsWX922FWauFLrwVmTw8=
+
+highcharts-react-official@^2.2.2:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/highcharts-react-official/-/highcharts-react-official-2.2.2.tgz#1a83558f4501b73c99e79aa65325f7bd522d6574"
+ integrity sha1-GoNVj0UBtzyZ55qmUyX3vVItZXQ=
+
+highcharts@^7.2.1:
+ version "7.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/highcharts/-/highcharts-7.2.2.tgz#94d6bae545d7f0fbf49615b28640f5fdbf99d11e"
+ integrity sha1-lNa65UXX8Pv0lhWyhkD1/b+Z0R4=
+
+highlight.js@~9.13.0:
+ version "9.13.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/highlight.js/-/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e"
+ integrity sha1-BUWG1TpoYzERaEiKD1jWxQXOZB4=
+
+history@^4.9.0:
+ version "4.10.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3"
+ integrity sha1-MzcaZeOoOyZ0NOKz87G0xYqtTPM=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ loose-envify "^1.2.0"
+ resolve-pathname "^3.0.0"
+ tiny-invariant "^1.0.2"
+ tiny-warning "^1.0.0"
+ value-equal "^1.0.1"
+
+hmac-drbg@^1.0.0, hmac-drbg@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
+ integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
+ dependencies:
+ hash.js "^1.0.3"
+ minimalistic-assert "^1.0.0"
+ minimalistic-crypto-utils "^1.0.1"
+
+hoek@2.x.x:
+ version "2.16.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
+ integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=
+
+hoist-non-react-statics@^2.3.1:
+ version "2.5.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47"
+ integrity sha1-xZA89AnA39kI84jmGdhrnBF0y0c=
+
+hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0:
+ version "3.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
+ integrity sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=
+ dependencies:
+ react-is "^16.7.0"
+
+home-or-tmp@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
+ integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg=
+ dependencies:
+ os-homedir "^1.0.0"
+ os-tmpdir "^1.0.1"
+
+homedir-polyfill@^1.0.1:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
+ integrity sha1-dDKYzvTlrz4ZQWH7rcwhUdOgWOg=
+ dependencies:
+ parse-passwd "^1.0.0"
+
+hosted-git-info@^2.1.4:
+ version "2.8.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
+ integrity sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=
+
+hpack.js@^2.1.6:
+ version "2.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
+ integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=
+ dependencies:
+ inherits "^2.0.1"
+ obuf "^1.0.0"
+ readable-stream "^2.0.1"
+ wbuf "^1.1.0"
+
+html-comment-regex@^1.1.0:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
+ integrity sha1-l9RoiutcgYhqNk+qDK0d2hTUM6c=
+
+html-element-map@^1.2.0:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-element-map/-/html-element-map-1.3.1.tgz#44b2cbcfa7be7aa4ff59779e47e51012e1c73c08"
+ integrity sha1-RLLLz6e+eqT/WXeeR+UQEuHHPAg=
+ dependencies:
+ array.prototype.filter "^1.0.0"
+ call-bind "^1.0.2"
+
+html-encoding-sniffer@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
+ integrity sha1-5w2EuU2lOqN14R/jo1G+ZkLKRvg=
+ dependencies:
+ whatwg-encoding "^1.0.1"
+
+html-entities@^1.2.0, html-entities@^1.2.1:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
+ integrity sha1-z70bAdKvr5rcobEK59/6uYxx0tw=
+
+html-escaper@^2.0.0:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
+ integrity sha1-39YAJ9o2o238viNiYsAKWCJoFFM=
+
+html-minifier-terser@^5.0.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
+ integrity sha1-ki6W8fO7YIMsJjS3mIQJY4mx8FQ=
+ dependencies:
+ camel-case "^4.1.1"
+ clean-css "^4.2.3"
+ commander "^4.1.1"
+ he "^1.2.0"
+ param-case "^3.0.3"
+ relateurl "^0.2.7"
+ terser "^4.6.3"
+
+html-parse-stringify2@2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-parse-stringify2/-/html-parse-stringify2-2.0.1.tgz#dc5670b7292ca158b7bc916c9a6735ac8872834a"
+ integrity sha1-3FZwtyksoVi3vJFsmmc1rIhyg0o=
+ dependencies:
+ void-elements "^2.0.1"
+
+html-to-react@^1.3.4:
+ version "1.4.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-to-react/-/html-to-react-1.4.5.tgz#59091c11021d1ef315ef738460abb6a4a41fe1ce"
+ integrity sha1-WQkcEQIdHvMV73OEYKu2pKQf4c4=
+ dependencies:
+ domhandler "^3.3.0"
+ htmlparser2 "^5.0"
+ lodash.camelcase "^4.3.0"
+ ramda "^0.27.1"
+
+html-webpack-plugin@^4.0.0-beta.2, html-webpack-plugin@^4.0.0-beta.5:
+ version "4.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12"
+ integrity sha1-dvyD+hoPEt1ffaBASlTiaZZmvBI=
+ dependencies:
+ "@types/html-minifier-terser" "^5.0.0"
+ "@types/tapable" "^1.0.5"
+ "@types/webpack" "^4.41.8"
+ html-minifier-terser "^5.0.1"
+ loader-utils "^1.2.3"
+ lodash "^4.17.20"
+ pretty-error "^2.1.1"
+ tapable "^1.1.3"
+ util.promisify "1.0.0"
+
+htmlparser2@^3.10.1:
+ version "3.10.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
+ integrity sha1-vWedw/WYl7ajS7EHSchVu1OpOS8=
+ dependencies:
+ domelementtype "^1.3.1"
+ domhandler "^2.3.0"
+ domutils "^1.5.1"
+ entities "^1.1.1"
+ inherits "^2.0.1"
+ readable-stream "^3.1.1"
+
+htmlparser2@^5.0:
+ version "5.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/htmlparser2/-/htmlparser2-5.0.1.tgz#7daa6fc3e35d6107ac95a4fc08781f091664f6e7"
+ integrity sha1-fapvw+NdYQeslaT8CHgfCRZk9uc=
+ dependencies:
+ domelementtype "^2.0.1"
+ domhandler "^3.3.0"
+ domutils "^2.4.2"
+ entities "^2.0.0"
+
+htmlparser2@^6.1.0:
+ version "6.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7"
+ integrity sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=
+ dependencies:
+ domelementtype "^2.0.1"
+ domhandler "^4.0.0"
+ domutils "^2.5.2"
+ entities "^2.0.0"
+
+http-deceiver@^1.2.7:
+ version "1.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
+ integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=
+
+http-errors@1.7.2:
+ version "1.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+ integrity sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8=
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+http-errors@~1.6.2:
+ version "1.6.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
+ integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.0"
+ statuses ">= 1.4.0 < 2"
+
+http-errors@~1.7.2:
+ version "1.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
+ integrity sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY=
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.4"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+http-https@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-https/-/http-https-1.0.0.tgz#2f908dd5f1db4068c058cd6e6d4ce392c913389b"
+ integrity sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=
+
+http-parser-js@>=0.5.1:
+ version "0.5.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-parser-js/-/http-parser-js-0.5.3.tgz#01d2709c79d41698bb01d4decc5e9da4e4a033d9"
+ integrity sha1-AdJwnHnUFpi7AdTezF6dpOSgM9k=
+
+http-proxy-middleware@^0.19.1:
+ version "0.19.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-proxy-middleware/-/http-proxy-middleware-0.19.2.tgz#ee73dcc8348165afefe8de2ff717751d181608ee"
+ integrity sha1-7nPcyDSBZa/v6N4v9xd1HRgWCO4=
+ dependencies:
+ http-proxy "^1.18.1"
+ is-glob "^4.0.0"
+ lodash "^4.17.11"
+ micromatch "^3.1.10"
+
+http-proxy@^1.18.1:
+ version "1.18.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
+ integrity sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=
+ dependencies:
+ eventemitter3 "^4.0.0"
+ follow-redirects "^1.0.0"
+ requires-port "^1.0.0"
+
+http-signature@~1.1.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
+ integrity sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=
+ dependencies:
+ assert-plus "^0.2.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
+http-signature@~1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
+ integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
+ dependencies:
+ assert-plus "^1.0.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
+https-browserify@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
+ integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+
+human-signals@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
+ integrity sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=
+
+i18next-browser-languagedetector@^2.2.0:
+ version "2.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/i18next-browser-languagedetector/-/i18next-browser-languagedetector-2.2.4.tgz#b02412d7ab15d7d74e1b1317d67d8a244b219ee3"
+ integrity sha1-sCQS16sV19dOGxMX1n2KJEshnuM=
+
+i18next-xhr-backend@1.5.1:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/i18next-xhr-backend/-/i18next-xhr-backend-1.5.1.tgz#50282610780c6a696d880dfa7f4ac1d01e8c3ad5"
+ integrity sha1-UCgmEHgMamltiA36f0rB0B6MOtU=
+
+i18next@10.3.0:
+ version "10.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/i18next/-/i18next-10.3.0.tgz#6866d14f6ae7b3629921f78bc028d04914f0654c"
+ integrity sha1-aGbRT2rns2KZIfeLwCjQSRTwZUw=
+
+iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24:
+ version "0.4.24"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
+icss-replace-symbols@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
+ integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
+
+icss-utils@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962"
+ integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=
+ dependencies:
+ postcss "^6.0.1"
+
+icss-utils@^4.0.0, icss-utils@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
+ integrity sha1-IRcLU3ie4nRHwvR91oMIFAP5pGc=
+ dependencies:
+ postcss "^7.0.14"
+
+identity-obj-proxy@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14"
+ integrity sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=
+ dependencies:
+ harmony-reflect "^1.4.6"
+
+idna-uts46-hx@^2.3.1:
+ version "2.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz#a1dc5c4df37eee522bf66d969cc980e00e8711f9"
+ integrity sha1-odxcTfN+7lIr9m2WnMmA4A6HEfk=
+ dependencies:
+ punycode "2.1.0"
+
+ieee754@^1.1.11, ieee754@^1.1.13, ieee754@^1.1.4:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ integrity sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=
+
+iferr@^0.1.5:
+ version "0.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
+ integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
+
+ignore@^3.3.3, ignore@^3.3.5:
+ version "3.3.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
+ integrity sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=
+
+immer@1.10.0:
+ version "1.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
+ integrity sha1-utZ2BbqcgQJ12R4cKkfUWC6YKG0=
+
+immer@1.7.2:
+ version "1.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/immer/-/immer-1.7.2.tgz#a51e9723c50b27e132f6566facbec1c85fc69547"
+ integrity sha1-pR6XI8ULJ+Ey9lZvrL7ByF/GlUc=
+
+immutability-helper@^2.7.1:
+ version "2.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/immutability-helper/-/immutability-helper-2.9.1.tgz#71c423ba387e67b6c6ceba0650572f2a2a6727df"
+ integrity sha1-ccQjujh+Z7bGzroGUFcvKipnJ98=
+ dependencies:
+ invariant "^2.2.0"
+
+import-cwd@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
+ integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
+ dependencies:
+ import-from "^2.1.0"
+
+import-fresh@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
+ integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+ dependencies:
+ caller-path "^2.0.0"
+ resolve-from "^3.0.0"
+
+import-fresh@^3.1.0:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+ integrity sha1-NxYsJfy566oublPVtNiM4X2eDCs=
+ dependencies:
+ parent-module "^1.0.0"
+ resolve-from "^4.0.0"
+
+import-from@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
+ integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
+ dependencies:
+ resolve-from "^3.0.0"
+
+import-lazy@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
+ integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
+
+import-local@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
+ integrity sha1-Xk/9wD9P5sAJxnKb6yljHC+CJ7w=
+ dependencies:
+ pkg-dir "^2.0.0"
+ resolve-cwd "^2.0.0"
+
+import-local@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
+ integrity sha1-VQcL44pZk88Y72236WH1vuXFoJ0=
+ dependencies:
+ pkg-dir "^3.0.0"
+ resolve-cwd "^2.0.0"
+
+imurmurhash@^0.1.4:
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+ integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
+
+in-publish@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c"
+ integrity sha1-lIsaU1yAMFYc6lIvc/ePS+NX4Aw=
+
+indent-string@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
+ integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
+ dependencies:
+ repeating "^2.0.0"
+
+indent-string@^3.0.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
+ integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
+
+indent-string@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+ integrity sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=
+
+indexes-of@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
+ integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
+
+infer-owner@^1.0.3, infer-owner@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
+ integrity sha1-xM78qo5RBRwqQLos6KPScpWvlGc=
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
+
+inherits@2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
+ integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+
+inherits@2.0.3:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+
+ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
+ version "1.3.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ integrity sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=
+
+inquirer@6.2.0:
+ version "6.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
+ integrity sha1-Ua3Nd29mE2ncHolIWcJWCiJKvdg=
+ dependencies:
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.0"
+ cli-cursor "^2.1.0"
+ cli-width "^2.0.0"
+ external-editor "^3.0.0"
+ figures "^2.0.0"
+ lodash "^4.17.10"
+ mute-stream "0.0.7"
+ run-async "^2.2.0"
+ rxjs "^6.1.0"
+ string-width "^2.1.0"
+ strip-ansi "^4.0.0"
+ through "^2.3.6"
+
+inquirer@6.5.0:
+ version "6.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42"
+ integrity sha1-IwMxfvyaTqfsLi32+GVptzSsz0I=
+ dependencies:
+ 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"
+
+inquirer@^3.0.6:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
+ integrity sha1-ndLyrXZdyrH/BEO0kUQqILoifck=
+ dependencies:
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.0"
+ cli-cursor "^2.1.0"
+ cli-width "^2.0.0"
+ external-editor "^2.0.4"
+ figures "^2.0.0"
+ lodash "^4.3.0"
+ mute-stream "0.0.7"
+ run-async "^2.2.0"
+ rx-lite "^4.0.8"
+ rx-lite-aggregates "^4.0.8"
+ string-width "^2.1.0"
+ strip-ansi "^4.0.0"
+ through "^2.3.6"
+
+inquirer@^7.0.0:
+ version "7.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
+ integrity sha1-BNF2sq8Er8FXqD/XwQDpjuCq0AM=
+ dependencies:
+ 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"
+
+internal-ip@^4.3.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
+ integrity sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc=
+ dependencies:
+ default-gateway "^4.2.0"
+ ipaddr.js "^1.9.0"
+
+internal-slot@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
+ integrity sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=
+ dependencies:
+ get-intrinsic "^1.1.0"
+ has "^1.0.3"
+ side-channel "^1.0.4"
+
+interpret@^1.0.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
+ integrity sha1-Zlq4vE2iendKQFhOgS4+D6RbGh4=
+
+interpret@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
+ integrity sha1-GnigtZZcQKVBbQB61vUK0nxBffk=
+
+invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4:
+ version "2.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+ integrity sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=
+ dependencies:
+ loose-envify "^1.0.0"
+
+invert-kv@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
+ integrity sha1-c5P1r6Weyf9fZ6J2INEcIm4+7AI=
+
+ip-regex@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
+ integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+
+ip@^1.1.0, ip@^1.1.5:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
+ integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
+
+ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
+ version "1.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ integrity sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=
+
+is-absolute-url@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
+ integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
+
+is-absolute-url@^3.0.2:
+ version "3.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
+ integrity sha1-lsaiK2ojkpsR6gr7GDbDatSl1pg=
+
+is-accessor-descriptor@^0.1.6:
+ version "0.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
+ integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-accessor-descriptor@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
+ integrity sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=
+ dependencies:
+ kind-of "^6.0.0"
+
+is-alphabetical@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
+ integrity sha1-nn1rlJFr4iFTdF0YTCmMv5hqaG0=
+
+is-alphanumerical@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
+ integrity sha1-frmiQx+FX2se8aeOMm31FWlsTb8=
+ dependencies:
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+
+is-arguments@^1.0.4, is-arguments@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9"
+ integrity sha1-YjUwMd++4HzrNGVqa95Z7+yujdk=
+ dependencies:
+ call-bind "^1.0.0"
+
+is-arrayish@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+ integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+
+is-bigint@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
+ integrity sha1-/7OBRCUDI1rSReqJ5Fs9v/BA7lo=
+
+is-binary-path@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+ integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
+ dependencies:
+ binary-extensions "^1.0.0"
+
+is-binary-path@~2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ integrity sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=
+ dependencies:
+ binary-extensions "^2.0.0"
+
+is-boolean-object@^1.0.1, is-boolean-object@^1.1.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
+ integrity sha1-PAh48DXLghIo01DS4eNnGXFqPeg=
+ dependencies:
+ call-bind "^1.0.2"
+
+is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@^1.1.5:
+ version "1.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+ integrity sha1-76ouqdqg16suoTqXsritUf776L4=
+
+is-buffer@^2.0.2, is-buffer@^2.0.3:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+ integrity sha1-68JS5ADSL/jXf6CYiIIaJKZYwZE=
+
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.3:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
+ integrity sha1-ix4FALc6HXbHBIdjbzaOUZ3o244=
+
+is-ci@1.0.10:
+ version "1.0.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
+ integrity sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=
+ dependencies:
+ ci-info "^1.0.0"
+
+is-ci@^1.0.10:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c"
+ integrity sha1-43ecjuF/zPQoSI9uKBGH8uYyhBw=
+ dependencies:
+ ci-info "^1.5.0"
+
+is-core-module@^2.2.0, is-core-module@^2.4.0:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
+ integrity sha1-jp/I4VAnsBFBgCbpjw5vTYYwXME=
+ dependencies:
+ has "^1.0.3"
+
+is-data-descriptor@^0.1.4:
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
+ integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-data-descriptor@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
+ integrity sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=
+ dependencies:
+ kind-of "^6.0.0"
+
+is-date-object@^1.0.1:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
+ integrity sha1-VQz8wDr62gXuo90wmBx7CVUfc+U=
+
+is-decimal@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
+ integrity sha1-ZaOllYocW2OnBuGzM9fNn2MNP6U=
+
+is-descriptor@^0.1.0:
+ version "0.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
+ integrity sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=
+ dependencies:
+ is-accessor-descriptor "^0.1.6"
+ is-data-descriptor "^0.1.4"
+ kind-of "^5.0.0"
+
+is-descriptor@^1.0.0, is-descriptor@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
+ integrity sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=
+ dependencies:
+ is-accessor-descriptor "^1.0.0"
+ is-data-descriptor "^1.0.0"
+ kind-of "^6.0.2"
+
+is-directory@^0.3.1:
+ version "0.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
+ integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+
+is-docker@^2.0.0:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
+ integrity sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=
+
+is-dom@^1.0.9:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a"
+ integrity sha1-rx/O0pJ0JEO7Wco/dqtegJB7Too=
+ dependencies:
+ is-object "^1.0.1"
+ is-window "^1.0.2"
+
+is-dotfile@^1.0.0:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
+ integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=
+
+is-equal-shallow@^0.1.3:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
+ integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=
+ dependencies:
+ is-primitive "^2.0.0"
+
+is-extendable@^0.1.0, is-extendable@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+ integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
+
+is-extendable@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
+ integrity sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=
+ dependencies:
+ is-plain-object "^2.0.4"
+
+is-extglob@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
+ integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
+
+is-extglob@^2.1.0, is-extglob@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+
+is-finite@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
+ integrity sha1-kEE1x3+0LAZB1qobzbxNqo2ggvM=
+
+is-fullwidth-code-point@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
+ integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
+ dependencies:
+ number-is-nan "^1.0.0"
+
+is-fullwidth-code-point@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+ integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=
+
+is-function@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
+ integrity sha1-Twl/MKv2762smDOxfKXcA/gUTgg=
+
+is-generator-fn@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
+ integrity sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=
+
+is-glob@^2.0.0, is-glob@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
+ integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=
+ dependencies:
+ is-extglob "^1.0.0"
+
+is-glob@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
+ integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
+ dependencies:
+ is-extglob "^2.1.0"
+
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
+ integrity sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=
+ dependencies:
+ is-extglob "^2.1.1"
+
+is-hex-prefixed@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
+ integrity sha1-fY035q135dEnFIkTxXPggtd39VQ=
+
+is-hexadecimal@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
+ integrity sha1-zDXJdYjaS9Saju3WvECC1E3LI6c=
+
+is-installed-globally@0.1.0, is-installed-globally@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
+ integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=
+ dependencies:
+ global-dirs "^0.1.0"
+ is-path-inside "^1.0.0"
+
+is-map@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ integrity sha1-AJItuMm/c+gbejNYJ7wqQ/K5ESc=
+
+is-natural-number@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8"
+ integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=
+
+is-negative-zero@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
+ integrity sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=
+
+is-npm@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
+ integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ=
+
+is-number-object@^1.0.4:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
+ integrity sha1-bt+u7XlQz/Ga/tzp+/yp7m3Sies=
+
+is-number@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
+ integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-number@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+ integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-number@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
+ integrity sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8=
+
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=
+
+is-obj@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
+ integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+
+is-object@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf"
+ integrity sha1-pWVS4cZlyelQtKAlRh2ofnL4b88=
+
+is-path-cwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
+ integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=
+
+is-path-cwd@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
+ integrity sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=
+
+is-path-in-cwd@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
+ integrity sha1-WsSLNF72dTOb1sekipEhELJBz1I=
+ dependencies:
+ is-path-inside "^1.0.0"
+
+is-path-in-cwd@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
+ integrity sha1-v+Lcomxp85cmWkAJljYCk1oFOss=
+ dependencies:
+ is-path-inside "^2.1.0"
+
+is-path-inside@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
+ integrity sha1-jvW33lBDej/cprToZe96pVy0gDY=
+ dependencies:
+ path-is-inside "^1.0.1"
+
+is-path-inside@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
+ integrity sha1-fJgQWH1lmkDSe8201WFuqwWUlLI=
+ dependencies:
+ path-is-inside "^1.0.2"
+
+is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+ integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
+
+is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ integrity sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=
+ dependencies:
+ isobject "^3.0.1"
+
+is-plain-object@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b"
+ integrity sha1-Zi2S0kwKpDAkB7DUXSHyJRyF+Fs=
+
+is-posix-bracket@^0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
+ integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=
+
+is-primitive@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
+ integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU=
+
+is-promise@^2.1.0:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
+ integrity sha1-OauVnMv5p3TPB597QMeib3YxNfE=
+
+is-redirect@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
+ integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=
+
+is-regex@^1.0.4, is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
+ integrity sha1-0Cn5r/ZEi5Prvj8z2scVEf3L758=
+ dependencies:
+ call-bind "^1.0.2"
+ has-symbols "^1.0.2"
+
+is-resolvable@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
+ integrity sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=
+
+is-retry-allowed@^1.0.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
+ integrity sha1-13hIi9CkZmo76KFIK58rqv7eqLQ=
+
+is-root@2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-root/-/is-root-2.0.0.tgz#838d1e82318144e5a6f77819d90207645acc7019"
+ integrity sha1-g40egjGBROWm93gZ2QIHZFrMcBk=
+
+is-root@2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
+ integrity sha1-gJ4YEpzxEpZEMCpPhUQDXVGYSpw=
+
+is-set@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ integrity sha1-kHVfpMJWLcHF1AJHYNYRm5TKGOw=
+
+is-stream@^1.0.0, is-stream@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+ integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+
+is-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
+ integrity sha1-venDJoDW+uBBKdasnZIc54FfeOM=
+
+is-string@^1.0.5, is-string@^1.0.6:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
+ integrity sha1-P+XVmS+w2TQE8yWE1LAXmnG1Sl8=
+
+is-subset@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
+ integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=
+
+is-svg@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
+ integrity sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=
+ dependencies:
+ html-comment-regex "^1.1.0"
+
+is-symbol@^1.0.2, is-symbol@^1.0.3:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
+ integrity sha1-ptrJO2NbBjymhyI23oiRClevE5w=
+ dependencies:
+ has-symbols "^1.0.2"
+
+is-typedarray@^1.0.0, is-typedarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+ integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+
+is-url@^1.2.2:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52"
+ integrity sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI=
+
+is-utf8@^0.2.0:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
+ integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
+
+is-whitespace-character@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
+ integrity sha1-CFjt2UqVWUx8ndC1wXTsbkXuSqc=
+
+is-window@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
+ integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0=
+
+is-windows@^1.0.1, is-windows@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+ integrity sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=
+
+is-word-character@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
+ integrity sha1-zg5zIW+YWZBgWS9i/zE1TdvrAjA=
+
+is-wsl@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
+ integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+
+is-wsl@^2.1.1:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+ integrity sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=
+ dependencies:
+ is-docker "^2.0.0"
+
+isarray@0.0.1:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+ integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
+
+isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+ integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+
+isobject@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+ integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
+ dependencies:
+ isarray "1.0.0"
+
+isobject@^3.0.0, isobject@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
+
+isobject@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0"
+ integrity sha1-PxyRVec7GSAiqAgZus0DQ3EWl7A=
+
+isstream@~0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
+ integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
+
+istanbul-api@^1.3.1:
+ version "1.3.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa"
+ integrity sha1-qGx3DSsD4R4/d4zXrt2C0nIgkqo=
+ dependencies:
+ async "^2.1.4"
+ fileset "^2.0.2"
+ istanbul-lib-coverage "^1.2.1"
+ istanbul-lib-hook "^1.2.2"
+ istanbul-lib-instrument "^1.10.2"
+ istanbul-lib-report "^1.1.5"
+ istanbul-lib-source-maps "^1.2.6"
+ istanbul-reports "^1.5.1"
+ js-yaml "^3.7.0"
+ mkdirp "^0.5.1"
+ once "^1.4.0"
+
+istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0"
+ integrity sha1-zPftzQoLubj3Kf7rCTBHD5r2ZPA=
+
+istanbul-lib-coverage@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
+ integrity sha1-9ZRKN8cLVQsCp4pcOyBVsoDOyOw=
+
+istanbul-lib-hook@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86"
+ integrity sha1-vGvwfxKmQfvxyFOR0Nqo8K6mv4Y=
+ dependencies:
+ append-transform "^0.4.0"
+
+istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2:
+ version "1.10.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca"
+ integrity sha1-H1XtEKw8R/K93dUweTUSZ1TQqco=
+ dependencies:
+ babel-generator "^6.18.0"
+ babel-template "^6.16.0"
+ babel-traverse "^6.18.0"
+ babel-types "^6.18.0"
+ babylon "^6.18.0"
+ istanbul-lib-coverage "^1.2.1"
+ semver "^5.3.0"
+
+istanbul-lib-report@^1.1.5:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c"
+ integrity sha1-8qZX/GKC+WFwqvKB6zCkWPf0Fww=
+ dependencies:
+ istanbul-lib-coverage "^1.2.1"
+ mkdirp "^0.5.1"
+ path-parse "^1.0.5"
+ supports-color "^3.1.2"
+
+istanbul-lib-report@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
+ integrity sha1-dRj+UupE3jcvRgp2tezan/tz2KY=
+ dependencies:
+ istanbul-lib-coverage "^3.0.0"
+ make-dir "^3.0.0"
+ supports-color "^7.1.0"
+
+istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6:
+ version "1.2.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f"
+ integrity sha1-N7n/ZhWA+PyhEjJ1LuQuCMZnXY8=
+ dependencies:
+ debug "^3.1.0"
+ istanbul-lib-coverage "^1.2.1"
+ mkdirp "^0.5.1"
+ rimraf "^2.6.1"
+ source-map "^0.5.3"
+
+istanbul-reports@^1.5.1:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a"
+ integrity sha1-l+Tb87UV6MSEyuoV1lJO69P/Tho=
+ dependencies:
+ handlebars "^4.0.3"
+
+istanbul-reports@^3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
+ integrity sha1-1ZMhDlAAaDdQywn8BkTktuJ/1Ts=
+ dependencies:
+ html-escaper "^2.0.0"
+ istanbul-lib-report "^3.0.0"
+
+isurl@^1.0.0-alpha5:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"
+ integrity sha1-sn9PSfPNqj6kSgpbfzRi5u3DnWc=
+ dependencies:
+ has-to-string-tag-x "^1.2.0"
+ is-object "^1.0.1"
+
+iterall@^1.2.2:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea"
+ integrity sha1-r8sISS4pFcvYoIhOuTqMlNDXL+o=
+
+iterate-iterator@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6"
+ integrity sha1-FpOnaMHd15yWkFFFlFPwgv6C6fY=
+
+iterate-value@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57"
+ integrity sha1-k1EVvTfQBqUgRlNevI0H6ckzf1c=
+ dependencies:
+ es-get-iterator "^1.0.2"
+ iterate-iterator "^1.0.1"
+
+jest-changed-files@^23.4.2:
+ version "23.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83"
+ integrity sha1-Hu1og3DNXuuv5K6T00uztklo/oM=
+ dependencies:
+ throat "^4.0.0"
+
+jest-cli@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4"
+ integrity sha1-YauRd0Qzj0Q+8rqigt3/3WWKXaQ=
+ dependencies:
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.1"
+ exit "^0.1.2"
+ glob "^7.1.2"
+ graceful-fs "^4.1.11"
+ import-local "^1.0.0"
+ is-ci "^1.0.10"
+ istanbul-api "^1.3.1"
+ istanbul-lib-coverage "^1.2.0"
+ istanbul-lib-instrument "^1.10.1"
+ istanbul-lib-source-maps "^1.2.4"
+ jest-changed-files "^23.4.2"
+ jest-config "^23.6.0"
+ jest-environment-jsdom "^23.4.0"
+ jest-get-type "^22.1.0"
+ jest-haste-map "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-regex-util "^23.3.0"
+ jest-resolve-dependencies "^23.6.0"
+ jest-runner "^23.6.0"
+ jest-runtime "^23.6.0"
+ jest-snapshot "^23.6.0"
+ jest-util "^23.4.0"
+ jest-validate "^23.6.0"
+ jest-watcher "^23.4.0"
+ jest-worker "^23.2.0"
+ micromatch "^2.3.11"
+ node-notifier "^5.2.1"
+ prompts "^0.1.9"
+ realpath-native "^1.0.0"
+ rimraf "^2.5.4"
+ slash "^1.0.0"
+ string-length "^2.0.0"
+ strip-ansi "^4.0.0"
+ which "^1.2.12"
+ yargs "^11.0.0"
+
+jest-config@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d"
+ integrity sha1-+CVGqQreLYxwJvv2rFIH/CL46x0=
+ dependencies:
+ babel-core "^6.0.0"
+ babel-jest "^23.6.0"
+ chalk "^2.0.1"
+ glob "^7.1.1"
+ jest-environment-jsdom "^23.4.0"
+ jest-environment-node "^23.4.0"
+ jest-get-type "^22.1.0"
+ jest-jasmine2 "^23.6.0"
+ jest-regex-util "^23.3.0"
+ jest-resolve "^23.6.0"
+ jest-util "^23.4.0"
+ jest-validate "^23.6.0"
+ micromatch "^2.3.11"
+ pretty-format "^23.6.0"
+
+jest-diff@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d"
+ integrity sha1-FQDz8W6FC7PXEjNAgIm+CZ9hDH0=
+ dependencies:
+ chalk "^2.0.1"
+ diff "^3.2.0"
+ jest-get-type "^22.1.0"
+ pretty-format "^23.6.0"
+
+jest-docblock@^21.0.0:
+ version "21.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
+ integrity sha1-UVKcOzDV/RWdpgwnzu3Blfr41BQ=
+
+jest-docblock@^23.2.0:
+ version "23.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7"
+ integrity sha1-8IXh8YVI2Z/dabICB+b9VdkTg6c=
+ dependencies:
+ detect-newline "^2.1.0"
+
+jest-each@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575"
+ integrity sha1-ugw6gqgFQ4cBYTnHM6BSQtPXFXU=
+ dependencies:
+ chalk "^2.0.1"
+ pretty-format "^23.6.0"
+
+jest-environment-jsdom@^23.4.0:
+ version "23.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023"
+ integrity sha1-BWp5UrP+pROsYqFAosNox52eYCM=
+ dependencies:
+ jest-mock "^23.2.0"
+ jest-util "^23.4.0"
+ jsdom "^11.5.1"
+
+jest-environment-node@^23.4.0:
+ version "23.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10"
+ integrity sha1-V+gO0IQd6jAxZ8zozXlSHeuv3hA=
+ dependencies:
+ jest-mock "^23.2.0"
+ jest-util "^23.4.0"
+
+jest-get-type@^22.1.0:
+ version "22.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
+ integrity sha1-46hQTYR5NC3UQgI2syKGnxiQDOQ=
+
+jest-haste-map@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16"
+ integrity sha1-Lj65l4FMppbWKv2z8lKfW7yTXhY=
+ dependencies:
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.1.11"
+ invariant "^2.2.4"
+ jest-docblock "^23.2.0"
+ jest-serializer "^23.0.1"
+ jest-worker "^23.2.0"
+ micromatch "^2.3.11"
+ sane "^2.0.0"
+
+jest-jasmine2@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0"
+ integrity sha1-hA6Tf4SKbIY43yQ2CrhpzHGFkuA=
+ dependencies:
+ babel-traverse "^6.0.0"
+ chalk "^2.0.1"
+ co "^4.6.0"
+ expect "^23.6.0"
+ is-generator-fn "^1.0.0"
+ jest-diff "^23.6.0"
+ jest-each "^23.6.0"
+ jest-matcher-utils "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-snapshot "^23.6.0"
+ jest-util "^23.4.0"
+ pretty-format "^23.6.0"
+
+jest-leak-detector@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de"
+ integrity sha1-5CMP1CzzgaGhlxI3rVaJfefhcd4=
+ dependencies:
+ pretty-format "^23.6.0"
+
+jest-localstorage-mock@^2.2.0:
+ version "2.4.14"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-localstorage-mock/-/jest-localstorage-mock-2.4.14.tgz#f42f2ce66ac2675955d537c99f93cff807967d0f"
+ integrity sha1-9C8s5mrCZ1lV1TfJn5PP+AeWfQ8=
+
+jest-matcher-utils@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80"
+ integrity sha1-cmvOoMUpQmGnQXr7baMYa0uMrIA=
+ dependencies:
+ chalk "^2.0.1"
+ jest-get-type "^22.1.0"
+ pretty-format "^23.6.0"
+
+jest-message-util@^23.4.0:
+ version "23.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f"
+ integrity sha1-F2EMUJQjSVCNAaPR4L2iwHkIap8=
+ dependencies:
+ "@babel/code-frame" "^7.0.0-beta.35"
+ chalk "^2.0.1"
+ micromatch "^2.3.11"
+ slash "^1.0.0"
+ stack-utils "^1.0.1"
+
+jest-mock-axios@^2.1.11:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-mock-axios/-/jest-mock-axios-2.4.0.tgz#bc97b7010ffaee15f99cd881cecb43f31365691f"
+ integrity sha1-vJe3AQ/67hX5nNiBzstD8xNlaR8=
+ dependencies:
+ jest-mock-promise "^1.0.23"
+
+jest-mock-promise@^1.0.23:
+ version "1.1.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-mock-promise/-/jest-mock-promise-1.1.10.tgz#ab51bb15de62b8be4ad1527f7f519d9f2f2a912a"
+ integrity sha1-q1G7Fd5iuL5K0VJ/f1Gdny8qkSo=
+
+jest-mock@^23.2.0:
+ version "23.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134"
+ integrity sha1-rRxg8p6HGdR8JuETgJi20YsmETQ=
+
+jest-regex-util@^23.3.0:
+ version "23.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5"
+ integrity sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U=
+
+jest-resolve-dependencies@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d"
+ integrity sha1-tFJq8kyFQNmj+rECwVCBz1Cbcj0=
+ dependencies:
+ jest-regex-util "^23.3.0"
+ jest-snapshot "^23.6.0"
+
+jest-resolve@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae"
+ integrity sha1-zx0aJM5+57I9ZhwzuiFQ866/oK4=
+ dependencies:
+ browser-resolve "^1.11.3"
+ chalk "^2.0.1"
+ realpath-native "^1.0.0"
+
+jest-runner@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38"
+ integrity sha1-OJS9IZ/8Pzy5TcSKQXCi5vI6Wjg=
+ dependencies:
+ exit "^0.1.2"
+ graceful-fs "^4.1.11"
+ jest-config "^23.6.0"
+ jest-docblock "^23.2.0"
+ jest-haste-map "^23.6.0"
+ jest-jasmine2 "^23.6.0"
+ jest-leak-detector "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-runtime "^23.6.0"
+ jest-util "^23.4.0"
+ jest-worker "^23.2.0"
+ source-map-support "^0.5.6"
+ throat "^4.0.0"
+
+jest-runtime@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082"
+ integrity sha1-BZ5YyKtEWRfNDg2ErCumjejyMII=
+ dependencies:
+ babel-core "^6.0.0"
+ babel-plugin-istanbul "^4.1.6"
+ chalk "^2.0.1"
+ convert-source-map "^1.4.0"
+ exit "^0.1.2"
+ fast-json-stable-stringify "^2.0.0"
+ graceful-fs "^4.1.11"
+ jest-config "^23.6.0"
+ jest-haste-map "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-regex-util "^23.3.0"
+ jest-resolve "^23.6.0"
+ jest-snapshot "^23.6.0"
+ jest-util "^23.4.0"
+ jest-validate "^23.6.0"
+ micromatch "^2.3.11"
+ realpath-native "^1.0.0"
+ slash "^1.0.0"
+ strip-bom "3.0.0"
+ write-file-atomic "^2.1.0"
+ yargs "^11.0.0"
+
+jest-serializer@^23.0.1:
+ version "23.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165"
+ integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU=
+
+jest-snapshot@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a"
+ integrity sha1-+cJiXRsYrNoB7C0rgmwM5YpaoXo=
+ dependencies:
+ babel-types "^6.0.0"
+ chalk "^2.0.1"
+ jest-diff "^23.6.0"
+ jest-matcher-utils "^23.6.0"
+ jest-message-util "^23.4.0"
+ jest-resolve "^23.6.0"
+ mkdirp "^0.5.1"
+ natural-compare "^1.4.0"
+ pretty-format "^23.6.0"
+ semver "^5.5.0"
+
+jest-util@^23.4.0:
+ version "23.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561"
+ integrity sha1-TQY8uSe68KI4Mf9hvsLLv0l5NWE=
+ dependencies:
+ callsites "^2.0.0"
+ chalk "^2.0.1"
+ graceful-fs "^4.1.11"
+ is-ci "^1.0.10"
+ jest-message-util "^23.4.0"
+ mkdirp "^0.5.1"
+ slash "^1.0.0"
+ source-map "^0.6.0"
+
+jest-validate@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474"
+ integrity sha1-NnYfmdHtM/zUJbTkxVldYrZZdHQ=
+ dependencies:
+ chalk "^2.0.1"
+ jest-get-type "^22.1.0"
+ leven "^2.1.0"
+ pretty-format "^23.6.0"
+
+jest-watcher@^23.4.0:
+ version "23.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c"
+ integrity sha1-0uKM50+NrWxq/JIrksq+9u0FyRw=
+ dependencies:
+ ansi-escapes "^3.0.0"
+ chalk "^2.0.1"
+ string-length "^2.0.0"
+
+jest-worker@^23.2.0:
+ version "23.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9"
+ integrity sha1-+vcGqNo2+uYOsmlXJX+ntdjqArk=
+ dependencies:
+ merge-stream "^1.0.1"
+
+jest-worker@^25.4.0:
+ version "25.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1"
+ integrity sha1-JhHQcbec6g9D7lej0RhZOsFUfbE=
+ dependencies:
+ merge-stream "^2.0.0"
+ supports-color "^7.0.0"
+
+jest@23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d"
+ integrity sha1-rVg16SPr9uGeeh11KaQy7f7ngT0=
+ dependencies:
+ import-local "^1.0.0"
+ jest-cli "^23.6.0"
+
+joi@^17.3.0:
+ version "17.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/joi/-/joi-17.4.0.tgz#b5c2277c8519e016316e49ababd41a1908d9ef20"
+ integrity sha1-tcInfIUZ4BYxbkmrq9QaGQjZ7yA=
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+ "@hapi/topo" "^5.0.0"
+ "@sideway/address" "^4.1.0"
+ "@sideway/formula" "^3.0.0"
+ "@sideway/pinpoint" "^2.0.0"
+
+jquery@^3.3.1:
+ version "3.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
+ integrity sha1-xyoJ8Vwb3OFC9J2/EXC9+K2sJHA=
+
+js-base64@^2.1.8, js-base64@^2.1.9:
+ version "2.6.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4"
+ integrity sha1-9OaGxd4eofhn28rT1G2WlCjfmMQ=
+
+js-cookie@^2.2.1:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8"
+ integrity sha1-aeEG3F1YBolFYpAqpbrsN0Tpsrg=
+
+js-levenshtein@^1.1.3:
+ version "1.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
+ integrity sha1-xs7ljrNVA3LfjeuF+tXOZs4B1Z0=
+
+js-sha3@0.5.7, js-sha3@^0.5.7:
+ version "0.5.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7"
+ integrity sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=
+
+js-sha3@^0.6.1:
+ version "0.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-sha3/-/js-sha3-0.6.1.tgz#5b89f77a7477679877f58c4a075240934b1f95c0"
+ integrity sha1-W4n3enR3Z5h39YxKB1JAk0sflcA=
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+ integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk=
+
+js-tokens@^3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
+ integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
+
+js-yaml@^3.13.1, js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1:
+ version "3.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+ integrity sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^4.0.0"
+
+js-yaml@~3.7.0:
+ version "3.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
+ integrity sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^2.6.0"
+
+jsbn@~0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
+ integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
+
+jsdom@^11.5.1:
+ version "11.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
+ integrity sha1-GoDUDd03ih3lllbp5txaO6hle8g=
+ dependencies:
+ abab "^2.0.0"
+ acorn "^5.5.3"
+ acorn-globals "^4.1.0"
+ array-equal "^1.0.0"
+ cssom ">= 0.3.2 < 0.4.0"
+ cssstyle "^1.0.0"
+ data-urls "^1.0.0"
+ domexception "^1.0.1"
+ escodegen "^1.9.1"
+ html-encoding-sniffer "^1.0.2"
+ left-pad "^1.3.0"
+ nwsapi "^2.0.7"
+ parse5 "4.0.0"
+ pn "^1.1.0"
+ request "^2.87.0"
+ request-promise-native "^1.0.5"
+ sax "^1.2.4"
+ symbol-tree "^3.2.2"
+ tough-cookie "^2.3.4"
+ 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 "^5.2.0"
+ xml-name-validator "^3.0.0"
+
+jsesc@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
+ integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s=
+
+jsesc@^2.5.1:
+ version "2.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+ integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
+
+jsesc@~0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+ integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+
+json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+ integrity sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=
+
+json-parse-even-better-errors@^2.3.0:
+ version "2.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ integrity sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=
+
+json-schema-traverse@^0.3.0:
+ version "0.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
+ integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=
+
+json-schema-traverse@^0.4.1:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA=
+
+json-schema@0.2.3:
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
+ integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
+
+json-stable-stringify-without-jsonify@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+ integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
+
+json-stable-stringify@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
+ integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
+ dependencies:
+ jsonify "~0.0.0"
+
+json-stringify-safe@~5.0.1:
+ version "5.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
+ integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
+
+json3@^3.3.2:
+ version "3.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
+ integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=
+
+json5@^0.5.0, json5@^0.5.1:
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
+ integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
+
+json5@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
+ integrity sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=
+ dependencies:
+ minimist "^1.2.0"
+
+json5@^2.1.0, json5@^2.1.1, json5@^2.1.2:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
+ integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=
+ dependencies:
+ minimist "^1.2.5"
+
+jsonfile@^2.1.0:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
+ integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonfile@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66"
+ integrity sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonfile@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+ integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonify@~0.0.0:
+ version "0.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
+ integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
+
+jsonp@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsonp/-/jsonp-0.2.1.tgz#a65b4fa0f10bda719a05441ea7b94c55f3e15bae"
+ integrity sha1-pltPoPEL2nGaBUQep7lMVfPhW64=
+ dependencies:
+ debug "^2.1.3"
+
+jsprim@^1.2.2:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
+ integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
+ dependencies:
+ assert-plus "1.0.0"
+ extsprintf "1.3.0"
+ json-schema "0.2.3"
+ verror "1.10.0"
+
+jsx-ast-utils@^1.4.0:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
+ integrity sha1-OGchPo3Xm/Ho8jAMDPwe+xgsDfE=
+
+"jsx-ast-utils@^2.4.1 || ^3.0.0":
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
+ integrity sha1-QRCNLOxAjDRTwbvopKrp4eK9j4I=
+ dependencies:
+ array-includes "^3.1.2"
+ object.assign "^4.1.2"
+
+keccak@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/keccak/-/keccak-3.0.1.tgz#ae30a0e94dbe43414f741375cff6d64c8bea0bff"
+ integrity sha1-rjCg6U2+Q0FPdBN1z/bWTIvqC/8=
+ dependencies:
+ node-addon-api "^2.0.0"
+ node-gyp-build "^4.2.0"
+
+keccakjs@^0.2.1:
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/keccakjs/-/keccakjs-0.2.3.tgz#5e4e969ce39689a3861f445d7752ee3477f9fe72"
+ integrity sha1-Xk6WnOOWiaOGH0Rdd1LuNHf5/nI=
+ dependencies:
+ browserify-sha3 "^0.0.4"
+ sha3 "^1.2.2"
+
+keycode@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/keycode/-/keycode-2.2.0.tgz#3d0af56dc7b8b8e5cba8d0a97f107204eec22b04"
+ integrity sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=
+
+killable@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
+ integrity sha1-TIzkQRh6Bhx0dPuHygjipjgZSJI=
+
+kind-of@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5"
+ integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=
+ dependencies:
+ is-buffer "^1.0.2"
+
+kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
+ version "3.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+ integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+ integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^5.0.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
+ integrity sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=
+
+kind-of@^6.0.0, kind-of@^6.0.2:
+ version "6.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ integrity sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=
+
+klaw@^1.0.0:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
+ integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
+ optionalDependencies:
+ graceful-fs "^4.1.9"
+
+kleur@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300"
+ integrity sha1-twT0lE2V4lXQOPDLBfuKYCxVowA=
+
+latest-version@^3.0.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
+ integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=
+ dependencies:
+ package-json "^4.0.0"
+
+lazy-ass@1.6.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513"
+ integrity sha1-eZllXoZGwX8In90YfRUNMyTVRRM=
+
+lazy-cache@^0.2.3:
+ version "0.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65"
+ integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=
+
+lazy-cache@^1.0.3:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
+ integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4=
+
+lazy-universal-dotenv@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz#a6c8938414bca426ab8c9463940da451a911db38"
+ integrity sha1-psiThBS8pCarjJRjlA2kUakR2zg=
+ dependencies:
+ "@babel/runtime" "^7.5.0"
+ app-root-dir "^1.0.2"
+ core-js "^3.0.4"
+ dotenv "^8.0.0"
+ dotenv-expand "^5.1.0"
+
+lcid@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
+ integrity sha1-bvXS32DlL4LrIopMNz6NHzlyU88=
+ dependencies:
+ invert-kv "^2.0.0"
+
+left-pad@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
+ integrity sha1-W4o6d2Xf4AEmHd6RVYnngvjJTR4=
+
+leven@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
+ integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA=
+
+levn@^0.3.0, levn@~0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
+ integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
+ dependencies:
+ prelude-ls "~1.1.2"
+ type-check "~0.3.2"
+
+lines-and-columns@^1.1.6:
+ version "1.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
+ integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+
+listr-silent-renderer@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
+ integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=
+
+listr-update-renderer@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9"
+ integrity sha1-yoDhd5tOcCZoB+ju0a1qvjmFUPk=
+ dependencies:
+ chalk "^1.1.3"
+ cli-truncate "^0.2.1"
+ elegant-spinner "^1.0.1"
+ figures "^1.7.0"
+ indent-string "^3.0.0"
+ log-symbols "^1.0.2"
+ log-update "^1.0.2"
+ strip-ansi "^3.0.1"
+
+listr-verbose-renderer@^0.4.0:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35"
+ integrity sha1-ggb0z21S3cWCfl/RSYng6WWTOjU=
+ dependencies:
+ chalk "^1.1.3"
+ cli-cursor "^1.0.2"
+ date-fns "^1.27.2"
+ figures "^1.7.0"
+
+listr@0.12.0:
+ version "0.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a"
+ integrity sha1-a84sD1YD+klYDqF81qAMwOX6RRo=
+ dependencies:
+ chalk "^1.1.3"
+ cli-truncate "^0.2.1"
+ figures "^1.7.0"
+ indent-string "^2.1.0"
+ is-promise "^2.1.0"
+ is-stream "^1.1.0"
+ listr-silent-renderer "^1.1.1"
+ listr-update-renderer "^0.2.0"
+ listr-verbose-renderer "^0.4.0"
+ log-symbols "^1.0.2"
+ log-update "^1.0.2"
+ ora "^0.2.3"
+ p-map "^1.1.1"
+ rxjs "^5.0.0-beta.11"
+ stream-to-observable "^0.1.0"
+ strip-ansi "^3.0.1"
+
+load-json-file@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
+ integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=
+ dependencies:
+ graceful-fs "^4.1.2"
+ parse-json "^2.2.0"
+ pify "^2.0.0"
+ pinkie-promise "^2.0.0"
+ strip-bom "^2.0.0"
+
+load-json-file@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
+ integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
+ dependencies:
+ graceful-fs "^4.1.2"
+ parse-json "^4.0.0"
+ pify "^3.0.0"
+ strip-bom "^3.0.0"
+
+load-script@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4"
+ integrity sha1-BJGTngvuVkPuSUp+PaPSuscMbKQ=
+
+loader-fs-cache@^1.0.0:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz#f08657646d607078be2f0a032f8bd69dd6f277d9"
+ integrity sha1-8IZXZG1gcHi+LwoDL4vWndbyd9k=
+ dependencies:
+ find-cache-dir "^0.1.1"
+ mkdirp "^0.5.1"
+
+loader-runner@^2.3.0, loader-runner@^2.4.0:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
+ integrity sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c=
+
+loader-utils@1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
+ integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=
+ dependencies:
+ big.js "^3.1.3"
+ emojis-list "^2.0.0"
+ json5 "^0.5.0"
+
+loader-utils@1.2.3:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
+ integrity sha1-H/XcaRHJ8KBiUxpMBLYJQGEIwsc=
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^2.0.0"
+ json5 "^1.0.1"
+
+loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.0.4, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
+ integrity sha1-xXm140yzSxp07cbB+za/o3HVphM=
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^3.0.0"
+ json5 "^1.0.1"
+
+loader-utils@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
+ integrity sha1-5MrOW4FtQloWa18JfhDNErNgZLA=
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^3.0.0"
+ json5 "^2.1.2"
+
+locate-path@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
+ integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
+ dependencies:
+ p-locate "^2.0.0"
+ path-exists "^3.0.0"
+
+locate-path@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+ integrity sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=
+ dependencies:
+ p-locate "^3.0.0"
+ path-exists "^3.0.0"
+
+locate-path@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ integrity sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=
+ dependencies:
+ p-locate "^4.1.0"
+
+locate-path@^6.0.0:
+ version "6.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ integrity sha1-VTIeswn+u8WcSAHZMackUqaB0oY=
+ dependencies:
+ p-locate "^5.0.0"
+
+lodash._reinterpolate@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
+ integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
+
+lodash.camelcase@^4.3.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+ integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
+
+lodash.debounce@^4.0.8:
+ version "4.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+ integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
+
+lodash.defaults@^4.2.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
+ integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=
+
+lodash.escape@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98"
+ integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=
+
+lodash.flattendeep@^4.4.0:
+ version "4.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
+ integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=
+
+lodash.isequal@^4.5.0:
+ version "4.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
+ integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA=
+
+lodash.isfunction@^3.0.9:
+ version "3.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051"
+ integrity sha1-Bt4l302zJ6yTGYHRvbBn5a9o0FE=
+
+lodash.isobject@^3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"
+ integrity sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=
+
+lodash.isplainobject@^4.0.6:
+ version "4.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
+ integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
+
+lodash.memoize@^4.1.2:
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+ integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
+
+lodash.once@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
+ integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
+
+lodash.sortby@^4.7.0:
+ version "4.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+ integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+
+lodash.tail@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
+ integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=
+
+lodash.template@^4.4.0:
+ version "4.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
+ integrity sha1-+XYZXPPzR9DV9SSDVp/oAxzM6Ks=
+ dependencies:
+ lodash._reinterpolate "^3.0.0"
+ lodash.templatesettings "^4.0.0"
+
+lodash.templatesettings@^4.0.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
+ integrity sha1-5IExDwSdPPbUfpEq0JMTsVTw+zM=
+ dependencies:
+ lodash._reinterpolate "^3.0.0"
+
+lodash.throttle@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
+ integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
+
+lodash.tonumber@^4.0.3:
+ version "4.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.tonumber/-/lodash.tonumber-4.0.3.tgz#0b96b31b35672793eb7f5a63ee791f1b9e9025d9"
+ integrity sha1-C5azGzVnJ5Prf1pj7nkfG56QJdk=
+
+lodash.uniq@^4.5.0:
+ version "4.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+ integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
+
+lodash@4.17.4:
+ version "4.17.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
+ integrity sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=
+
+"lodash@>=3.5 <5", lodash@>=4.17.5, lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.3.0, lodash@~4.17.10:
+ version "4.17.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
+
+log-symbols@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
+ integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=
+ dependencies:
+ chalk "^1.0.0"
+
+log-update@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1"
+ integrity sha1-GZKfZMQJPS0ucHWh2tivWcKWuNE=
+ dependencies:
+ ansi-escapes "^1.0.0"
+ cli-cursor "^1.0.2"
+
+loglevel@^1.6.4:
+ version "1.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
+ integrity sha1-AF/eL15uRwaPk1/yhXPhJe9y8Zc=
+
+long@4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
+ integrity sha1-mntxz7fTYaGU6lVSQckvdGjVvyg=
+
+long@^3.2.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
+ integrity sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=
+
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+ integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=
+ dependencies:
+ js-tokens "^3.0.0 || ^4.0.0"
+
+loud-rejection@^1.0.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
+ integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
+ dependencies:
+ currently-unhandled "^0.4.1"
+ signal-exit "^3.0.0"
+
+lower-case@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
+ integrity sha1-b6I3xj29xKgsoP2ILkci3F5jTig=
+ dependencies:
+ tslib "^2.0.3"
+
+lowercase-keys@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ integrity sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=
+
+lowlight@~1.11.0:
+ version "1.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lowlight/-/lowlight-1.11.0.tgz#1304d83005126d4e8b1dc0f07981e9b689ec2efc"
+ integrity sha1-EwTYMAUSbU6LHcDweYHptonsLvw=
+ dependencies:
+ fault "^1.0.2"
+ highlight.js "~9.13.0"
+
+lru-cache@^4.0.1, lru-cache@^4.1.1:
+ version "4.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+ integrity sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=
+ dependencies:
+ pseudomap "^1.0.2"
+ yallist "^2.1.2"
+
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=
+ dependencies:
+ yallist "^3.0.2"
+
+make-dir@^1.0.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
+ integrity sha1-ecEDO4BRW9bSTsmTPoYMp17ifww=
+ dependencies:
+ pify "^3.0.0"
+
+make-dir@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
+make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ integrity sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=
+ dependencies:
+ semver "^6.0.0"
+
+makeerror@1.0.x:
+ version "1.0.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
+ integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
+ dependencies:
+ tmpl "1.0.x"
+
+mamacro@^0.0.3:
+ version "0.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
+ integrity sha1-rSyVdhl8nxq/MI0Hh4Zb2XWj8+Q=
+
+map-age-cleaner@^0.1.1:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
+ integrity sha1-fVg6cwZDTAVf5HSw9FB45uG0uSo=
+ dependencies:
+ p-defer "^1.0.0"
+
+map-cache@^0.2.2:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+ integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+
+map-obj@^1.0.0, map-obj@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
+ integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
+
+map-or-similar@^1.5.0:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
+ integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=
+
+map-stream@~0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194"
+ integrity sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=
+
+map-visit@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
+ integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
+ dependencies:
+ object-visit "^1.0.0"
+
+markdown-escapes@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
+ integrity sha1-yVQV70UUmddgK5EJXzyOiXX3hTU=
+
+markdown-to-jsx@^6.11.4:
+ version "6.11.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5"
+ integrity sha1-tFKLGrZorvf+YcFTXCfoN4GTksU=
+ dependencies:
+ prop-types "^15.6.2"
+ unquote "^1.1.0"
+
+markdown@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/markdown/-/markdown-0.5.0.tgz#28205b565a8ae7592de207463d6637dc182722b2"
+ integrity sha1-KCBbVlqK51kt4gdGPWY33BgnIrI=
+ dependencies:
+ nopt "~2.1.1"
+
+math-expression-evaluator@^1.2.14:
+ version "1.3.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/math-expression-evaluator/-/math-expression-evaluator-1.3.7.tgz#1b62225db86af06f7ea1fd9576a34af605a5b253"
+ integrity sha1-G2IiXbhq8G9+of2VdqNK9gWlslM=
+
+math-random@^1.0.1:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c"
+ integrity sha1-XdaUPJOFSCZwFtTjTwV1gwgMUUw=
+
+md5.js@^1.3.4:
+ version "1.3.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
+ integrity sha1-tdB7jjIW4+J81yjXL3DR5qNCAF8=
+ dependencies:
+ hash-base "^3.0.0"
+ inherits "^2.0.1"
+ safe-buffer "^5.1.2"
+
+mdast-add-list-metadata@1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz#95e73640ce2fc1fa2dcb7ec443d09e2bfe7db4cf"
+ integrity sha1-lec2QM4vwfoty37EQ9CeK/59tM8=
+ dependencies:
+ unist-util-visit-parents "1.1.2"
+
+mdn-data@2.0.14:
+ version "2.0.14"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
+ integrity sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=
+
+mdn-data@2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
+ integrity sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs=
+
+media-typer@0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+
+mem@^4.0.0:
+ version "4.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
+ integrity sha1-Rhr0l7xK4JYIzbLmDu+2m/90QXg=
+ dependencies:
+ map-age-cleaner "^0.1.1"
+ mimic-fn "^2.0.0"
+ p-is-promise "^2.0.0"
+
+memoizerific@^1.11.3:
+ version "1.11.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
+ integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
+ dependencies:
+ map-or-similar "^1.5.0"
+
+memory-fs@^0.4.1, memory-fs@~0.4.1:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
+ integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+ dependencies:
+ errno "^0.1.3"
+ readable-stream "^2.0.1"
+
+memory-fs@^0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
+ integrity sha1-MkwBKIuIZSlm0WHbd4OHIIRajjw=
+ dependencies:
+ errno "^0.1.3"
+ readable-stream "^2.0.1"
+
+meow@^3.7.0:
+ version "3.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
+ integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
+ dependencies:
+ 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"
+
+merge-deep@^3.0.2:
+ version "3.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge-deep/-/merge-deep-3.0.3.tgz#1a2b2ae926da8b2ae93a0ac15d90cd1922766003"
+ integrity sha1-Gisq6SbaiyrpOgrBXZDNGSJ2YAM=
+ dependencies:
+ arr-union "^3.1.0"
+ clone-deep "^0.2.4"
+ kind-of "^3.0.2"
+
+merge-descriptors@1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+ integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
+
+merge-stream@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
+ integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=
+ dependencies:
+ readable-stream "^2.0.1"
+
+merge-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=
+
+merge2@^1.2.3:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+ integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
+
+merge@^1.2.0:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
+ integrity sha1-OL6/gMMiCopIe2/Ps5QbsRcgwUU=
+
+methods@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
+
+microevent.ts@~0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
+ integrity sha1-cLCbg/Q99RctAgWmMCW84Pc1f6A=
+
+micromatch@^2.3.11:
+ version "2.3.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
+ integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=
+ dependencies:
+ arr-diff "^2.0.0"
+ array-unique "^0.2.1"
+ braces "^1.8.2"
+ expand-brackets "^0.1.4"
+ extglob "^0.3.1"
+ filename-regex "^2.0.0"
+ is-extglob "^1.0.0"
+ is-glob "^2.0.1"
+ kind-of "^3.0.2"
+ normalize-path "^2.0.1"
+ object.omit "^2.0.0"
+ parse-glob "^3.0.4"
+ regex-cache "^0.4.2"
+
+micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8:
+ version "3.1.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
+ integrity sha1-cIWbyVyYQJUvNZoGij/En57PrCM=
+ dependencies:
+ 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"
+
+micromatch@^4.0.2:
+ version "4.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
+ integrity sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=
+ dependencies:
+ braces "^3.0.1"
+ picomatch "^2.2.3"
+
+miller-rabin@^4.0.0:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
+ integrity sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=
+ dependencies:
+ bn.js "^4.0.0"
+ brorand "^1.0.1"
+
+mime-db@1.48.0, "mime-db@>= 1.43.0 < 2":
+ version "1.48.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d"
+ integrity sha1-41sxBF3X6to6qtU37YijOvvvLR0=
+
+mime-types@^2.1.12, mime-types@^2.1.16, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.7:
+ version "2.1.31"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"
+ integrity sha1-oA12t0MXxh+cLbIhi46fjpxcnms=
+ dependencies:
+ mime-db "1.48.0"
+
+mime@1.6.0, mime@^1.4.1:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ integrity sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=
+
+mime@^2.4.4:
+ version "2.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
+ integrity sha1-bj3GzCuVEGQ4MOXxnVy3U9pe6r4=
+
+mimic-fn@^1.0.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
+ integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=
+
+mimic-fn@^2.0.0, mimic-fn@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+ integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=
+
+mimic-response@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
+ integrity sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=
+
+min-document@^2.19.0:
+ version "2.19.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
+ integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
+ dependencies:
+ dom-walk "^0.1.0"
+
+min-indent@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
+ integrity sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=
+
+mini-create-react-context@^0.4.0:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e"
+ integrity sha1-ByFxVhv9ySLaCKYMIZekl8wtHV4=
+ dependencies:
+ "@babel/runtime" "^7.12.1"
+ tiny-warning "^1.0.3"
+
+mini-css-extract-plugin@^0.7.0:
+ version "0.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0"
+ integrity sha1-W6gpD7tBeaQ90nzKREuhUL7nQ6A=
+ dependencies:
+ loader-utils "^1.1.0"
+ normalize-url "1.9.1"
+ schema-utils "^1.0.0"
+ webpack-sources "^1.1.0"
+
+minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+ integrity sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=
+
+minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
+ integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+
+minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+ integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@0.0.8:
+ version "0.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
+ integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
+
+minimist@1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
+ integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
+
+minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
+ version "1.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
+ integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
+
+minipass-collect@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+ integrity sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=
+ dependencies:
+ minipass "^3.0.0"
+
+minipass-flush@^1.0.5:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+ integrity sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=
+ dependencies:
+ minipass "^3.0.0"
+
+minipass-pipeline@^1.2.2:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
+ integrity sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=
+ dependencies:
+ minipass "^3.0.0"
+
+minipass@^3.0.0, minipass@^3.1.1:
+ version "3.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd"
+ integrity sha1-fUL/HzljVILhX5zbUxhN7r1YFf0=
+ dependencies:
+ yallist "^4.0.0"
+
+mississippi@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f"
+ integrity sha1-NEKlCPr8KFAEhv7qmUCWduTuWm8=
+ dependencies:
+ 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 "^2.0.1"
+ pumpify "^1.3.3"
+ stream-each "^1.1.0"
+ through2 "^2.0.0"
+
+mississippi@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
+ integrity sha1-6goykfl+C16HdrNj1fChLZTGcCI=
+ dependencies:
+ 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@^1.2.0:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+ integrity sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=
+ dependencies:
+ for-in "^1.0.2"
+ is-extendable "^1.0.1"
+
+mixin-object@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
+ integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=
+ dependencies:
+ for-in "^0.1.3"
+ is-extendable "^0.1.1"
+
+mkdirp-promise@^5.0.1:
+ version "5.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"
+ integrity sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=
+ dependencies:
+ mkdirp "*"
+
+mkdirp@*:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
+ integrity sha1-PrXtYmInVteaXw4qIh3+utdcL34=
+
+mkdirp@0.5.0:
+ version "0.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12"
+ integrity sha1-HXMHam35hs2TROFecfzAWkyavxI=
+ dependencies:
+ minimist "0.0.8"
+
+"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.0, mkdirp@~0.5.1:
+ version "0.5.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
+ integrity sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=
+ dependencies:
+ minimist "^1.2.5"
+
+mock-fs@^4.1.0:
+ version "4.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mock-fs/-/mock-fs-4.14.0.tgz#ce5124d2c601421255985e6e94da80a7357b1b18"
+ integrity sha1-zlEk0sYBQhJVmF5ulNqApzV7Gxg=
+
+mockdate@^2.0.2:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mockdate/-/mockdate-2.0.5.tgz#70c6abf9ed4b2dae65c81dfc170dd1a5cec53620"
+ integrity sha1-cMar+e1LLa5lyB38Fw3Rpc7FNiA=
+
+moment@^2.24.0:
+ version "2.29.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
+ integrity sha1-sr52n6MZQL6e7qZGnAdeNQBvo9M=
+
+moo@^0.5.0:
+ version "0.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4"
+ integrity sha1-eq5/OEubCfYgtqv29067zRtl28Q=
+
+mout@^0.11.0:
+ version "0.11.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mout/-/mout-0.11.1.tgz#ba3611df5f0e5b1ffbfd01166b8f02d1f5fa2b99"
+ integrity sha1-ujYR318OWx/7/QEWa48C0fX6K5k=
+
+move-concurrently@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
+ integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
+ dependencies:
+ 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@2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+
+ms@2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
+ integrity sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=
+
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
+
+ms@^2.1.1:
+ version "2.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ integrity sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=
+
+multicast-dns-service-types@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
+ integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=
+
+multicast-dns@^6.0.1:
+ version "6.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
+ integrity sha1-oOx72QVcQoL3kMPIL04o2zsxsik=
+ dependencies:
+ dns-packet "^1.3.1"
+ thunky "^1.0.2"
+
+mute-stream@0.0.7:
+ version "0.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
+ integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
+
+mute-stream@0.0.8:
+ version "0.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+ integrity sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=
+
+mz@^2.6.0:
+ version "2.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
+ integrity sha1-lQCAV6Vsr63CvGPd5/n/aVWUjjI=
+ dependencies:
+ any-promise "^1.0.0"
+ object-assign "^4.0.1"
+ thenify-all "^1.0.0"
+
+nan@2.13.2:
+ version "2.13.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nan/-/nan-2.13.2.tgz#f51dc7ae66ba7d5d55e1e6d4d8092e802c9aefe7"
+ integrity sha1-9R3Hrma6fV1V4ebU2AkugCya7+c=
+
+nan@^2.0.8, nan@^2.12.1, nan@^2.13.2, nan@^2.14.0, nan@^2.3.3:
+ version "2.14.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19"
+ integrity sha1-9TdkAGlRaPTMaUrJOT0MlYXu6hk=
+
+nano-json-stream-parser@^0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz#0cc8f6d0e2b622b479c40d499c46d64b755c6f5f"
+ integrity sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=
+
+nanomatch@^1.2.9:
+ version "1.2.13"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
+ integrity sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=
+ dependencies:
+ 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@^1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+ integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+
+nearley@^2.7.10:
+ version "2.20.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nearley/-/nearley-2.20.1.tgz#246cd33eff0d012faf197ff6774d7ac78acdd474"
+ integrity sha1-JGzTPv8NAS+vGX/2d016x4rN1HQ=
+ dependencies:
+ commander "^2.19.0"
+ moo "^0.5.0"
+ railroad-diagrams "^1.0.0"
+ randexp "0.4.6"
+
+negotiator@0.6.2:
+ version "0.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+ integrity sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=
+
+neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1:
+ version "2.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ integrity sha1-tKr7k+OustgXTKU88WOrfXMIMF8=
+
+nice-try@^1.0.4:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
+ integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=
+
+no-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
+ integrity sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=
+ dependencies:
+ lower-case "^2.0.2"
+ tslib "^2.0.3"
+
+node-addon-api@^2.0.0:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
+ integrity sha1-Qyz6gpYs5JSxMunXKhWyn3H/XTI=
+
+node-dir@^0.1.10:
+ version "0.1.17"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
+ integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=
+ dependencies:
+ minimatch "^3.0.2"
+
+node-fetch@^2.6.0:
+ version "2.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
+ integrity sha1-BFvTI2Mfdu0uK1VXM5RBa2OaAFI=
+
+node-forge@^0.10.0:
+ version "0.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
+ integrity sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=
+
+node-gyp-build@^4.2.0:
+ version "4.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739"
+ integrity sha1-zmJ3+FODX3GIKe+0fbIPPk2cRzk=
+
+node-gyp@^3.8.0:
+ version "3.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c"
+ integrity sha1-VAMEJhwzDoDQ1e3OJTpoyzlkIYw=
+ dependencies:
+ 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"
+
+node-int64@^0.4.0:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
+ integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
+
+node-libs-browser@^2.0.0, node-libs-browser@^2.2.1:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
+ integrity sha1-tk9RPRgzhiX5A0bSew0jXmMfZCU=
+ dependencies:
+ 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"
+
+node-notifier@^5.2.1:
+ version "5.4.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-notifier/-/node-notifier-5.4.5.tgz#0cbc1a2b0f658493b4025775a13ad938e96091ef"
+ integrity sha1-DLwaKw9lhJO0Ald1oTrZOOlgke8=
+ dependencies:
+ growly "^1.3.0"
+ is-wsl "^1.1.0"
+ semver "^5.5.0"
+ shellwords "^0.1.1"
+ which "^1.3.0"
+
+node-releases@^1.0.0-alpha.11, node-releases@^1.1.29, node-releases@^1.1.71:
+ version "1.1.72"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
+ integrity sha1-FIAqtrEDmnmgx9ZithClu9durL4=
+
+node-sass@^4.13.0:
+ version "4.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5"
+ integrity sha1-mch+wu+3BH7WOPtMnbfzpC4iF7U=
+ dependencies:
+ 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"
+
+"nopt@2 || 3":
+ version "3.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
+ integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
+ dependencies:
+ abbrev "1"
+
+nopt@~2.1.1:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nopt/-/nopt-2.1.2.tgz#6cccd977b80132a07731d6e8ce58c2c8303cf9af"
+ integrity sha1-bMzZd7gBMqB3MdbozljCyDA8+a8=
+ dependencies:
+ abbrev "1"
+
+normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
+ version "2.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
+ integrity sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=
+ dependencies:
+ hosted-git-info "^2.1.4"
+ resolve "^1.10.0"
+ semver "2 || 3 || 4 || 5"
+ validate-npm-package-license "^3.0.1"
+
+normalize-path@^2.0.1, normalize-path@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+ integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
+ dependencies:
+ remove-trailing-separator "^1.0.1"
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=
+
+normalize-range@^0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+ integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
+
+normalize-url@1.9.1, normalize-url@^1.4.0:
+ version "1.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
+ integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
+ dependencies:
+ object-assign "^4.0.1"
+ prepend-http "^1.0.0"
+ query-string "^4.1.0"
+ sort-keys "^1.0.0"
+
+notifyjs@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/notifyjs/-/notifyjs-3.0.0.tgz#7418c9d6c0533aebaa643414214af53b521d1b28"
+ integrity sha1-dBjJ1sBTOuuqZDQUIUr1O1IdGyg=
+
+npm-run-path@^2.0.0:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
+ dependencies:
+ path-key "^2.0.0"
+
+npm-run-path@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+ integrity sha1-t+zR5e1T2o43pV4cImnguX7XSOo=
+ dependencies:
+ path-key "^3.0.0"
+
+"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.1.2:
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
+ integrity sha1-CKfyqL9zRgR3mp76StXMcXq7lUs=
+ dependencies:
+ are-we-there-yet "~1.1.2"
+ console-control-strings "~1.1.0"
+ gauge "~2.7.3"
+ set-blocking "~2.0.0"
+
+nth-check@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
+ integrity sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=
+ dependencies:
+ boolbase "~1.0.0"
+
+nth-check@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125"
+ integrity sha1-G7T22scAcvwxPoyc0UF7UHTAoSU=
+ dependencies:
+ boolbase "^1.0.0"
+
+num2fraction@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
+ integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
+
+number-is-nan@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
+ integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
+
+number-to-bn@1.7.0:
+ version "1.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/number-to-bn/-/number-to-bn-1.7.0.tgz#bb3623592f7e5f9e0030b1977bd41a0c53fe1ea0"
+ integrity sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=
+ dependencies:
+ bn.js "4.11.6"
+ strip-hex-prefix "1.0.0"
+
+nwsapi@^2.0.7:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
+ integrity sha1-IEh5qePQaP8qVROcLHcngGgaOLc=
+
+oauth-sign@~0.8.1:
+ version "0.8.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
+ integrity sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=
+
+oauth-sign@~0.9.0:
+ version "0.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
+ integrity sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU=
+
+object-assign@4.1.1, object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
+ version "4.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+
+object-copy@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
+ integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
+ dependencies:
+ copy-descriptor "^0.1.0"
+ define-property "^0.2.5"
+ kind-of "^3.0.3"
+
+object-hash@^1.1.4:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df"
+ integrity sha1-/eRSCYqVHLFF8Dm7fUVUSd3BJt8=
+
+object-inspect@^1.10.3, object-inspect@^1.7.0, object-inspect@^1.9.0:
+ version "1.10.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
+ integrity sha1-wqp9LQn1DJk3VwT3oK3yTFeC02k=
+
+object-is@^1.0.1, object-is@^1.0.2, object-is@^1.1.2:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
+ integrity sha1-ud7qpfx/GEag+uzc7sE45XePU6w=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+object-keys@^1.0.12, object-keys@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ integrity sha1-HEfyct8nfzsdrwYWd9nILiMixg4=
+
+object-visit@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
+ integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
+ dependencies:
+ isobject "^3.0.0"
+
+object.assign@^4.1.0, object.assign@^4.1.2:
+ version "4.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
+ integrity sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ has-symbols "^1.0.1"
+ object-keys "^1.1.1"
+
+object.entries@^1.1.0, object.entries@^1.1.1, object.entries@^1.1.2, object.entries@^1.1.4:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
+ integrity sha1-Q8z5pQvF/VtknUWrGlefJOCIyv0=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+
+"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.3, object.fromentries@^2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
+ integrity sha1-JuG6XEVxxcbwiQzvRHMGZFahILg=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ has "^1.0.3"
+
+object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0, object.getownpropertydescriptors@^2.1.1, object.getownpropertydescriptors@^2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7"
+ integrity sha1-G9Y66s8NXS0vMbXjk7A6fGAaI/c=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+object.omit@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
+ integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=
+ dependencies:
+ for-own "^0.1.4"
+ is-extendable "^0.1.1"
+
+object.pick@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+ integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+ dependencies:
+ isobject "^3.0.1"
+
+object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.2, object.values@^1.1.3, object.values@^1.1.4:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
+ integrity sha1-DSc3YoM+gWtpOmN9MAc+cFFTWzA=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+
+oboe@2.1.3:
+ version "2.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/oboe/-/oboe-2.1.3.tgz#2b4865dbd46be81225713f4e9bfe4bcf4f680a4f"
+ integrity sha1-K0hl29Rr6BIlcT9Om/5Lz09oCk8=
+ dependencies:
+ http-https "^1.0.0"
+
+obuf@^1.0.0, obuf@^1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
+ integrity sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=
+
+on-finished@~2.3.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+ integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+ dependencies:
+ ee-first "1.1.1"
+
+on-headers@~1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+ integrity sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=
+
+once@^1.3.0, once@^1.3.1, once@^1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+ dependencies:
+ wrappy "1"
+
+onetime@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
+ integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=
+
+onetime@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
+ integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+ dependencies:
+ mimic-fn "^1.0.0"
+
+onetime@^5.1.0, onetime@^5.1.2:
+ version "5.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=
+ dependencies:
+ mimic-fn "^2.1.0"
+
+open@^6.3.0:
+ version "6.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9"
+ integrity sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk=
+ dependencies:
+ is-wsl "^1.1.0"
+
+open@^7.0.0:
+ version "7.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
+ integrity sha1-uBR+Jtzz5CYxbHMAif1x7dKcIyE=
+ dependencies:
+ is-docker "^2.0.0"
+ is-wsl "^2.1.1"
+
+opn@5.4.0:
+ version "5.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035"
+ integrity sha1-y1Reeqt4VivrEao7+rxwQuF2EDU=
+ dependencies:
+ is-wsl "^1.1.0"
+
+opn@^5.5.0:
+ version "5.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
+ integrity sha1-/HFk+rVtI1kExRw7J9pnWMo7m/w=
+ dependencies:
+ is-wsl "^1.1.0"
+
+optimism@^0.10.0:
+ version "0.10.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/optimism/-/optimism-0.10.3.tgz#163268fdc741dea2fb50f300bedda80356445fd7"
+ integrity sha1-FjJo/cdB3qL7UPMAvt2oA1ZEX9c=
+ dependencies:
+ "@wry/context" "^0.4.0"
+
+optionator@^0.8.1, optionator@^0.8.2:
+ version "0.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
+ integrity sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=
+ dependencies:
+ 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"
+
+ora@^0.2.3:
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4"
+ integrity sha1-N1J9Igrc1Tw5tzVx11QVbV22V6Q=
+ dependencies:
+ chalk "^1.1.1"
+ cli-cursor "^1.0.2"
+ cli-spinners "^0.1.2"
+ object-assign "^4.0.1"
+
+original@>=0.0.5, original@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
+ integrity sha1-5EKmHP/hxf0gpl8yYcJmY7MD8l8=
+ dependencies:
+ url-parse "^1.4.3"
+
+os-browserify@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
+ integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
+
+os-homedir@^1.0.0, os-homedir@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
+ integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
+
+os-locale@^3.0.0, os-locale@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
+ integrity sha1-qAKm7hfyTBBIOrmTVxnO9O0Wvxo=
+ dependencies:
+ execa "^1.0.0"
+ lcid "^2.0.0"
+ mem "^4.0.0"
+
+os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+ integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
+
+osenv@0:
+ version "0.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
+ integrity sha1-hc36+uso6Gd/QW4odZK18/SepBA=
+ dependencies:
+ os-homedir "^1.0.0"
+ os-tmpdir "^1.0.0"
+
+p-cancelable@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
+ integrity sha1-ueEjgAvOu3rBOkeb4ZW1B7mNMPo=
+
+p-defer@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
+ integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
+
+p-finally@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+ integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+
+p-is-promise@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
+ integrity sha1-kYzrrqJIpiz3/6uOO8qMX4gvxC4=
+
+p-limit@^1.1.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
+ integrity sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=
+ dependencies:
+ p-try "^1.0.0"
+
+p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ integrity sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=
+ dependencies:
+ p-try "^2.0.0"
+
+p-limit@^3.0.2:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ integrity sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=
+ dependencies:
+ yocto-queue "^0.1.0"
+
+p-locate@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
+ integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+ dependencies:
+ p-limit "^1.1.0"
+
+p-locate@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+ integrity sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=
+ dependencies:
+ p-limit "^2.0.0"
+
+p-locate@^4.1.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ integrity sha1-o0KLtwiLOmApL2aRkni3wpetTwc=
+ dependencies:
+ p-limit "^2.2.0"
+
+p-locate@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ integrity sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=
+ dependencies:
+ p-limit "^3.0.2"
+
+p-map@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
+ integrity sha1-5OlPMR6rvIYzoeeZCBZfyiYkG2s=
+
+p-map@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
+ integrity sha1-MQko/u+cnsxltosXaTAYpmXOoXU=
+
+p-map@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+ integrity sha1-1wTZr4orpoTiYA2aIVmD1BQal50=
+ dependencies:
+ aggregate-error "^3.0.0"
+
+p-retry@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
+ integrity sha1-MWtMiJPiyNwc+okfQGxLQivr8yg=
+ dependencies:
+ retry "^0.12.0"
+
+p-timeout@^1.1.1:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
+ integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=
+ dependencies:
+ p-finally "^1.0.0"
+
+p-try@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
+ integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+
+p-try@^2.0.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=
+
+package-json@^4.0.0:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
+ integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=
+ dependencies:
+ got "^6.7.1"
+ registry-auth-token "^3.0.1"
+ registry-url "^3.0.3"
+ semver "^5.1.0"
+
+pako@~1.0.5:
+ version "1.0.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
+ integrity sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=
+
+parallel-transform@^1.1.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
+ integrity sha1-kEnKN9bLIYLDsdLHIL6U0UpYFPw=
+ dependencies:
+ cyclist "^1.0.1"
+ inherits "^2.0.3"
+ readable-stream "^2.1.5"
+
+param-case@^3.0.3:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
+ integrity sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=
+ dependencies:
+ dot-case "^3.0.4"
+ tslib "^2.0.3"
+
+parent-module@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ integrity sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=
+ dependencies:
+ callsites "^3.0.0"
+
+parse-asn1@^5.0.0, parse-asn1@^5.1.5:
+ version "5.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
+ integrity sha1-OFCAo+wTy2KmLTlAnLPoiETNrtQ=
+ dependencies:
+ 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-entities@^1.1.0, parse-entities@^1.1.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50"
+ integrity sha1-wxvw9lO2ZhNU+Jc1WcuG3R1e31A=
+ dependencies:
+ character-entities "^1.0.0"
+ character-entities-legacy "^1.0.0"
+ character-reference-invalid "^1.0.0"
+ is-alphanumerical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-hexadecimal "^1.0.0"
+
+parse-glob@^3.0.4:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
+ integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw=
+ dependencies:
+ glob-base "^0.3.0"
+ is-dotfile "^1.0.0"
+ is-extglob "^1.0.0"
+ is-glob "^2.0.0"
+
+parse-headers@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515"
+ integrity sha1-Xo51Ejg9FAugLwx6qfSbQ5nJJRU=
+
+parse-json@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
+ integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
+ dependencies:
+ error-ex "^1.2.0"
+
+parse-json@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
+ integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
+ dependencies:
+ error-ex "^1.3.1"
+ json-parse-better-errors "^1.0.1"
+
+parse-json@^5.0.0:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
+ integrity sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=
+ dependencies:
+ "@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-passwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
+ integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
+
+parse5-htmlparser2-tree-adapter@^6.0.1:
+ version "6.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6"
+ integrity sha1-LN+a2CMyEUA3DU2/XT6Sx8jdxuY=
+ dependencies:
+ parse5 "^6.0.1"
+
+parse5@4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
+ integrity sha1-bXhlbj2o14tOwLkG98CO8d/j9gg=
+
+parse5@^6.0.1:
+ version "6.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
+ integrity sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=
+
+parseurl@~1.3.2, parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=
+
+pascal-case@^3.1.2:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
+ integrity sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+
+pascalcase@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
+ integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+
+path-browserify@0.0.1:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
+ integrity sha1-5sTd1+06onxoogzE5Q4aTug7vEo=
+
+path-dirname@^1.0.0:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
+ integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+
+path-exists@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
+ integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
+ dependencies:
+ pinkie-promise "^2.0.0"
+
+path-exists@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+ integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
+
+path-exists@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ integrity sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=
+
+path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+
+path-is-inside@^1.0.1, path-is-inside@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
+ integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
+
+path-key@^2.0.0, path-key@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+ integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
+
+path-key@^3.0.0, path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ integrity sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=
+
+path-parse@^1.0.5, path-parse@^1.0.6:
+ version "1.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=
+
+path-to-regexp@0.1.7:
+ version "0.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+ integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
+
+path-to-regexp@^1.0.1, path-to-regexp@^1.7.0:
+ version "1.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
+ integrity sha1-iHs7qdhDk+h6CgufTLdWGYtTVIo=
+ dependencies:
+ isarray "0.0.1"
+
+path-type@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
+ integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=
+ dependencies:
+ graceful-fs "^4.1.2"
+ pify "^2.0.0"
+ pinkie-promise "^2.0.0"
+
+path-type@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
+ integrity sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=
+ dependencies:
+ pify "^3.0.0"
+
+path-type@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ integrity sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=
+
+pause-stream@0.0.11:
+ version "0.0.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"
+ integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=
+ dependencies:
+ through "~2.3"
+
+pbkdf2@^3.0.17, pbkdf2@^3.0.3:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
+ integrity sha1-3YIqoIh1gOUvGgOdw+2hCO+uMHU=
+ dependencies:
+ create-hash "^1.1.2"
+ create-hmac "^1.1.4"
+ ripemd160 "^2.0.1"
+ safe-buffer "^5.0.1"
+ sha.js "^2.4.8"
+
+pend@~1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
+ integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA=
+
+performance-now@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
+ integrity sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=
+
+performance-now@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
+ integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
+
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
+ integrity sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=
+
+pify@^2.0.0, pify@^2.3.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+ integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+
+pify@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
+ integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=
+
+pinkie-promise@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+ integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+ dependencies:
+ pinkie "^2.0.0"
+
+pinkie@^2.0.0:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+ integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+
+pkg-dir@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
+ integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q=
+ dependencies:
+ find-up "^1.0.0"
+
+pkg-dir@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
+ integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
+ dependencies:
+ find-up "^2.1.0"
+
+pkg-dir@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+ integrity sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM=
+ dependencies:
+ find-up "^3.0.0"
+
+pkg-dir@^4.1.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ integrity sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=
+ dependencies:
+ find-up "^4.0.0"
+
+pkg-up@2.0.0, pkg-up@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
+ integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
+ dependencies:
+ find-up "^2.1.0"
+
+platform@^1.3.5:
+ version "1.3.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7"
+ integrity sha1-SLTOmDFksgnC1FoQetsx9HOm56c=
+
+pluralize@^7.0.0:
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
+ integrity sha1-KYuJ34uTsCIdv0Ia0rGx6iP8Z3c=
+
+pn@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
+ integrity sha1-4vTO8OIZ9GPBeas3Rj5OHs3Muvs=
+
+pnp-webpack-plugin@1.5.0:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pnp-webpack-plugin/-/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb"
+ integrity sha1-YqHNMGj0bVZLszxW6yUOTVhmdus=
+ dependencies:
+ ts-pnp "^1.1.2"
+
+polished@^3.3.1:
+ version "3.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/polished/-/polished-3.7.2.tgz#ec5ddc17a7d322a574d5e10ddd2a6f01d3e767d1"
+ integrity sha1-7F3cF6fTIqV01eEN3SpvAdPnZ9E=
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+
+popper.js@^1.14.1, popper.js@^1.14.4, popper.js@^1.14.7:
+ version "1.16.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
+ integrity sha1-KiI8s9x7YhPXQOQDcr5A3kPmWxs=
+
+portfinder@^1.0.24:
+ version "1.0.28"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
+ integrity sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=
+ dependencies:
+ async "^2.6.2"
+ debug "^3.1.1"
+ mkdirp "^0.5.5"
+
+posix-character-classes@^0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
+ integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+
+postcss-calc@^5.2.0:
+ version "5.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
+ integrity sha1-d7rnypKK2FcW4v2kLyYb98HWW14=
+ dependencies:
+ postcss "^5.0.2"
+ postcss-message-helpers "^2.0.0"
+ reduce-css-calc "^1.2.6"
+
+postcss-colormin@^2.1.8:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
+ integrity sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=
+ dependencies:
+ colormin "^1.0.5"
+ postcss "^5.0.13"
+ postcss-value-parser "^3.2.3"
+
+postcss-convert-values@^2.3.4:
+ version "2.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
+ integrity sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=
+ dependencies:
+ postcss "^5.0.11"
+ postcss-value-parser "^3.1.2"
+
+postcss-discard-comments@^2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
+ integrity sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=
+ dependencies:
+ postcss "^5.0.14"
+
+postcss-discard-duplicates@^2.0.1:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
+ integrity sha1-uavye4isGIFYpesSq8riAmO5GTI=
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-discard-empty@^2.0.1:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
+ integrity sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=
+ dependencies:
+ postcss "^5.0.14"
+
+postcss-discard-overridden@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
+ integrity sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=
+ dependencies:
+ postcss "^5.0.16"
+
+postcss-discard-unused@^2.2.1:
+ version "2.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
+ integrity sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=
+ dependencies:
+ postcss "^5.0.14"
+ uniqs "^2.0.0"
+
+postcss-filter-plugins@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec"
+ integrity sha1-giRf34IzcEFkXkdxFNjlk6oYuOw=
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-flexbugs-fixes@3.2.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz#9b8b932c53f9cf13ba0f61875303e447c33dcc51"
+ integrity sha1-m4uTLFP5zxO6D2GHUwPkR8M9zFE=
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-flexbugs-fixes@^4.1.0:
+ version "4.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690"
+ integrity sha1-khimUknzCJfeqxAzrO2FeFYqZpA=
+ dependencies:
+ postcss "^7.0.26"
+
+postcss-load-config@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
+ integrity sha1-U56a/J3chiASHr+djDZz4M5Q0oo=
+ dependencies:
+ cosmiconfig "^2.1.0"
+ object-assign "^4.1.0"
+ postcss-load-options "^1.2.0"
+ postcss-load-plugins "^2.3.0"
+
+postcss-load-config@^2.0.0:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
+ integrity sha1-xepQTyxK7zPHNZo03jVzdyrXUCo=
+ dependencies:
+ cosmiconfig "^5.0.0"
+ import-cwd "^2.0.0"
+
+postcss-load-options@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
+ integrity sha1-sJixVZ3awt8EvAuzdfmaXP4rbYw=
+ dependencies:
+ cosmiconfig "^2.1.0"
+ object-assign "^4.1.0"
+
+postcss-load-plugins@^2.3.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
+ integrity sha1-dFdoEWWZrKLwCfrUJrABdQSdjZI=
+ dependencies:
+ cosmiconfig "^2.1.1"
+ object-assign "^4.1.0"
+
+postcss-loader@2.0.8:
+ version "2.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-loader/-/postcss-loader-2.0.8.tgz#8c67ddb029407dfafe684a406cfc16bad2ce0814"
+ integrity sha1-jGfdsClAffr+aEpAbPwWutLOCBQ=
+ dependencies:
+ loader-utils "^1.1.0"
+ postcss "^6.0.0"
+ postcss-load-config "^1.2.0"
+ schema-utils "^0.3.0"
+
+postcss-loader@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
+ integrity sha1-a5eUPkfHLYRfqeA/Jzdz1OjdbC0=
+ dependencies:
+ loader-utils "^1.1.0"
+ postcss "^7.0.0"
+ postcss-load-config "^2.0.0"
+ schema-utils "^1.0.0"
+
+postcss-merge-idents@^2.1.5:
+ version "2.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
+ integrity sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.10"
+ postcss-value-parser "^3.1.1"
+
+postcss-merge-longhand@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
+ integrity sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-merge-rules@^2.0.3:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
+ integrity sha1-0d9d+qexrMO+VT8OnhDofGG19yE=
+ dependencies:
+ browserslist "^1.5.2"
+ caniuse-api "^1.5.2"
+ postcss "^5.0.4"
+ postcss-selector-parser "^2.2.2"
+ vendors "^1.0.0"
+
+postcss-message-helpers@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
+ integrity sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=
+
+postcss-minify-font-values@^1.0.2:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
+ integrity sha1-S1jttWZB66fIR0qzUmyv17vey2k=
+ dependencies:
+ object-assign "^4.0.1"
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.2"
+
+postcss-minify-gradients@^1.0.1:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
+ integrity sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=
+ dependencies:
+ postcss "^5.0.12"
+ postcss-value-parser "^3.3.0"
+
+postcss-minify-params@^1.0.4:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
+ integrity sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=
+ dependencies:
+ alphanum-sort "^1.0.1"
+ postcss "^5.0.2"
+ postcss-value-parser "^3.0.2"
+ uniqs "^2.0.0"
+
+postcss-minify-selectors@^2.0.4:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
+ integrity sha1-ssapjAByz5G5MtGkllCBFDEXNb8=
+ dependencies:
+ alphanum-sort "^1.0.2"
+ has "^1.0.1"
+ postcss "^5.0.14"
+ postcss-selector-parser "^2.0.0"
+
+postcss-modules-extract-imports@^1.0.0:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a"
+ integrity sha1-3IfjQUjsfqtfeR981YSYMzdbdBo=
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-modules-extract-imports@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
+ integrity sha1-gYcZoa4doyX5gyRGsBE27rSTzX4=
+ dependencies:
+ postcss "^7.0.5"
+
+postcss-modules-local-by-default@^1.0.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
+ integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
+ dependencies:
+ css-selector-tokenizer "^0.7.0"
+ postcss "^6.0.1"
+
+postcss-modules-local-by-default@^3.0.2:
+ version "3.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
+ integrity sha1-uxTgzHgnnVBNvcv9fgyiiZP/u7A=
+ dependencies:
+ icss-utils "^4.1.1"
+ postcss "^7.0.32"
+ postcss-selector-parser "^6.0.2"
+ postcss-value-parser "^4.1.0"
+
+postcss-modules-scope@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
+ integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A=
+ dependencies:
+ css-selector-tokenizer "^0.7.0"
+ postcss "^6.0.1"
+
+postcss-modules-scope@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
+ integrity sha1-OFyuATzHdD9afXYC0Qc6iequYu4=
+ dependencies:
+ postcss "^7.0.6"
+ postcss-selector-parser "^6.0.0"
+
+postcss-modules-values@^1.1.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
+ integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
+ dependencies:
+ icss-replace-symbols "^1.1.0"
+ postcss "^6.0.1"
+
+postcss-modules-values@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
+ integrity sha1-W1AA1uuuKbQlUwG0o6VFdEI+fxA=
+ dependencies:
+ icss-utils "^4.0.0"
+ postcss "^7.0.6"
+
+postcss-normalize-charset@^1.1.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
+ integrity sha1-757nEhLX/nWceO0WL2HtYrXLk/E=
+ dependencies:
+ postcss "^5.0.5"
+
+postcss-normalize-url@^3.0.7:
+ version "3.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
+ integrity sha1-EI90s/L82viRov+j6kWSJ5/HgiI=
+ dependencies:
+ is-absolute-url "^2.0.0"
+ normalize-url "^1.4.0"
+ postcss "^5.0.14"
+ postcss-value-parser "^3.2.3"
+
+postcss-ordered-values@^2.1.0:
+ version "2.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
+ integrity sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=
+ dependencies:
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.1"
+
+postcss-reduce-idents@^2.2.2:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
+ integrity sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=
+ dependencies:
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.2"
+
+postcss-reduce-initial@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
+ integrity sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-reduce-transforms@^1.0.3:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
+ integrity sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.8"
+ postcss-value-parser "^3.0.1"
+
+postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
+ version "2.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
+ integrity sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=
+ dependencies:
+ flatten "^1.0.2"
+ indexes-of "^1.0.1"
+ uniq "^1.0.1"
+
+postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
+ version "6.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea"
+ integrity sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=
+ dependencies:
+ cssesc "^3.0.0"
+ util-deprecate "^1.0.2"
+
+postcss-svgo@^2.1.1:
+ version "2.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
+ integrity sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=
+ dependencies:
+ is-svg "^2.0.0"
+ postcss "^5.0.14"
+ postcss-value-parser "^3.2.3"
+ svgo "^0.7.0"
+
+postcss-unique-selectors@^2.0.2:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
+ integrity sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=
+ dependencies:
+ alphanum-sort "^1.0.1"
+ postcss "^5.0.4"
+ uniqs "^2.0.0"
+
+postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
+ version "3.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
+ integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE=
+
+postcss-value-parser@^4.1.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
+ integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss=
+
+postcss-zindex@^2.0.1:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
+ integrity sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.4"
+ uniqs "^2.0.0"
+
+postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16:
+ version "5.2.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
+ integrity sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=
+ dependencies:
+ chalk "^1.1.3"
+ js-base64 "^2.1.9"
+ source-map "^0.5.6"
+ supports-color "^3.2.3"
+
+postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.13:
+ version "6.0.23"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
+ integrity sha1-YcgswyisYOZ3ZF+XkFTrmLwOMyQ=
+ dependencies:
+ chalk "^2.4.1"
+ source-map "^0.6.1"
+ supports-color "^5.4.0"
+
+postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
+ version "7.0.35"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
+ integrity sha1-0r4AuZj38hHYonaXQHny6SuXDiQ=
+ dependencies:
+ chalk "^2.4.2"
+ source-map "^0.6.1"
+ supports-color "^6.1.0"
+
+preact-compat@^3.15.0:
+ version "3.19.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preact-compat/-/preact-compat-3.19.0.tgz#a71457b6a3bf051690a4411603bc2085aa061c2f"
+ integrity sha1-pxRXtqO/BRaQpEEWA7wghaoGHC8=
+ dependencies:
+ immutability-helper "^2.7.1"
+ preact-context "^1.1.3"
+ preact-render-to-string "^3.8.2"
+ preact-transition-group "^1.1.1"
+ prop-types "^15.6.2"
+ standalone-react-addons-pure-render-mixin "^0.1.1"
+
+preact-context@^1.1.3:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preact-context/-/preact-context-1.1.4.tgz#866ebd35bef5788f73fc453f06f01b03ddf8f4ff"
+ integrity sha1-hm69Nb71eI9z/EU/BvAbA9349P8=
+
+preact-render-to-string@^3.8.2:
+ version "3.8.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preact-render-to-string/-/preact-render-to-string-3.8.2.tgz#bd72964d705a57da3a9e72098acaa073dd3ceff9"
+ integrity sha1-vXKWTXBaV9o6nnIJisqgc9087/k=
+ dependencies:
+ pretty-format "^3.5.1"
+
+preact-transition-group@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preact-transition-group/-/preact-transition-group-1.1.1.tgz#f0a49327ea515ece34ea2be864c4a7d29e5d6e10"
+ integrity sha1-8KSTJ+pRXs406ivoZMSn0p5dbhA=
+
+preact@^8.2.7:
+ version "8.5.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preact/-/preact-8.5.3.tgz#78c2a5562fcecb1fed1d0055fa4ac1e27bde17c1"
+ integrity sha1-eMKlVi/Oyx/tHQBV+krB4nveF8E=
+
+prelude-ls@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
+ integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
+
+prepend-http@^1.0.0, prepend-http@^1.0.1:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
+ integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
+
+preserve@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
+ integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=
+
+prettier@^1.12.1:
+ version "1.19.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
+ integrity sha1-99f1/4qc2HKnvkyhQglZVqYHl8s=
+
+pretty-bytes@^4.0.2:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
+ integrity sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=
+
+pretty-error@^2.1.1:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
+ integrity sha1-von4LYGxyG7I/fvDhQRYgnJ/k7Y=
+ dependencies:
+ lodash "^4.17.20"
+ renderkid "^2.0.4"
+
+pretty-format@^23.6.0:
+ version "23.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
+ integrity sha1-XqrI7razO5h7f+YJfqaooUarV2A=
+ dependencies:
+ ansi-regex "^3.0.0"
+ ansi-styles "^3.2.0"
+
+pretty-format@^3.5.1:
+ version "3.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385"
+ integrity sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U=
+
+pretty-hrtime@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
+ integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
+
+prismjs@^1.8.4:
+ version "1.23.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prismjs/-/prismjs-1.23.0.tgz#d3b3967f7d72440690497652a9d40ff046067f33"
+ integrity sha1-07OWf31yRAaQSXZSqdQP8EYGfzM=
+ optionalDependencies:
+ clipboard "^2.0.0"
+
+prismjs@~1.17.0:
+ version "1.17.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prismjs/-/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be"
+ integrity sha1-5mn8vUzdhzw1ECiBwzsU0NaFGb4=
+ optionalDependencies:
+ clipboard "^2.0.0"
+
+private@^0.1.8:
+ version "0.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
+ integrity sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8=
+
+process-nextick-args@~2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ integrity sha1-eCDZsWEgzFXKmud5JoCufbptf+I=
+
+process@^0.11.10:
+ version "0.11.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+ integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+
+progress@1.1.8:
+ version "1.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
+ integrity sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=
+
+progress@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+ integrity sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=
+
+promise-inflight@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
+ integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+
+promise.allsettled@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/promise.allsettled/-/promise.allsettled-1.0.4.tgz#65e71f2a604082ed69c548b68603294090ee6803"
+ integrity sha1-ZecfKmBAgu1pxUi2hgMpQJDuaAM=
+ dependencies:
+ array.prototype.map "^1.0.3"
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ get-intrinsic "^1.0.2"
+ iterate-value "^1.0.2"
+
+promise.prototype.finally@^3.1.0:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz#b8af89160c9c673cefe3b4c4435b53cfd0287067"
+ integrity sha1-uK+JFgycZzzv47TEQ1tTz9AocGc=
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.0-next.0"
+ function-bind "^1.1.1"
+
+promise@8.0.1:
+ version "8.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/promise/-/promise-8.0.1.tgz#e45d68b00a17647b6da711bf85ed6ed47208f450"
+ integrity sha1-5F1osAoXZHttpxG/he1u1HII9FA=
+ dependencies:
+ asap "~2.0.3"
+
+prompts@^0.1.9:
+ version "0.1.14"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2"
+ integrity sha1-qOFcYSxcnsj4ERhH3zM3ycvUQ7I=
+ dependencies:
+ kleur "^2.0.1"
+ sisteransi "^0.1.1"
+
+prop-types-exact@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869"
+ integrity sha1-gl1r5GCUZjhII345JamMbpROmGk=
+ dependencies:
+ has "^1.0.3"
+ object.assign "^4.1.0"
+ reflect.ownkeys "^0.2.0"
+
+prop-types-extra@^1.0.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prop-types-extra/-/prop-types-extra-1.1.1.tgz#58c3b74cbfbb95d304625975aa2f0848329a010b"
+ integrity sha1-WMO3TL+7ldMEYll1qi8ISDKaAQs=
+ dependencies:
+ react-is "^16.3.2"
+ warning "^4.0.0"
+
+prop-types@15.7.2, prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
+ version "15.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
+ integrity sha1-UsQedbjIfnK52TYOAga5ncv/psU=
+ dependencies:
+ loose-envify "^1.4.0"
+ object-assign "^4.1.1"
+ react-is "^16.8.1"
+
+property-information@^5.0.0:
+ version "5.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
+ integrity sha1-YWdVRfsjAC8kXGVA7EYHfU2j7Wk=
+ dependencies:
+ xtend "^4.0.0"
+
+proxy-addr@~2.0.5:
+ version "2.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
+ integrity sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=
+ dependencies:
+ forwarded "0.2.0"
+ ipaddr.js "1.9.1"
+
+prr@~1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
+ integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
+
+ps-tree@1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd"
+ integrity sha1-XnQluJUIc2zdTyIk0Cj3uz9yLr0=
+ dependencies:
+ event-stream "=3.3.4"
+
+pseudomap@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+ integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
+
+psl@^1.1.28:
+ version "1.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
+ integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=
+
+public-encrypt@^4.0.0:
+ version "4.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
+ integrity sha1-T8ydd6B+SLp1J+fL4N4z0HATMeA=
+ dependencies:
+ 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"
+
+pump@^2.0.0, pump@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
+ integrity sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=
+ dependencies:
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
+
+pump@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+ integrity sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=
+ dependencies:
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
+
+pumpify@^1.3.3:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
+ integrity sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=
+ dependencies:
+ duplexify "^3.6.0"
+ inherits "^2.0.3"
+ pump "^2.0.0"
+
+punycode@1.3.2:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
+ integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
+
+punycode@2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
+ integrity sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=
+
+punycode@^1.2.4, punycode@^1.4.1:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+ integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
+
+punycode@^2.1.0, punycode@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
+ integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew=
+
+q@^1.1.2:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
+ integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
+
+qs@6.7.0:
+ version "6.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
+ integrity sha1-QdwaAV49WB8WIXdr4xr7KHapsbw=
+
+qs@^6.6.0:
+ version "6.10.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a"
+ integrity sha1-STFIL6jWR6Wqt5nFJx0hM7mB+2o=
+ dependencies:
+ side-channel "^1.0.4"
+
+qs@~6.4.0:
+ version "6.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
+ integrity sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=
+
+qs@~6.5.2:
+ version "6.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
+ integrity sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=
+
+query-string@^4.1.0:
+ version "4.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
+ integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
+ dependencies:
+ object-assign "^4.1.0"
+ strict-uri-encode "^1.0.0"
+
+query-string@^5.0.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
+ integrity sha1-p4wBK3HBfgXy4/ojGd0zBoLvs8s=
+ dependencies:
+ decode-uri-component "^0.2.0"
+ object-assign "^4.1.0"
+ strict-uri-encode "^1.0.0"
+
+querystring-es3@^0.2.0:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
+ integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
+
+querystring@0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
+ integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+
+querystring@^0.2.0:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd"
+ integrity sha1-QNd2FbsJ0WkCqFw+OKqLXtdhwt0=
+
+querystringify@^2.1.1:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
+ integrity sha1-M0WUG0FTy50ILY7uTNogFqmu9/Y=
+
+raf@3.4.0:
+ version "3.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575"
+ integrity sha1-ooh2iBtLwsqRF9QTgWPduA94FXU=
+ dependencies:
+ performance-now "^2.1.0"
+
+raf@^3.0.0, raf@^3.4.0, raf@^3.4.1:
+ version "3.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
+ integrity sha1-B0LpmkplUvRF1z4+4DKK8P8e3jk=
+ dependencies:
+ performance-now "^2.1.0"
+
+railroad-diagrams@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
+ integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
+
+ramda@0.24.1:
+ version "0.24.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857"
+ integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc=
+
+ramda@^0.21.0:
+ version "0.21.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
+ integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=
+
+ramda@^0.27.1:
+ version "0.27.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ramda/-/ramda-0.27.1.tgz#66fc2df3ef873874ffc2da6aa8984658abacf5c9"
+ integrity sha1-Zvwt8++HOHT/wtpqqJhGWKus9ck=
+
+randexp@0.4.6:
+ version "0.4.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
+ integrity sha1-6YatXl4x2uE93W97MBmqfIf2DKM=
+ dependencies:
+ discontinuous-range "1.0.0"
+ ret "~0.1.10"
+
+randomatic@^3.0.0:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
+ integrity sha1-t3bvxZN1mE42xTey9RofCv8Noe0=
+ dependencies:
+ is-number "^4.0.0"
+ kind-of "^6.0.0"
+ math-random "^1.0.1"
+
+randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+ integrity sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=
+ dependencies:
+ safe-buffer "^5.1.0"
+
+randomfill@^1.0.3:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
+ integrity sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=
+ dependencies:
+ randombytes "^2.0.5"
+ safe-buffer "^5.1.0"
+
+randomhex@0.1.5:
+ version "0.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/randomhex/-/randomhex-0.1.5.tgz#baceef982329091400f2a2912c6cd02f1094f585"
+ integrity sha1-us7vmCMpCRQA8qKRLGzQLxCU9YU=
+
+range-parser@^1.2.1, range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=
+
+raw-body@2.4.0:
+ version "2.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+ integrity sha1-oc5vucm8NWylLoklarWQWeE9AzI=
+ dependencies:
+ bytes "3.1.0"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+raw-loader@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/raw-loader/-/raw-loader-3.1.0.tgz#5e9d399a5a222cc0de18f42c3bc5e49677532b3f"
+ integrity sha1-Xp05mloiLMDeGPQsO8XklndTKz8=
+ dependencies:
+ loader-utils "^1.1.0"
+ schema-utils "^2.0.1"
+
+rc@^1.0.1, rc@^1.1.6:
+ version "1.2.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
+ integrity sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0=
+ dependencies:
+ deep-extend "^0.6.0"
+ ini "~1.3.0"
+ minimist "^1.2.0"
+ strip-json-comments "~2.0.1"
+
+"react-addons-shallow-compare@^0.14.2 || ^15.0.0":
+ version "15.6.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.3.tgz#28a94b0dfee71530852c66a69053d59a1baf04cb"
+ integrity sha1-KKlLDf7nFTCFLGamkFPVmhuvBMs=
+ dependencies:
+ object-assign "^4.1.0"
+
+react-apollo@^3.1.3:
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-apollo/-/react-apollo-3.1.5.tgz#36692d393c47e7ccc37f0a885c7cc5a8b4961c91"
+ integrity sha1-NmktOTxH58zDfwqIXHzFqLSWHJE=
+ dependencies:
+ "@apollo/react-common" "^3.1.4"
+ "@apollo/react-components" "^3.1.5"
+ "@apollo/react-hoc" "^3.1.5"
+ "@apollo/react-hooks" "^3.1.5"
+ "@apollo/react-ssr" "^3.1.5"
+
+react-async-script@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-async-script/-/react-async-script-1.2.0.tgz#ab9412a26f0b83f5e2e00de1d2befc9400834b21"
+ integrity sha1-q5QSom8Lg/Xi4A3h0r78lACDSyE=
+ dependencies:
+ hoist-non-react-statics "^3.3.0"
+ prop-types "^15.5.0"
+
+react-bootstrap@^0.32.1:
+ version "0.32.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-bootstrap/-/react-bootstrap-0.32.4.tgz#8efc4cbfc4807215d75b7639bee0d324c8d740d1"
+ integrity sha1-jvxMv8SAchXXW3Y5vuDTJMjXQNE=
+ dependencies:
+ "@babel/runtime-corejs2" "^7.0.0"
+ classnames "^2.2.5"
+ dom-helpers "^3.2.0"
+ invariant "^2.2.4"
+ keycode "^2.2.0"
+ prop-types "^15.6.1"
+ prop-types-extra "^1.0.1"
+ react-overlays "^0.8.0"
+ react-prop-types "^0.4.0"
+ react-transition-group "^2.0.0"
+ uncontrollable "^5.0.0"
+ warning "^3.0.0"
+
+react-clientside-effect@^1.2.2:
+ version "1.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-clientside-effect/-/react-clientside-effect-1.2.5.tgz#e2c4dc3c9ee109f642fac4f5b6e9bf5bcd2219a3"
+ integrity sha1-4sTcPJ7hCfZC+sT1tum/W80iGaM=
+ dependencies:
+ "@babel/runtime" "^7.12.13"
+
+react-copy-to-clipboard@^5.0.1:
+ version "5.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.3.tgz#2a0623b1115a1d8c84144e9434d3342b5af41ab4"
+ integrity sha1-KgYjsRFaHYyEFE6UNNM0K1r0GrQ=
+ dependencies:
+ copy-to-clipboard "^3"
+ prop-types "^15.5.8"
+
+react-countdown-now@^1.3.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-countdown-now/-/react-countdown-now-1.3.0.tgz#13c262a530614c69e68a0d277bd33b45d925cd56"
+ integrity sha1-E8JipTBhTGnmig0ne9M7RdklzVY=
+
+react-dev-utils@^6.0.0-next.3e165448:
+ version "6.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-dev-utils/-/react-dev-utils-6.1.1.tgz#a07e3e8923c4609d9f27e5af5207e3ca20724895"
+ integrity sha1-oH4+iSPEYJ2fJ+WvUgfjyiBySJU=
+ dependencies:
+ "@babel/code-frame" "7.0.0"
+ address "1.0.3"
+ browserslist "4.1.1"
+ chalk "2.4.1"
+ cross-spawn "6.0.5"
+ detect-port-alt "1.1.6"
+ escape-string-regexp "1.0.5"
+ filesize "3.6.1"
+ find-up "3.0.0"
+ global-modules "1.0.0"
+ globby "8.0.1"
+ gzip-size "5.0.0"
+ immer "1.7.2"
+ inquirer "6.2.0"
+ is-root "2.0.0"
+ loader-utils "1.1.0"
+ opn "5.4.0"
+ pkg-up "2.0.0"
+ react-error-overlay "^5.1.0"
+ recursive-readdir "2.2.2"
+ shell-quote "1.6.1"
+ sockjs-client "1.1.5"
+ strip-ansi "4.0.0"
+ text-table "0.2.0"
+
+react-dev-utils@^9.0.0:
+ version "9.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81"
+ integrity sha1-OtK7iEijIxnXYNCoTFbBS9quXoE=
+ dependencies:
+ "@babel/code-frame" "7.5.5"
+ address "1.1.2"
+ browserslist "4.7.0"
+ chalk "2.4.2"
+ cross-spawn "6.0.5"
+ detect-port-alt "1.1.6"
+ escape-string-regexp "1.0.5"
+ filesize "3.6.1"
+ find-up "3.0.0"
+ fork-ts-checker-webpack-plugin "1.5.0"
+ global-modules "2.0.0"
+ globby "8.0.2"
+ gzip-size "5.1.1"
+ immer "1.10.0"
+ inquirer "6.5.0"
+ is-root "2.1.0"
+ loader-utils "1.2.3"
+ open "^6.3.0"
+ pkg-up "2.0.0"
+ react-error-overlay "^6.0.3"
+ recursive-readdir "2.2.2"
+ shell-quote "1.7.2"
+ sockjs-client "1.4.0"
+ strip-ansi "5.2.0"
+ text-table "0.2.0"
+
+react-docgen@^5.0.0:
+ version "5.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-docgen/-/react-docgen-5.4.0.tgz#2cd7236720ec2769252ef0421f23250b39a153a1"
+ integrity sha1-LNcjZyDsJ2klLvBCHyMlCzmhU6E=
+ dependencies:
+ "@babel/core" "^7.7.5"
+ "@babel/generator" "^7.12.11"
+ "@babel/runtime" "^7.7.6"
+ ast-types "^0.14.2"
+ commander "^2.19.0"
+ doctrine "^3.0.0"
+ estree-to-babel "^3.1.0"
+ neo-async "^2.6.1"
+ node-dir "^0.1.10"
+ strip-indent "^3.0.0"
+
+react-dom@^16.8.3, react-dom@^16.8.6:
+ version "16.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
+ integrity sha1-etg47Cmnd/s8dcOhkPZhz5Kri4k=
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+ prop-types "^15.6.2"
+ scheduler "^0.19.1"
+
+react-draggable@^4.0.3:
+ version "4.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-draggable/-/react-draggable-4.4.3.tgz#0727f2cae5813e36b0e4962bf11b2f9ef2b406f3"
+ integrity sha1-ByfyyuWBPjaw5JYr8RsvnvK0BvM=
+ dependencies:
+ classnames "^2.2.5"
+ prop-types "^15.6.0"
+
+react-error-overlay@^5.1.0:
+ version "5.1.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-error-overlay/-/react-error-overlay-5.1.6.tgz#0cd73407c5d141f9638ae1e0c63e7b2bf7e9929d"
+ integrity sha1-DNc0B8XRQfljiuHgxj57K/fpkp0=
+
+react-error-overlay@^6.0.3:
+ version "6.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a"
+ integrity sha1-PHQwEMk1lgjDdezWvHbzXZOZWwo=
+
+react-fa@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-fa/-/react-fa-5.0.0.tgz#d571732856c6cb2c155c46daef018ba67a75b973"
+ integrity sha1-1XFzKFbGyywVXEba7wGLpnp1uXM=
+ dependencies:
+ font-awesome "^4.3.0"
+ prop-types "^15.5.8"
+
+react-fast-compare@^2.0.2:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9"
+ integrity sha1-6EtNRVsP7BE+BALDKTUnFRlvgfk=
+
+react-fast-compare@^3.2.0:
+ version "3.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb"
+ integrity sha1-ZBqdqBtqYyDycOiXJPtFoLOeQ7s=
+
+react-focus-lock@^2.1.0:
+ version "2.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-focus-lock/-/react-focus-lock-2.5.1.tgz#e2060c5d7b02c62d79c4f103d0fc5a1288bc8f75"
+ integrity sha1-4gYMXXsCxi15xPED0PxaEoi8j3U=
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ focus-lock "^0.9.1"
+ prop-types "^15.6.2"
+ react-clientside-effect "^1.2.2"
+ use-callback-ref "^1.2.1"
+ use-sidecar "^1.0.1"
+
+react-google-recaptcha@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-google-recaptcha/-/react-google-recaptcha-2.1.0.tgz#9f6f4954ce49c1dedabc2c532347321d892d0a16"
+ integrity sha1-n29JVM5Jwd7avCxTI0cyHYktChY=
+ dependencies:
+ prop-types "^15.5.0"
+ react-async-script "^1.1.1"
+
+react-helmet-async@^1.0.2:
+ version "1.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-helmet-async/-/react-helmet-async-1.0.9.tgz#5b9ed2059de6b4aab47f769532f9fbcbce16c5ca"
+ integrity sha1-W57SBZ3mtKq0f3aVMvn7y84Wxco=
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+ invariant "^2.2.4"
+ prop-types "^15.7.2"
+ react-fast-compare "^3.2.0"
+ shallowequal "^1.1.0"
+
+react-helmet@^5.2.1:
+ version "5.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-helmet/-/react-helmet-5.2.1.tgz#16a7192fdd09951f8e0fe22ffccbf9bb3e591ffa"
+ integrity sha1-FqcZL90JlR+OD+Iv/Mv5uz5ZH/o=
+ dependencies:
+ object-assign "^4.1.1"
+ prop-types "^15.5.4"
+ react-fast-compare "^2.0.2"
+ react-side-effect "^1.1.0"
+
+react-hotkeys@2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-hotkeys/-/react-hotkeys-2.0.0.tgz#a7719c7340cbba888b0e9184f806a9ec0ac2c53f"
+ integrity sha1-p3Gcc0DLuoiLDpGE+Aap7ArCxT8=
+ dependencies:
+ prop-types "^15.6.1"
+
+react-i18next@^7.7.0:
+ version "7.13.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-i18next/-/react-i18next-7.13.0.tgz#a6f64fd749215ec70400f90da6cbde2a9c5b1588"
+ integrity sha1-pvZP10khXscEAPkNpsveKpxbFYg=
+ dependencies:
+ hoist-non-react-statics "^2.3.1"
+ html-parse-stringify2 "2.0.1"
+ prop-types "^15.6.0"
+
+react-id-swiper@^1.6.8:
+ version "1.6.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-id-swiper/-/react-id-swiper-1.6.9.tgz#463116cb2b2b0ecea23b5e62ebfa0640e545f6f1"
+ integrity sha1-RjEWyysrDs6iO15i6/oGQOVF9vE=
+ dependencies:
+ object-assign "^4.1.1"
+ prop-types "^15.7.2"
+ swiper "^4.4.6"
+
+react-inspector@^4.0.0:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-inspector/-/react-inspector-4.0.1.tgz#0f888f78ff7daccbc7be5d452b20c96dc6d5fbb8"
+ integrity sha1-D4iPeP99rMvHvl1FKyDJbcbV+7g=
+ dependencies:
+ "@babel/runtime" "^7.6.3"
+ is-dom "^1.0.9"
+ prop-types "^15.6.1"
+
+react-is@^16.13.1, react-is@^16.3.2, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6:
+ version "16.13.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+ integrity sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=
+
+react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.4:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
+ integrity sha1-TxonOv38jzSIqMUWv9p4+HI1I2I=
+
+react-loadable@^5.4.0:
+ version "5.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-loadable/-/react-loadable-5.5.0.tgz#582251679d3da86c32aae2c8e689c59f1196d8c4"
+ integrity sha1-WCJRZ509qGwyquLI5onFnxGW2MQ=
+ dependencies:
+ prop-types "^15.5.0"
+
+react-markdown@^4.2.2:
+ version "4.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-markdown/-/react-markdown-4.3.1.tgz#39f0633b94a027445b86c9811142d05381300f2f"
+ integrity sha1-OfBjO5SgJ0RbhsmBEULQU4EwDy8=
+ dependencies:
+ html-to-react "^1.3.4"
+ mdast-add-list-metadata "1.0.1"
+ prop-types "^15.7.2"
+ react-is "^16.8.6"
+ remark-parse "^5.0.0"
+ unified "^6.1.5"
+ unist-util-visit "^1.3.0"
+ xtend "^4.0.1"
+
+react-onclickoutside@^6.7.1:
+ version "6.11.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-onclickoutside/-/react-onclickoutside-6.11.2.tgz#790e2100b9a3589eefca1404ecbf0476b81b7928"
+ integrity sha1-eQ4hALmjWJ7vyhQE7L8EdrgbeSg=
+
+react-overlays@^0.8.0:
+ version "0.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-overlays/-/react-overlays-0.8.3.tgz#fad65eea5b24301cca192a169f5dddb0b20d3ac5"
+ integrity sha1-+tZe6lskMBzKGSoWn13dsLINOsU=
+ dependencies:
+ classnames "^2.2.5"
+ dom-helpers "^3.2.1"
+ prop-types "^15.5.10"
+ prop-types-extra "^1.0.1"
+ react-transition-group "^2.2.0"
+ warning "^3.0.0"
+
+react-popper-tooltip@^2.8.3:
+ version "2.11.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-popper-tooltip/-/react-popper-tooltip-2.11.1.tgz#3c4bdfd8bc10d1c2b9a162e859bab8958f5b2644"
+ integrity sha1-PEvf2LwQ0cK5oWLoWbq4lY9bJkQ=
+ dependencies:
+ "@babel/runtime" "^7.9.2"
+ react-popper "^1.3.7"
+
+react-popper@^0.10.4:
+ version "0.10.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-popper/-/react-popper-0.10.4.tgz#af2a415ea22291edd504678d7afda8a6ee3295aa"
+ integrity sha1-rypBXqIike3VBGeNev2opu4ylao=
+ dependencies:
+ popper.js "^1.14.1"
+ prop-types "^15.6.1"
+
+react-popper@^1.3.7:
+ version "1.3.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-popper/-/react-popper-1.3.11.tgz#a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd"
+ integrity sha1-osw/Cme3W2bPpi0sQJ+d0fzHH/0=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ "@hypnosphi/create-react-context" "^0.3.1"
+ deep-equal "^1.1.1"
+ popper.js "^1.14.4"
+ prop-types "^15.6.1"
+ typed-styles "^0.0.7"
+ warning "^4.0.2"
+
+react-prop-types@^0.4.0:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-prop-types/-/react-prop-types-0.4.0.tgz#f99b0bfb4006929c9af2051e7c1414a5c75b93d0"
+ integrity sha1-+ZsL+0AGkpya8gUefBQUpcdbk9A=
+ dependencies:
+ warning "^3.0.0"
+
+react-redux@^5.0.7:
+ version "5.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-redux/-/react-redux-5.1.2.tgz#b19cf9e21d694422727bf798e934a916c4080f57"
+ integrity sha1-sZz54h1pRCJye/eY6TSpFsQID1c=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ hoist-non-react-statics "^3.3.0"
+ invariant "^2.2.4"
+ loose-envify "^1.1.0"
+ prop-types "^15.6.1"
+ react-is "^16.6.0"
+ react-lifecycles-compat "^3.0.0"
+
+react-reveal@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-reveal/-/react-reveal-1.2.2.tgz#f47fbc44debc4c185ae2163a215a9e822c7adfef"
+ integrity sha1-9H+8RN68TBha4hY6IVqegix63+8=
+ dependencies:
+ prop-types "^15.5.10"
+
+react-router-dom@^5.1.1:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-router-dom/-/react-router-dom-5.2.0.tgz#9e65a4d0c45e13289e66c7b17c7e175d0ea15662"
+ integrity sha1-nmWk0MReEyieZsexfH4XXQ6hVmI=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ history "^4.9.0"
+ loose-envify "^1.3.1"
+ prop-types "^15.6.2"
+ react-router "5.2.0"
+ tiny-invariant "^1.0.2"
+ tiny-warning "^1.0.0"
+
+react-router-hash-link@^1.2.2:
+ version "1.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-router-hash-link/-/react-router-hash-link-1.2.2.tgz#7a0ad5e925d49596d19554de8bc6c554ce4f8099"
+ integrity sha1-egrV6SXUlZbRlVTei8bFVM5PgJk=
+ dependencies:
+ prop-types "^15.6.0"
+
+react-router@5.2.0:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-router/-/react-router-5.2.0.tgz#424e75641ca8747fbf76e5ecca69781aa37ea293"
+ integrity sha1-Qk51ZByodH+/duXsyml4GqN+opM=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ history "^4.9.0"
+ hoist-non-react-statics "^3.1.0"
+ loose-envify "^1.3.1"
+ mini-create-react-context "^0.4.0"
+ path-to-regexp "^1.7.0"
+ prop-types "^15.6.2"
+ react-is "^16.6.0"
+ tiny-invariant "^1.0.2"
+ tiny-warning "^1.0.0"
+
+react-side-effect@^1.1.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-side-effect/-/react-side-effect-1.2.0.tgz#0e940c78faba0c73b9b0eba9cd3dda8dfb7e7dae"
+ integrity sha1-DpQMePq6DHO5sOupzT3ajft+fa4=
+ dependencies:
+ shallowequal "^1.0.1"
+
+react-sizeme@^2.6.7:
+ version "2.6.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-sizeme/-/react-sizeme-2.6.12.tgz#ed207be5476f4a85bf364e92042520499455453e"
+ integrity sha1-7SB75UdvSoW/Nk6SBCUgSZRVRT4=
+ dependencies:
+ element-resize-detector "^1.2.1"
+ invariant "^2.2.4"
+ shallowequal "^1.1.0"
+ throttle-debounce "^2.1.0"
+
+react-stickynode@^1.4.1:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-stickynode/-/react-stickynode-1.4.1.tgz#de48e78a8767f21d6d5e1f81a859f31f7e466094"
+ integrity sha1-3kjniodn8h1tXh+BqFnzH35GYJQ=
+ dependencies:
+ classnames "^2.0.0"
+ prop-types "^15.6.0"
+ react-addons-shallow-compare "^0.14.2 || ^15.0.0"
+ subscribe-ui-event "^1.0.0"
+
+react-structured-data@0.0.14:
+ version "0.0.14"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-structured-data/-/react-structured-data-0.0.14.tgz#7a851cb65ef26d63244e3b6d5370c751d0a86a33"
+ integrity sha1-eoUctl7ybWMkTjttU3DHUdCoajM=
+ dependencies:
+ prop-types "^15.6.0"
+
+react-svg-core@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-svg-core/-/react-svg-core-2.1.0.tgz#3700322af70117c91f83f18febb481128de3cfbb"
+ integrity sha1-NwAyKvcBF8kfg/GP67SBEo3jz7s=
+ dependencies:
+ babel-core "^6.26.0"
+ babel-plugin-react-svg "^2.1.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ babel-plugin-transform-object-rest-spread "^6.26.0"
+ babel-preset-react "^6.24.1"
+ lodash.isplainobject "^4.0.6"
+ svgo "^0.7.2"
+
+react-svg-inline@^2.1.0:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-svg-inline/-/react-svg-inline-2.1.1.tgz#532664006bf5b4f9ca2879d185e546df9a7476ef"
+ integrity sha1-UyZkAGv1tPnKKHnRheVG35p0du8=
+ dependencies:
+ classnames "^2.2.1"
+ prop-types "^15.5.8"
+
+react-svg-loader@^2.1.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-svg-loader/-/react-svg-loader-2.1.0.tgz#ba15019413b9b11e2012e86580aea1eecc93677e"
+ integrity sha1-uhUBlBO5sR4gEuhlgK6h7syTZ34=
+ dependencies:
+ loader-utils "^1.1.0"
+ react-svg-core "^2.1.0"
+
+react-syntax-highlighter@^11.0.2:
+ version "11.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-syntax-highlighter/-/react-syntax-highlighter-11.0.2.tgz#4e3f376e752b20d2f54e4c55652fd663149e4029"
+ integrity sha1-Tj83bnUrINL1TkxVZS/WYxSeQCk=
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ highlight.js "~9.13.0"
+ lowlight "~1.11.0"
+ prismjs "^1.8.4"
+ refractor "^2.4.1"
+
+react-test-renderer@^16.0.0-0, react-test-renderer@^16.4.1:
+ version "16.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-test-renderer/-/react-test-renderer-16.14.0.tgz#e98360087348e260c56d4fe2315e970480c228ae"
+ integrity sha1-6YNgCHNI4mDFbU/iMV6XBIDCKK4=
+ dependencies:
+ object-assign "^4.1.1"
+ prop-types "^15.6.2"
+ react-is "^16.8.6"
+ scheduler "^0.19.1"
+
+react-textarea-autosize@^7.1.0:
+ version "7.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda"
+ integrity sha1-cP2zM++GvMpycX4l5iPpDDNuLNo=
+ dependencies:
+ "@babel/runtime" "^7.1.2"
+ prop-types "^15.6.0"
+
+react-transition-group@^2.0.0, react-transition-group@^2.2.0, react-transition-group@^2.3.1:
+ version "2.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d"
+ integrity sha1-35zbAleWIRFRpDbGmo87l7WwfI0=
+ dependencies:
+ dom-helpers "^3.4.0"
+ loose-envify "^1.4.0"
+ prop-types "^15.6.2"
+ react-lifecycles-compat "^3.0.4"
+
+react-typeform-embed@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-typeform-embed/-/react-typeform-embed-0.2.1.tgz#aedbf8aec869284fc7461fdaca8f5a0af75b2778"
+ integrity sha1-rtv4rshpKE/HRh/ayo9aCvdbJ3g=
+ dependencies:
+ "@typeform/embed" "^0.10.0"
+
+react-webcam@^4.1.1:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-webcam/-/react-webcam-4.2.0.tgz#e5dd18f1c62d7e7dc59bc7a6702c2cd162b6c81b"
+ integrity sha1-5d0Y8cYtfn3Fm8emcCws0WK2yBs=
+
+react-youtube@^7.9.0:
+ version "7.13.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react-youtube/-/react-youtube-7.13.1.tgz#3b327599a687bf22e071468818522920b36bcb57"
+ integrity sha1-OzJ1maaHvyLgcUaIGFIpILNry1c=
+ dependencies:
+ fast-deep-equal "3.1.3"
+ prop-types "15.7.2"
+ youtube-player "5.5.2"
+
+react@^16.8.3, react@^16.8.6:
+ version "16.14.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"
+ integrity sha1-lNd23dCqo32j7aj8W2sYpMmjEU0=
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+ prop-types "^15.6.2"
+
+reactstrap@^6.5.0:
+ version "6.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/reactstrap/-/reactstrap-6.5.0.tgz#ba655e32646e2621829f61faa033e607ec6624e5"
+ integrity sha1-umVeMmRuJiGCn2H6oDPmB+xmJOU=
+ dependencies:
+ classnames "^2.2.3"
+ lodash.isfunction "^3.0.9"
+ lodash.isobject "^3.0.2"
+ lodash.tonumber "^4.0.3"
+ prop-types "^15.5.8"
+ react-lifecycles-compat "^3.0.4"
+ react-popper "^0.10.4"
+ react-transition-group "^2.3.1"
+
+read-pkg-up@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
+ integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=
+ dependencies:
+ find-up "^1.0.0"
+ read-pkg "^1.0.0"
+
+read-pkg-up@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
+ integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
+ dependencies:
+ find-up "^2.0.0"
+ read-pkg "^3.0.0"
+
+read-pkg@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
+ integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=
+ dependencies:
+ load-json-file "^1.0.0"
+ normalize-package-data "^2.3.2"
+ path-type "^1.0.0"
+
+read-pkg@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
+ integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
+ dependencies:
+ load-json-file "^4.0.0"
+ normalize-package-data "^2.3.2"
+ path-type "^3.0.0"
+
+"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6:
+ version "2.3.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
+ integrity sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=
+ dependencies:
+ 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"
+
+readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.6.0:
+ version "3.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
+ integrity sha1-M3u9o63AcGvT4CRCaihtS0sskZg=
+ dependencies:
+ inherits "^2.0.3"
+ string_decoder "^1.1.1"
+ util-deprecate "^1.0.1"
+
+readdirp@^2.2.1:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
+ integrity sha1-DodiKjMlqjPokihcr4tOhGUppSU=
+ dependencies:
+ graceful-fs "^4.1.11"
+ micromatch "^3.1.10"
+ readable-stream "^2.0.2"
+
+readdirp@~3.5.0:
+ version "3.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
+ integrity sha1-m6dMAZsV02UnjS6Ru4xI17TULJ4=
+ dependencies:
+ picomatch "^2.2.1"
+
+realpath-native@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
+ integrity sha1-IAMpT+oj+wZy8kduviL89Jii1lw=
+ dependencies:
+ util.promisify "^1.0.0"
+
+rechoir@^0.6.2:
+ version "0.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+ integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
+ dependencies:
+ resolve "^1.1.6"
+
+recursive-readdir@2.2.2:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
+ integrity sha1-mUb7MnThYo3m42svZxSVO0hFCU8=
+ dependencies:
+ minimatch "3.0.4"
+
+redent@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
+ integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=
+ dependencies:
+ indent-string "^2.1.0"
+ strip-indent "^1.0.1"
+
+reduce-css-calc@^1.2.6:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
+ integrity sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=
+ dependencies:
+ balanced-match "^0.4.2"
+ math-expression-evaluator "^1.2.14"
+ reduce-function-call "^1.0.1"
+
+reduce-function-call@^1.0.1:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/reduce-function-call/-/reduce-function-call-1.0.3.tgz#60350f7fb252c0a67eb10fd4694d16909971300f"
+ integrity sha1-YDUPf7JSwKZ+sQ/UaU0WkJlxMA8=
+ dependencies:
+ balanced-match "^1.0.0"
+
+redux-mock-store@^1.5.3:
+ version "1.5.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/redux-mock-store/-/redux-mock-store-1.5.4.tgz#90d02495fd918ddbaa96b83aef626287c9ab5872"
+ integrity sha1-kNAklf2Rjduqlrg672Jih8mrWHI=
+ dependencies:
+ lodash.isplainobject "^4.0.6"
+
+redux-thunk@^2.2.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622"
+ integrity sha1-UcLBmhhe1Rh6qpotCLZm0NZGdiI=
+
+redux@^4.0.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/redux/-/redux-4.1.0.tgz#eb049679f2f523c379f1aff345c8612f294c88d4"
+ integrity sha1-6wSWefL1I8N58a/zRchhLylMiNQ=
+ dependencies:
+ "@babel/runtime" "^7.9.2"
+
+reflect.ownkeys@^0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
+ integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
+
+refractor@^2.4.1:
+ version "2.10.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e"
+ integrity sha1-Fmwy8RTtFv2WGQrSHVGT06/H004=
+ dependencies:
+ hastscript "^5.0.0"
+ parse-entities "^1.1.2"
+ prismjs "~1.17.0"
+
+regenerate-unicode-properties@^8.2.0:
+ version "8.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
+ integrity sha1-5d5xEdZV57pgwFfb6f83yH5lzew=
+ dependencies:
+ regenerate "^1.4.0"
+
+regenerate@^1.4.0:
+ version "1.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
+ integrity sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=
+
+regenerator-runtime@^0.11.0:
+ version "0.11.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
+ integrity sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk=
+
+regenerator-runtime@^0.12.0:
+ version "0.12.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
+ integrity sha1-+hpxVEdkwDb4xJsToIsllMn4oN4=
+
+regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4:
+ version "0.13.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
+ integrity sha1-ysLazIoepnX+qrrriugziYrkb1U=
+
+regenerator-transform@^0.14.2:
+ version "0.14.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
+ integrity sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=
+ dependencies:
+ "@babel/runtime" "^7.8.4"
+
+regex-cache@^0.4.2:
+ version "0.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
+ integrity sha1-db3FiioUls7EihKDW8VMjVYjNt0=
+ dependencies:
+ is-equal-shallow "^0.1.3"
+
+regex-not@^1.0.0, regex-not@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
+ integrity sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=
+ dependencies:
+ extend-shallow "^3.0.2"
+ safe-regex "^1.1.0"
+
+regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.1:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
+ integrity sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+regexpp@^1.0.1:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
+ integrity sha1-DjUW3Qt5BPQT0tQZPc5GGMOmias=
+
+regexpu-core@^4.7.1:
+ version "4.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
+ integrity sha1-LepamgcjMpj78NuR+pq8TG4PitY=
+ dependencies:
+ regenerate "^1.4.0"
+ regenerate-unicode-properties "^8.2.0"
+ regjsgen "^0.5.1"
+ regjsparser "^0.6.4"
+ unicode-match-property-ecmascript "^1.0.4"
+ unicode-match-property-value-ecmascript "^1.2.0"
+
+registry-auth-token@^3.0.1:
+ version "3.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e"
+ integrity sha1-10RoFUM/XV7WQxzV3KIQSPZrOX4=
+ dependencies:
+ rc "^1.1.6"
+ safe-buffer "^5.0.1"
+
+registry-url@^3.0.3:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
+ integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI=
+ dependencies:
+ rc "^1.0.1"
+
+regjsgen@^0.5.1:
+ version "0.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
+ integrity sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=
+
+regjsparser@^0.6.4:
+ version "0.6.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
+ integrity sha1-tInu98mizkNydicBFCnPgzpxg+Y=
+ dependencies:
+ jsesc "~0.5.0"
+
+relateurl@^0.2.7:
+ version "0.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
+ integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
+
+remark-parse@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95"
+ integrity sha1-TAd/nkmQRNHVwT+A16mM97koXZU=
+ dependencies:
+ collapse-white-space "^1.0.2"
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-whitespace-character "^1.0.0"
+ is-word-character "^1.0.0"
+ markdown-escapes "^1.0.0"
+ parse-entities "^1.1.0"
+ repeat-string "^1.5.4"
+ state-toggle "^1.0.0"
+ trim "0.0.1"
+ trim-trailing-lines "^1.0.0"
+ unherit "^1.0.4"
+ unist-util-remove-position "^1.0.0"
+ vfile-location "^2.0.0"
+ xtend "^4.0.1"
+
+remove-trailing-separator@^1.0.1:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+ integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+
+renderkid@^2.0.4:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/renderkid/-/renderkid-2.0.5.tgz#483b1ac59c6601ab30a7a596a5965cabccfdd0a5"
+ integrity sha1-SDsaxZxmAaswp6WWpZZcq8z90KU=
+ dependencies:
+ css-select "^2.0.2"
+ dom-converter "^0.2"
+ htmlparser2 "^3.10.1"
+ lodash "^4.17.20"
+ strip-ansi "^3.0.0"
+
+repeat-element@^1.1.2:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
+ integrity sha1-vmgVIIR6tYx1aKx1+/rSjtQtOek=
+
+repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1:
+ version "1.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+ integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+
+repeating@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
+ integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
+ dependencies:
+ is-finite "^1.0.0"
+
+replace-ext@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
+ integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
+
+request-progress@0.3.1:
+ version "0.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/request-progress/-/request-progress-0.3.1.tgz#0721c105d8a96ac6b2ce8b2c89ae2d5ecfcf6b3a"
+ integrity sha1-ByHBBdipasayzossia4tXs/Pazo=
+ dependencies:
+ throttleit "~0.0.2"
+
+request-promise-core@1.1.4:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
+ integrity sha1-Pu3UIjII1BmGe3jOgVFn0QWToi8=
+ dependencies:
+ lodash "^4.17.19"
+
+request-promise-native@^1.0.5:
+ version "1.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
+ integrity sha1-5AcSBSal79yaObKKVnm/R7nZ3Cg=
+ dependencies:
+ request-promise-core "1.1.4"
+ stealthy-require "^1.1.1"
+ tough-cookie "^2.3.3"
+
+request@2.81.0:
+ version "2.81.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
+ integrity sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=
+ dependencies:
+ aws-sign2 "~0.6.0"
+ aws4 "^1.2.1"
+ caseless "~0.12.0"
+ combined-stream "~1.0.5"
+ extend "~3.0.0"
+ forever-agent "~0.6.1"
+ form-data "~2.1.1"
+ har-validator "~4.2.1"
+ hawk "~3.1.3"
+ http-signature "~1.1.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.7"
+ oauth-sign "~0.8.1"
+ performance-now "^0.2.0"
+ qs "~6.4.0"
+ safe-buffer "^5.0.1"
+ stringstream "~0.0.4"
+ tough-cookie "~2.3.0"
+ tunnel-agent "^0.6.0"
+ uuid "^3.0.0"
+
+request@^2.79.0, request@^2.87.0, request@^2.88.0:
+ version "2.88.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
+ integrity sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM=
+ dependencies:
+ aws-sign2 "~0.7.0"
+ aws4 "^1.8.0"
+ caseless "~0.12.0"
+ combined-stream "~1.0.6"
+ extend "~3.0.2"
+ forever-agent "~0.6.1"
+ form-data "~2.3.2"
+ har-validator "~5.1.3"
+ http-signature "~1.2.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.19"
+ oauth-sign "~0.9.0"
+ performance-now "^2.1.0"
+ qs "~6.5.2"
+ safe-buffer "^5.1.2"
+ tough-cookie "~2.5.0"
+ tunnel-agent "^0.6.0"
+ uuid "^3.3.2"
+
+require-directory@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
+
+require-from-string@^1.1.0:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
+ integrity sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=
+
+require-main-filename@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
+ integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
+
+require-main-filename@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
+ integrity sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=
+
+require-uncached@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
+ integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=
+ dependencies:
+ caller-path "^0.1.0"
+ resolve-from "^1.0.0"
+
+requires-port@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+ integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+
+resize-observer-polyfill@^1.5.1:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
+ integrity sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=
+
+resolve-cwd@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
+ integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
+ dependencies:
+ resolve-from "^3.0.0"
+
+resolve-dir@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
+ integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=
+ dependencies:
+ expand-tilde "^2.0.0"
+ global-modules "^1.0.0"
+
+resolve-from@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
+ integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=
+
+resolve-from@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
+ integrity sha1-six699nWiBvItuZTM17rywoYh0g=
+
+resolve-from@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=
+
+resolve-from@^5.0.0:
+ version "5.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+ integrity sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=
+
+resolve-pathname@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd"
+ integrity sha1-mdAiJNPPJjaJvsuzk7xWAxMCXc0=
+
+resolve-url@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
+ integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+
+resolve@1.1.7:
+ version "1.1.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
+ integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
+
+resolve@1.6.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve/-/resolve-1.6.0.tgz#0fbd21278b27b4004481c395349e7aba60a9ff5c"
+ integrity sha1-D70hJ4sntABEgcOVNJ56umCp/1w=
+ dependencies:
+ path-parse "^1.0.5"
+
+resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.3.2, resolve@^1.8.1:
+ version "1.20.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
+ integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
+resolve@^2.0.0-next.3:
+ version "2.0.0-next.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
+ integrity sha1-1BAWKT1KhYajnKXZtfFcvqH1XkY=
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
+restore-cursor@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
+ integrity sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=
+ dependencies:
+ exit-hook "^1.0.0"
+ onetime "^1.0.0"
+
+restore-cursor@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
+ integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+ dependencies:
+ onetime "^2.0.0"
+ signal-exit "^3.0.2"
+
+restore-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+ integrity sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=
+ dependencies:
+ onetime "^5.1.0"
+ signal-exit "^3.0.2"
+
+ret@~0.1.10:
+ version "0.1.15"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
+ integrity sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=
+
+retry@^0.12.0:
+ version "0.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
+ integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+
+rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
+ version "2.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+ integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w=
+ dependencies:
+ glob "^7.1.3"
+
+rimraf@^3.0.0:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=
+ dependencies:
+ glob "^7.1.3"
+
+rimraf@~2.6.2:
+ version "2.6.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
+ integrity sha1-stEE/g2Psnz54KHNqCYt04M8bKs=
+ dependencies:
+ glob "^7.1.3"
+
+ripemd160@^2.0.0, ripemd160@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
+ integrity sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=
+ dependencies:
+ hash-base "^3.0.0"
+ inherits "^2.0.1"
+
+rlp@^2.2.3:
+ version "2.2.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rlp/-/rlp-2.2.6.tgz#c80ba6266ac7a483ef1e69e8e2f056656de2fb2c"
+ integrity sha1-yAumJmrHpIPvHmno4vBWZW3i+yw=
+ dependencies:
+ bn.js "^4.11.1"
+
+rst-selector-parser@^2.2.3:
+ version "2.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91"
+ integrity sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=
+ dependencies:
+ lodash.flattendeep "^4.4.0"
+ nearley "^2.7.10"
+
+rsvp@^3.3.3:
+ version "3.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
+ integrity sha1-LpZJFZmpbN4bUV1WdKj3qRRSkmo=
+
+run-async@^2.2.0, run-async@^2.4.0:
+ version "2.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
+ integrity sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=
+
+run-queue@^1.0.0, run-queue@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
+ integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
+ dependencies:
+ aproba "^1.1.1"
+
+rx-lite-aggregates@^4.0.8:
+ version "4.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
+ integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=
+ dependencies:
+ rx-lite "*"
+
+rx-lite@*, rx-lite@^4.0.8:
+ version "4.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
+ integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=
+
+rxjs@^5.0.0-beta.11:
+ version "5.5.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc"
+ integrity sha1-b6YbinfD15PbrycL7i9D9lLXQcw=
+ dependencies:
+ symbol-observable "1.0.1"
+
+rxjs@^6.1.0, rxjs@^6.4.0, rxjs@^6.6.0, rxjs@^6.6.3:
+ version "6.6.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
+ integrity sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=
+ dependencies:
+ tslib "^1.9.0"
+
+safe-buffer@5.1.1:
+ version "5.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
+ integrity sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=
+
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+ version "5.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0=
+
+safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+ version "5.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ integrity sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=
+
+safe-regex@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
+ integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+ dependencies:
+ ret "~0.1.10"
+
+"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
+
+sane@^2.0.0:
+ version "2.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"
+ integrity sha1-tNwYYcIbQn6SlQej51HiosuKs/o=
+ dependencies:
+ anymatch "^2.0.0"
+ capture-exit "^1.2.0"
+ exec-sh "^0.2.0"
+ fb-watchman "^2.0.0"
+ micromatch "^3.1.4"
+ minimist "^1.1.1"
+ walker "~1.0.5"
+ watch "~0.18.0"
+ optionalDependencies:
+ fsevents "^1.2.3"
+
+sass-graph@2.2.5:
+ version "2.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8"
+ integrity sha1-qYHIdEa4MZ2W3OBnHkh4eb0kwug=
+ dependencies:
+ glob "^7.0.0"
+ lodash "^4.0.0"
+ scss-tokenizer "^0.2.3"
+ yargs "^13.3.2"
+
+sass-loader@^6.0.6:
+ version "6.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sass-loader/-/sass-loader-6.0.7.tgz#dd2fdb3e7eeff4a53f35ba6ac408715488353d00"
+ integrity sha1-3S/bPn7v9KU/NbpqxAhxVIg1PQA=
+ dependencies:
+ clone-deep "^2.0.1"
+ loader-utils "^1.0.1"
+ lodash.tail "^4.1.1"
+ neo-async "^2.5.0"
+ pify "^3.0.0"
+
+sass-resources-loader@^1.3.3:
+ version "1.3.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sass-resources-loader/-/sass-resources-loader-1.3.5.tgz#716ce17585451a9f516d816955b8f26dc23f9558"
+ integrity sha1-cWzhdYVFGp9RbYFpVbjybcI/lVg=
+ dependencies:
+ async "^2.1.4"
+ chalk "^1.1.3"
+ glob "^7.1.1"
+ loader-utils "^1.0.4"
+
+sax@^1.2.4, sax@~1.2.1, sax@~1.2.4:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+ integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk=
+
+scheduler@^0.19.1:
+ version "0.19.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
+ integrity sha1-Tz4u0sGn1laB9MhU+oxaHMtA8ZY=
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+
+schema-utils@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf"
+ integrity sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=
+ dependencies:
+ ajv "^5.0.0"
+
+schema-utils@^0.4.4, schema-utils@^0.4.5:
+ version "0.4.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187"
+ integrity sha1-unT1l9K+LqiAExdG7hfQoJPGgYc=
+ dependencies:
+ ajv "^6.1.0"
+ ajv-keywords "^3.1.0"
+
+schema-utils@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
+ integrity sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=
+ dependencies:
+ ajv "^6.1.0"
+ ajv-errors "^1.0.0"
+ ajv-keywords "^3.1.0"
+
+schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
+ version "2.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+ integrity sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=
+ dependencies:
+ "@types/json-schema" "^7.0.5"
+ ajv "^6.12.4"
+ ajv-keywords "^3.5.2"
+
+scroll-to-element@^2.0.0:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scroll-to-element/-/scroll-to-element-2.0.3.tgz#99b404fc6a09fe73f3c062cd5b8a14efb6404e4d"
+ integrity sha1-mbQE/GoJ/nPzwGLNW4oU77ZATk0=
+ dependencies:
+ raf "^3.4.0"
+
+scrollbar-width@^3.1.1:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrollbar-width/-/scrollbar-width-3.1.1.tgz#c62e63efa5934dac37b43da34f7550caca8444a2"
+ integrity sha1-xi5j76WTTaw3tD2jT3VQysqERKI=
+
+scrypt-js@2.0.3:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrypt-js/-/scrypt-js-2.0.3.tgz#bb0040be03043da9a012a2cea9fc9f852cfc87d4"
+ integrity sha1-uwBAvgMEPamgEqLOqfyfhSz8h9Q=
+
+scrypt-js@2.0.4:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrypt-js/-/scrypt-js-2.0.4.tgz#32f8c5149f0797672e551c07e230f834b6af5f16"
+ integrity sha1-MvjFFJ8Hl2cuVRwH4jD4NLavXxY=
+
+scrypt-js@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312"
+ integrity sha1-0xSlfCrvadGtmKE4oh/p6vqe4xI=
+
+scrypt.js@0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrypt.js/-/scrypt.js-0.2.0.tgz#af8d1465b71e9990110bedfc593b9479e03a8ada"
+ integrity sha1-r40UZbcemZARC+38WTuUeeA6ito=
+ dependencies:
+ scrypt "^6.0.2"
+ scryptsy "^1.2.1"
+
+scrypt@^6.0.2:
+ version "6.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scrypt/-/scrypt-6.0.3.tgz#04e014a5682b53fa50c2d5cce167d719c06d870d"
+ integrity sha1-BOAUpWgrU/pQwtXM4WfXGcBthw0=
+ dependencies:
+ nan "^2.0.8"
+
+scryptsy@^1.2.1:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scryptsy/-/scryptsy-1.2.1.tgz#a3225fa4b2524f802700761e2855bdf3b2d92163"
+ integrity sha1-oyJfpLJST4AnAHYeKFW987LZIWM=
+ dependencies:
+ pbkdf2 "^3.0.3"
+
+scss-tokenizer@^0.2.3:
+ version "0.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
+ integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE=
+ dependencies:
+ js-base64 "^2.1.8"
+ source-map "^0.4.2"
+
+secp256k1@^3.0.1:
+ version "3.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/secp256k1/-/secp256k1-3.8.0.tgz#28f59f4b01dbee9575f56a47034b7d2e3b3b352d"
+ integrity sha1-KPWfSwHb7pV19WpHA0t9Ljs7NS0=
+ dependencies:
+ bindings "^1.5.0"
+ bip66 "^1.1.5"
+ bn.js "^4.11.8"
+ create-hash "^1.2.0"
+ drbg.js "^1.0.1"
+ elliptic "^6.5.2"
+ nan "^2.14.0"
+ safe-buffer "^5.1.2"
+
+secp256k1@^4.0.1:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/secp256k1/-/secp256k1-4.0.2.tgz#15dd57d0f0b9fdb54ac1fa1694f40e5e9a54f4a1"
+ integrity sha1-Fd1X0PC5/bVKwfoWlPQOXppU9KE=
+ dependencies:
+ elliptic "^6.5.2"
+ node-addon-api "^2.0.0"
+ node-gyp-build "^4.2.0"
+
+seek-bzip@^1.0.5:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4"
+ integrity sha1-NcQXH1WmgJFrUqB4WezztYV/IcQ=
+ dependencies:
+ commander "^2.8.1"
+
+select-hose@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
+ integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
+
+select@^1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
+ integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
+
+selfsigned@^1.10.6:
+ version "1.10.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/selfsigned/-/selfsigned-1.10.11.tgz#24929cd906fe0f44b6d01fb23999a739537acbe9"
+ integrity sha1-JJKc2Qb+D0S20B+yOZmnOVN6y+k=
+ dependencies:
+ node-forge "^0.10.0"
+
+semver-diff@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
+ integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=
+ dependencies:
+ semver "^5.0.3"
+
+"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
+ version "5.7.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+ integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=
+
+semver@7.0.0:
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
+ integrity sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=
+
+semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
+ version "6.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+ integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=
+
+semver@~5.3.0:
+ version "5.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
+ integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
+
+send@0.17.1:
+ version "0.17.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+ integrity sha1-wdiwWfeQD3Rm3Uk4vcROEd2zdsg=
+ dependencies:
+ 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.7.2"
+ mime "1.6.0"
+ ms "2.1.1"
+ on-finished "~2.3.0"
+ range-parser "~1.2.1"
+ statuses "~1.5.0"
+
+serialize-javascript@^1.4.0, serialize-javascript@^1.7.0:
+ version "1.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb"
+ integrity sha1-z8IArvd7YAxH2pu4FJyUPnmML9s=
+
+serialize-javascript@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
+ integrity sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=
+ dependencies:
+ randombytes "^2.1.0"
+
+serve-favicon@^2.5.0:
+ version "2.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0"
+ integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=
+ dependencies:
+ etag "~1.8.1"
+ fresh "0.5.2"
+ ms "2.1.1"
+ parseurl "~1.3.2"
+ safe-buffer "5.1.1"
+
+serve-index@^1.9.1:
+ version "1.9.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
+ integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=
+ dependencies:
+ 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"
+
+serve-static@1.14.1:
+ version "1.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+ integrity sha1-Zm5jbcTwEPfvKZcKiKZ0MgiYsvk=
+ dependencies:
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ parseurl "~1.3.3"
+ send "0.17.1"
+
+serviceworker-cache-polyfill@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz#de19ee73bef21ab3c0740a37b33db62464babdeb"
+ integrity sha1-3hnuc77yGrPAdAo3sz22JGS6ves=
+
+servify@^0.1.12:
+ version "0.1.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/servify/-/servify-0.1.12.tgz#142ab7bee1f1d033b66d0707086085b17c06db95"
+ integrity sha1-FCq3vuHx0DO2bQcHCGCFsXwG25U=
+ dependencies:
+ body-parser "^1.16.0"
+ cors "^2.8.1"
+ express "^4.14.0"
+ request "^2.79.0"
+ xhr "^2.3.3"
+
+set-blocking@^2.0.0, set-blocking@~2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+ integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
+
+set-value@^2.0.0, set-value@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+ integrity sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=
+ dependencies:
+ extend-shallow "^2.0.1"
+ is-extendable "^0.1.1"
+ is-plain-object "^2.0.3"
+ split-string "^3.0.1"
+
+setimmediate@1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/setimmediate/-/setimmediate-1.0.4.tgz#20e81de622d4a02588ce0c8da8973cbcf1d3138f"
+ integrity sha1-IOgd5iLUoCWIzgyNqJc8vPHTE48=
+
+setimmediate@^1.0.4, setimmediate@^1.0.5:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+ integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+
+setprototypeof@1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
+ integrity sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=
+
+setprototypeof@1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
+ integrity sha1-fpWsskqpL1iF4KvvW6ExMw1K5oM=
+
+sha.js@^2.4.0, sha.js@^2.4.8:
+ version "2.4.11"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
+ integrity sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=
+ dependencies:
+ inherits "^2.0.1"
+ safe-buffer "^5.0.1"
+
+sha3@^1.2.2:
+ version "1.2.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sha3/-/sha3-1.2.6.tgz#102aa3e47dc793e2357902c3cce8760822f9e905"
+ integrity sha1-ECqj5H3Hk+I1eQLDzOh2CCL56QU=
+ dependencies:
+ nan "2.13.2"
+
+shallow-clone@^0.1.2:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060"
+ integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=
+ dependencies:
+ is-extendable "^0.1.1"
+ kind-of "^2.0.1"
+ lazy-cache "^0.2.3"
+ mixin-object "^2.0.1"
+
+shallow-clone@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571"
+ integrity sha1-RIDNBuiC72iyrYij6lSDLixItXE=
+ dependencies:
+ is-extendable "^0.1.1"
+ kind-of "^5.0.0"
+ mixin-object "^2.0.1"
+
+shallow-equal@^1.1.0:
+ version "1.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
+ integrity sha1-TBar+lYEOqINBQMk76aJQLDaedo=
+
+shallow-equals@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shallow-equals/-/shallow-equals-1.0.0.tgz#24b74bf1c634c11ed4c7182a6df6fb300dce4390"
+ integrity sha1-JLdL8cY0wR7Uxxgqbfb7MA3OQ5A=
+
+shallowequal@^1.0.1, shallowequal@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+ integrity sha1-GI1SHelbkIdAT9TctosT3wrk5/g=
+
+shebang-command@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
+ dependencies:
+ shebang-regex "^1.0.0"
+
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ integrity sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=
+ dependencies:
+ shebang-regex "^3.0.0"
+
+shebang-regex@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+ integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ integrity sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=
+
+shell-quote@1.6.1:
+ version "1.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
+ integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=
+ dependencies:
+ array-filter "~0.0.0"
+ array-map "~0.0.0"
+ array-reduce "~0.0.0"
+ jsonify "~0.0.0"
+
+shell-quote@1.7.2:
+ version "1.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
+ integrity sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I=
+
+shelljs@^0.8.3:
+ version "0.8.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2"
+ integrity sha1-3naE/ut2f4cWsyYHiooAh1iQ48I=
+ dependencies:
+ glob "^7.0.0"
+ interpret "^1.0.0"
+ rechoir "^0.6.2"
+
+shellwords@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
+ integrity sha1-1rkYHBpI05cyTISHHvvPxz/AZUs=
+
+side-channel@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ integrity sha1-785cj9wQTudRslxY1CkAEfpeos8=
+ dependencies:
+ call-bind "^1.0.0"
+ get-intrinsic "^1.0.2"
+ object-inspect "^1.9.0"
+
+signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
+ version "3.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
+ integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=
+
+simple-concat@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f"
+ integrity sha1-9Gl2CCujXCJj8cirXt/ibEHJVS8=
+
+simple-get@^2.7.0:
+ version "2.8.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d"
+ integrity sha1-DiLpHUV12HYgYgvJEwjVenf0S10=
+ dependencies:
+ decompress-response "^3.3.0"
+ once "^1.3.1"
+ simple-concat "^1.0.0"
+
+simplebar-react@^1.0.0-alpha.6:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/simplebar-react/-/simplebar-react-1.2.3.tgz#bd81fa9827628470e9470d06caef6ece15e1c882"
+ integrity sha1-vYH6mCdihHDpRw0Gyu9uzhXhyII=
+ dependencies:
+ prop-types "^15.6.1"
+ simplebar "^4.2.3"
+
+simplebar@^4.2.3:
+ version "4.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/simplebar/-/simplebar-4.2.3.tgz#dac40aced299c17928329eab3d5e6e795fafc10c"
+ integrity sha1-2sQKztKZwXkoMp6rPV5ueV+vwQw=
+ dependencies:
+ can-use-dom "^0.1.0"
+ core-js "^3.0.1"
+ lodash.debounce "^4.0.8"
+ lodash.memoize "^4.1.2"
+ lodash.throttle "^4.1.1"
+ resize-observer-polyfill "^1.5.1"
+
+sister@^3.0.0:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sister/-/sister-3.0.2.tgz#bb3e39f07b1f75bbe1945f29a27ff1e5a2f26be4"
+ integrity sha1-uz458HsfdbvhlF8pon/x5aLya+Q=
+
+sisteransi@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce"
+ integrity sha1-VDFEfV99FnWqxmfM0LhlpJlMs84=
+
+slash@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
+ integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
+
+slice-ansi@0.0.4:
+ version "0.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
+ integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=
+
+slice-ansi@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
+ integrity sha1-BE8aSdiEL/MHqta1Be0Xi9lQE00=
+ dependencies:
+ is-fullwidth-code-point "^2.0.0"
+
+snapdragon-node@^2.0.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
+ integrity sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=
+ dependencies:
+ define-property "^1.0.0"
+ isobject "^3.0.0"
+ snapdragon-util "^3.0.1"
+
+snapdragon-util@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
+ integrity sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=
+ dependencies:
+ kind-of "^3.2.0"
+
+snapdragon@^0.8.1:
+ version "0.8.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
+ integrity sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=
+ dependencies:
+ 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"
+
+sntp@1.x.x:
+ version "1.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
+ integrity sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=
+ dependencies:
+ hoek "2.x.x"
+
+sockjs-client@1.1.5:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sockjs-client/-/sockjs-client-1.1.5.tgz#1bb7c0f7222c40f42adf14f4442cbd1269771a83"
+ integrity sha1-G7fA9yIsQPQq3xT0RCy9Eml3GoM=
+ dependencies:
+ debug "^2.6.6"
+ eventsource "0.1.6"
+ faye-websocket "~0.11.0"
+ inherits "^2.0.1"
+ json3 "^3.3.2"
+ url-parse "^1.1.8"
+
+sockjs-client@1.4.0:
+ version "1.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"
+ integrity sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U=
+ dependencies:
+ debug "^3.2.5"
+ eventsource "^1.0.7"
+ faye-websocket "~0.11.1"
+ inherits "^2.0.3"
+ json3 "^3.3.2"
+ url-parse "^1.4.3"
+
+sockjs@0.3.19:
+ version "0.3.19"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d"
+ integrity sha1-2Xa76ACve9IK4IWY1YI5NQiZPA0=
+ dependencies:
+ faye-websocket "^0.10.0"
+ uuid "^3.0.1"
+
+sort-keys@^1.0.0:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
+ integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
+ dependencies:
+ is-plain-obj "^1.0.0"
+
+source-list-map@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
+ integrity sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=
+
+source-map-resolve@^0.5.0:
+ version "0.5.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
+ integrity sha1-GQhmvs51U+H48mei7oLGBrVQmho=
+ dependencies:
+ 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@^0.4.15:
+ version "0.4.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
+ integrity sha1-Aoam3ovkJkEzhZTpfM6nXwosWF8=
+ dependencies:
+ source-map "^0.5.6"
+
+source-map-support@^0.5.6, source-map-support@~0.5.12:
+ version "0.5.19"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
+ integrity sha1-qYti+G3K9PZzmWSMCFKRq56P7WE=
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map-url@^0.4.0:
+ version "0.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
+ integrity sha1-CvZmBadFpaL5HPG7+KevvCg97FY=
+
+source-map@^0.4.2:
+ version "0.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
+ integrity sha1-66T12pwNyZneaAMti092FzZSA2s=
+ dependencies:
+ amdefine ">=0.0.4"
+
+source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7:
+ version "0.5.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+ integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+
+source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
+ version "0.6.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
+
+source-map@^0.7.3:
+ version "0.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
+ integrity sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=
+
+space-separated-tokens@^1.0.0:
+ version "1.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
+ integrity sha1-hfMsPRDZaCAH6RdBTdxcJtGqaJk=
+
+spdx-correct@^3.0.0:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
+ integrity sha1-3s6BrJweZxPl99G28X1Gj6U9iak=
+ dependencies:
+ spdx-expression-parse "^3.0.0"
+ spdx-license-ids "^3.0.0"
+
+spdx-exceptions@^2.1.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
+ integrity sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=
+
+spdx-expression-parse@^3.0.0:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
+ integrity sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=
+ dependencies:
+ spdx-exceptions "^2.1.0"
+ spdx-license-ids "^3.0.0"
+
+spdx-license-ids@^3.0.0:
+ version "3.0.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f"
+ integrity sha1-illRNd75WSvaaXCUdPHL7qfCRn8=
+
+spdy-transport@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
+ integrity sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=
+ dependencies:
+ 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"
+
+spdy@^4.0.1:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b"
+ integrity sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=
+ dependencies:
+ debug "^4.1.0"
+ handle-thing "^2.0.0"
+ http-deceiver "^1.2.7"
+ select-hose "^2.0.0"
+ spdy-transport "^3.0.0"
+
+spin.js@^2.3.2:
+ version "2.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/spin.js/-/spin.js-2.3.2.tgz#6caa56d520673450fd5cfbc6971e6d0772c37a1a"
+ integrity sha1-bKpW1SBnNFD9XPvGlx5tB3LDeho=
+
+split-string@^3.0.1, split-string@^3.0.2:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
+ integrity sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=
+ dependencies:
+ extend-shallow "^3.0.0"
+
+split@0.3:
+ version "0.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f"
+ integrity sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=
+ dependencies:
+ through "2"
+
+sprintf-js@~1.0.2:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+ integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
+
+sshpk@^1.7.0:
+ version "1.16.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
+ integrity sha1-+2YcC+8ps520B2nuOfpwCT1vaHc=
+ dependencies:
+ 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"
+
+ssr-window@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ssr-window/-/ssr-window-1.0.1.tgz#30752a6a4666e7767f0b7e6aa6fc2fdbd0d9b369"
+ integrity sha1-MHUqakZm53Z/C35qpvwv29DZs2k=
+
+ssr-window@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ssr-window/-/ssr-window-2.0.0.tgz#98c301aef99523317f8d69618f0010791096efc4"
+ integrity sha1-mMMBrvmVIzF/jWlhjwAQeRCW78Q=
+
+ssri@^5.2.4:
+ version "5.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06"
+ integrity sha1-ujhyycbTOgcEp9cf8EXl7EiZnQY=
+ dependencies:
+ safe-buffer "^5.1.1"
+
+ssri@^6.0.1:
+ version "6.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
+ integrity sha1-FXk5E08gRk5zAd26PpD/qPdyisU=
+ dependencies:
+ figgy-pudding "^3.5.1"
+
+ssri@^7.0.0:
+ version "7.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ssri/-/ssri-7.1.1.tgz#33e44f896a967158e3c63468e47ec46613b95b5f"
+ integrity sha1-M+RPiWqWcVjjxjRo5H7EZhO5W18=
+ dependencies:
+ figgy-pudding "^3.5.1"
+ minipass "^3.1.1"
+
+stable@^0.1.8:
+ version "0.1.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
+ integrity sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=
+
+stack-utils@^1.0.1:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b"
+ integrity sha1-oZsLAZR+ACnI5FHV1hpJj1uxRxs=
+ dependencies:
+ escape-string-regexp "^2.0.0"
+
+standalone-react-addons-pure-render-mixin@^0.1.1:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/standalone-react-addons-pure-render-mixin/-/standalone-react-addons-pure-render-mixin-0.1.1.tgz#3c7409f4c79c40de9ac72c616cf679a994f37551"
+ integrity sha1-PHQJ9MecQN6axyxhbPZ5qZTzdVE=
+
+start-server-and-test@^1.4.1:
+ version "1.12.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/start-server-and-test/-/start-server-and-test-1.12.5.tgz#d19d2c19d6db6b30df5add68ec26a1ab204525d6"
+ integrity sha1-0Z0sGdbbazDfWt1o7CahqyBFJdY=
+ dependencies:
+ bluebird "3.7.2"
+ check-more-types "2.24.0"
+ debug "4.3.1"
+ execa "5.1.1"
+ lazy-ass "1.6.0"
+ ps-tree "1.2.0"
+ wait-on "5.3.0"
+
+state-toggle@^1.0.0:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
+ integrity sha1-4SOxaojhQxObCcaFIiG8mBWRff4=
+
+static-extend@^0.1.1:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
+ integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+ dependencies:
+ define-property "^0.2.5"
+ object-copy "^0.1.0"
+
+"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
+ version "1.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+
+stdout-stream@^1.4.0:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de"
+ integrity sha1-WsF0zdXNcmEEqgwLK9g4FdjVNd4=
+ dependencies:
+ readable-stream "^2.0.1"
+
+stealthy-require@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
+ integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
+
+store2@^2.7.1:
+ version "2.12.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf"
+ integrity sha1-4fG34aWbYIOyWWqNBn9u6I/U088=
+
+stream-browserify@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
+ integrity sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs=
+ dependencies:
+ inherits "~2.0.1"
+ readable-stream "^2.0.2"
+
+stream-combiner@~0.0.4:
+ version "0.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14"
+ integrity sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=
+ dependencies:
+ duplexer "~0.1.1"
+
+stream-each@^1.1.0:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
+ integrity sha1-6+J6DDibBPvMIzZClS4Qcxr6m64=
+ dependencies:
+ end-of-stream "^1.1.0"
+ stream-shift "^1.0.0"
+
+stream-http@^2.7.2:
+ version "2.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
+ integrity sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=
+ dependencies:
+ 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@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
+ integrity sha1-1wiCgVWasneEJCebCHfaPDktWj0=
+
+stream-to-observable@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe"
+ integrity sha1-Rb8dny19wJvtgfHDB8Qw5ouEz/4=
+
+strict-uri-encode@^1.0.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
+ integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
+
+string-length@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
+ integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=
+ dependencies:
+ astral-regex "^1.0.0"
+ strip-ansi "^4.0.0"
+
+string-width@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
+ integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
+ dependencies:
+ code-point-at "^1.0.0"
+ is-fullwidth-code-point "^1.0.0"
+ strip-ansi "^3.0.0"
+
+"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
+ integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=
+ dependencies:
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^4.0.0"
+
+string-width@^3.0.0, string-width@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ integrity sha1-InZ74htirxCBV0MG9prFG2IgOWE=
+ dependencies:
+ emoji-regex "^7.0.1"
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^5.1.0"
+
+string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
+ version "4.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
+ integrity sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU=
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.0"
+
+"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.5:
+ version "4.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
+ integrity sha1-WTcGROHbfkwMBFJ3aQz3sBIDxNo=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+ 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.padend@^3.0.0:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311"
+ integrity sha1-aFjKTzXFJo69XoYV4TJ9VfWe4xE=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+string.prototype.padstart@^3.0.0:
+ version "3.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.padstart/-/string.prototype.padstart-3.1.2.tgz#f9b9ce66bedd7c06acb40ece6e34c6046e1a019d"
+ integrity sha1-+bnOZr7dfAastA7ObjTGBG4aAZ0=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+string.prototype.trim@^1.2.1:
+ version "1.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz#6014689baf5efaf106ad031a5fa45157666ed1bd"
+ integrity sha1-YBRom69e+vEGrQMaX6RRV2Zu0b0=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+string.prototype.trimend@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
+ integrity sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+string.prototype.trimstart@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
+ integrity sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+string_decoder@^1.0.0, string_decoder@^1.1.1:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+ integrity sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=
+ dependencies:
+ safe-buffer "~5.2.0"
+
+string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+ integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=
+ dependencies:
+ safe-buffer "~5.1.0"
+
+stringstream@~0.0.4:
+ version "0.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72"
+ integrity sha1-eIAiWw1K0Q4wkn0Weh1vL9OzOnI=
+
+strip-ansi@4.0.0, strip-ansi@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
+ integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
+ dependencies:
+ ansi-regex "^3.0.0"
+
+strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
+ version "5.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=
+ dependencies:
+ ansi-regex "^4.1.0"
+
+strip-ansi@^3.0.0, strip-ansi@^3.0.1:
+ version "3.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+ dependencies:
+ ansi-regex "^2.0.0"
+
+strip-ansi@^6.0.0:
+ version "6.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+ integrity sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=
+ dependencies:
+ ansi-regex "^5.0.0"
+
+strip-bom@3.0.0, strip-bom@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
+ integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
+
+strip-bom@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
+ integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
+ dependencies:
+ is-utf8 "^0.2.0"
+
+strip-dirs@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-dirs/-/strip-dirs-2.1.0.tgz#4987736264fc344cf20f6c34aca9d13d1d4ed6c5"
+ integrity sha1-SYdzYmT8NEzyD2w0rKnRPR1O1sU=
+ dependencies:
+ is-natural-number "^4.0.1"
+
+strip-eof@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+ integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+
+strip-final-newline@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+ integrity sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=
+
+strip-hex-prefix@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz#0c5f155fef1151373377de9dbb588da05500e36f"
+ integrity sha1-DF8VX+8RUTczd96du1iNoFUA428=
+ dependencies:
+ is-hex-prefixed "1.0.0"
+
+strip-indent@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
+ integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=
+ dependencies:
+ get-stdin "^4.0.1"
+
+strip-indent@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+ integrity sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=
+ dependencies:
+ min-indent "^1.0.0"
+
+strip-json-comments@~2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+ integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+
+style-loader@0.19.0:
+ version "0.19.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/style-loader/-/style-loader-0.19.0.tgz#7258e788f0fee6a42d710eaf7d6c2412a4c50759"
+ integrity sha1-cljniPD+5qQtcQ6vfWwkEqTFB1k=
+ dependencies:
+ loader-utils "^1.0.2"
+ schema-utils "^0.3.0"
+
+style-loader@^1.0.0:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
+ integrity sha1-gotKOzt+eqWEfOe66eh0USEUJJ4=
+ dependencies:
+ loader-utils "^2.0.0"
+ schema-utils "^2.7.0"
+
+stylis-rule-sheet@^0.0.10:
+ version "0.0.10"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
+ integrity sha1-ROZKKwdmQ/S1Ll/3HvwE2MPEpDA=
+
+stylis@^3.5.0:
+ version "3.5.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
+ integrity sha1-9mXyX14pnPPWRlSrlJpXx2i3P74=
+
+subscribe-ui-event@^1.0.0:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/subscribe-ui-event/-/subscribe-ui-event-1.1.2.tgz#08694449ba3dbad2933ba677d7896b386bfba4d0"
+ integrity sha1-CGlESbo9utKTO6Z314lrOGv7pNA=
+ dependencies:
+ eventemitter3 "^2.0.0"
+ lodash "^4.17.10"
+ raf "^3.0.0"
+
+supports-color@5.1.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5"
+ integrity sha1-BYoCHRthn33fOYDXEuo1kM5949U=
+ dependencies:
+ has-flag "^2.0.0"
+
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+ integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+
+supports-color@^3.1.2, supports-color@^3.2.3:
+ version "3.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
+ integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
+ dependencies:
+ has-flag "^1.0.0"
+
+supports-color@^4.0.0:
+ version "4.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
+ integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=
+ dependencies:
+ has-flag "^2.0.0"
+
+supports-color@^5.3.0, supports-color@^5.4.0:
+ version "5.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-color@^6.1.0:
+ version "6.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
+ integrity sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-color@^7.0.0, supports-color@^7.1.0:
+ version "7.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=
+ dependencies:
+ has-flag "^4.0.0"
+
+svg-parser@^2.0.0:
+ version "2.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
+ integrity sha1-/cLinhOVFzYUC3bLEiyO5mMOtrU=
+
+svgo@^0.7.0, svgo@^0.7.2:
+ version "0.7.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
+ integrity sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=
+ dependencies:
+ coa "~1.0.1"
+ colors "~1.1.2"
+ csso "~2.3.1"
+ js-yaml "~3.7.0"
+ mkdirp "~0.5.1"
+ sax "~1.2.1"
+ whet.extend "~0.9.9"
+
+svgo@^1.2.2:
+ version "1.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
+ integrity sha1-ttxRHAYzRsnkFbgeQ0ARRbltQWc=
+ dependencies:
+ 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"
+
+sw-precache-webpack-plugin@^0.11.5:
+ version "0.11.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sw-precache-webpack-plugin/-/sw-precache-webpack-plugin-0.11.5.tgz#9b53f65a4966e3adc298e256b3cef7a55c73fdfd"
+ integrity sha1-m1P2Wklm463CmOJWs873pVxz/f0=
+ dependencies:
+ del "^3.0.0"
+ sw-precache "^5.2.1"
+ uglify-es "^3.3.9"
+
+sw-precache@^5.2.1:
+ version "5.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sw-precache/-/sw-precache-5.2.1.tgz#06134f319eec68f3b9583ce9a7036b1c119f7179"
+ integrity sha1-BhNPMZ7saPO5WDzppwNrHBGfcXk=
+ dependencies:
+ dom-urls "^1.1.0"
+ es6-promise "^4.0.5"
+ glob "^7.1.1"
+ lodash.defaults "^4.2.0"
+ lodash.template "^4.4.0"
+ meow "^3.7.0"
+ mkdirp "^0.5.1"
+ pretty-bytes "^4.0.2"
+ sw-toolbox "^3.4.0"
+ update-notifier "^2.3.0"
+
+sw-toolbox@^3.4.0:
+ version "3.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/sw-toolbox/-/sw-toolbox-3.6.0.tgz#26df1d1c70348658e4dea2884319149b7b3183b5"
+ integrity sha1-Jt8dHHA0hljk3qKIQxkUm3sxg7U=
+ dependencies:
+ path-to-regexp "^1.0.1"
+ serviceworker-cache-polyfill "^4.0.0"
+
+swarm-js@0.1.37:
+ version "0.1.37"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/swarm-js/-/swarm-js-0.1.37.tgz#27d485317a340bbeec40292af783cc10acfa4663"
+ integrity sha1-J9SFMXo0C77sQCkq94PMEKz6RmM=
+ dependencies:
+ bluebird "^3.5.0"
+ buffer "^5.0.5"
+ decompress "^4.0.0"
+ eth-lib "^0.1.26"
+ fs-extra "^2.1.2"
+ fs-promise "^2.0.0"
+ got "^7.1.0"
+ mime-types "^2.1.16"
+ mkdirp-promise "^5.0.1"
+ mock-fs "^4.1.0"
+ setimmediate "^1.0.5"
+ tar.gz "^1.0.5"
+ xhr-request-promise "^0.1.2"
+
+swiper@^4.4.6:
+ version "4.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/swiper/-/swiper-4.5.1.tgz#ed43998e780ceb478610079c8d23fd425eca636f"
+ integrity sha1-7UOZjngM60eGEAecjSP9Ql7KY28=
+ dependencies:
+ dom7 "^2.1.3"
+ ssr-window "^1.0.1"
+
+symbol-observable@1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
+ integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=
+
+symbol-observable@^1.0.2:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
+ integrity sha1-wiaIrtTqs83C3+rLtWFmBWCgCAQ=
+
+symbol-tree@^3.2.2:
+ version "3.2.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
+ integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=
+
+symbol.prototype.description@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/symbol.prototype.description/-/symbol.prototype.description-1.0.4.tgz#c30edd3fe8c040d941cf7dc15842be15adf66855"
+ integrity sha1-ww7dP+jAQNlBz33BWEK+Fa32aFU=
+ dependencies:
+ call-bind "^1.0.2"
+ es-abstract "^1.18.0-next.2"
+ has-symbols "^1.0.1"
+ object.getownpropertydescriptors "^2.1.2"
+
+table@4.0.2:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
+ integrity sha1-ozRHN1OR52atNNNIbm4q7chNLjY=
+ dependencies:
+ ajv "^5.2.3"
+ ajv-keywords "^2.1.0"
+ chalk "^2.1.0"
+ lodash "^4.17.4"
+ slice-ansi "1.0.0"
+ string-width "^2.1.1"
+
+tapable@^1.0.0, tapable@^1.1.3:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
+ integrity sha1-ofzMBrWNth/XpF2i2kT186Pme6I=
+
+tar-stream@^1.5.2:
+ version "1.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555"
+ integrity sha1-jqVdqzeXIlPZqa+Q/c1VmuQ1xVU=
+ dependencies:
+ bl "^1.0.0"
+ buffer-alloc "^1.2.0"
+ end-of-stream "^1.0.0"
+ fs-constants "^1.0.0"
+ readable-stream "^2.3.0"
+ to-buffer "^1.1.1"
+ xtend "^4.0.0"
+
+tar.gz@^1.0.5:
+ version "1.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tar.gz/-/tar.gz-1.0.7.tgz#577ef2c595faaa73452ef0415fed41113212257b"
+ integrity sha1-V37yxZX6qnNFLvBBX+1BETISJXs=
+ dependencies:
+ bluebird "^2.9.34"
+ commander "^2.8.1"
+ fstream "^1.0.8"
+ mout "^0.11.0"
+ tar "^2.1.1"
+
+tar@^2.0.0, tar@^2.1.1:
+ version "2.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40"
+ integrity sha1-DKiEhWLHKZuLRG/2pNYM27I+3EA=
+ dependencies:
+ block-stream "*"
+ fstream "^1.0.12"
+ inherits "2"
+
+telejson@^3.2.0:
+ version "3.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/telejson/-/telejson-3.3.0.tgz#6d814f3c0d254d5c4770085aad063e266b56ad03"
+ integrity sha1-bYFPPA0lTVxHcAharQY+JmtWrQM=
+ dependencies:
+ "@types/is-function" "^1.0.0"
+ global "^4.4.0"
+ is-function "^1.0.1"
+ is-regex "^1.0.4"
+ is-symbol "^1.0.3"
+ isobject "^4.0.0"
+ lodash "^4.17.15"
+ memoizerific "^1.11.3"
+
+term-size@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
+ integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=
+ dependencies:
+ execa "^0.7.0"
+
+term-size@^2.1.0:
+ version "2.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
+ integrity sha1-KmpUhAQywvtjIP6g9BVTHpAYn1Q=
+
+terser-webpack-plugin@^1.4.3:
+ version "1.4.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
+ integrity sha1-oheu+uozDnNP+sthIOwfoxLWBAs=
+ dependencies:
+ 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"
+
+terser-webpack-plugin@^2.1.2, terser-webpack-plugin@^2.2.1:
+ version "2.3.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724"
+ integrity sha1-iUdkoZsHQ/L3BOfCqEjFKDppZyQ=
+ dependencies:
+ cacache "^13.0.1"
+ find-cache-dir "^3.3.1"
+ jest-worker "^25.4.0"
+ p-limit "^2.3.0"
+ schema-utils "^2.6.6"
+ serialize-javascript "^4.0.0"
+ source-map "^0.6.1"
+ terser "^4.6.12"
+ webpack-sources "^1.4.3"
+
+terser@^4.1.2, terser@^4.6.12, terser@^4.6.3:
+ version "4.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
+ integrity sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc=
+ dependencies:
+ commander "^2.20.0"
+ source-map "~0.6.1"
+ source-map-support "~0.5.12"
+
+test-exclude@^4.2.1:
+ version "4.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20"
+ integrity sha1-qaXmRHTkOYM5JFoKdprXwvSpfCA=
+ dependencies:
+ arrify "^1.0.1"
+ micromatch "^2.3.11"
+ object-assign "^4.1.0"
+ read-pkg-up "^1.0.1"
+ require-main-filename "^1.0.1"
+
+test-exclude@^6.0.0:
+ version "6.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
+ integrity sha1-BKhphmHYBepvopO2y55jrARO8V4=
+ dependencies:
+ "@istanbuljs/schema" "^0.1.2"
+ glob "^7.1.4"
+ minimatch "^3.0.4"
+
+text-table@0.2.0, text-table@~0.2.0:
+ version "0.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+ integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
+
+thenify-all@^1.0.0, thenify-all@^1.6.0:
+ version "1.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
+ integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=
+ dependencies:
+ thenify ">= 3.1.0 < 4"
+
+"thenify@>= 3.1.0 < 4":
+ version "3.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
+ integrity sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8=
+ dependencies:
+ any-promise "^1.0.0"
+
+throat@^4.0.0:
+ version "4.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
+ integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=
+
+throttle-debounce@^2.1.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/throttle-debounce/-/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2"
+ integrity sha1-/TGGXmZQIHHkEYF+JBRls+nDcuI=
+
+throttleit@~0.0.2:
+ version "0.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"
+ integrity sha1-z+34jmDADdlpe2H90qg0OptoDq8=
+
+through2@^2.0.0:
+ version "2.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
+ integrity sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=
+ dependencies:
+ readable-stream "~2.3.6"
+ xtend "~4.0.1"
+
+through@2, through@^2.3.6, through@^2.3.8, through@~2.3, through@~2.3.1:
+ version "2.3.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+ integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
+
+thunky@^1.0.2:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
+ integrity sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=
+
+timed-out@^4.0.0, timed-out@^4.0.1:
+ version "4.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
+ integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
+
+timers-browserify@^2.0.4:
+ version "2.0.12"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
+ integrity sha1-RKRcEfv0B/NPl7zNFXfGUjYbAO4=
+ dependencies:
+ setimmediate "^1.0.4"
+
+tiny-emitter@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
+ integrity sha1-HRpW7fxRxD6GPLtTgqcjMONVVCM=
+
+tiny-invariant@^1.0.2:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875"
+ integrity sha1-Y0xfjv3CdxS384bDXmdgmR0jCHU=
+
+tiny-warning@^1.0.0, tiny-warning@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
+ integrity sha1-lKMNtFPfTGQ9D9VmBg1gqHXYR1Q=
+
+tinycolor2@^1.4.1:
+ version "1.4.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
+ integrity sha1-P2pNEHGtB2dtf6Ry4frECnGdiAM=
+
+tmp@0.0.31:
+ version "0.0.31"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"
+ integrity sha1-jzirlDjhcxXl29izZX6L+yd65Kc=
+ dependencies:
+ os-tmpdir "~1.0.1"
+
+tmp@^0.0.33:
+ version "0.0.33"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
+ integrity sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=
+ dependencies:
+ os-tmpdir "~1.0.2"
+
+tmpl@1.0.x:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
+ integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
+
+to-arraybuffer@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
+ integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
+
+to-buffer@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80"
+ integrity sha1-STvUj2LXxD/N7TE6A9ytsuEhOoA=
+
+to-fast-properties@^1.0.3:
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
+ integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
+
+to-fast-properties@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+ integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+
+to-object-path@^0.3.0:
+ version "0.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
+ integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
+ dependencies:
+ kind-of "^3.0.2"
+
+to-regex-range@^2.1.0:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
+ integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
+ dependencies:
+ is-number "^3.0.0"
+ repeat-string "^1.6.1"
+
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=
+ dependencies:
+ is-number "^7.0.0"
+
+to-regex@^3.0.1, to-regex@^3.0.2:
+ version "3.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
+ integrity sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=
+ dependencies:
+ define-property "^2.0.2"
+ extend-shallow "^3.0.2"
+ regex-not "^1.0.2"
+ safe-regex "^1.1.0"
+
+toggle-selection@^1.0.6:
+ version "1.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
+ integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI=
+
+toidentifier@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+ integrity sha1-fhvjRw8ed5SLxD2Uo8j013UrpVM=
+
+tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.5.0:
+ version "2.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
+ integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI=
+ dependencies:
+ psl "^1.1.28"
+ punycode "^2.1.1"
+
+tough-cookie@~2.3.0:
+ version "2.3.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
+ integrity sha1-7GDO44rGdQY//JelwYlwV47oNlU=
+ dependencies:
+ punycode "^1.4.1"
+
+tr46@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
+ integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+ dependencies:
+ punycode "^2.1.0"
+
+trim-newlines@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
+ integrity sha1-WIeWa7WCpFA6QetST301ARgVphM=
+
+trim-right@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
+ integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
+
+trim-trailing-lines@^1.0.0:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0"
+ integrity sha1-vUq77HzIgEYvELLItc4djR7HwsA=
+
+trim@0.0.1:
+ version "0.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
+ integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
+
+trough@^1.0.0:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
+ integrity sha1-uLY5zvrX0LsqvTfUM/+Ck++l9AY=
+
+"true-case-path@^1.0.2":
+ version "1.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d"
+ integrity sha1-+BO1qMhrQNpZYGcisUTjIleZ9H0=
+ dependencies:
+ glob "^7.1.2"
+
+ts-dedent@^1.1.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ts-dedent/-/ts-dedent-1.2.0.tgz#6aa2229d837159bb6d635b6b233002423b91e0b0"
+ integrity sha1-aqIinYNxWbttY1trIzACQjuR4LA=
+
+ts-invariant@^0.4.0, ts-invariant@^0.4.4:
+ version "0.4.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86"
+ integrity sha1-l6UjUYaI+TqvrQGw6A64A+sqvYY=
+ dependencies:
+ tslib "^1.9.3"
+
+ts-pnp@^1.1.2:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
+ integrity sha1-pQCtCEsHmPHDBxrzkeZZEshrypI=
+
+tsconfig-paths@^3.9.0:
+ version "3.9.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b"
+ integrity sha1-CYVHpsREiAfo/Ljq4IEGTumjyQs=
+ dependencies:
+ "@types/json5" "^0.0.29"
+ json5 "^1.0.1"
+ minimist "^1.2.0"
+ strip-bom "^3.0.0"
+
+tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3:
+ version "1.14.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
+ integrity sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=
+
+tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c"
+ integrity sha1-+yxHWXfjXiQTEe3iaTzuHsZpj1w=
+
+tty-browserify@0.0.0:
+ version "0.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
+ integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
+
+tunnel-agent@^0.6.0:
+ version "0.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
+ integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
+ dependencies:
+ safe-buffer "^5.0.1"
+
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
+ version "0.14.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
+ integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
+
+type-check@~0.3.2:
+ version "0.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
+ integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
+ dependencies:
+ prelude-ls "~1.1.2"
+
+type-detect@4.0.8:
+ version "4.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
+ integrity sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=
+
+type-fest@^0.21.3:
+ version "0.21.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+ integrity sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=
+
+type-fest@^0.8.1:
+ version "0.8.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+ integrity sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=
+
+type-is@~1.6.17, type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=
+ dependencies:
+ media-typer "0.3.0"
+ mime-types "~2.1.24"
+
+typed-styles@^0.0.7:
+ version "0.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9"
+ integrity sha1-kzkqAIeUxFlRGf9i3eaAnbxAo9k=
+
+typedarray-to-buffer@^3.1.2:
+ version "3.1.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+ integrity sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=
+ dependencies:
+ is-typedarray "^1.0.0"
+
+typedarray@^0.0.6:
+ version "0.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+ integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+
+uglify-es@^3.3.4, uglify-es@^3.3.9:
+ version "3.3.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
+ integrity sha1-DBxPBwC+2NvBJM2zBNJZLKID5nc=
+ dependencies:
+ commander "~2.13.0"
+ source-map "~0.6.1"
+
+uglify-js@^3.1.4, uglify-js@^3.6.0:
+ version "3.13.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uglify-js/-/uglify-js-3.13.9.tgz#4d8d21dcd497f29cfd8e9378b9df123ad025999b"
+ integrity sha1-TY0h3NSX8pz9jpN4ud8SOtAlmZs=
+
+uglifyjs-webpack-plugin@^1.2.4:
+ version "1.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz#75f548160858163a08643e086d5fefe18a5d67de"
+ integrity sha1-dfVIFghYFjoIZD4IbV/v4YpdZ94=
+ dependencies:
+ cacache "^10.0.4"
+ find-cache-dir "^1.0.0"
+ schema-utils "^0.4.5"
+ serialize-javascript "^1.4.0"
+ source-map "^0.6.1"
+ uglify-es "^3.3.4"
+ webpack-sources "^1.1.0"
+ worker-farm "^1.5.2"
+
+uglifyjs-webpack-plugin@^2.1.2:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz#e75bc80e7f1937f725954c9b4c5a1e967ea9d0d7"
+ integrity sha1-51vIDn8ZN/cllUybTFoeln6p0Nc=
+ dependencies:
+ cacache "^12.0.2"
+ find-cache-dir "^2.1.0"
+ is-wsl "^1.1.0"
+ schema-utils "^1.0.0"
+ serialize-javascript "^1.7.0"
+ source-map "^0.6.1"
+ uglify-js "^3.6.0"
+ webpack-sources "^1.4.0"
+ worker-farm "^1.7.0"
+
+ultron@~1.1.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
+ integrity sha1-n+FTahCmZKZSZqHjzPhf02MCvJw=
+
+unbox-primitive@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
+ integrity sha1-CF4hViXsMWJXTciFmr7nilmxRHE=
+ dependencies:
+ function-bind "^1.1.1"
+ has-bigints "^1.0.1"
+ has-symbols "^1.0.2"
+ which-boxed-primitive "^1.0.2"
+
+unbzip2-stream@^1.0.9:
+ version "1.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7"
+ integrity sha1-sNoExDcTEd93HNwhXofyEwmRrOc=
+ dependencies:
+ buffer "^5.2.1"
+ through "^2.3.8"
+
+uncontrollable@^5.0.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uncontrollable/-/uncontrollable-5.1.0.tgz#7e9a1c50ea24e3c78b625e52d21ff3f758c7bd59"
+ integrity sha1-fpocUOok48eLYl5S0h/z91jHvVk=
+ dependencies:
+ invariant "^2.2.4"
+
+underscore@1.8.3:
+ version "1.8.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"
+ integrity sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=
+
+unfetch@^4.1.0:
+ version "4.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
+ integrity sha1-fiGw7302PY2a8PuSmlVV9u+Xo74=
+
+unherit@^1.0.4:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
+ integrity sha1-bJtQPytBsmIzDIDpHIYUq9qmnCI=
+ dependencies:
+ inherits "^2.0.0"
+ xtend "^4.0.0"
+
+unicode-canonical-property-names-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
+ integrity sha1-JhmADEyCWADv3YNDr33Zkzy+KBg=
+
+unicode-match-property-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
+ integrity sha1-jtKjJWmWG86SJ9Cc0/+7j+1fAgw=
+ dependencies:
+ unicode-canonical-property-names-ecmascript "^1.0.4"
+ unicode-property-aliases-ecmascript "^1.0.4"
+
+unicode-match-property-value-ecmascript@^1.2.0:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
+ integrity sha1-DZH2AO7rMJaqlisdb8iIduZOpTE=
+
+unicode-property-aliases-ecmascript@^1.0.4:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
+ integrity sha1-3Vepn2IHvt/0Yoq++5TFDblByPQ=
+
+unified@^6.1.5:
+ version "6.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba"
+ integrity sha1-f71jD3GRJtZ9QMZEt+P2FwNfbbo=
+ dependencies:
+ bail "^1.0.0"
+ extend "^3.0.0"
+ is-plain-obj "^1.1.0"
+ trough "^1.0.0"
+ vfile "^2.0.0"
+ x-is-string "^0.1.0"
+
+union-value@^1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+ integrity sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=
+ dependencies:
+ arr-union "^3.1.0"
+ get-value "^2.0.6"
+ is-extendable "^0.1.1"
+ set-value "^2.0.1"
+
+uniq@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
+ integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
+
+uniqs@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
+ integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
+
+unique-filename@^1.1.0, unique-filename@^1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
+ integrity sha1-HWl2k2mtoFgxA6HmrodoG1ZXMjA=
+ dependencies:
+ unique-slug "^2.0.0"
+
+unique-slug@^2.0.0:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+ integrity sha1-uqvOkQg/xk6UWw861hPiZPfNTmw=
+ dependencies:
+ imurmurhash "^0.1.4"
+
+unique-string@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
+ integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=
+ dependencies:
+ crypto-random-string "^1.0.0"
+
+unist-util-is@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
+ integrity sha1-2ehDgcJGjoJinkpb6dfQWi3TJM0=
+
+unist-util-remove-position@^1.0.0:
+ version "1.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz#ec037348b6102c897703eee6d0294ca4755a2020"
+ integrity sha1-7ANzSLYQLIl3A+7m0ClMpHVaICA=
+ dependencies:
+ unist-util-visit "^1.1.0"
+
+unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6"
+ integrity sha1-Pzf881EnncvKdICrWIm7ioMu4cY=
+
+unist-util-visit-parents@1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz#f6e3afee8bdbf961c0e6f028ea3c0480028c3d06"
+ integrity sha1-9uOv7ovb+WHA5vAo6jwEgAKMPQY=
+
+unist-util-visit-parents@^2.0.0:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9"
+ integrity sha1-JeQ+VTEhZvM0jK5nQ1iHgdESwek=
+ dependencies:
+ unist-util-is "^3.0.0"
+
+unist-util-visit@^1.1.0, unist-util-visit@^1.3.0:
+ version "1.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unist-util-visit/-/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3"
+ integrity sha1-RySqqEhububibX/zyGhZYNVgseM=
+ dependencies:
+ unist-util-visit-parents "^2.0.0"
+
+universalify@^0.1.0:
+ version "0.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
+ integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=
+
+unpipe@1.0.0, unpipe@~1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+
+unquote@^1.1.0, unquote@~1.1.1:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
+ integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
+
+unset-value@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
+ integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+ dependencies:
+ has-value "^0.3.1"
+ isobject "^3.0.0"
+
+unzip-response@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
+ integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=
+
+upath@^1.1.1:
+ version "1.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
+ integrity sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=
+
+update-notifier@^2.3.0:
+ version "2.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6"
+ integrity sha1-0HRFk+E/Fh5AassdlAi3LK0Ir/Y=
+ dependencies:
+ boxen "^1.2.1"
+ chalk "^2.0.1"
+ configstore "^3.0.0"
+ import-lazy "^2.1.0"
+ is-ci "^1.0.10"
+ is-installed-globally "^0.1.0"
+ is-npm "^1.0.0"
+ latest-version "^3.0.0"
+ semver-diff "^2.0.0"
+ xdg-basedir "^3.0.0"
+
+uri-js@^4.2.2:
+ version "4.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ integrity sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=
+ dependencies:
+ punycode "^2.1.0"
+
+urijs@^1.16.1:
+ version "1.19.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/urijs/-/urijs-1.19.6.tgz#51f8cb17ca16faefb20b9a31ac60f84aa2b7c870"
+ integrity sha1-UfjLF8oW+u+yC5oxrGD4SqK3yHA=
+
+urix@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
+ integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+
+url-loader@0.6.2:
+ version "0.6.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-loader/-/url-loader-0.6.2.tgz#a007a7109620e9d988d14bce677a1decb9a993f7"
+ integrity sha1-oAenEJYg6dmI0UvOZ3od7Lmpk/c=
+ dependencies:
+ loader-utils "^1.0.2"
+ mime "^1.4.1"
+ schema-utils "^0.3.0"
+
+url-loader@^2.0.1:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b"
+ integrity sha1-4OLvZY8APvuMpBsPP/v3a6uIZYs=
+ dependencies:
+ loader-utils "^1.2.3"
+ mime "^2.4.4"
+ schema-utils "^2.5.0"
+
+url-parse-lax@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
+ integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
+ dependencies:
+ prepend-http "^1.0.1"
+
+url-parse@^1.1.7, url-parse@^1.1.8, url-parse@^1.4.3:
+ version "1.5.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-parse/-/url-parse-1.5.1.tgz#d5fa9890af8a5e1f274a2c98376510f6425f6e3b"
+ integrity sha1-1fqYkK+KXh8nSiyYN2UQ9kJfbjs=
+ dependencies:
+ querystringify "^2.1.1"
+ requires-port "^1.0.0"
+
+url-set-query@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-set-query/-/url-set-query-1.0.0.tgz#016e8cfd7c20ee05cafe7795e892bd0702faa339"
+ integrity sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=
+
+url-to-options@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
+ integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=
+
+url@0.11.0, url@^0.11.0:
+ version "0.11.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
+ integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+ dependencies:
+ punycode "1.3.2"
+ querystring "0.2.0"
+
+use-callback-ref@^1.2.1:
+ version "1.2.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/use-callback-ref/-/use-callback-ref-1.2.5.tgz#6115ed242cfbaed5915499c0a9842ca2912f38a5"
+ integrity sha1-YRXtJCz7rtWRVJnAqYQsopEvOKU=
+
+use-sidecar@^1.0.1:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/use-sidecar/-/use-sidecar-1.0.5.tgz#ffff2a17c1df42e348624b699ba6e5c220527f2b"
+ integrity sha1-//8qF8HfQuNIYktpm6blwiBSfys=
+ dependencies:
+ detect-node-es "^1.1.0"
+ tslib "^1.9.3"
+
+use@^3.1.0:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
+ integrity sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=
+
+utf8@2.1.1:
+ version "2.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/utf8/-/utf8-2.1.1.tgz#2e01db02f7d8d0944f77104f1609eb0c304cf768"
+ integrity sha1-LgHbAvfY0JRPdxBPFgnrDDBM92g=
+
+util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+
+util.promisify@1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
+ integrity sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=
+ dependencies:
+ define-properties "^1.1.2"
+ object.getownpropertydescriptors "^2.0.3"
+
+util.promisify@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util.promisify/-/util.promisify-1.1.1.tgz#77832f57ced2c9478174149cae9b96e9918cd54b"
+ integrity sha1-d4MvV87SyUeBdBScrpuW6ZGM1Us=
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ for-each "^0.3.3"
+ has-symbols "^1.0.1"
+ object.getownpropertydescriptors "^2.1.1"
+
+util.promisify@~1.0.0:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
+ integrity sha1-a693dLgO6w91INi4HQeYKlmruu4=
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.2"
+ has-symbols "^1.0.1"
+ object.getownpropertydescriptors "^2.1.0"
+
+util@0.10.3:
+ version "0.10.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
+ integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
+ dependencies:
+ inherits "2.0.1"
+
+util@^0.11.0:
+ version "0.11.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
+ integrity sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE=
+ dependencies:
+ inherits "2.0.3"
+
+utila@~0.4:
+ version "0.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
+ integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=
+
+utils-merge@1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
+
+uuid@2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uuid/-/uuid-2.0.1.tgz#c2a30dedb3e535d72ccf82e343941a50ba8533ac"
+ integrity sha1-wqMN7bPlNdcsz4LjQ5QaULqFM6w=
+
+uuid@^3.0.0, uuid@^3.0.1, uuid@^3.3.2:
+ version "3.4.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
+ integrity sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4=
+
+v8-to-istanbul@^7.1.0:
+ version "7.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1"
+ integrity sha1-MImNGn+gyE0iWiwUNPuVjykIg8E=
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.1"
+ convert-source-map "^1.6.0"
+ source-map "^0.7.3"
+
+validate-npm-package-license@^3.0.1:
+ version "3.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
+ integrity sha1-/JH2uce6FchX9MssXe/uw51PQQo=
+ dependencies:
+ spdx-correct "^3.0.0"
+ spdx-expression-parse "^3.0.0"
+
+value-equal@^1.0.1:
+ version "1.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c"
+ integrity sha1-Hgt5THNMXAyt4XnEN9NW2TGjTWw=
+
+vary@^1, vary@~1.1.2:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+
+vendors@^1.0.0:
+ version "1.0.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
+ integrity sha1-4rgApT56Kbk1BsPPQRANFsTErY4=
+
+verror@1.10.0:
+ version "1.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
+ integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
+ dependencies:
+ assert-plus "^1.0.0"
+ core-util-is "1.0.2"
+ extsprintf "^1.2.0"
+
+vfile-location@^2.0.0:
+ version "2.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vfile-location/-/vfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e"
+ integrity sha1-iidPOUEbhxnqVyiALhDZ4N/xUZ4=
+
+vfile-message@^1.0.0:
+ version "1.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1"
+ integrity sha1-WDOuB4od+i2W6WR4hs0ymTqzE+E=
+ dependencies:
+ unist-util-stringify-position "^1.1.1"
+
+vfile@^2.0.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a"
+ integrity sha1-5i2OcrIOg8MkvGxnJ47ickiL+Eo=
+ dependencies:
+ is-buffer "^1.1.4"
+ replace-ext "1.0.0"
+ unist-util-stringify-position "^1.0.0"
+ vfile-message "^1.0.0"
+
+vm-browserify@^1.0.1:
+ version "1.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
+ integrity sha1-eGQcSIuObKkadfUR56OzKobl3aA=
+
+void-elements@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
+ integrity sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=
+
+w3c-hr-time@^1.0.1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
+ integrity sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=
+ dependencies:
+ browser-process-hrtime "^1.0.0"
+
+wait-on@5.3.0:
+ version "5.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wait-on/-/wait-on-5.3.0.tgz#584e17d4b3fe7b46ac2b9f8e5e102c005c2776c7"
+ integrity sha1-WE4X1LP+e0asK5+OXhAsAFwndsc=
+ dependencies:
+ axios "^0.21.1"
+ joi "^17.3.0"
+ lodash "^4.17.21"
+ minimist "^1.2.5"
+ rxjs "^6.6.3"
+
+walker@~1.0.5:
+ version "1.0.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
+ integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
+ dependencies:
+ makeerror "1.0.x"
+
+warning@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
+ integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=
+ dependencies:
+ loose-envify "^1.0.0"
+
+warning@^4.0.0, warning@^4.0.2, warning@^4.0.3:
+ version "4.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+ integrity sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=
+ dependencies:
+ loose-envify "^1.0.0"
+
+watch@~0.18.0:
+ version "0.18.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
+ integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY=
+ dependencies:
+ exec-sh "^0.2.0"
+ minimist "^1.2.0"
+
+watchpack-chokidar2@^2.0.1:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
+ integrity sha1-OFAAcu5uzmbzdpk2lQ6hdxvhyVc=
+ dependencies:
+ chokidar "^2.1.8"
+
+watchpack@^1.5.0, watchpack@^1.7.4:
+ version "1.7.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
+ integrity sha1-EmfmxV4Lm1vkTCAjrtVDeiwmxFM=
+ dependencies:
+ graceful-fs "^4.1.2"
+ neo-async "^2.5.0"
+ optionalDependencies:
+ chokidar "^3.4.1"
+ watchpack-chokidar2 "^2.0.1"
+
+wbuf@^1.1.0, wbuf@^1.7.3:
+ version "1.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df"
+ integrity sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=
+ dependencies:
+ minimalistic-assert "^1.0.0"
+
+web3-bzz@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-bzz/-/web3-bzz-1.0.0-beta.36.tgz#adb3fe7a70053eb7843e32b106792b01b482ef41"
+ integrity sha1-rbP+enAFPreEPjKxBnkrAbSC70E=
+ dependencies:
+ got "7.1.0"
+ swarm-js "0.1.37"
+ underscore "1.8.3"
+
+web3-core-helpers@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core-helpers/-/web3-core-helpers-1.0.0-beta.36.tgz#6f618e80f1a6588d846efbfdc28f92ae0477f8d2"
+ integrity sha1-b2GOgPGmWI2Ebvv9wo+SrgR3+NI=
+ dependencies:
+ underscore "1.8.3"
+ web3-eth-iban "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-core-method@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core-method/-/web3-core-method-1.0.0-beta.36.tgz#855c0365ae7d0ead394d973ea9e28828602900e0"
+ integrity sha1-hVwDZa59Dq05TZc+qeKIKGApAOA=
+ dependencies:
+ underscore "1.8.3"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-promievent "1.0.0-beta.36"
+ web3-core-subscriptions "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-core-promievent@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core-promievent/-/web3-core-promievent-1.0.0-beta.36.tgz#3a5127787fff751be6de272722cbc77dc9523fd5"
+ integrity sha1-OlEneH//dRvm3icnIsvHfclSP9U=
+ dependencies:
+ any-promise "1.3.0"
+ eventemitter3 "1.1.1"
+
+web3-core-requestmanager@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core-requestmanager/-/web3-core-requestmanager-1.0.0-beta.36.tgz#70c8eead84da9ed1cf258e6dde3f137116d0691b"
+ integrity sha1-cMjurYTantHPJY5t3j8TcRbQaRs=
+ dependencies:
+ underscore "1.8.3"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-providers-http "1.0.0-beta.36"
+ web3-providers-ipc "1.0.0-beta.36"
+ web3-providers-ws "1.0.0-beta.36"
+
+web3-core-subscriptions@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core-subscriptions/-/web3-core-subscriptions-1.0.0-beta.36.tgz#20f1f20c85d5b40f1e5a49b070ba977a142621f3"
+ integrity sha1-IPHyDIXVtA8eWkmwcLqXehQmIfM=
+ dependencies:
+ eventemitter3 "1.1.1"
+ underscore "1.8.3"
+ web3-core-helpers "1.0.0-beta.36"
+
+web3-core@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-core/-/web3-core-1.0.0-beta.36.tgz#86182f2456c2cf1cd6e7654d314e195eac211917"
+ integrity sha1-hhgvJFbCzxzW52VNMU4ZXqwhGRc=
+ dependencies:
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-core-requestmanager "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-abi@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-abi/-/web3-eth-abi-1.0.0-beta.36.tgz#21c0f222701db827a8a269accb9cd18bbd8f70f9"
+ integrity sha1-IcDyInAduCeoommsy5zRi72PcPk=
+ dependencies:
+ ethers "4.0.0-beta.1"
+ underscore "1.8.3"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-accounts@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-accounts/-/web3-eth-accounts-1.0.0-beta.36.tgz#8aea37df9b038ef2c6cda608856ffd861b39eeef"
+ integrity sha1-iuo335sDjvLGzaYIhW/9hhs57u8=
+ dependencies:
+ any-promise "1.3.0"
+ crypto-browserify "3.12.0"
+ eth-lib "0.2.7"
+ scrypt.js "0.2.0"
+ underscore "1.8.3"
+ uuid "2.0.1"
+ web3-core "1.0.0-beta.36"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-contract@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-contract/-/web3-eth-contract-1.0.0-beta.36.tgz#c0c366c4e4016896142208cee758a2ff2a31be2a"
+ integrity sha1-wMNmxOQBaJYUIgjO51ii/yoxvio=
+ dependencies:
+ underscore "1.8.3"
+ web3-core "1.0.0-beta.36"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-core-promievent "1.0.0-beta.36"
+ web3-core-subscriptions "1.0.0-beta.36"
+ web3-eth-abi "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-ens@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-ens/-/web3-eth-ens-1.0.0-beta.36.tgz#c7440b42b597fd74f64bc402f03ad2e832f423d8"
+ integrity sha1-x0QLQrWX/XT2S8QC8DrS6DL0I9g=
+ dependencies:
+ eth-ens-namehash "2.0.8"
+ underscore "1.8.3"
+ web3-core "1.0.0-beta.36"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-promievent "1.0.0-beta.36"
+ web3-eth-abi "1.0.0-beta.36"
+ web3-eth-contract "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-iban@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-iban/-/web3-eth-iban-1.0.0-beta.36.tgz#00cb3aba7a5aeb15d02b07421042e263d7b2e01b"
+ integrity sha1-AMs6unpa6xXQKwdCEELiY9ey4Bs=
+ dependencies:
+ bn.js "4.11.6"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth-personal@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth-personal/-/web3-eth-personal-1.0.0-beta.36.tgz#95545998a8ee377e3bb71e27c8d1a5dc1d7d5a21"
+ integrity sha1-lVRZmKjuN347tx4nyNGl3B19WiE=
+ dependencies:
+ web3-core "1.0.0-beta.36"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-net "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-eth@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-eth/-/web3-eth-1.0.0-beta.36.tgz#04a8c748d344c1accaa26d7d5d0eac0da7127f14"
+ integrity sha1-BKjHSNNEwazKom19XQ6sDacSfxQ=
+ dependencies:
+ underscore "1.8.3"
+ web3-core "1.0.0-beta.36"
+ web3-core-helpers "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-core-subscriptions "1.0.0-beta.36"
+ web3-eth-abi "1.0.0-beta.36"
+ web3-eth-accounts "1.0.0-beta.36"
+ web3-eth-contract "1.0.0-beta.36"
+ web3-eth-ens "1.0.0-beta.36"
+ web3-eth-iban "1.0.0-beta.36"
+ web3-eth-personal "1.0.0-beta.36"
+ web3-net "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-net@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-net/-/web3-net-1.0.0-beta.36.tgz#396cd35cb40934ed022a1f44a8a642d3908c41eb"
+ integrity sha1-OWzTXLQJNO0CKh9EqKZC05CMQes=
+ dependencies:
+ web3-core "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+web3-providers-http@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-providers-http/-/web3-providers-http-1.0.0-beta.36.tgz#c1937a2e64f8db7cd30f166794e37cf0fcca1131"
+ integrity sha1-wZN6LmT423zTDxZnlON88PzKETE=
+ dependencies:
+ web3-core-helpers "1.0.0-beta.36"
+ xhr2-cookies "1.1.0"
+
+web3-providers-ipc@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-providers-ipc/-/web3-providers-ipc-1.0.0-beta.36.tgz#0c78efb4ed6b0305ec830e1e0b785e61217ee605"
+ integrity sha1-DHjvtO1rAwXsgw4eC3heYSF+5gU=
+ dependencies:
+ oboe "2.1.3"
+ underscore "1.8.3"
+ web3-core-helpers "1.0.0-beta.36"
+
+web3-providers-ws@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-providers-ws/-/web3-providers-ws-1.0.0-beta.36.tgz#27b74082c7adfa0cb5a65535eb312e49008c97c3"
+ integrity sha1-J7dAgset+gy1plU16zEuSQCMl8M=
+ dependencies:
+ underscore "1.8.3"
+ web3-core-helpers "1.0.0-beta.36"
+ websocket "git://github.com/frozeman/WebSocket-Node.git#browserifyCompatible"
+
+web3-shh@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-shh/-/web3-shh-1.0.0-beta.36.tgz#6ff297594480edefc710d9d287765a0c4a5d5af1"
+ integrity sha1-b/KXWUSA7e/HENnSh3ZaDEpdWvE=
+ dependencies:
+ web3-core "1.0.0-beta.36"
+ web3-core-method "1.0.0-beta.36"
+ web3-core-subscriptions "1.0.0-beta.36"
+ web3-net "1.0.0-beta.36"
+
+web3-utils@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3-utils/-/web3-utils-1.0.0-beta.36.tgz#dc19c9aeec009b1816cc91ef64d7fe9f8ee344c9"
+ integrity sha1-3BnJruwAmxgWzJHvZNf+n47jRMk=
+ dependencies:
+ bn.js "4.11.6"
+ eth-lib "0.1.27"
+ ethjs-unit "0.1.6"
+ number-to-bn "1.7.0"
+ randomhex "0.1.5"
+ underscore "1.8.3"
+ utf8 "2.1.1"
+
+web3@1.0.0-beta.36:
+ version "1.0.0-beta.36"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/web3/-/web3-1.0.0-beta.36.tgz#2954da9e431124c88396025510d840ba731c8373"
+ integrity sha1-KVTankMRJMiDlgJVENhAunMcg3M=
+ dependencies:
+ web3-bzz "1.0.0-beta.36"
+ web3-core "1.0.0-beta.36"
+ web3-eth "1.0.0-beta.36"
+ web3-eth-personal "1.0.0-beta.36"
+ web3-net "1.0.0-beta.36"
+ web3-shh "1.0.0-beta.36"
+ web3-utils "1.0.0-beta.36"
+
+webfontloader@^1.6.27:
+ version "1.6.28"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae"
+ integrity sha1-23hhKSU8tujq5UwvsF+HCvZnW64=
+
+webidl-conversions@^4.0.2:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
+ integrity sha1-qFWYCx8LazWbodXZ+zmulB+qY60=
+
+webpack-dev-middleware@^3.6.2, webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.1:
+ version "3.7.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5"
+ integrity sha1-Bjk3KxQyYuK4SrldO5GnWXBhwsU=
+ dependencies:
+ memory-fs "^0.4.1"
+ mime "^2.4.4"
+ mkdirp "^0.5.1"
+ range-parser "^1.2.1"
+ webpack-log "^2.0.0"
+
+webpack-dev-server@3.8.1:
+ version "3.8.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-dev-server/-/webpack-dev-server-3.8.1.tgz#485b64c4aadc23f601e72114b40c1b1fea31d9f1"
+ integrity sha1-SFtkxKrcI/YB5yEUtAwbH+ox2fE=
+ dependencies:
+ ansi-html "0.0.7"
+ 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.2.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.2"
+ killable "^1.0.1"
+ loglevel "^1.6.4"
+ opn "^5.5.0"
+ p-retry "^3.0.1"
+ portfinder "^1.0.24"
+ schema-utils "^1.0.0"
+ selfsigned "^1.10.6"
+ semver "^6.3.0"
+ serve-index "^1.9.1"
+ sockjs "0.3.19"
+ sockjs-client "1.4.0"
+ spdy "^4.0.1"
+ strip-ansi "^3.0.1"
+ supports-color "^6.1.0"
+ url "^0.11.0"
+ webpack-dev-middleware "^3.7.1"
+ webpack-log "^2.0.0"
+ ws "^6.2.1"
+ yargs "12.0.5"
+
+webpack-hot-middleware@^2.25.0:
+ version "2.25.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706"
+ integrity sha1-RSigpj7Df4+O9WXPnlNNV9Cf5wY=
+ dependencies:
+ ansi-html "0.0.7"
+ html-entities "^1.2.0"
+ querystring "^0.2.0"
+ strip-ansi "^3.0.0"
+
+webpack-log@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
+ integrity sha1-W3ko4GN1k/EZ0y9iJ8HgrDHhtH8=
+ dependencies:
+ ansi-colors "^3.0.0"
+ uuid "^3.3.2"
+
+webpack-manifest-plugin@^2.0.4:
+ version "2.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16"
+ integrity sha1-GcpptDWwuux+KfvpD7QBXeLeTxY=
+ dependencies:
+ fs-extra "^7.0.0"
+ lodash ">=3.5 <5"
+ object.entries "^1.1.0"
+ tapable "^1.0.0"
+
+webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
+ version "1.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
+ integrity sha1-7t2OwLko+/HL/plOItLYkPMwqTM=
+ dependencies:
+ source-list-map "^2.0.0"
+ source-map "~0.6.1"
+
+webpack-virtual-modules@^0.2.0:
+ version "0.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299"
+ integrity sha1-IIY9w8trshBHKf/5UfvhSxi9Apk=
+ dependencies:
+ debug "^3.0.0"
+
+webpack@4.16.5:
+ version "4.16.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack/-/webpack-4.16.5.tgz#29fb39462823d7eb8aefcab8b45f7f241db0d092"
+ integrity sha1-Kfs5Rigj1+uK78q4tF9/JB2w0JI=
+ dependencies:
+ "@webassemblyjs/ast" "1.5.13"
+ "@webassemblyjs/helper-module-context" "1.5.13"
+ "@webassemblyjs/wasm-edit" "1.5.13"
+ "@webassemblyjs/wasm-opt" "1.5.13"
+ "@webassemblyjs/wasm-parser" "1.5.13"
+ acorn "^5.6.2"
+ acorn-dynamic-import "^3.0.0"
+ ajv "^6.1.0"
+ ajv-keywords "^3.1.0"
+ chrome-trace-event "^1.0.0"
+ enhanced-resolve "^4.1.0"
+ eslint-scope "^4.0.0"
+ json-parse-better-errors "^1.0.2"
+ loader-runner "^2.3.0"
+ loader-utils "^1.1.0"
+ memory-fs "~0.4.1"
+ micromatch "^3.1.8"
+ mkdirp "~0.5.0"
+ neo-async "^2.5.0"
+ node-libs-browser "^2.0.0"
+ schema-utils "^0.4.4"
+ tapable "^1.0.0"
+ uglifyjs-webpack-plugin "^1.2.4"
+ watchpack "^1.5.0"
+ webpack-sources "^1.0.1"
+
+webpack@^4.33.0, webpack@^4.38.0:
+ version "4.46.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
+ integrity sha1-v5tEBOogoHNgXgoBHRiNd8tq1UI=
+ dependencies:
+ "@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.5.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"
+
+websocket-driver@>=0.5.1:
+ version "0.7.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
+ integrity sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=
+ dependencies:
+ http-parser-js ">=0.5.1"
+ safe-buffer ">=5.1.0"
+ websocket-extensions ">=0.1.1"
+
+websocket-extensions@>=0.1.1:
+ version "0.1.4"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
+ integrity sha1-f4RzvIOd/YdgituV1+sHUhFXikI=
+
+"websocket@git://github.com/frozeman/WebSocket-Node.git#browserifyCompatible":
+ version "1.0.26"
+ resolved "git://github.com/frozeman/WebSocket-Node.git#6c72925e3f8aaaea8dc8450f97627e85263999f2"
+ dependencies:
+ debug "^2.2.0"
+ nan "^2.3.3"
+ typedarray-to-buffer "^3.1.2"
+ yaeti "^0.0.6"
+
+whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
+ version "1.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
+ integrity sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=
+ dependencies:
+ iconv-lite "0.4.24"
+
+whatwg-fetch@2.0.3:
+ version "2.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
+ integrity sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=
+
+whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0:
+ version "2.3.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
+ integrity sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=
+
+whatwg-url@^6.4.1:
+ version "6.5.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
+ integrity sha1-8t8Cv/F2/WUHDfdK1cy7WhmZZag=
+ dependencies:
+ lodash.sortby "^4.7.0"
+ tr46 "^1.0.1"
+ webidl-conversions "^4.0.2"
+
+whatwg-url@^7.0.0:
+ version "7.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
+ integrity sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=
+ dependencies:
+ lodash.sortby "^4.7.0"
+ tr46 "^1.0.1"
+ webidl-conversions "^4.0.2"
+
+whet.extend@~0.9.9:
+ version "0.9.9"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
+ integrity sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=
+
+which-boxed-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+ integrity sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=
+ dependencies:
+ 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@^2.0.0:
+ version "2.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
+ integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
+
+which@1, which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0, which@^1.3.1:
+ version "1.3.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=
+ dependencies:
+ isexe "^2.0.0"
+
+which@^2.0.1:
+ version "2.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=
+ dependencies:
+ isexe "^2.0.0"
+
+wide-align@^1.1.0:
+ version "1.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
+ integrity sha1-rgdOa9wMFKQx6ATmJFScYzsABFc=
+ dependencies:
+ string-width "^1.0.2 || 2"
+
+widest-line@^2.0.0:
+ version "2.0.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
+ integrity sha1-dDh2RzDsfvQ4HOTfgvuYpTFCo/w=
+ dependencies:
+ string-width "^2.1.1"
+
+widest-line@^3.1.0:
+ version "3.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+ integrity sha1-gpIzO79my0X/DeFgOxNreuFJbso=
+ dependencies:
+ string-width "^4.0.0"
+
+word-wrap@~1.2.3:
+ version "1.2.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
+ integrity sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=
+
+wordwrap@^1.0.0:
+ version "1.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
+ integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
+
+worker-farm@^1.5.2, worker-farm@^1.7.0:
+ version "1.7.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+ integrity sha1-JqlMU5G7ypJhUgAvabhKS/dy5ag=
+ dependencies:
+ errno "~0.1.7"
+
+worker-rpc@^0.1.0:
+ version "0.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
+ integrity sha1-y1Zb1tcHGo8WZgaGBR6WmtMvVNU=
+ dependencies:
+ microevent.ts "~0.1.1"
+
+wrap-ansi@^2.0.0:
+ version "2.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
+ integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
+ dependencies:
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+
+wrap-ansi@^5.1.0:
+ version "5.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
+ integrity sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=
+ dependencies:
+ ansi-styles "^3.2.0"
+ string-width "^3.0.0"
+ strip-ansi "^5.0.0"
+
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+
+write-file-atomic@^2.0.0, write-file-atomic@^2.1.0:
+ version "2.4.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
+ integrity sha1-H9Lprh3z51uNjDZ0Q8aS1MqB9IE=
+ dependencies:
+ graceful-fs "^4.1.11"
+ imurmurhash "^0.1.4"
+ signal-exit "^3.0.2"
+
+write@^0.2.1:
+ version "0.2.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
+ integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=
+ dependencies:
+ mkdirp "^0.5.1"
+
+ws@^3.0.0:
+ version "3.3.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2"
+ integrity sha1-8c+E/i1ekB686U767OeF8YeiKPI=
+ dependencies:
+ async-limiter "~1.0.0"
+ safe-buffer "~5.1.0"
+ ultron "~1.1.0"
+
+ws@^5.2.0:
+ version "5.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
+ integrity sha1-3/7xSGa46NyRM1glFNG++vlumA8=
+ dependencies:
+ async-limiter "~1.0.0"
+
+ws@^6.2.1:
+ version "6.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
+ integrity sha1-3Vzb1XqZeZFgl2UtePHMX66gwy4=
+ dependencies:
+ async-limiter "~1.0.0"
+
+x-is-string@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82"
+ integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=
+
+xdg-basedir@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
+ integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
+
+xhr-request-promise@^0.1.2:
+ version "0.1.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c"
+ integrity sha1-LV9LFtjGyJO+l/GmKw7Uzzyl+Ww=
+ dependencies:
+ xhr-request "^1.1.0"
+
+xhr-request@^1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xhr-request/-/xhr-request-1.1.0.tgz#f4a7c1868b9f198723444d82dcae317643f2e2ed"
+ integrity sha1-9KfBhoufGYcjRE2C3K4xdkPy4u0=
+ dependencies:
+ buffer-to-arraybuffer "^0.0.5"
+ object-assign "^4.1.1"
+ query-string "^5.0.1"
+ simple-get "^2.7.0"
+ timed-out "^4.0.1"
+ url-set-query "^1.0.0"
+ xhr "^2.0.4"
+
+xhr2-cookies@1.1.0:
+ version "1.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz#7d77449d0999197f155cb73b23df72505ed89d48"
+ integrity sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=
+ dependencies:
+ cookiejar "^2.1.1"
+
+xhr@^2.0.4, xhr@^2.3.3:
+ version "2.6.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d"
+ integrity sha1-tp1DleeStBc9a33wd/D8Xk4rJJ0=
+ dependencies:
+ global "~4.4.0"
+ is-function "^1.0.1"
+ parse-headers "^2.0.0"
+ xtend "^4.0.0"
+
+xml-name-validator@^3.0.0:
+ version "3.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
+ integrity sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=
+
+xmlhttprequest@1.8.0:
+ version "1.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc"
+ integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=
+
+xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
+ version "4.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=
+
+y18n@^3.2.1:
+ version "3.2.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696"
+ integrity sha1-hckBvWRwznH8S7cjrSCbcPfyhpY=
+
+"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0:
+ version "4.0.3"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
+ integrity sha1-tfJZyCzW4zaSHv17/Yv1YN6e7t8=
+
+y18n@^5.0.5:
+ version "5.0.8"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
+ integrity sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=
+
+yaeti@^0.0.6:
+ version "0.0.6"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577"
+ integrity sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=
+
+yallist@^2.1.2:
+ version "2.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+ integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
+
+yallist@^3.0.2:
+ version "3.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=
+
+yallist@^4.0.0:
+ version "4.0.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+ integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=
+
+yaml@^1.7.2:
+ version "1.10.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
+ integrity sha1-IwHF/78StGfejaIzOkWeKeeSDks=
+
+yargs-parser@^11.1.1:
+ version "11.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
+ integrity sha1-h5oIZZc7yp9rq1y987HGfsfTvPQ=
+ dependencies:
+ camelcase "^5.0.0"
+ decamelize "^1.2.0"
+
+yargs-parser@^13.1.2:
+ version "13.1.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
+ integrity sha1-Ew8JcC667vJlDVTObj5XBvek+zg=
+ dependencies:
+ camelcase "^5.0.0"
+ decamelize "^1.2.0"
+
+yargs-parser@^20.2.2, yargs-parser@^20.2.7:
+ version "20.2.7"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
+ integrity sha1-Yd+FwRPt+1p6TjbriqYO9CPLyQo=
+
+yargs-parser@^9.0.2:
+ version "9.0.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
+ integrity sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=
+ dependencies:
+ camelcase "^4.1.0"
+
+yargs@12.0.5:
+ version "12.0.5"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
+ integrity sha1-BfWZe2CWR7ZPZrgeO0sQo2jnrRM=
+ dependencies:
+ cliui "^4.0.0"
+ decamelize "^1.2.0"
+ find-up "^3.0.0"
+ get-caller-file "^1.0.1"
+ os-locale "^3.0.0"
+ require-directory "^2.1.1"
+ require-main-filename "^1.0.1"
+ set-blocking "^2.0.0"
+ string-width "^2.0.0"
+ which-module "^2.0.0"
+ y18n "^3.2.1 || ^4.0.0"
+ yargs-parser "^11.1.1"
+
+yargs@^11.0.0:
+ version "11.1.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs/-/yargs-11.1.1.tgz#5052efe3446a4df5ed669c995886cc0f13702766"
+ integrity sha1-UFLv40RqTfXtZpyZWIbMDxNwJ2Y=
+ dependencies:
+ cliui "^4.0.0"
+ decamelize "^1.1.1"
+ find-up "^2.1.0"
+ get-caller-file "^1.0.1"
+ os-locale "^3.1.0"
+ require-directory "^2.1.1"
+ require-main-filename "^1.0.1"
+ set-blocking "^2.0.0"
+ string-width "^2.0.0"
+ which-module "^2.0.0"
+ y18n "^3.2.1"
+ yargs-parser "^9.0.2"
+
+yargs@^13.3.2:
+ version "13.3.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
+ integrity sha1-rX/+/sGqWVZayRX4Lcyzipwxot0=
+ dependencies:
+ 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@^16.2.0:
+ version "16.2.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
+ integrity sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=
+ dependencies:
+ cliui "^7.0.2"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.0"
+ y18n "^5.0.5"
+ yargs-parser "^20.2.2"
+
+yauzl@2.4.1:
+ version "2.4.1"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
+ integrity sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=
+ dependencies:
+ fd-slicer "~1.0.1"
+
+yauzl@2.8.0:
+ version "2.8.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yauzl/-/yauzl-2.8.0.tgz#79450aff22b2a9c5a41ef54e02db907ccfbf9ee2"
+ integrity sha1-eUUK/yKyqcWkHvVOAtuQfM+/nuI=
+ dependencies:
+ buffer-crc32 "~0.2.3"
+ fd-slicer "~1.0.1"
+
+yauzl@^2.4.2:
+ version "2.10.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"
+ integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=
+ dependencies:
+ buffer-crc32 "~0.2.3"
+ fd-slicer "~1.1.0"
+
+yocto-queue@^0.1.0:
+ version "0.1.0"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ integrity sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=
+
+youtube-player@5.5.2:
+ version "5.5.2"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/youtube-player/-/youtube-player-5.5.2.tgz#052b86b1eabe21ff331095ffffeae285fa7f7cb5"
+ integrity sha1-BSuGseq+If8zEJX//+rihfp/fLU=
+ dependencies:
+ debug "^2.6.6"
+ load-script "^1.0.0"
+ sister "^3.0.0"
+
+zen-observable-ts@^0.8.21:
+ version "0.8.21"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d"
+ integrity sha1-hdADH7veHro80H07qQ2iQSFfQh0=
+ dependencies:
+ tslib "^1.9.3"
+ zen-observable "^0.8.0"
+
+zen-observable@^0.8.0:
+ version "0.8.15"
+ resolved "https://artifacts.pwc.com/artifactory/api/npm/us-adv-digital-npm/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15"
+ integrity sha1-lkFcUS2OP/2SCv04iWBOMLnqrBU=