Merge branch 'trunk' into add/jest-retry

This commit is contained in:
jamelreid 2021-12-03 14:25:00 -05:00
commit 18283d2b1a
5 changed files with 206 additions and 304 deletions

View File

@ -7,3 +7,4 @@
- Refunds API Tests
- Products API Tests
- CRUD tests for the Orders API
- Order Search API Tests

View File

@ -0,0 +1,86 @@
const { ordersApi } = require( '../../endpoints' );
const { getOrderExample, shared } = require( '../../data' );
/**
* Order to be searched
*/
const order = {
...getOrderExample(),
shipping: {
...shared.customerShipping,
company: 'Murphy LLC',
phone: '6146524353',
},
shipping_lines: [],
fee_lines: [],
coupon_lines: [],
};
/**
* Search parameters to be used.
* The following scenarios are not covered in this test suite because they're already covered in the `List all orders > search` test in `orders.test.js`
* ```
* can search by billing address 1
* can search by shipping address 1
* can search by billing last name
* can search by billing email
* can search by item name
* ```
*/
const searchParams = [
[ 'orderId', 'orderId' ],
[ 'billing first name', order.billing.first_name ],
[ 'billing company name', order.billing.company ],
[ 'billing address 2', order.billing.address_2 ],
[ 'billing city name', order.billing.city ],
[ 'billing post code', order.billing.postcode ],
[ 'billing phone', order.billing.phone ],
[ 'billing state', order.billing.state ],
[ 'shipping first name', order.shipping.first_name ],
[ 'shipping last name', order.shipping.last_name ],
[ 'shipping address 2', order.shipping.address_2 ],
[ 'shipping city', order.shipping.city ],
[ 'shipping post code', order.shipping.postcode ],
[ 'shipping state', order.shipping.state ],
];
/**
* Tests for the WooCommerce Order Search API.
*
* @group api
* @group orders
*
*/
describe( 'Order Search API tests', () => {
beforeAll( async () => {
// Create an order and save its ID
const { body } = await ordersApi.create.order( order );
order.id = body.id;
} );
afterAll( async () => {
// Cleanup: Delete the order
await ordersApi.delete.order( order.id, true );
} );
it.each( searchParams )( 'can search by %s', async ( title, param ) => {
const searchValue = param === 'orderId' ? order.id : param;
const { status, body } = await ordersApi.listAll.orders( {
search: searchValue,
} );
expect( status ).toEqual( ordersApi.listAll.responseCode );
expect( body ).toHaveLength( 1 );
expect( body[ 0 ].id ).toEqual( order.id );
} );
it( 'can return an empty result set when no matches were found', async () => {
const { status, body } = await ordersApi.listAll.orders( {
search: 'Chauncey Smith Kunde',
} );
expect( status ).toEqual( ordersApi.listAll.responseCode );
expect( body ).toEqual( [] );
} );
} );

View File

@ -24,7 +24,7 @@
"grunt-sass": "3.1.0",
"grunt-stylelint": "0.16.0",
"gruntify-eslint": "5.0.0",
"node-sass": "4.14.1",
"node-sass": "6.0.1",
"stylelint": "13.8.0",
"stylelint-config-wordpress": "17.0.0"
}

View File

@ -64,7 +64,7 @@
"jest": "^25.1.0",
"lint-staged": "9.5.0",
"mocha": "7.2.0",
"node-sass": "4.14.1",
"node-sass": "6.0.1",
"prettier": "npm:wp-prettier@2.0.5",
"stylelint": "^13.8.0",
"stylelint-config-wordpress": "17.0.0",

View File

@ -215,7 +215,7 @@ importers:
jest: ^25.1.0
lint-staged: 9.5.0
mocha: 7.2.0
node-sass: 4.14.1
node-sass: 6.0.1
prettier: npm:wp-prettier@2.0.5
stylelint: ^13.8.0
stylelint-config-wordpress: 17.0.0
@ -257,7 +257,7 @@ importers:
jest: 25.5.4
lint-staged: 9.5.0
mocha: 7.2.0
node-sass: 4.14.1
node-sass: 6.0.1
prettier: /wp-prettier/2.0.5
stylelint: 13.13.1
stylelint-config-wordpress: 17.0.0_stylelint@13.13.1
@ -286,7 +286,7 @@ importers:
grunt-sass: 3.1.0
grunt-stylelint: 0.16.0
gruntify-eslint: 5.0.0
node-sass: 4.14.1
node-sass: 6.0.1
stylelint: 13.8.0
stylelint-config-wordpress: 17.0.0
devDependencies:
@ -308,7 +308,7 @@ importers:
grunt-sass: 3.1.0_grunt@1.3.0
grunt-stylelint: 0.16.0_stylelint@13.8.0
gruntify-eslint: 5.0.0_grunt@1.3.0
node-sass: 4.14.1
node-sass: 6.0.1
stylelint: 13.8.0
stylelint-config-wordpress: 17.0.0_stylelint@13.8.0
@ -381,6 +381,7 @@ packages:
/@babel/compat-data/7.15.0:
resolution: {integrity: sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/compat-data/7.16.4:
resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==}
@ -430,6 +431,7 @@ packages:
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
dev: true
/@babel/core/7.16.0:
resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==}
@ -513,6 +515,7 @@ packages:
'@babel/helper-validator-option': 7.14.5
browserslist: 4.17.6
semver: 6.3.0
dev: true
/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0:
resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
@ -744,6 +747,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.16.0
dev: true
/@babel/helper-module-imports/7.16.0:
resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==}
@ -765,6 +769,7 @@ packages:
'@babel/types': 7.16.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-module-transforms/7.16.0:
resolution: {integrity: sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==}
@ -847,6 +852,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.16.0
dev: true
/@babel/helper-simple-access/7.16.0:
resolution: {integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==}
@ -920,6 +926,7 @@ packages:
'@babel/types': 7.16.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helpers/7.16.3:
resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==}
@ -949,6 +956,7 @@ packages:
resolution: {integrity: sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==}
engines: {node: '>=6.0.0'}
hasBin: true
dev: true
/@babel/parser/7.16.4:
resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==}
@ -1521,6 +1529,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@ -1539,14 +1548,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: false
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.15.8:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
@ -1554,7 +1555,6 @@ packages:
dependencies:
'@babel/core': 7.16.0
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.9:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@ -1571,6 +1571,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@ -1670,14 +1671,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: false
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.15.8:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@ -1685,7 +1678,6 @@ packages:
dependencies:
'@babel/core': 7.16.0
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@ -1702,6 +1694,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@ -1746,6 +1739,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
@ -1770,6 +1764,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@ -1794,6 +1789,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@ -1818,6 +1814,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@ -1842,6 +1839,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@ -1866,6 +1864,7 @@ packages:
dependencies:
'@babel/core': 7.15.8
'@babel/helper-plugin-utils': 7.14.5
dev: true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@ -3424,6 +3423,7 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/traverse/7.16.3:
resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==}
@ -3915,11 +3915,11 @@ packages:
exit: 0.1.2
glob: 7.2.0
graceful-fs: 4.2.8
istanbul-lib-coverage: 3.0.1
istanbul-lib-coverage: 3.2.0
istanbul-lib-instrument: 4.0.3
istanbul-lib-report: 3.0.0
istanbul-lib-source-maps: 4.0.0
istanbul-reports: 3.0.3
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.0.5
jest-haste-map: 25.5.1
jest-resolve: 25.5.1
jest-util: 25.5.0
@ -4140,9 +4140,9 @@ packages:
resolution: {integrity: sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==}
engines: {node: '>= 8.3'}
dependencies:
'@babel/core': 7.15.8
'@babel/core': 7.16.0
'@jest/types': 25.5.0
babel-plugin-istanbul: 6.0.0
babel-plugin-istanbul: 6.1.1
chalk: 3.0.0
convert-source-map: 1.8.0
fast-json-stable-stringify: 2.1.0
@ -6711,11 +6711,6 @@ packages:
/array-equal/1.0.0:
resolution: {integrity: sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=}
/array-find-index/1.0.2:
resolution: {integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=}
engines: {node: '>=0.10.0'}
dev: true
/array-flatten/1.1.1:
resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
dev: true
@ -7078,18 +7073,18 @@ packages:
- supports-color
dev: false
/babel-jest/25.5.1_@babel+core@7.15.8:
/babel-jest/25.5.1_@babel+core@7.16.0:
resolution: {integrity: sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==}
engines: {node: '>= 8.3'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.15.8
'@babel/core': 7.16.0
'@jest/transform': 25.5.1
'@jest/types': 25.5.0
'@types/babel__core': 7.1.16
babel-plugin-istanbul: 6.1.1
babel-preset-jest: 25.5.0_@babel+core@7.15.8
babel-preset-jest: 25.5.0_@babel+core@7.16.0
chalk: 3.0.0
graceful-fs: 4.2.8
slash: 3.0.0
@ -7166,18 +7161,6 @@ packages:
- supports-color
dev: false
/babel-plugin-istanbul/6.0.0:
resolution: {integrity: sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==}
engines: {node: '>=8'}
dependencies:
'@babel/helper-plugin-utils': 7.14.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 4.0.3
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
/babel-plugin-istanbul/6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@ -7321,23 +7304,23 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
dev: false
/babel-preset-current-node-syntax/0.1.4_@babel+core@7.15.8:
/babel-preset-current-node-syntax/0.1.4_@babel+core@7.16.0:
resolution: {integrity: sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.15.8
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.8
'@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.15.8
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.15.8
'@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.15.8
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.8
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.8
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.8
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.8
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.8
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.8
'@babel/core': 7.16.0
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0
'@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.0
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0
'@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0
/babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
@ -7381,15 +7364,15 @@ packages:
babel-preset-current-node-syntax: 0.1.4_@babel+core@7.12.9
dev: false
/babel-preset-jest/25.5.0_@babel+core@7.15.8:
/babel-preset-jest/25.5.0_@babel+core@7.16.0:
resolution: {integrity: sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==}
engines: {node: '>= 8.3'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.15.8
'@babel/core': 7.16.0
babel-plugin-jest-hoist: 25.5.0
babel-preset-current-node-syntax: 0.1.4_@babel+core@7.15.8
babel-preset-current-node-syntax: 0.1.4_@babel+core@7.16.0
/babel-preset-jest/27.2.0_@babel+core@7.16.0:
resolution: {integrity: sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==}
@ -7505,13 +7488,6 @@ packages:
dependencies:
file-uri-to-path: 1.0.0
/block-stream/0.0.9:
resolution: {integrity: sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=}
engines: {node: 0.4 || >=0.5.8}
dependencies:
inherits: 2.0.4
dev: true
/bluebird/3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: true
@ -7695,6 +7671,7 @@ packages:
escalade: 3.1.1
node-releases: 2.0.1
picocolors: 1.0.0
dev: true
/browserslist/4.18.1:
resolution: {integrity: sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==}
@ -7854,14 +7831,6 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
/camelcase-keys/2.1.0:
resolution: {integrity: sha1-MIvur/3ygRkFHvodkyITyRuPkuc=}
engines: {node: '>=0.10.0'}
dependencies:
camelcase: 2.1.1
map-obj: 1.0.1
dev: true
/camelcase-keys/6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
@ -7871,11 +7840,6 @@ packages:
quick-lru: 4.0.1
dev: true
/camelcase/2.1.1:
resolution: {integrity: sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=}
engines: {node: '>=0.10.0'}
dev: true
/camelcase/4.1.0:
resolution: {integrity: sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=}
engines: {node: '>=4'}
@ -7905,6 +7869,7 @@ packages:
/caniuse-lite/1.0.30001278:
resolution: {integrity: sha512-mpF9KeH8u5cMoEmIic/cr7PNS+F5LWBk0t2ekGT60lFf0Wq+n9LspAj0g3P+o7DQhD3sUdlMln4YFAWhFYn9jg==}
dev: true
/caniuse-lite/1.0.30001280:
resolution: {integrity: sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==}
@ -8100,6 +8065,11 @@ packages:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
dev: true
/chownr/2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
dev: true
/chrome-trace-event/1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
@ -8603,13 +8573,6 @@ packages:
cross-spawn: 7.0.3
dev: true
/cross-spawn/3.0.1:
resolution: {integrity: sha1-ElYDfsufDF9549bvE14wdwGEuYI=}
dependencies:
lru-cache: 4.1.5
which: 1.3.1
dev: true
/cross-spawn/5.1.0:
resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=}
dependencies:
@ -8903,13 +8866,6 @@ packages:
resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==}
dev: false
/currently-unhandled/0.4.1:
resolution: {integrity: sha1-mI3zP+qxke95mmE2nddsF635V+o=}
engines: {node: '>=0.10.0'}
dependencies:
array-find-index: 1.0.2
dev: true
/cwd/0.10.0:
resolution: {integrity: sha1-FyQAaUBXwioTsM8WFix+S3p/5Wc=}
engines: {node: '>=0.8'}
@ -9375,6 +9331,7 @@ packages:
/electron-to-chromium/1.3.889:
resolution: {integrity: sha512-suEUoPTD1mExjL9TdmH7cvEiWJVM2oEiAi+Y1p0QKxI2HcRlT44qDTP2c1aZmVwRemIPYOpxmV7CxQCOWcm4XQ==}
dev: true
/electron-to-chromium/1.3.899:
resolution: {integrity: sha512-w16Dtd2zl7VZ4N4Db+FIa7n36sgPGCKjrKvUUmp5ialsikvcQLjcJR9RWnlYNxIyEHLdHaoIZEqKsPxU9MdyBg==}
@ -9468,6 +9425,11 @@ packages:
/entities/2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
/env-paths/2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
dev: true
/enzyme-adapter-react-16/1.15.6_enzyme@3.11.0:
resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==}
peerDependencies:
@ -11001,14 +10963,6 @@ packages:
- supports-color
dev: false
/find-up/1.1.2:
resolution: {integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=}
engines: {node: '>=0.10.0'}
dependencies:
path-exists: 2.1.0
pinkie-promise: 2.0.1
dev: true
/find-up/2.1.0:
resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
engines: {node: '>=4'}
@ -11275,6 +11229,13 @@ packages:
universalify: 2.0.0
dev: true
/fs-minipass/2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.1.5
dev: true
/fs-monkey/1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
dev: true
@ -11321,16 +11282,6 @@ packages:
requiresBuild: true
optional: true
/fstream/1.0.12:
resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
engines: {node: '>=0.6'}
dependencies:
graceful-fs: 4.2.8
inherits: 2.0.4
mkdirp: 0.5.5
rimraf: 2.7.1
dev: true
/function-bind/1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
@ -12437,18 +12388,6 @@ packages:
resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
engines: {node: '>=0.8.19'}
/in-publish/2.0.1:
resolution: {integrity: sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==}
hasBin: true
dev: true
/indent-string/2.1.0:
resolution: {integrity: sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=}
engines: {node: '>=0.10.0'}
dependencies:
repeating: 2.0.1
dev: true
/indent-string/3.2.0:
resolution: {integrity: sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=}
engines: {node: '>=4'}
@ -13067,10 +13006,6 @@ packages:
engines: {node: '>=6'}
dev: false
/istanbul-lib-coverage/3.0.1:
resolution: {integrity: sha512-GvCYYTxaCPqwMjobtVcVKvSHtAGe48MNhGjpK8LtVF8K0ISX7hCKl85LgtuaSneWVyQmaGcW3iXVV3GaZSLpmQ==}
engines: {node: '>=8'}
/istanbul-lib-coverage/3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
engines: {node: '>=8'}
@ -13180,16 +13115,6 @@ packages:
- supports-color
dev: false
/istanbul-lib-source-maps/4.0.0:
resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==}
engines: {node: '>=8'}
dependencies:
debug: 4.3.2
istanbul-lib-coverage: 3.0.1
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
/istanbul-lib-source-maps/4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
@ -13199,7 +13124,6 @@ packages:
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
dev: true
/istanbul-reports/1.5.1:
resolution: {integrity: sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==}
@ -13214,20 +13138,12 @@ packages:
html-escaper: 2.0.2
dev: false
/istanbul-reports/3.0.3:
resolution: {integrity: sha512-0i77ZFLsb9U3DHi22WzmIngVzfoyxxbQcZRqlF3KoKmCJGq9nhFHoGi8FqBztN2rE8w6hURnZghetn0xpkVb6A==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
/istanbul-reports/3.0.5:
resolution: {integrity: sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
dev: true
/istanbul/1.0.0-alpha.2:
resolution: {integrity: sha1-BglrwI6Yuq10Sq5Gli2N+frGPQg=}
@ -13436,10 +13352,10 @@ packages:
resolution: {integrity: sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==}
engines: {node: '>= 8.3'}
dependencies:
'@babel/core': 7.15.8
'@babel/core': 7.16.0
'@jest/test-sequencer': 25.5.4
'@jest/types': 25.5.0
babel-jest: 25.5.1_@babel+core@7.15.8
babel-jest: 25.5.1_@babel+core@7.16.0
chalk: 3.0.0
deepmerge: 4.2.2
glob: 7.2.0
@ -13822,7 +13738,7 @@ packages:
jest-worker: 25.5.0
micromatch: 4.0.4
sane: 4.1.0
walker: 1.0.7
walker: 1.0.8
which: 2.0.2
optionalDependencies:
fsevents: 2.3.2
@ -13875,7 +13791,7 @@ packages:
resolution: {integrity: sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==}
engines: {node: '>= 8.3'}
dependencies:
'@babel/traverse': 7.16.0
'@babel/traverse': 7.16.3
'@jest/environment': 25.5.0
'@jest/source-map': 25.5.0
'@jest/test-result': 25.5.0
@ -15197,17 +15113,6 @@ packages:
resolution: {integrity: sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==}
dev: true
/load-json-file/1.1.0:
resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=}
engines: {node: '>=0.10.0'}
dependencies:
graceful-fs: 4.2.8
parse-json: 2.2.0
pify: 2.3.0
pinkie-promise: 2.0.1
strip-bom: 2.0.0
dev: true
/load-json-file/4.0.0:
resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=}
engines: {node: '>=4'}
@ -15377,14 +15282,6 @@ packages:
dependencies:
js-tokens: 4.0.0
/loud-rejection/1.6.0:
resolution: {integrity: sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=}
engines: {node: '>=0.10.0'}
dependencies:
currently-unhandled: 0.4.1
signal-exit: 3.0.5
dev: true
/lowercase-keys/1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
engines: {node: '>=0.10.0'}
@ -15447,11 +15344,6 @@ packages:
kind-of: 6.0.3
dev: true
/makeerror/1.0.11:
resolution: {integrity: sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=}
dependencies:
tmpl: 1.0.5
/makeerror/1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
@ -15571,22 +15463,6 @@ packages:
engines: {node: '>= 0.10.0'}
dev: true
/meow/3.7.0:
resolution: {integrity: sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=}
engines: {node: '>=0.10.0'}
dependencies:
camelcase-keys: 2.1.0
decamelize: 1.2.0
loud-rejection: 1.6.0
map-obj: 1.0.1
minimist: 1.2.5
normalize-package-data: 2.5.0
object-assign: 4.1.1
read-pkg-up: 1.0.1
redent: 1.0.0
trim-newlines: 1.0.0
dev: true
/meow/8.1.2:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
@ -15790,6 +15666,21 @@ packages:
/minimist/1.2.5:
resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
/minipass/3.1.5:
resolution: {integrity: sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
dev: true
/minizlib/2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.1.5
yallist: 4.0.0
dev: true
/mississippi/3.0.0:
resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
engines: {node: '>=4.0.0'}
@ -16031,23 +15922,21 @@ packages:
hasBin: true
dev: true
/node-gyp/3.8.0:
resolution: {integrity: sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==}
engines: {node: '>= 0.8.0'}
/node-gyp/7.1.2:
resolution: {integrity: sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==}
engines: {node: '>= 10.12.0'}
hasBin: true
dependencies:
fstream: 1.0.12
env-paths: 2.2.1
glob: 7.2.0
graceful-fs: 4.2.8
mkdirp: 0.5.5
nopt: 3.0.6
nopt: 5.0.0
npmlog: 4.1.2
osenv: 0.1.5
request: 2.88.2
rimraf: 2.7.1
semver: 5.3.0
tar: 2.2.2
which: 1.3.1
rimraf: 3.0.2
semver: 7.3.5
tar: 6.1.11
which: 2.0.2
dev: true
/node-int64/0.4.0:
@ -16121,24 +16010,22 @@ packages:
/node-releases/2.0.1:
resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==}
/node-sass/4.14.1:
resolution: {integrity: sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==}
engines: {node: '>=0.10.0'}
/node-sass/6.0.1:
resolution: {integrity: sha512-f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
dependencies:
async-foreach: 0.1.3
chalk: 1.1.3
cross-spawn: 3.0.1
cross-spawn: 7.0.3
gaze: 1.1.3
get-stdin: 4.0.1
glob: 7.2.0
in-publish: 2.0.1
lodash: 4.17.21
meow: 3.7.0
mkdirp: 0.5.5
meow: 9.0.0
nan: 2.15.0
node-gyp: 3.8.0
node-gyp: 7.1.2
npmlog: 4.1.2
request: 2.88.2
sass-graph: 2.2.5
@ -16165,6 +16052,14 @@ packages:
osenv: 0.1.5
dev: true
/nopt/5.0.0:
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
engines: {node: '>=6'}
hasBin: true
dependencies:
abbrev: 1.1.1
dev: true
/normalize-package-data/2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
@ -16703,13 +16598,6 @@ packages:
path-root: 0.1.1
dev: true
/parse-json/2.2.0:
resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=}
engines: {node: '>=0.10.0'}
dependencies:
error-ex: 1.3.2
dev: true
/parse-json/4.0.0:
resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=}
engines: {node: '>=4'}
@ -16775,13 +16663,6 @@ packages:
resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=}
optional: true
/path-exists/2.1.0:
resolution: {integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=}
engines: {node: '>=0.10.0'}
dependencies:
pinkie-promise: 2.0.1
dev: true
/path-exists/3.0.0:
resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
engines: {node: '>=4'}
@ -16825,15 +16706,6 @@ packages:
resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
dev: true
/path-type/1.1.0:
resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=}
engines: {node: '>=0.10.0'}
dependencies:
graceful-fs: 4.2.8
pify: 2.3.0
pinkie-promise: 2.0.1
dev: true
/path-type/3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
engines: {node: '>=4'}
@ -16904,18 +16776,6 @@ packages:
engines: {node: '>=10'}
dev: true
/pinkie-promise/2.0.1:
resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
engines: {node: '>=0.10.0'}
dependencies:
pinkie: 2.0.4
dev: true
/pinkie/2.0.4:
resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=}
engines: {node: '>=0.10.0'}
dev: true
/pirates/4.0.1:
resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==}
engines: {node: '>= 6'}
@ -18153,14 +18013,6 @@ packages:
pify: 2.3.0
dev: true
/read-pkg-up/1.0.1:
resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=}
engines: {node: '>=0.10.0'}
dependencies:
find-up: 1.1.2
read-pkg: 1.1.0
dev: true
/read-pkg-up/4.0.0:
resolution: {integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==}
engines: {node: '>=6'}
@ -18177,15 +18029,6 @@ packages:
read-pkg: 5.2.0
type-fest: 0.8.1
/read-pkg/1.1.0:
resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=}
engines: {node: '>=0.10.0'}
dependencies:
load-json-file: 1.1.0
normalize-package-data: 2.5.0
path-type: 1.1.0
dev: true
/read-pkg/3.0.0:
resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=}
engines: {node: '>=4'}
@ -18262,14 +18105,6 @@ packages:
resolve: 1.20.0
dev: true
/redent/1.0.0:
resolution: {integrity: sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=}
engines: {node: '>=0.10.0'}
dependencies:
indent-string: 2.1.0
strip-indent: 1.0.1
dev: true
/redent/3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
@ -18902,11 +18737,6 @@ packages:
engines: {node: '>=6'}
dev: true
/semver/5.3.0:
resolution: {integrity: sha1-myzl094C0XxgEq0yaqa00M9U+U8=}
hasBin: true
dev: true
/semver/5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
@ -19570,14 +19400,6 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
/strip-indent/1.0.1:
resolution: {integrity: sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
get-stdin: 4.0.1
dev: true
/strip-indent/3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
@ -20043,13 +19865,16 @@ packages:
engines: {node: '>=6'}
dev: true
/tar/2.2.2:
resolution: {integrity: sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==}
deprecated: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.
/tar/6.1.11:
resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==}
engines: {node: '>= 10'}
dependencies:
block-stream: 0.0.9
fstream: 1.0.12
inherits: 2.0.4
chownr: 2.0.0
fs-minipass: 2.1.0
minipass: 3.1.5
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
dev: true
/term-size/1.2.0:
@ -20367,11 +20192,6 @@ packages:
hasBin: true
dev: false
/trim-newlines/1.0.0:
resolution: {integrity: sha1-WIeWa7WCpFA6QetST301ARgVphM=}
engines: {node: '>=0.10.0'}
dev: true
/trim-newlines/3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
@ -20927,11 +20747,6 @@ packages:
- supports-color
dev: false
/walker/1.0.7:
resolution: {integrity: sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=}
dependencies:
makeerror: 1.0.11
/walker/1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies: