mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
Merge branch 'elasticpath-master' of https://github.com/trikatechnologies/ckube-store into CKAD-129-Product-details-variants-adding-color-and-size
This commit is contained in:
commit
9e1348830f
@ -1,17 +1,53 @@
|
|||||||
import { SWRHook } from '@commerce/utils/types'
|
import { SWRHook } from '@commerce/utils/types'
|
||||||
import useSearch, { UseSearch } from '@commerce/product/use-search'
|
import useSearch, { UseSearch } from '@commerce/product/use-search'
|
||||||
|
import type { SearchProductsHook } from '../types/product'
|
||||||
|
import epClient from '../utils/ep-client'
|
||||||
|
import normalizeProducts from '../utils/normalize'
|
||||||
|
|
||||||
export default useSearch as UseSearch<typeof handler>
|
export default useSearch as UseSearch<typeof handler>
|
||||||
|
|
||||||
export const handler: SWRHook<any> = {
|
export type SearchProductsInput = {
|
||||||
|
search?: string
|
||||||
|
sort?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const handler: SWRHook<SearchProductsHook> = {
|
||||||
fetchOptions: {
|
fetchOptions: {
|
||||||
query: '',
|
url: 'Products',
|
||||||
|
method: 'All',
|
||||||
},
|
},
|
||||||
async fetcher({ input, options, fetch }) {},
|
async fetcher({ input: { search, sort }, options, fetch }) {
|
||||||
useHook: () => () => {
|
// Use a dummy base as we only care about the relative path
|
||||||
return {
|
let url = new URL(options.url!, 'http://api.moltin.com')
|
||||||
data: {
|
|
||||||
products: [],
|
if (search) url.searchParams.set('search', search)
|
||||||
},
|
if (sort) url.searchParams.set('sort', sort)
|
||||||
|
|
||||||
|
if(sort){
|
||||||
|
let productsRes = await epClient.PCM.Sort(sort).All();
|
||||||
|
let products = await normalizeProducts(productsRes.data);
|
||||||
|
return {
|
||||||
|
products: products,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
let productsRes = await epClient.PCM.All()
|
||||||
|
let products = await normalizeProducts(productsRes.data);
|
||||||
|
return {
|
||||||
|
products: products
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
useHook: ({ useData }) => (input = {}) => {
|
||||||
|
return useData({
|
||||||
|
input: [
|
||||||
|
['search', input.search],
|
||||||
|
['sort', input.sort],
|
||||||
|
],
|
||||||
|
swrOptions: {
|
||||||
|
revalidateOnFocus: false,
|
||||||
|
...input.swrOptions,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
@ -2,7 +2,7 @@ import axios from "axios";
|
|||||||
|
|
||||||
const getShippingrates = () => {
|
const getShippingrates = () => {
|
||||||
axios({
|
axios({
|
||||||
url: 'http://localhost:3030/store-events/61a071eb6885c0001ef18569/get-shipping-rates',
|
url: 'http://206.189.135.123:3030/store-events/615aa7276b3472001db03258/get-shipping-rates',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data: {
|
data: {
|
||||||
payload:{
|
payload:{
|
||||||
|
@ -2,7 +2,7 @@ import axios from "axios";
|
|||||||
|
|
||||||
const getTax = () => {
|
const getTax = () => {
|
||||||
axios({
|
axios({
|
||||||
url: 'http://localhost:3030/store-events/61a071eb6885c0001ef18569/get-tax',
|
url: 'http://206.189.135.123:3030/store-events/615aa7276b3472001db03258/get-tax',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data: {
|
data: {
|
||||||
payload:{
|
payload:{
|
||||||
|
1
framework/elasticpath/types/product.tsx
Normal file
1
framework/elasticpath/types/product.tsx
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from '@commerce/types/product'
|
7562
package-lock.json
generated
7562
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
558
yarn.lock
558
yarn.lock
@ -181,12 +181,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.14.5"
|
"@babel/types" "^7.14.5"
|
||||||
|
|
||||||
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.5":
|
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9":
|
||||||
"integrity" "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"
|
|
||||||
"version" "7.14.5"
|
|
||||||
|
|
||||||
"@babel/helper-validator-identifier@^7.14.9":
|
|
||||||
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
|
||||||
"version" "7.15.7"
|
"version" "7.15.7"
|
||||||
@ -214,21 +209,21 @@
|
|||||||
"chalk" "^2.0.0"
|
"chalk" "^2.0.0"
|
||||||
"js-tokens" "^4.0.0"
|
"js-tokens" "^4.0.0"
|
||||||
|
|
||||||
"@babel/parser@^7.0.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7":
|
"@babel/parser@^7.0.0", "@babel/parser@^7.12.13", "@babel/parser@7.12.16":
|
||||||
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
|
|
||||||
"version" "7.14.7"
|
|
||||||
|
|
||||||
"@babel/parser@^7.12.13":
|
|
||||||
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
|
|
||||||
"version" "7.14.7"
|
|
||||||
|
|
||||||
"@babel/parser@7.12.16":
|
|
||||||
"integrity" "sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw=="
|
"integrity" "sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz"
|
||||||
"version" "7.12.16"
|
"version" "7.12.16"
|
||||||
|
|
||||||
|
"@babel/parser@^7.14.5":
|
||||||
|
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
|
||||||
|
"version" "7.14.7"
|
||||||
|
|
||||||
|
"@babel/parser@^7.14.6", "@babel/parser@^7.14.7":
|
||||||
|
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
|
||||||
|
"version" "7.14.7"
|
||||||
|
|
||||||
"@babel/plugin-proposal-class-properties@^7.0.0":
|
"@babel/plugin-proposal-class-properties@^7.0.0":
|
||||||
"integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="
|
"integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"
|
||||||
@ -434,28 +429,14 @@
|
|||||||
"@babel/helper-plugin-utils" "^7.14.5"
|
"@babel/helper-plugin-utils" "^7.14.5"
|
||||||
|
|
||||||
"@babel/runtime-corejs3@^7.10.2":
|
"@babel/runtime-corejs3@^7.10.2":
|
||||||
"integrity" "sha512-IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ=="
|
"integrity" "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.3.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz"
|
||||||
"version" "7.16.3"
|
"version" "7.15.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
"core-js-pure" "^3.19.0"
|
"core-js-pure" "^3.16.0"
|
||||||
"regenerator-runtime" "^0.13.4"
|
"regenerator-runtime" "^0.13.4"
|
||||||
|
|
||||||
"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0":
|
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0":
|
||||||
"integrity" "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz"
|
|
||||||
"version" "7.14.6"
|
|
||||||
dependencies:
|
|
||||||
"regenerator-runtime" "^0.13.4"
|
|
||||||
|
|
||||||
"@babel/runtime@^7.10.2":
|
|
||||||
"integrity" "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz"
|
|
||||||
"version" "7.14.8"
|
|
||||||
dependencies:
|
|
||||||
"regenerator-runtime" "^0.13.4"
|
|
||||||
|
|
||||||
"@babel/runtime@^7.11.2":
|
|
||||||
"integrity" "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg=="
|
"integrity" "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz"
|
||||||
"version" "7.14.8"
|
"version" "7.14.8"
|
||||||
@ -485,22 +466,7 @@
|
|||||||
"@babel/parser" "^7.14.5"
|
"@babel/parser" "^7.14.5"
|
||||||
"@babel/types" "^7.14.5"
|
"@babel/types" "^7.14.5"
|
||||||
|
|
||||||
"@babel/traverse@^7.0.0", "@babel/traverse@^7.14.5":
|
"@babel/traverse@^7.0.0", "@babel/traverse@7.12.13":
|
||||||
"integrity" "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz"
|
|
||||||
"version" "7.14.7"
|
|
||||||
dependencies:
|
|
||||||
"@babel/code-frame" "^7.14.5"
|
|
||||||
"@babel/generator" "^7.14.5"
|
|
||||||
"@babel/helper-function-name" "^7.14.5"
|
|
||||||
"@babel/helper-hoist-variables" "^7.14.5"
|
|
||||||
"@babel/helper-split-export-declaration" "^7.14.5"
|
|
||||||
"@babel/parser" "^7.14.7"
|
|
||||||
"@babel/types" "^7.14.5"
|
|
||||||
"debug" "^4.1.0"
|
|
||||||
"globals" "^11.1.0"
|
|
||||||
|
|
||||||
"@babel/traverse@7.12.13":
|
|
||||||
"integrity" "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA=="
|
"integrity" "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz"
|
||||||
"version" "7.12.13"
|
"version" "7.12.13"
|
||||||
@ -515,23 +481,22 @@
|
|||||||
"globals" "^11.1.0"
|
"globals" "^11.1.0"
|
||||||
"lodash" "^4.17.19"
|
"lodash" "^4.17.19"
|
||||||
|
|
||||||
"@babel/types@^7.0.0", "@babel/types@^7.14.5":
|
"@babel/traverse@^7.14.5":
|
||||||
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
|
"integrity" "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz"
|
||||||
"version" "7.14.5"
|
"version" "7.14.7"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-validator-identifier" "^7.14.5"
|
"@babel/code-frame" "^7.14.5"
|
||||||
"to-fast-properties" "^2.0.0"
|
"@babel/generator" "^7.14.5"
|
||||||
|
"@babel/helper-function-name" "^7.14.5"
|
||||||
|
"@babel/helper-hoist-variables" "^7.14.5"
|
||||||
|
"@babel/helper-split-export-declaration" "^7.14.5"
|
||||||
|
"@babel/parser" "^7.14.7"
|
||||||
|
"@babel/types" "^7.14.5"
|
||||||
|
"debug" "^4.1.0"
|
||||||
|
"globals" "^11.1.0"
|
||||||
|
|
||||||
"@babel/types@^7.12.13":
|
"@babel/types@^7.0.0", "@babel/types@^7.12.13", "@babel/types@7.12.13":
|
||||||
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
|
|
||||||
"version" "7.14.5"
|
|
||||||
dependencies:
|
|
||||||
"@babel/helper-validator-identifier" "^7.14.5"
|
|
||||||
"to-fast-properties" "^2.0.0"
|
|
||||||
|
|
||||||
"@babel/types@7.12.13":
|
|
||||||
"integrity" "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ=="
|
"integrity" "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz"
|
||||||
"version" "7.12.13"
|
"version" "7.12.13"
|
||||||
@ -540,6 +505,14 @@
|
|||||||
"lodash" "^4.17.19"
|
"lodash" "^4.17.19"
|
||||||
"to-fast-properties" "^2.0.0"
|
"to-fast-properties" "^2.0.0"
|
||||||
|
|
||||||
|
"@babel/types@^7.14.5":
|
||||||
|
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
|
||||||
|
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
|
||||||
|
"version" "7.14.5"
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-validator-identifier" "^7.14.5"
|
||||||
|
"to-fast-properties" "^2.0.0"
|
||||||
|
|
||||||
"@babel/types@7.15.0":
|
"@babel/types@7.15.0":
|
||||||
"integrity" "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ=="
|
"integrity" "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ=="
|
||||||
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz"
|
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz"
|
||||||
@ -958,13 +931,6 @@
|
|||||||
"resolved" "https://registry.npmjs.org/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz"
|
"resolved" "https://registry.npmjs.org/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz"
|
||||||
"version" "2.0.1"
|
"version" "2.0.1"
|
||||||
|
|
||||||
"@moltin/request@^2.0.2":
|
|
||||||
"integrity" "sha512-+ulHabpFp//lNXpVt2JM+jX6cC2rQ9AAo5slSuIWa2/xrzdbbYYx1QFE4Z9neoWrCCz5RX7OC2CTBM8/wd98EA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@moltin/request/-/request-2.0.2.tgz"
|
|
||||||
"version" "2.0.2"
|
|
||||||
dependencies:
|
|
||||||
"cross-fetch" "3.0.4"
|
|
||||||
|
|
||||||
"@moltin/sdk@^8.8.1":
|
"@moltin/sdk@^8.8.1":
|
||||||
"integrity" "sha512-B5ds4rNKsU4jcFYr+9ENntqVBqdlx2LMNrAW7aAcllN0ZljtsQpbDKupfdm6SUIiopJiQSV3UnlQaOK0UNfShg=="
|
"integrity" "sha512-B5ds4rNKsU4jcFYr+9ENntqVBqdlx2LMNrAW7aAcllN0ZljtsQpbDKupfdm6SUIiopJiQSV3UnlQaOK0UNfShg=="
|
||||||
"resolved" "https://registry.npmjs.org/@moltin/sdk/-/sdk-8.8.1.tgz"
|
"resolved" "https://registry.npmjs.org/@moltin/sdk/-/sdk-8.8.1.tgz"
|
||||||
@ -1211,23 +1177,26 @@
|
|||||||
"resolved" "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-4.1.1.tgz"
|
"resolved" "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-4.1.1.tgz"
|
||||||
"version" "4.1.1"
|
"version" "4.1.1"
|
||||||
|
|
||||||
"@types/node-fetch@2", "@types/node-fetch@2.3.2":
|
"@types/node-fetch@2.3.2":
|
||||||
"integrity" "sha512-yW0EOebSsQme9yKu09XbdDfle4/SmWZMK4dfteWcSLCYNQQcF+YOv0kIrvm+9pO11/ghA4E6A+RNQqvYj4Nr3A=="
|
"integrity" "sha512-yW0EOebSsQme9yKu09XbdDfle4/SmWZMK4dfteWcSLCYNQQcF+YOv0kIrvm+9pO11/ghA4E6A+RNQqvYj4Nr3A=="
|
||||||
"resolved" "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.3.2.tgz"
|
"resolved" "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.3.2.tgz"
|
||||||
"version" "2.3.2"
|
"version" "2.3.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/node@*", "@types/node@^15.12.4", "@types/node@>=12":
|
"@types/node-fetch@2":
|
||||||
|
"integrity" "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw=="
|
||||||
|
"resolved" "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.12.tgz"
|
||||||
|
"version" "2.5.12"
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
"form-data" "^3.0.0"
|
||||||
|
|
||||||
|
"@types/node@*", "@types/node@^15.12.4", "@types/node@>=12", "@types/node@>=8.1.0":
|
||||||
"integrity" "sha512-zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA=="
|
"integrity" "sha512-zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA=="
|
||||||
"resolved" "https://registry.npmjs.org/@types/node/-/node-15.12.4.tgz"
|
"resolved" "https://registry.npmjs.org/@types/node/-/node-15.12.4.tgz"
|
||||||
"version" "15.12.4"
|
"version" "15.12.4"
|
||||||
|
|
||||||
"@types/node@>=8.1.0":
|
|
||||||
"integrity" "sha512-YHUZhBOMTM3mjFkXVcK+WwAcYmyhe1wL4lfqNtzI0b3qAy7yuSetnM7QJazgE5PFmgVTNGiLOgRFfJMqW7XpSQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/@types/node/-/node-16.9.6.tgz"
|
|
||||||
"version" "16.9.6"
|
|
||||||
|
|
||||||
"@types/node@10.12.18":
|
"@types/node@10.12.18":
|
||||||
"integrity" "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
|
"integrity" "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
|
||||||
"resolved" "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz"
|
"resolved" "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz"
|
||||||
@ -1692,16 +1661,9 @@
|
|||||||
"version" "1.0.5"
|
"version" "1.0.5"
|
||||||
|
|
||||||
"axe-core@^4.0.2":
|
"axe-core@^4.0.2":
|
||||||
"integrity" "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA=="
|
"integrity" "sha512-4Hk6iSA/H90rtiPoCpSkeJxNWCPBf7szwVvaUqrPdxo0j2Y04suHK9jPKXaE3WI7OET6wBSwsWw7FDc1DBq7iQ=="
|
||||||
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz"
|
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.3.4.tgz"
|
||||||
"version" "4.3.5"
|
"version" "4.3.4"
|
||||||
|
|
||||||
"axios@^0.24.0":
|
|
||||||
"integrity" "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz"
|
|
||||||
"version" "0.24.0"
|
|
||||||
dependencies:
|
|
||||||
"follow-redirects" "^1.14.4"
|
|
||||||
|
|
||||||
"axobject-query@^2.2.0":
|
"axobject-query@^2.2.0":
|
||||||
"integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="
|
"integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="
|
||||||
@ -1787,17 +1749,22 @@
|
|||||||
"inherits" "^2.0.4"
|
"inherits" "^2.0.4"
|
||||||
"readable-stream" "^3.4.0"
|
"readable-stream" "^3.4.0"
|
||||||
|
|
||||||
"bn.js@^4.0.0", "bn.js@^4.1.0", "bn.js@^4.11.9":
|
"bn.js@^4.0.0":
|
||||||
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
||||||
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
|
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
|
||||||
"version" "4.12.0"
|
"version" "4.12.0"
|
||||||
|
|
||||||
"bn.js@^5.0.0":
|
"bn.js@^4.1.0":
|
||||||
"integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
|
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
||||||
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
|
||||||
"version" "5.2.0"
|
"version" "4.12.0"
|
||||||
|
|
||||||
"bn.js@^5.1.1":
|
"bn.js@^4.11.9":
|
||||||
|
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
|
||||||
|
"version" "4.12.0"
|
||||||
|
|
||||||
|
"bn.js@^5.0.0", "bn.js@^5.1.1":
|
||||||
"integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
|
"integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
|
||||||
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"
|
||||||
"version" "5.2.0"
|
"version" "5.2.0"
|
||||||
@ -1930,15 +1897,7 @@
|
|||||||
"ieee754" "^1.1.4"
|
"ieee754" "^1.1.4"
|
||||||
"isarray" "^1.0.0"
|
"isarray" "^1.0.0"
|
||||||
|
|
||||||
"buffer@^5.5.0", "buffer@^5.7.0":
|
"buffer@^5.5.0", "buffer@5.6.0":
|
||||||
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
|
|
||||||
"version" "5.7.1"
|
|
||||||
dependencies:
|
|
||||||
"base64-js" "^1.3.1"
|
|
||||||
"ieee754" "^1.1.13"
|
|
||||||
|
|
||||||
"buffer@5.6.0":
|
|
||||||
"integrity" "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw=="
|
"integrity" "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw=="
|
||||||
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz"
|
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz"
|
||||||
"version" "5.6.0"
|
"version" "5.6.0"
|
||||||
@ -1946,6 +1905,14 @@
|
|||||||
"base64-js" "^1.0.2"
|
"base64-js" "^1.0.2"
|
||||||
"ieee754" "^1.1.4"
|
"ieee754" "^1.1.4"
|
||||||
|
|
||||||
|
"buffer@^5.7.0":
|
||||||
|
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
|
||||||
|
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
|
||||||
|
"version" "5.7.1"
|
||||||
|
dependencies:
|
||||||
|
"base64-js" "^1.3.1"
|
||||||
|
"ieee754" "^1.1.13"
|
||||||
|
|
||||||
"builtin-status-codes@^3.0.0":
|
"builtin-status-codes@^3.0.0":
|
||||||
"integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
|
"integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
|
||||||
"resolved" "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
|
"resolved" "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
|
||||||
@ -2000,16 +1967,11 @@
|
|||||||
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
|
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
|
||||||
"version" "5.3.1"
|
"version" "5.3.1"
|
||||||
|
|
||||||
"caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001219", "caniuse-lite@^1.0.30001230":
|
"caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001202", "caniuse-lite@^1.0.30001219", "caniuse-lite@^1.0.30001228", "caniuse-lite@^1.0.30001230":
|
||||||
"integrity" "sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw=="
|
"integrity" "sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw=="
|
||||||
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz"
|
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz"
|
||||||
"version" "1.0.30001237"
|
"version" "1.0.30001237"
|
||||||
|
|
||||||
"caniuse-lite@^1.0.30001202", "caniuse-lite@^1.0.30001228":
|
|
||||||
"integrity" "sha512-vM8D9Uvp7bHIN0fZ2KQ4wnmYFpJo/Etb4Vwsuc+ka0tfGDHvOPrFm6S/7CCNLSOkAUjenT2HnUPESdOIL91FaA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001261.tgz"
|
|
||||||
"version" "1.0.30001261"
|
|
||||||
|
|
||||||
"capital-case@^1.0.4":
|
"capital-case@^1.0.4":
|
||||||
"integrity" "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="
|
"integrity" "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="
|
||||||
"resolved" "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz"
|
"resolved" "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz"
|
||||||
@ -2179,7 +2141,14 @@
|
|||||||
"resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
|
||||||
"version" "2.2.0"
|
"version" "2.2.0"
|
||||||
|
|
||||||
"cli-cursor@^2.0.0", "cli-cursor@^2.1.0":
|
"cli-cursor@^2.0.0":
|
||||||
|
"integrity" "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU="
|
||||||
|
"resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
|
||||||
|
"version" "2.1.0"
|
||||||
|
dependencies:
|
||||||
|
"restore-cursor" "^2.0.0"
|
||||||
|
|
||||||
|
"cli-cursor@^2.1.0":
|
||||||
"integrity" "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU="
|
"integrity" "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU="
|
||||||
"resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
|
"resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
|
||||||
"version" "2.1.0"
|
"version" "2.1.0"
|
||||||
@ -2244,7 +2213,14 @@
|
|||||||
"resolved" "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
|
"resolved" "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
|
||||||
"version" "1.1.0"
|
"version" "1.1.0"
|
||||||
|
|
||||||
"color-convert@^1.9.0", "color-convert@^1.9.1":
|
"color-convert@^1.9.0":
|
||||||
|
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
|
||||||
|
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
|
||||||
|
"version" "1.9.3"
|
||||||
|
dependencies:
|
||||||
|
"color-name" "1.1.3"
|
||||||
|
|
||||||
|
"color-convert@^1.9.1":
|
||||||
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
|
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
|
||||||
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
|
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
|
||||||
"version" "1.9.3"
|
"version" "1.9.3"
|
||||||
@ -2268,15 +2244,7 @@
|
|||||||
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
|
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
|
||||||
"version" "1.1.3"
|
"version" "1.1.3"
|
||||||
|
|
||||||
"color-string@^1.5.4":
|
"color-string@^1.5.4", "color-string@^1.6.0":
|
||||||
"integrity" "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"
|
|
||||||
"version" "1.5.5"
|
|
||||||
dependencies:
|
|
||||||
"color-name" "^1.0.0"
|
|
||||||
"simple-swizzle" "^0.2.2"
|
|
||||||
|
|
||||||
"color-string@^1.6.0":
|
|
||||||
"integrity" "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="
|
"integrity" "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="
|
||||||
"resolved" "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"
|
"resolved" "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"
|
||||||
"version" "1.6.0"
|
"version" "1.6.0"
|
||||||
@ -2312,7 +2280,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"delayed-stream" "~1.0.0"
|
"delayed-stream" "~1.0.0"
|
||||||
|
|
||||||
"commander@^6.0.0", "commander@^6.2.0":
|
"commander@^6.0.0":
|
||||||
|
"integrity" "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"
|
||||||
|
"version" "6.2.1"
|
||||||
|
|
||||||
|
"commander@^6.2.0":
|
||||||
"integrity" "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="
|
"integrity" "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="
|
||||||
"resolved" "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"
|
"resolved" "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"
|
||||||
"version" "6.2.1"
|
"version" "6.2.1"
|
||||||
@ -2380,10 +2353,10 @@
|
|||||||
"resolved" "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz"
|
"resolved" "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz"
|
||||||
"version" "0.4.1"
|
"version" "0.4.1"
|
||||||
|
|
||||||
"core-js-pure@^3.19.0":
|
"core-js-pure@^3.16.0":
|
||||||
"integrity" "sha512-Q0Knr8Es84vtv62ei6/6jXH/7izKmOrtrxH9WJTHLCMAVeU+8TF8z8Nr08CsH4Ot0oJKzBzJJL9SJBYIv7WlfQ=="
|
"integrity" "sha512-UEQk8AxyCYvNAs6baNoPqDADv7BX0AmBLGxVsrAifPPx/C8EAzV4Q+2ZUJqVzfI2TQQEZITnwUkWcHpgc/IubQ=="
|
||||||
"resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.1.tgz"
|
"resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.0.tgz"
|
||||||
"version" "3.19.1"
|
"version" "3.19.0"
|
||||||
|
|
||||||
"core-util-is@~1.0.0":
|
"core-util-is@~1.0.0":
|
||||||
"integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
"integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
||||||
@ -2444,28 +2417,20 @@
|
|||||||
"resolved" "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"
|
"resolved" "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"
|
||||||
"version" "1.1.1"
|
"version" "1.1.1"
|
||||||
|
|
||||||
"cross-fetch@^3.0.4", "cross-fetch@^3.0.6", "cross-fetch@3.1.4":
|
"cross-fetch@^3.0.4", "cross-fetch@^3.0.6", "cross-fetch@3.0.6":
|
||||||
"integrity" "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz"
|
|
||||||
"version" "3.1.4"
|
|
||||||
dependencies:
|
|
||||||
"node-fetch" "2.6.1"
|
|
||||||
|
|
||||||
"cross-fetch@3.0.4":
|
|
||||||
"integrity" "sha512-MSHgpjQqgbT/94D4CyADeNoYh52zMkCX4pcJvPP5WqPsLFMKjr2TCMg381ox5qI0ii2dPwaLx/00477knXqXVw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.4.tgz"
|
|
||||||
"version" "3.0.4"
|
|
||||||
dependencies:
|
|
||||||
"node-fetch" "2.6.0"
|
|
||||||
"whatwg-fetch" "3.0.0"
|
|
||||||
|
|
||||||
"cross-fetch@3.0.6":
|
|
||||||
"integrity" "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ=="
|
"integrity" "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ=="
|
||||||
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz"
|
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz"
|
||||||
"version" "3.0.6"
|
"version" "3.0.6"
|
||||||
dependencies:
|
dependencies:
|
||||||
"node-fetch" "2.6.1"
|
"node-fetch" "2.6.1"
|
||||||
|
|
||||||
|
"cross-fetch@3.1.4":
|
||||||
|
"integrity" "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ=="
|
||||||
|
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz"
|
||||||
|
"version" "3.1.4"
|
||||||
|
dependencies:
|
||||||
|
"node-fetch" "2.6.1"
|
||||||
|
|
||||||
"cross-spawn@^7.0.2", "cross-spawn@^7.0.3":
|
"cross-spawn@^7.0.2", "cross-spawn@^7.0.3":
|
||||||
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
|
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
|
||||||
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
|
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
|
||||||
@ -2604,27 +2569,13 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"ms" "^2.1.1"
|
"ms" "^2.1.1"
|
||||||
|
|
||||||
"debug@^4.0.1":
|
"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.1", "debug@4":
|
||||||
"integrity" "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"
|
|
||||||
"version" "4.3.2"
|
|
||||||
dependencies:
|
|
||||||
"ms" "2.1.2"
|
|
||||||
|
|
||||||
"debug@^4.1.0", "debug@^4.3.1", "debug@4":
|
|
||||||
"integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="
|
"integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="
|
||||||
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
|
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
|
||||||
"version" "4.3.1"
|
"version" "4.3.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"ms" "2.1.2"
|
"ms" "2.1.2"
|
||||||
|
|
||||||
"debug@^4.1.1":
|
|
||||||
"integrity" "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"
|
|
||||||
"version" "4.3.2"
|
|
||||||
dependencies:
|
|
||||||
"ms" "2.1.2"
|
|
||||||
|
|
||||||
"debug@2":
|
"debug@2":
|
||||||
"integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
|
"integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
|
||||||
"resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
|
"resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
|
||||||
@ -2903,29 +2854,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"is-arrayish" "^0.2.1"
|
"is-arrayish" "^0.2.1"
|
||||||
|
|
||||||
"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2":
|
"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2", "es-abstract@^1.18.5":
|
||||||
"integrity" "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz"
|
|
||||||
"version" "1.18.3"
|
|
||||||
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-abstract@^1.18.5":
|
|
||||||
"integrity" "sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ=="
|
"integrity" "sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ=="
|
||||||
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz"
|
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz"
|
||||||
"version" "1.18.6"
|
"version" "1.18.6"
|
||||||
@ -3106,7 +3035,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"eslint-visitor-keys" "^1.1.0"
|
"eslint-visitor-keys" "^1.1.0"
|
||||||
|
|
||||||
"eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0":
|
"eslint-visitor-keys@^1.1.0":
|
||||||
|
"integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
|
||||||
|
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
|
||||||
|
"version" "1.3.0"
|
||||||
|
|
||||||
|
"eslint-visitor-keys@^1.3.0":
|
||||||
"integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
|
"integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
|
||||||
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
|
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
|
||||||
"version" "1.3.0"
|
"version" "1.3.0"
|
||||||
@ -3195,7 +3129,12 @@
|
|||||||
"resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
|
"resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
|
||||||
"version" "4.3.0"
|
"version" "4.3.0"
|
||||||
|
|
||||||
"estraverse@^5.1.0", "estraverse@^5.2.0":
|
"estraverse@^5.1.0":
|
||||||
|
"integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
|
||||||
|
"resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
|
||||||
|
"version" "5.2.0"
|
||||||
|
|
||||||
|
"estraverse@^5.2.0":
|
||||||
"integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
|
"integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="
|
||||||
"resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
|
||||||
"version" "5.2.0"
|
"version" "5.2.0"
|
||||||
@ -3420,11 +3359,6 @@
|
|||||||
"resolved" "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz"
|
"resolved" "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz"
|
||||||
"version" "1.0.3"
|
"version" "1.0.3"
|
||||||
|
|
||||||
"follow-redirects@^1.14.4":
|
|
||||||
"integrity" "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A=="
|
|
||||||
"resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz"
|
|
||||||
"version" "1.14.6"
|
|
||||||
|
|
||||||
"foreach@^2.0.5":
|
"foreach@^2.0.5":
|
||||||
"integrity" "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
|
"integrity" "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
|
||||||
"resolved" "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
|
"resolved" "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
|
||||||
@ -3609,19 +3543,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"type-fest" "^0.20.2"
|
"type-fest" "^0.20.2"
|
||||||
|
|
||||||
"globby@^11.0.3":
|
"globby@^11.0.3", "globby@11.0.3":
|
||||||
"integrity" "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"
|
|
||||||
"version" "11.0.4"
|
|
||||||
dependencies:
|
|
||||||
"array-union" "^2.1.0"
|
|
||||||
"dir-glob" "^3.0.1"
|
|
||||||
"fast-glob" "^3.1.1"
|
|
||||||
"ignore" "^5.1.4"
|
|
||||||
"merge2" "^1.3.0"
|
|
||||||
"slash" "^3.0.0"
|
|
||||||
|
|
||||||
"globby@11.0.3":
|
|
||||||
"integrity" "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="
|
"integrity" "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="
|
||||||
"resolved" "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"
|
"resolved" "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"
|
||||||
"version" "11.0.3"
|
"version" "11.0.3"
|
||||||
@ -3961,21 +3883,16 @@
|
|||||||
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
|
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
|
||||||
"version" "2.0.4"
|
"version" "2.0.4"
|
||||||
|
|
||||||
"inherits@~2.0.1":
|
"inherits@~2.0.1", "inherits@2.0.3":
|
||||||
"integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
"integrity" "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
||||||
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
|
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
|
||||||
"version" "2.0.4"
|
"version" "2.0.3"
|
||||||
|
|
||||||
"inherits@2.0.1":
|
"inherits@2.0.1":
|
||||||
"integrity" "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
|
"integrity" "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
|
||||||
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
||||||
"version" "2.0.1"
|
"version" "2.0.1"
|
||||||
|
|
||||||
"inherits@2.0.3":
|
|
||||||
"integrity" "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
|
||||||
"resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
|
|
||||||
"version" "2.0.3"
|
|
||||||
|
|
||||||
"ini@~1.3.0":
|
"ini@~1.3.0":
|
||||||
"integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
"integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
||||||
"resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
|
"resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
|
||||||
@ -4054,24 +3971,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"call-bind" "^1.0.2"
|
"call-bind" "^1.0.2"
|
||||||
|
|
||||||
"is-callable@^1.1.4", "is-callable@^1.2.3":
|
"is-callable@^1.1.4", "is-callable@^1.2.4":
|
||||||
"integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"
|
|
||||||
"version" "1.2.3"
|
|
||||||
|
|
||||||
"is-callable@^1.2.4":
|
|
||||||
"integrity" "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
|
"integrity" "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
|
||||||
"resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"
|
"resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"
|
||||||
"version" "1.2.4"
|
"version" "1.2.4"
|
||||||
|
|
||||||
"is-core-module@^2.2.0":
|
"is-core-module@^2.2.0", "is-core-module@^2.4.0":
|
||||||
"integrity" "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A=="
|
|
||||||
"resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz"
|
|
||||||
"version" "2.4.0"
|
|
||||||
dependencies:
|
|
||||||
"has" "^1.0.3"
|
|
||||||
|
|
||||||
"is-core-module@^2.4.0":
|
|
||||||
"integrity" "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg=="
|
"integrity" "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg=="
|
||||||
"resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz"
|
"resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz"
|
||||||
"version" "2.5.0"
|
"version" "2.5.0"
|
||||||
@ -4112,14 +4017,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"has-tostringtag" "^1.0.0"
|
"has-tostringtag" "^1.0.0"
|
||||||
|
|
||||||
"is-glob@^4.0.0":
|
"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@~4.0.1", "is-glob@4.0.1":
|
||||||
"integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="
|
|
||||||
"resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
|
|
||||||
"version" "4.0.3"
|
|
||||||
dependencies:
|
|
||||||
"is-extglob" "^2.1.1"
|
|
||||||
|
|
||||||
"is-glob@^4.0.1", "is-glob@~4.0.1", "is-glob@4.0.1":
|
|
||||||
"integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="
|
"integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="
|
||||||
"resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
|
"resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
|
||||||
"version" "4.0.1"
|
"version" "4.0.1"
|
||||||
@ -4178,14 +4076,6 @@
|
|||||||
"resolved" "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz"
|
"resolved" "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz"
|
||||||
"version" "4.0.0"
|
"version" "4.0.0"
|
||||||
|
|
||||||
"is-regex@^1.1.3":
|
|
||||||
"integrity" "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="
|
|
||||||
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz"
|
|
||||||
"version" "1.1.3"
|
|
||||||
dependencies:
|
|
||||||
"call-bind" "^1.0.2"
|
|
||||||
"has-symbols" "^1.0.2"
|
|
||||||
|
|
||||||
"is-regex@^1.1.4":
|
"is-regex@^1.1.4":
|
||||||
"integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="
|
"integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="
|
||||||
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
|
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
|
||||||
@ -4206,7 +4096,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"is-unc-path" "^1.0.0"
|
"is-unc-path" "^1.0.0"
|
||||||
|
|
||||||
"is-stream@^1.0.1", "is-stream@^1.1.0":
|
"is-stream@^1.0.1":
|
||||||
|
"integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
||||||
|
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
|
||||||
|
"version" "1.1.0"
|
||||||
|
|
||||||
|
"is-stream@^1.1.0":
|
||||||
"integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
"integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
||||||
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
|
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
|
||||||
"version" "1.1.0"
|
"version" "1.1.0"
|
||||||
@ -4216,12 +4111,7 @@
|
|||||||
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
|
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
|
||||||
"version" "2.0.0"
|
"version" "2.0.0"
|
||||||
|
|
||||||
"is-string@^1.0.5", "is-string@^1.0.6":
|
"is-string@^1.0.5", "is-string@^1.0.7":
|
||||||
"integrity" "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="
|
|
||||||
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz"
|
|
||||||
"version" "1.0.6"
|
|
||||||
|
|
||||||
"is-string@^1.0.7":
|
|
||||||
"integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="
|
"integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="
|
||||||
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
|
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
|
||||||
"version" "1.0.7"
|
"version" "1.0.7"
|
||||||
@ -4491,9 +4381,9 @@
|
|||||||
"type-check" "~0.4.0"
|
"type-check" "~0.4.0"
|
||||||
|
|
||||||
"lilconfig@^2.0.3":
|
"lilconfig@^2.0.3":
|
||||||
"integrity" "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA=="
|
"integrity" "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg=="
|
||||||
"resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz"
|
"resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz"
|
||||||
"version" "2.0.4"
|
"version" "2.0.3"
|
||||||
|
|
||||||
"lines-and-columns@^1.1.6":
|
"lines-and-columns@^1.1.6":
|
||||||
"integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
|
"integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
|
||||||
@ -4939,21 +4829,16 @@
|
|||||||
"resolved" "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz"
|
"resolved" "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz"
|
||||||
"version" "1.1.0"
|
"version" "1.1.0"
|
||||||
|
|
||||||
"ms@^2.0.0", "ms@^2.1.1":
|
"ms@^2.0.0", "ms@^2.1.1", "ms@2.1.2":
|
||||||
"integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
"integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
"resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
|
"resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
|
||||||
"version" "2.1.3"
|
"version" "2.1.2"
|
||||||
|
|
||||||
"ms@2.0.0":
|
"ms@2.0.0":
|
||||||
"integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
"integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
||||||
"resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
|
"resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
|
||||||
"version" "2.0.0"
|
"version" "2.0.0"
|
||||||
|
|
||||||
"ms@2.1.2":
|
|
||||||
"integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
|
||||||
"resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
|
|
||||||
"version" "2.1.2"
|
|
||||||
|
|
||||||
"mute-stream@0.0.8":
|
"mute-stream@0.0.8":
|
||||||
"integrity" "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
|
"integrity" "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
|
||||||
"resolved" "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
|
"resolved" "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
|
||||||
@ -5079,10 +4964,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"lodash.toarray" "^4.4.0"
|
"lodash.toarray" "^4.4.0"
|
||||||
|
|
||||||
"node-fetch@*", "node-fetch@^2.6.1", "node-fetch@2", "node-fetch@2.6.1":
|
"node-fetch@*", "node-fetch@^2.6.1", "node-fetch@2":
|
||||||
"integrity" "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
|
"integrity" "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ=="
|
||||||
"resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
|
"resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz"
|
||||||
"version" "2.6.1"
|
"version" "2.6.5"
|
||||||
|
dependencies:
|
||||||
|
"whatwg-url" "^5.0.0"
|
||||||
|
|
||||||
"node-fetch@^1.0.1":
|
"node-fetch@^1.0.1":
|
||||||
"integrity" "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="
|
"integrity" "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="
|
||||||
@ -5092,10 +4979,10 @@
|
|||||||
"encoding" "^0.1.11"
|
"encoding" "^0.1.11"
|
||||||
"is-stream" "^1.0.1"
|
"is-stream" "^1.0.1"
|
||||||
|
|
||||||
"node-fetch@2.6.0":
|
"node-fetch@2.6.1":
|
||||||
"integrity" "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="
|
"integrity" "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
|
||||||
"resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz"
|
"resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
|
||||||
"version" "2.6.0"
|
"version" "2.6.1"
|
||||||
|
|
||||||
"node-html-parser@1.4.9":
|
"node-html-parser@1.4.9":
|
||||||
"integrity" "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw=="
|
"integrity" "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw=="
|
||||||
@ -5224,11 +5111,6 @@
|
|||||||
"resolved" "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz"
|
||||||
"version" "2.2.0"
|
"version" "2.2.0"
|
||||||
|
|
||||||
"object-inspect@^1.10.3":
|
|
||||||
"integrity" "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz"
|
|
||||||
"version" "1.10.3"
|
|
||||||
|
|
||||||
"object-inspect@^1.11.0", "object-inspect@^1.9.0":
|
"object-inspect@^1.11.0", "object-inspect@^1.9.0":
|
||||||
"integrity" "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="
|
"integrity" "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="
|
||||||
"resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"
|
"resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"
|
||||||
@ -6009,16 +5891,7 @@
|
|||||||
"source-map" "^0.6.1"
|
"source-map" "^0.6.1"
|
||||||
"supports-color" "^6.1.0"
|
"supports-color" "^6.1.0"
|
||||||
|
|
||||||
"postcss@^8.2.15", "postcss@8.2.15":
|
"postcss@^8", "postcss@^8.0.0", "postcss@^8.0.9", "postcss@^8.1.0", "postcss@^8.1.13", "postcss@^8.1.4", "postcss@^8.1.6", "postcss@^8.2.1", "postcss@^8.2.15", "postcss@^8.3.5":
|
||||||
"integrity" "sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q=="
|
|
||||||
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz"
|
|
||||||
"version" "8.2.15"
|
|
||||||
dependencies:
|
|
||||||
"colorette" "^1.2.2"
|
|
||||||
"nanoid" "^3.1.23"
|
|
||||||
"source-map" "^0.6.1"
|
|
||||||
|
|
||||||
"postcss@^8", "postcss@^8.0.0", "postcss@^8.0.9", "postcss@^8.1.0", "postcss@^8.1.13", "postcss@^8.1.4", "postcss@^8.1.6", "postcss@^8.2.1", "postcss@^8.3.5":
|
|
||||||
"integrity" "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA=="
|
"integrity" "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA=="
|
||||||
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz"
|
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz"
|
||||||
"version" "8.3.5"
|
"version" "8.3.5"
|
||||||
@ -6027,6 +5900,15 @@
|
|||||||
"nanoid" "^3.1.23"
|
"nanoid" "^3.1.23"
|
||||||
"source-map-js" "^0.6.2"
|
"source-map-js" "^0.6.2"
|
||||||
|
|
||||||
|
"postcss@8.2.15":
|
||||||
|
"integrity" "sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q=="
|
||||||
|
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz"
|
||||||
|
"version" "8.2.15"
|
||||||
|
dependencies:
|
||||||
|
"colorette" "^1.2.2"
|
||||||
|
"nanoid" "^3.1.23"
|
||||||
|
"source-map" "^0.6.1"
|
||||||
|
|
||||||
"prebuild-install@^6.1.4":
|
"prebuild-install@^6.1.4":
|
||||||
"integrity" "sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ=="
|
"integrity" "sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ=="
|
||||||
"resolved" "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz"
|
"resolved" "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz"
|
||||||
@ -6577,19 +6459,22 @@
|
|||||||
"resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
|
"resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
|
||||||
"version" "5.7.1"
|
"version" "5.7.1"
|
||||||
|
|
||||||
"semver@^6.0.0", "semver@^6.2.0", "semver@^6.3.0":
|
"semver@^6.0.0":
|
||||||
"integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
"integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
||||||
"resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
"resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
||||||
"version" "6.3.0"
|
"version" "6.3.0"
|
||||||
|
|
||||||
"semver@^7.2.1":
|
"semver@^6.2.0":
|
||||||
"integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
|
"integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
||||||
"resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
|
"resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
||||||
"version" "7.3.5"
|
"version" "6.3.0"
|
||||||
dependencies:
|
|
||||||
"lru-cache" "^6.0.0"
|
|
||||||
|
|
||||||
"semver@^7.3.5":
|
"semver@^6.3.0":
|
||||||
|
"integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
||||||
|
"resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
||||||
|
"version" "6.3.0"
|
||||||
|
|
||||||
|
"semver@^7.2.1", "semver@^7.3.5":
|
||||||
"integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
|
"integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
|
||||||
"resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
|
"resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
|
||||||
"version" "7.3.5"
|
"version" "7.3.5"
|
||||||
@ -6665,9 +6550,9 @@
|
|||||||
"version" "1.7.2"
|
"version" "1.7.2"
|
||||||
|
|
||||||
"shopify-buy@^2.11.0":
|
"shopify-buy@^2.11.0":
|
||||||
"integrity" "sha512-MueiBWvQIzpCFTp+wRQF5O1N8J9a5y88mBbhLw7x4L8x1UhiMYbjPPC02jGpHml3Lm5eu11yNZYA5TsmUDJc7A=="
|
"integrity" "sha512-L0fo8fBDO31v9dAlVmLlIuJQnfwexGvceJ+A8hhIpovvfGh4GVGDId3k9PCWOqSzVHQBvYLdeGccxqjAOlbRlg=="
|
||||||
"resolved" "https://registry.npmjs.org/shopify-buy/-/shopify-buy-2.13.0.tgz"
|
"resolved" "https://registry.npmjs.org/shopify-buy/-/shopify-buy-2.12.0.tgz"
|
||||||
"version" "2.13.0"
|
"version" "2.12.0"
|
||||||
|
|
||||||
"side-channel@^1.0.4":
|
"side-channel@^1.0.4":
|
||||||
"integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
|
"integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
|
||||||
@ -6678,12 +6563,7 @@
|
|||||||
"get-intrinsic" "^1.0.2"
|
"get-intrinsic" "^1.0.2"
|
||||||
"object-inspect" "^1.9.0"
|
"object-inspect" "^1.9.0"
|
||||||
|
|
||||||
"signal-exit@^3.0.0":
|
"signal-exit@^3.0.0", "signal-exit@^3.0.2", "signal-exit@^3.0.3":
|
||||||
"integrity" "sha512-rqYhcAnZ6d/vTPGghdrw7iumdcbXpsk1b8IG/rz+VWV51DM0p7XCtMoJ3qhPLIbp3tvyt3pKRbaaEMZYpHto8Q=="
|
|
||||||
"resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.4.tgz"
|
|
||||||
"version" "3.0.4"
|
|
||||||
|
|
||||||
"signal-exit@^3.0.2", "signal-exit@^3.0.3":
|
|
||||||
"integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
|
"integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
|
||||||
"resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"
|
"resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"
|
||||||
"version" "3.0.3"
|
"version" "3.0.3"
|
||||||
@ -6782,7 +6662,12 @@
|
|||||||
"resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
|
"resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
|
||||||
"version" "0.5.7"
|
"version" "0.5.7"
|
||||||
|
|
||||||
"source-map@^0.6.0", "source-map@^0.6.1":
|
"source-map@^0.6.0":
|
||||||
|
"integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||||
|
"resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
|
||||||
|
"version" "0.6.1"
|
||||||
|
|
||||||
|
"source-map@^0.6.1":
|
||||||
"integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
"integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||||
"resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
|
"resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
|
||||||
"version" "0.6.1"
|
"version" "0.6.1"
|
||||||
@ -6893,20 +6778,20 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"debug" "2"
|
"debug" "2"
|
||||||
|
|
||||||
"string_decoder@^1.0.0", "string_decoder@^1.1.1", "string_decoder@1.3.0":
|
"string_decoder@^1.0.0", "string_decoder@~1.1.1":
|
||||||
"integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
|
|
||||||
"resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
|
|
||||||
"version" "1.3.0"
|
|
||||||
dependencies:
|
|
||||||
"safe-buffer" "~5.2.0"
|
|
||||||
|
|
||||||
"string_decoder@~1.1.1":
|
|
||||||
"integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="
|
"integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="
|
||||||
"resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
|
"resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
|
||||||
"version" "1.1.1"
|
"version" "1.1.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"safe-buffer" "~5.1.0"
|
"safe-buffer" "~5.1.0"
|
||||||
|
|
||||||
|
"string_decoder@^1.1.1", "string_decoder@1.3.0":
|
||||||
|
"integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
|
||||||
|
"version" "1.3.0"
|
||||||
|
dependencies:
|
||||||
|
"safe-buffer" "~5.2.0"
|
||||||
|
|
||||||
"string-argv@0.3.1":
|
"string-argv@0.3.1":
|
||||||
"integrity" "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg=="
|
"integrity" "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg=="
|
||||||
"resolved" "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"
|
"resolved" "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"
|
||||||
@ -7037,9 +6922,9 @@
|
|||||||
"version" "2.0.1"
|
"version" "2.0.1"
|
||||||
|
|
||||||
"stripe@^8.176.0":
|
"stripe@^8.176.0":
|
||||||
"integrity" "sha512-3oyuIbuW3WDsbGnMUtIZPkr+sOUJ3NEtEwghd81ZuWc+Tq09MrgWXGekbVnbxA3TMFwfKOILw6QoiPA7za4JUg=="
|
"integrity" "sha512-ZUdvyX+sizTxXLEbUjgTShrulSWSkMIt7hIKdAkhnajYrHdzVtdmhBJl8sQbR9chMVox3Ig5ohilyeIrvcCE2g=="
|
||||||
"resolved" "https://registry.npmjs.org/stripe/-/stripe-8.191.0.tgz"
|
"resolved" "https://registry.npmjs.org/stripe/-/stripe-8.184.0.tgz"
|
||||||
"version" "8.191.0"
|
"version" "8.184.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" ">=8.1.0"
|
"@types/node" ">=8.1.0"
|
||||||
"qs" "^6.6.0"
|
"qs" "^6.6.0"
|
||||||
@ -7304,6 +7189,11 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"punycode" "^2.1.0"
|
"punycode" "^2.1.0"
|
||||||
|
|
||||||
|
"tr46@~0.0.3":
|
||||||
|
"integrity" "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o="
|
||||||
|
"resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
|
||||||
|
"version" "0.0.3"
|
||||||
|
|
||||||
"ts-log@^2.2.3":
|
"ts-log@^2.2.3":
|
||||||
"integrity" "sha512-XvB+OdKSJ708Dmf9ore4Uf/q62AYDTzFcAdxc8KNML1mmAWywRFVt/dn1KYJH8Agt5UJNujfM3znU5PxgAzA2w=="
|
"integrity" "sha512-XvB+OdKSJ708Dmf9ore4Uf/q62AYDTzFcAdxc8KNML1mmAWywRFVt/dn1KYJH8Agt5UJNujfM3znU5PxgAzA2w=="
|
||||||
"resolved" "https://registry.npmjs.org/ts-log/-/ts-log-2.2.3.tgz"
|
"resolved" "https://registry.npmjs.org/ts-log/-/ts-log-2.2.3.tgz"
|
||||||
@ -7345,10 +7235,10 @@
|
|||||||
"resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
|
"resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
|
||||||
"version" "1.14.1"
|
"version" "1.14.1"
|
||||||
|
|
||||||
"tslib@^2", "tslib@^2.0.3", "tslib@^2.1.0", "tslib@~2.3.0":
|
"tslib@^2", "tslib@^2.0.3", "tslib@^2.1.0", "tslib@~2.2.0":
|
||||||
"integrity" "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
|
"integrity" "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w=="
|
||||||
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz"
|
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz"
|
||||||
"version" "2.3.0"
|
"version" "2.2.0"
|
||||||
|
|
||||||
"tslib@~2.0.1":
|
"tslib@~2.0.1":
|
||||||
"integrity" "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
|
"integrity" "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
|
||||||
@ -7360,10 +7250,10 @@
|
|||||||
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz"
|
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz"
|
||||||
"version" "2.1.0"
|
"version" "2.1.0"
|
||||||
|
|
||||||
"tslib@~2.2.0":
|
"tslib@~2.3.0":
|
||||||
"integrity" "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w=="
|
"integrity" "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
|
||||||
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz"
|
"resolved" "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz"
|
||||||
"version" "2.2.0"
|
"version" "2.3.0"
|
||||||
|
|
||||||
"tsutils@^3.21.0":
|
"tsutils@^3.21.0":
|
||||||
"integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="
|
"integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="
|
||||||
@ -7589,6 +7479,11 @@
|
|||||||
"glob-to-regexp" "^0.4.1"
|
"glob-to-regexp" "^0.4.1"
|
||||||
"graceful-fs" "^4.1.2"
|
"graceful-fs" "^4.1.2"
|
||||||
|
|
||||||
|
"webidl-conversions@^3.0.0":
|
||||||
|
"integrity" "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE="
|
||||||
|
"resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
|
||||||
|
"version" "3.0.1"
|
||||||
|
|
||||||
"webidl-conversions@^4.0.2":
|
"webidl-conversions@^4.0.2":
|
||||||
"integrity" "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
|
"integrity" "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
|
||||||
"resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"
|
"resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"
|
||||||
@ -7614,10 +7509,13 @@
|
|||||||
"resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
|
"resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
|
||||||
"version" "3.6.2"
|
"version" "3.6.2"
|
||||||
|
|
||||||
"whatwg-fetch@3.0.0":
|
"whatwg-url@^5.0.0":
|
||||||
"integrity" "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q=="
|
"integrity" "sha1-lmRU6HZUYuN2RNNib2dCzotwll0="
|
||||||
"resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz"
|
"resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
|
||||||
"version" "3.0.0"
|
"version" "5.0.0"
|
||||||
|
dependencies:
|
||||||
|
"tr46" "~0.0.3"
|
||||||
|
"webidl-conversions" "^3.0.0"
|
||||||
|
|
||||||
"whatwg-url@^7.0.0":
|
"whatwg-url@^7.0.0":
|
||||||
"integrity" "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="
|
"integrity" "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="
|
||||||
@ -7715,21 +7613,11 @@
|
|||||||
"imurmurhash" "^0.1.4"
|
"imurmurhash" "^0.1.4"
|
||||||
"slide" "^1.1.5"
|
"slide" "^1.1.5"
|
||||||
|
|
||||||
"ws@*", "ws@7.4.5":
|
"ws@*", "ws@^5.2.0 || ^6.0.0 || ^7.0.0", "ws@^7.3.1", "ws@7.4.5":
|
||||||
"integrity" "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g=="
|
"integrity" "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g=="
|
||||||
"resolved" "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz"
|
"resolved" "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz"
|
||||||
"version" "7.4.5"
|
"version" "7.4.5"
|
||||||
|
|
||||||
"ws@^5.2.0 || ^6.0.0 || ^7.0.0":
|
|
||||||
"integrity" "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz"
|
|
||||||
"version" "7.5.0"
|
|
||||||
|
|
||||||
"ws@^7.3.1":
|
|
||||||
"integrity" "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw=="
|
|
||||||
"resolved" "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz"
|
|
||||||
"version" "7.5.0"
|
|
||||||
|
|
||||||
"xtend@^4.0.0", "xtend@^4.0.2":
|
"xtend@^4.0.0", "xtend@^4.0.2":
|
||||||
"integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
"integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
||||||
"resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
|
"resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user