Bump deps (& extract list checks) (#107)

This commit is contained in:
Jaco Greeff
2021-02-16 13:18:50 +01:00
committed by GitHub
parent 7910cffad6
commit f0d6db17e1
4 changed files with 260 additions and 237 deletions
+2 -2
View File
@@ -22,8 +22,8 @@
"test": "polkadot-dev-run-test --coverage --runInBand --testPathIgnorePatterns addrcheck --testPathIgnorePatterns crosscheck"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@polkadot/dev": "^0.61.25",
"@babel/core": "^7.12.16",
"@polkadot/dev": "^0.61.26",
"@types/jest": "^26.0.20"
},
"version": "0.5.4",
+3 -3
View File
@@ -13,9 +13,9 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/phishing#readme",
"dependencies": {
"@babel/runtime": "^7.12.13",
"@polkadot/util": "^5.6.2",
"@polkadot/util-crypto": "^5.6.2",
"@polkadot/x-fetch": "^5.6.2"
"@polkadot/util": "^5.6.3",
"@polkadot/util-crypto": "^5.6.3",
"@polkadot/x-fetch": "^5.6.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
+29 -14
View File
@@ -71,31 +71,46 @@ function checkTag (url: string, tag: string, attr?: string): Promise<[string, st
});
}
// all the available checks
function checkAll (): Promise<[string, string[]][]> {
return Promise.all([
...[
'polkadot.center',
'polkadot-event.com'
].map((u) => checkGetWallet(u)),
...[
'https://polkadotlive.network/block-assets/index.html',
'https://polkadots.network/block.html'
].map((u) => checkTag(u, 'p', 'id="trnsctin"')),
...[
'https://claimpolka.live/claim/index.html',
'https://polkadot-airdrop.org/block/index.html',
'https://polkadot-bonus.network/block/index.html'
].map((u) => checkTag(u, 'span', 'class="real-address"')),
...[
'https://polkadot-get.com/',
'https://polkadot-promo.info/'
].map((u) => checkTag(u, 'span', 'id="cosh"')),
checkTag('https://dot4.org/promo/', 'p', 'class="payment-title"'),
checkTag('https://polkadotairdrop.com/address/', 'cool')
]);
}
describe('addrcheck', (): void => {
beforeAll((): void => {
jest.setTimeout(5 * 60 * 1000);
});
it('has all known addresses', async (): Promise<void> => {
const ours = await retrieveAddrList();
const [ours, results] = await Promise.all([
retrieveAddrList(),
checkAll()
]);
const all = Object.values(ours).reduce((all: string[], addrs: string[]): string[] => {
all.push(...addrs);
return all;
}, []);
const results = await Promise.all([
checkGetWallet('polkadot.center'),
checkGetWallet('polkadot-event.com'),
checkTag('https://polkadotlive.network/block-assets/index.html', 'p', 'id="trnsctin"'),
checkTag('https://polkadots.network/block.html', 'p', 'id="trnsctin"'),
checkTag('https://claimpolka.live/claim/index.html', 'span', 'class="real-address"'),
checkTag('https://polkadot-airdrop.org/block/index.html', 'span', 'class="real-address"'),
checkTag('https://polkadot-bonus.network/block/index.html', 'span', 'class="real-address"'),
checkTag('https://polkadot-get.com/', 'span', 'id="cosh"'),
checkTag('https://polkadot-promo.info/', 'span', 'id="cosh"'),
checkTag('https://dot4.org/promo/', 'p', 'class="payment-title"'),
checkTag('https://polkadotairdrop.com/address/', 'cool')
]);
const listEmpty = results.filter(([, found]) => !found.length).map(([site]) => site);
const mapFound = results.filter(([, found]) => found.length).reduce((all, [site, found]) => ({ ...all, [site]: found }), {});
const mapMiss = results
+226 -218
View File
@@ -5,9 +5,9 @@ __metadata:
version: 4
cacheKey: 7
"@babel/cli@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/cli@npm:7.12.13"
"@babel/cli@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/cli@npm:7.12.16"
dependencies:
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents
chokidar: ^3.4.0
@@ -29,7 +29,16 @@ __metadata:
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 3a7c35832b82b4eac6e82e71d5d59d5c98c313c9c96b6722ad53fa75e7ce7f29808d5774f1c8d4e2bad1d436dbb1be6eed4b7e164a62329fd71b8a4da67635ca
checksum: b58e2581b8671daf437beac97c290261913bf4b21115b7bcc1f1fcd3feaf5ad16cb135a02ba53e9380d1072aa8f691894d9bb03279f1c14ee0ef0a422d0c969e
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
@@ -49,15 +58,15 @@ __metadata:
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.13, @babel/core@npm:^7.7.5":
version: 7.12.13
resolution: "@babel/core@npm:7.12.13"
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.16, @babel/core@npm:^7.7.5":
version: 7.12.16
resolution: "@babel/core@npm:7.12.16"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.12.13
"@babel/generator": ^7.12.15
"@babel/helper-module-transforms": ^7.12.13
"@babel/helpers": ^7.12.13
"@babel/parser": ^7.12.13
"@babel/parser": ^7.12.16
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
@@ -68,11 +77,11 @@ __metadata:
lodash: ^4.17.19
semver: ^5.4.1
source-map: ^0.5.0
checksum: c8cb5712616c6f3c9c593cb8f9a084b33481c656b3dd74eafb6f095de7d5699125131c88cf2ebc4c2ed7887c4ad8d65a43efdc6c0a2edd9c269b2793fdb593d3
checksum: 87b621eb25d1c96adb95a4f019659d856aa6c4a45ee3ad234fb8066b1ff40ef9ae0052dcdba549ae92d1505207f1c53203b3e410bdadddedaecd1e45fb1172f7
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.13":
"@babel/generator@npm:^7.12.13, @babel/generator@npm:^7.12.15":
version: 7.12.15
resolution: "@babel/generator@npm:7.12.15"
dependencies:
@@ -102,32 +111,32 @@ __metadata:
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-compilation-targets@npm:7.12.13"
"@babel/helper-compilation-targets@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-compilation-targets@npm:7.12.16"
dependencies:
"@babel/compat-data": ^7.12.13
"@babel/helper-validator-option": ^7.12.11
"@babel/helper-validator-option": ^7.12.16
browserslist: ^4.14.5
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4b91f743253f5c2c5a74c9733bb6cca536dd2b14fdd458a722755fd63d1df4d8691fe805d1fd406555c25b6ac63d0e6430e3aa9ff9a21f10724e1b63a15602f7
checksum: 3eadb8722a1037a76ad98cabbea306f6f50f2de3f3116bed3d4a3e0cfc919fd5acbfd4eaf816a732be8477b27c45233071c013a3beadf9b3de1950835a37fbdb
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.13"
"@babel/helper-create-class-features-plugin@npm:^7.12.13, @babel/helper-create-class-features-plugin@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.16"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.12.16
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: dfb86b2d5cf12159f45a35b208ab21c286cac523d32f03e7b7b86bb38bc91ad8a60d911856794546d02723c40dbdb76aa0c136cf412d8fb6e6e4a6dcf501123a
checksum: 535bdbbde5f0d6d3cf1297126c30606c7915847a9a576dc33384ce5d7bbc41a3a94cde458bfe4cdc19539c0fbb11344f84ebe96ae5fd94034a32382f054738ad
languageName: node
linkType: hard
@@ -181,12 +190,12 @@ __metadata:
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.13"
"@babel/helper-member-expression-to-functions@npm:^7.12.13, @babel/helper-member-expression-to-functions@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.16"
dependencies:
"@babel/types": ^7.12.13
checksum: 64827b3c56d21e4b118c02ebe36ff6b18917f0dfa03d40580a1e0d01f8d205636c6762e930b7a8be9fffa5d4cd5d5042779e19bb3d22aefea7673fec815e3bb4
checksum: d4c86c2686343013a4cb1e67085293ec18cd9b5797d8bd97df51250ff55ea9cf111a62dc721c346ada33c05315cbd69f7ab880b1d5d513e9858e000b70d86845
languageName: node
linkType: hard
@@ -289,10 +298,10 @@ __metadata:
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-option@npm:7.12.11"
checksum: c0a861e95f4f24ed59535c28206f62e639404db873473886ec77b50fef53e21111b4093522838927b79be768a885ad2007086b2434353b9d2b89b891ca14028a
"@babel/helper-validator-option@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-validator-option@npm:7.12.16"
checksum: df6c04030ac3ed5ac49f1eaf5a25b3c86b5c4e1bbb290c595fe1b4b6729976c37f05110b925c03e1450e00adcab70fa1896f4acbbe7b52ac8f7b870917aa163f
languageName: node
linkType: hard
@@ -319,7 +328,7 @@ __metadata:
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/highlight@npm:7.12.13"
dependencies:
@@ -330,12 +339,12 @@ __metadata:
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13":
version: 7.12.15
resolution: "@babel/parser@npm:7.12.15"
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/parser@npm:7.12.16"
bin:
parser: ./bin/babel-parser.js
checksum: 0e8b7fc396f8137a820bbc132be17f7b0df25393f9cc13ddcea0e0a9d3a131f5d51db2c1fe5ac8387c70b8635f3ce633d9ba84c3ad6790892f97aa0761ca69ce
checksum: 437970f6cfbe5ffbd1bcb316c3550e5ecd0003a525bf16f3c15ceb4105a6a3db22389c84c37a6d2b266e222dc92a05c25cf268bbeb937b496d9a48b8232c273f
languageName: node
linkType: hard
@@ -364,15 +373,15 @@ __metadata:
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
"@babel/plugin-proposal-dynamic-import@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.16"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4428439b483912c898d70a858f86e48f28247f55b05f4ca4ebc1f6746e63cc73e2704ed85c8fc65f2761154f4fcfa08220ac413c9edd5758d1ace03b4dcd4551
checksum: 1f8c653eeb5c74c161277e169b330cb1858136e0de15a3667c05c4bb60ad1ed63b91c1ae847c09dda225954bade2d2e7aaf64df077d41f21c42910452f97b758
languageName: node
linkType: hard
@@ -461,16 +470,16 @@ __metadata:
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.13"
"@babel/plugin-proposal-optional-chaining@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.16"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 40e7ba49868a041a4ca4d3024605fe36d9b33210d63d5350d298165e83ee91e520544bb7835fbc8419b5c2c76ae130f3da36140f4dac0d83c8daa0c01039a762
checksum: 599e90b1196d6f04f4b32b3f579c1a3f63c4d4ec3a67c738eb613bd97505367f27714c74ee8ec399d8ec613951695ff38d0895c1127a3594b53cd7c0d03073fd
languageName: node
linkType: hard
@@ -1089,16 +1098,16 @@ __metadata:
languageName: node
linkType: hard
"@babel/plugin-transform-typescript@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-typescript@npm:7.12.13"
"@babel/plugin-transform-typescript@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/plugin-transform-typescript@npm:7.12.16"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-create-class-features-plugin": ^7.12.16
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-typescript": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 92fdd46da932c1aaab9ecd444d1c0b35d6cb4e1bd70bdf7e82b72e8943ed7421eef11bf06692565b5043fffa3ba902e72f8bd4c863f9d135ba71a356a2b83e0c
checksum: cb42a4d548e1679fbc2074efff532aa5ce83c98edc4c81b9e4c872ee1ba8a5d4764b84a08f33b1650750a5324737b86abcc36ef00a92f2d35f07d5c561ba52b5
languageName: node
linkType: hard
@@ -1125,18 +1134,18 @@ __metadata:
languageName: node
linkType: hard
"@babel/preset-env@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/preset-env@npm:7.12.13"
"@babel/preset-env@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/preset-env@npm:7.12.16"
dependencies:
"@babel/compat-data": ^7.12.13
"@babel/helper-compilation-targets": ^7.12.13
"@babel/helper-compilation-targets": ^7.12.16
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-validator-option": ^7.12.11
"@babel/helper-validator-option": ^7.12.16
"@babel/plugin-proposal-async-generator-functions": ^7.12.13
"@babel/plugin-proposal-class-properties": ^7.12.13
"@babel/plugin-proposal-dynamic-import": ^7.12.1
"@babel/plugin-proposal-dynamic-import": ^7.12.16
"@babel/plugin-proposal-export-namespace-from": ^7.12.13
"@babel/plugin-proposal-json-strings": ^7.12.13
"@babel/plugin-proposal-logical-assignment-operators": ^7.12.13
@@ -1144,7 +1153,7 @@ __metadata:
"@babel/plugin-proposal-numeric-separator": ^7.12.13
"@babel/plugin-proposal-object-rest-spread": ^7.12.13
"@babel/plugin-proposal-optional-catch-binding": ^7.12.13
"@babel/plugin-proposal-optional-chaining": ^7.12.13
"@babel/plugin-proposal-optional-chaining": ^7.12.16
"@babel/plugin-proposal-private-methods": ^7.12.13
"@babel/plugin-proposal-unicode-property-regex": ^7.12.13
"@babel/plugin-syntax-async-generators": ^7.8.0
@@ -1197,7 +1206,7 @@ __metadata:
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6121a54742404293794a6760454d55e8beba0f9309b0f99866210924b71adb05077e09931e70932c5ba41c36d3306c31f0dbedc7d8310a3a5ab984aa22aadcc1
checksum: 5b949e9b21d9d3a6647fa6f199710e5d029bb5935ea71bb54f4457e1d9f2407d43e26977f629c90fbdc36a3fccee085a5316510943a7e52a5994fea2028b78e6
languageName: node
linkType: hard
@@ -1231,16 +1240,16 @@ __metadata:
languageName: node
linkType: hard
"@babel/preset-typescript@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/preset-typescript@npm:7.12.13"
"@babel/preset-typescript@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/preset-typescript@npm:7.12.16"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-validator-option": ^7.12.11
"@babel/plugin-transform-typescript": ^7.12.13
"@babel/helper-validator-option": ^7.12.16
"@babel/plugin-transform-typescript": ^7.12.16
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d4a8824acf588f1043c39be7057c7ab5de89473ae30d1ef394ee3c355ce2829d7b222d1c0740035e4da4f111002e7fee6c72b5d06d8f5b4b543fa79078cf790a
checksum: 761a01c7543d6eb419a8800de76c29a75879f6f128aae52e0c9f95231f749f310731c9655d8bcfab2d8489cef7e2a057a6215583d5e932ff8c623bf9aeac8042
languageName: node
linkType: hard
@@ -1259,7 +1268,7 @@ __metadata:
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.8.4":
"@babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.8.4":
version: 7.12.13
resolution: "@babel/runtime@npm:7.12.13"
dependencies:
@@ -1751,17 +1760,17 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/dev@npm:^0.61.25":
version: 0.61.25
resolution: "@polkadot/dev@npm:0.61.25"
"@polkadot/dev@npm:^0.61.26":
version: 0.61.26
resolution: "@polkadot/dev@npm:0.61.26"
dependencies:
"@babel/cli": ^7.12.13
"@babel/core": ^7.12.13
"@babel/cli": ^7.12.16
"@babel/core": ^7.12.16
"@babel/plugin-proposal-class-properties": ^7.12.13
"@babel/plugin-proposal-nullish-coalescing-operator": ^7.12.13
"@babel/plugin-proposal-numeric-separator": ^7.12.13
"@babel/plugin-proposal-object-rest-spread": ^7.12.13
"@babel/plugin-proposal-optional-chaining": ^7.12.13
"@babel/plugin-proposal-optional-chaining": ^7.12.16
"@babel/plugin-proposal-private-methods": ^7.12.13
"@babel/plugin-syntax-bigint": ^7.8.3
"@babel/plugin-syntax-dynamic-import": ^7.8.3
@@ -1769,29 +1778,29 @@ __metadata:
"@babel/plugin-syntax-top-level-await": ^7.12.13
"@babel/plugin-transform-regenerator": ^7.12.13
"@babel/plugin-transform-runtime": ^7.12.15
"@babel/preset-env": ^7.12.13
"@babel/preset-env": ^7.12.16
"@babel/preset-react": ^7.12.13
"@babel/preset-typescript": ^7.12.13
"@babel/preset-typescript": ^7.12.16
"@babel/register": ^7.12.13
"@babel/runtime": ^7.12.13
"@rushstack/eslint-patch": ^1.0.6
"@typescript-eslint/eslint-plugin": 4.14.2
"@typescript-eslint/parser": 4.14.2
"@typescript-eslint/eslint-plugin": 4.15.1
"@typescript-eslint/parser": 4.15.1
"@vue/component-compiler-utils": ^3.2.0
babel-jest: ^26.6.3
babel-plugin-module-extension-resolver: ^1.0.0-rc.1
babel-plugin-module-extension-resolver: ^1.0.0-rc.2
babel-plugin-module-resolver: ^4.1.0
babel-plugin-styled-components: ^1.12.0
browserslist: ^4.16.3
chalk: ^4.1.0
coveralls: ^3.1.0
eslint: ^7.19.0
eslint: ^7.20.0
eslint-config-standard: ^16.0.2
eslint-import-resolver-node: ^0.3.4
eslint-plugin-header: ^3.1.1
eslint-plugin-import: ^2.22.1
eslint-plugin-node: ^11.1.0
eslint-plugin-promise: ^4.2.1
eslint-plugin-promise: ^4.3.1
eslint-plugin-react: ^7.22.0
eslint-plugin-react-hooks: ^4.2.0
eslint-plugin-simple-import-sort: ^7.0.0
@@ -1811,10 +1820,10 @@ __metadata:
mkdirp: ^1.0.4
prettier: ^2.2.1
rimraf: ^3.0.2
typedoc: ^0.20.23
typedoc-plugin-markdown: ^3.4.5
typedoc: ^0.20.25
typedoc-plugin-markdown: ^3.5.0
typedoc-plugin-no-inherit: ^1.2.0
typescript: ^4.1.3
typescript: ^4.1.5
yargs: ^16.2.0
bin:
polkadot-ci-ghact-build: scripts/polkadot-ci-ghact-build.cjs
@@ -1838,16 +1847,16 @@ __metadata:
polkadot-exec-typedoc: scripts/polkadot-exec-typedoc.cjs
polkadot-exec-vuepress: scripts/polkadot-exec-vuepress.cjs
polkadot-exec-webpack: scripts/polkadot-exec-webpack.cjs
checksum: f7ff5259c42117542ad9941e481fb8b67ef6b32e2c65a33a19cb9d72f60258f8031dd011da0286938807b2100dcde865a6ee788f1f856bf188b56e6807e3af59
checksum: 324437fe2d7e2d89f77a2439f8e72c4930e235a576d2a04964ba8e40d852f0f523afbb11fcf689b577dbb81504c13f9ad1e499b76d4b49581cc1afb9834c894c
languageName: node
linkType: hard
"@polkadot/networks@npm:5.6.2":
version: 5.6.2
resolution: "@polkadot/networks@npm:5.6.2"
"@polkadot/networks@npm:5.6.3":
version: 5.6.3
resolution: "@polkadot/networks@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
checksum: 52390d2ebf61f97ba36b05c015a33f992e20d128b1628412f431033609c234c0437f640d9c8adff2438cb19ab40b39f0d9345d13afa2241440cc877d19139a42
checksum: 15ace5b42e949407633d297849e06a337e0eabc26928ca18862e4327f00a7002cce5bc0bfc77dde100ee1f79bce5d2e5364129b84d5434dec11a903027ed0667
languageName: node
linkType: hard
@@ -1856,9 +1865,9 @@ __metadata:
resolution: "@polkadot/phishing@workspace:packages/phishing"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/util": ^5.6.2
"@polkadot/util-crypto": ^5.6.2
"@polkadot/x-fetch": ^5.6.2
"@polkadot/util": ^5.6.3
"@polkadot/util-crypto": ^5.6.3
"@polkadot/x-fetch": ^5.6.3
"@types/js-yaml": ^4.0.0
js-yaml: ^4.0.0
languageName: unknown
@@ -1870,15 +1879,15 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/util-crypto@npm:^5.6.2":
version: 5.6.2
resolution: "@polkadot/util-crypto@npm:5.6.2"
"@polkadot/util-crypto@npm:^5.6.3":
version: 5.6.3
resolution: "@polkadot/util-crypto@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/networks": 5.6.2
"@polkadot/util": 5.6.2
"@polkadot/wasm-crypto": ^3.2.2
"@polkadot/x-randomvalues": 5.6.2
"@polkadot/networks": 5.6.3
"@polkadot/util": 5.6.3
"@polkadot/wasm-crypto": ^3.2.3
"@polkadot/x-randomvalues": 5.6.3
base-x: ^3.0.8
blakejs: ^1.1.0
bn.js: ^4.11.9
@@ -1890,108 +1899,108 @@ __metadata:
tweetnacl: ^1.0.3
xxhashjs: ^0.2.2
peerDependencies:
"@polkadot/util": 5.6.2
checksum: 64fc5191a7b56e419fb1cbfddfe635f865b152cfb886261d6ceacbe262f243bd2611290ce7d7f37f0d19a340ae58219b1aed1452a4f501cbabd6a045ad35250c
"@polkadot/util": 5.6.3
checksum: fe5d7d9a2dbd15ce7a9cd9fb04187a6e509dfd5e962ae3413f2b3f7976741bc0b54d3026a96c55a10b669fbef44787c229003154234c7edfa957c275e387ad5c
languageName: node
linkType: hard
"@polkadot/util@npm:5.6.2, @polkadot/util@npm:^5.6.2":
version: 5.6.2
resolution: "@polkadot/util@npm:5.6.2"
"@polkadot/util@npm:5.6.3, @polkadot/util@npm:^5.6.3":
version: 5.6.3
resolution: "@polkadot/util@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/x-textdecoder": 5.6.2
"@polkadot/x-textencoder": 5.6.2
"@polkadot/x-textdecoder": 5.6.3
"@polkadot/x-textencoder": 5.6.3
"@types/bn.js": ^4.11.6
bn.js: ^4.11.9
camelcase: ^5.3.1
ip-regex: ^4.3.0
checksum: a7217afa9f4f5b8aef4273417c8454de4f459a8d3150688a51098dce7537255993ecbc512a3e625bf5111d2db04674200f35e0cc4c464cf59162775ca895a4c9
checksum: 3aafeb0c44ea9e082d5b1f7a8464f700fd87ec946b54a4b74d99ff5b8411e2f4853a1c6deadb0487930ae7a59ca57de09b409108fcdd2d1cdbd5e21f8c0c1979
languageName: node
linkType: hard
"@polkadot/wasm-crypto-asmjs@npm:^3.2.2":
version: 3.2.2
resolution: "@polkadot/wasm-crypto-asmjs@npm:3.2.2"
"@polkadot/wasm-crypto-asmjs@npm:^3.2.3":
version: 3.2.3
resolution: "@polkadot/wasm-crypto-asmjs@npm:3.2.3"
dependencies:
"@babel/runtime": ^7.12.5
checksum: ddeaf412f1312ee4a045d2c94046af3b800330ee8b64e6c89f9a40abb93270a4d7fa19141107a45b84f7f24c93d1ed3c16d3c552c2e3ecdea7662dd0348a46e5
"@babel/runtime": ^7.12.13
checksum: b2184bcc818dfa5d3eb008f9840efc19c0dbe856c6f6a0450484bb4a948ec14a5c639594456052c1a879174c75bd378827b8afb64b1dc80a5a8d1efb094ad8d2
languageName: node
linkType: hard
"@polkadot/wasm-crypto-wasm@npm:^3.2.2":
version: 3.2.2
resolution: "@polkadot/wasm-crypto-wasm@npm:3.2.2"
"@polkadot/wasm-crypto-wasm@npm:^3.2.3":
version: 3.2.3
resolution: "@polkadot/wasm-crypto-wasm@npm:3.2.3"
dependencies:
"@babel/runtime": ^7.12.5
checksum: 12ff0ea3c30c731269a1428e92a2e9d9f34ff2cbc5bc5d97a1d762c9fa85acc2027fe44eadc293971976137bd79c508de68b465fffe728d4e557d8f4221efb9e
"@babel/runtime": ^7.12.13
checksum: c29b90772d6cab23b31d180ce466caa659351a1706a6e13dd0f56cb526b2dd4d7e9ea8ebed0d5607c8b20e6cbe3f6bd36b0eb6628dfa080c83982df4b1e23351
languageName: node
linkType: hard
"@polkadot/wasm-crypto@npm:^3.2.2":
version: 3.2.2
resolution: "@polkadot/wasm-crypto@npm:3.2.2"
"@polkadot/wasm-crypto@npm:^3.2.3":
version: 3.2.3
resolution: "@polkadot/wasm-crypto@npm:3.2.3"
dependencies:
"@babel/runtime": ^7.12.5
"@polkadot/wasm-crypto-asmjs": ^3.2.2
"@polkadot/wasm-crypto-wasm": ^3.2.2
"@babel/runtime": ^7.12.13
"@polkadot/wasm-crypto-asmjs": ^3.2.3
"@polkadot/wasm-crypto-wasm": ^3.2.3
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: 9940cff288e7f027566b16531f92dce560e7f18f6abdae5f1ca41e752aa5c05b7fd1208900c6ee5032d7f0822ee8f425107b84ed9f4c647aa17d1268f27ce30d
checksum: e7d530dfb58ed8d3452a6c0ccc01d36000ef97cce3e800cce95f3980b21d798d5d9f4663900d2f418db600d0d380bb09501ff5bb2d96ff61c2d047dc15682321
languageName: node
linkType: hard
"@polkadot/x-fetch@npm:^5.6.2":
version: 5.6.2
resolution: "@polkadot/x-fetch@npm:5.6.2"
"@polkadot/x-fetch@npm:^5.6.3":
version: 5.6.3
resolution: "@polkadot/x-fetch@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/x-global": 5.6.2
"@polkadot/x-global": 5.6.3
"@types/node-fetch": ^2.5.8
node-fetch: ^2.6.1
checksum: f5e8928c53a8a564013c81f4e9d81d46e8682d8a5e2eeb6862b086ce87095c3f4159b197196d6dfd8d5055a228f2fa9ead188578c2183601c494e88ea6b56149
checksum: a3f868e36ebfcab2d0cc4199e9a18f7725608ed143bf974957c145e0ad79ac248821a8eae0c813a785ebdd92031699822b0d86619f97c55dbb1ff86726019282
languageName: node
linkType: hard
"@polkadot/x-global@npm:5.6.2":
version: 5.6.2
resolution: "@polkadot/x-global@npm:5.6.2"
"@polkadot/x-global@npm:5.6.3":
version: 5.6.3
resolution: "@polkadot/x-global@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@types/node-fetch": ^2.5.8
node-fetch: ^2.6.1
checksum: 9186e68718cf49d28d6feacd056ab15f29697005dee2dbbe68aa24f340c15f8c9fd2cd47e428a4d43904b190d155d0341cfc6591fb75ae0ad6fadd08cfb8cc26
checksum: feaf9700730c4b40a43666de15e240ae21016c2644660b3c950ca2688021ff4ff8c0d9be19c149028cfe7802df8bdd2965d162c0a7f92a89b6c423643348adbc
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:5.6.2":
version: 5.6.2
resolution: "@polkadot/x-randomvalues@npm:5.6.2"
"@polkadot/x-randomvalues@npm:5.6.3":
version: 5.6.3
resolution: "@polkadot/x-randomvalues@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/x-global": 5.6.2
checksum: fc03639005458092d32367ccbc21ed7c5935a74de75f98928fde6e20f7fe72092e138e5734fd61c654d9a8c07468d499760cfda9bfb6f56aab763733790fbeef
"@polkadot/x-global": 5.6.3
checksum: 1e90a09b999c5306cad3c9fec70ba19b06895b6b82e5791362a4dd37e021d6d1b137a67cc9bd4f158475d11aa5ce646c2fdfb32c472c7eeb6bf307e899cbd989
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:5.6.2":
version: 5.6.2
resolution: "@polkadot/x-textdecoder@npm:5.6.2"
"@polkadot/x-textdecoder@npm:5.6.3":
version: 5.6.3
resolution: "@polkadot/x-textdecoder@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/x-global": 5.6.2
checksum: 3e3d6e47085f9ffa2ae1a4fc7f2e1aaed1e0a53fd25e06e64b3be77b1424c5dda6df20b3ba295dafab067fcfeff5c659766b60fa2c7b81757f193d077611b963
"@polkadot/x-global": 5.6.3
checksum: 34da39d2ea35842b069582930d9e970f7ff42b6a1182b320a9b1117b70e648ef47a36eb0f5d1cdcb2acb3f7634d5d607799a9fc82975a56bb5243060b41f7e31
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:5.6.2":
version: 5.6.2
resolution: "@polkadot/x-textencoder@npm:5.6.2"
"@polkadot/x-textencoder@npm:5.6.3":
version: 5.6.3
resolution: "@polkadot/x-textencoder@npm:5.6.3"
dependencies:
"@babel/runtime": ^7.12.13
"@polkadot/x-global": 5.6.2
checksum: d2db718190ac121da44af9e635ab755fdf862a3c109f537c08f05befc6bda1a8d5c509465e75154e405dff7136398a808be3c7c939967560f5ccec9da93dd755
"@polkadot/x-global": 5.6.3
checksum: 706f0b05a1fc49c88b9b43596d0bf99cab41d78bed27eac984b30422e690ecd80644c74c4aa4915b7611c5b87df7df9fe4761b7d5ef436ac5b3f326f8ebf1439
languageName: node
linkType: hard
@@ -2265,12 +2274,12 @@ __metadata:
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/eslint-plugin@npm:4.14.2"
"@typescript-eslint/eslint-plugin@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/eslint-plugin@npm:4.15.1"
dependencies:
"@typescript-eslint/experimental-utils": 4.14.2
"@typescript-eslint/scope-manager": 4.14.2
"@typescript-eslint/experimental-utils": 4.15.1
"@typescript-eslint/scope-manager": 4.15.1
debug: ^4.1.1
functional-red-black-tree: ^1.0.1
lodash: ^4.17.15
@@ -2283,86 +2292,85 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
checksum: 9bee3347a22233cea181934889c9e193f4a5c1c0f33dfdb314d1b905c13f95e5139bbcd043a0e5b946a753e0fca574bfd34187dfe49580152263a5e94cb84a44
checksum: 89dbb3b0cf5ea36ae7e89e895ebff9a8252e5b50e8dac1deb43b9aa823cfdd81cd6017ae123d0051b06dd3c770987f58396c94dd91b9b4773a6dd752ef276774
languageName: node
linkType: hard
"@typescript-eslint/experimental-utils@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/experimental-utils@npm:4.14.2"
"@typescript-eslint/experimental-utils@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/experimental-utils@npm:4.15.1"
dependencies:
"@types/json-schema": ^7.0.3
"@typescript-eslint/scope-manager": 4.14.2
"@typescript-eslint/types": 4.14.2
"@typescript-eslint/typescript-estree": 4.14.2
"@typescript-eslint/scope-manager": 4.15.1
"@typescript-eslint/types": 4.15.1
"@typescript-eslint/typescript-estree": 4.15.1
eslint-scope: ^5.0.0
eslint-utils: ^2.0.0
peerDependencies:
eslint: "*"
checksum: 6d74d220ac9a2357315fdc56da16ba239886018b83e624dd51db1390c632b4cbea275c7e13aa72e3392d289c63f97cb799d948a5e41cae2f361ac378c31a7baf
checksum: 1b5950ce13d0d25d1970651f11df4f066d331f0fee4c56158b10b5df6e41650a8961d5cf4c3abfd75ec061d02ff7678adde7787fee1985fa0007b8e32a6cc22f
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/parser@npm:4.14.2"
"@typescript-eslint/parser@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/parser@npm:4.15.1"
dependencies:
"@typescript-eslint/scope-manager": 4.14.2
"@typescript-eslint/types": 4.14.2
"@typescript-eslint/typescript-estree": 4.14.2
"@typescript-eslint/scope-manager": 4.15.1
"@typescript-eslint/types": 4.15.1
"@typescript-eslint/typescript-estree": 4.15.1
debug: ^4.1.1
peerDependencies:
eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 31f32fb0fe032f5fcedbfe7c81b76717599f1c67a2cf8c3c2eebe9bac450a6eea39124a64841a878136c900de6930096565150e28e295d09c0d35bf1a10f2ad9
checksum: b35272c48600b06ab7b55f9ed1d14ab6ee08bde72813f00b31651f44ea95e9c25b62b34b89cc6415b51ab1e7563dce749f82d43d65078db170e0f2a943fee987
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/scope-manager@npm:4.14.2"
"@typescript-eslint/scope-manager@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/scope-manager@npm:4.15.1"
dependencies:
"@typescript-eslint/types": 4.14.2
"@typescript-eslint/visitor-keys": 4.14.2
checksum: fa063d8646f01d62ce1e81a7b1b004779cacef1a5c16be80914cf82686f390063462359244721119e17eea13fb458e004b41d775b79283ece75da4041a7bbd33
"@typescript-eslint/types": 4.15.1
"@typescript-eslint/visitor-keys": 4.15.1
checksum: e0f9a02b74ff683a3b4080275c509717104e7b24cd99e8273cd5148e3258a11e5c8ebaaa56c642914880516bb9fc534f0fbd298132adfabaa96237e835943dbd
languageName: node
linkType: hard
"@typescript-eslint/types@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/types@npm:4.14.2"
checksum: 94b982402fc60603905199fe847cb579f8ced710489e6feb78ee3ee886ba86e4811f3d6f4a89150151c63f6bd8b492802f9fdb0975086f1dc78f0c3b87464f98
"@typescript-eslint/types@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/types@npm:4.15.1"
checksum: 30f7c157762e16ee5f8626960d1a869021844ac18354cf7b11ec89ba696ac4e3c027d1de485d6237ea04b8c4d055d3990fc0dd05f45ef1b49bcb4d7e80f1294e
languageName: node
linkType: hard
"@typescript-eslint/typescript-estree@npm:4.14.2, @typescript-eslint/typescript-estree@npm:^4.8.2":
version: 4.14.2
resolution: "@typescript-eslint/typescript-estree@npm:4.14.2"
"@typescript-eslint/typescript-estree@npm:4.15.1, @typescript-eslint/typescript-estree@npm:^4.8.2":
version: 4.15.1
resolution: "@typescript-eslint/typescript-estree@npm:4.15.1"
dependencies:
"@typescript-eslint/types": 4.14.2
"@typescript-eslint/visitor-keys": 4.14.2
"@typescript-eslint/types": 4.15.1
"@typescript-eslint/visitor-keys": 4.15.1
debug: ^4.1.1
globby: ^11.0.1
is-glob: ^4.0.1
lodash: ^4.17.15
semver: ^7.3.2
tsutils: ^3.17.1
peerDependenciesMeta:
typescript:
optional: true
checksum: 01339aa0c39e188d2f07c67c93cce1631942acf3d556ed62a3780503e008d32710f7b77da9ccaaf21829819b1f2348991cd1ea10aa150c79fc4c440414fcee8e
checksum: 61787ac95568c9b21d854de38f15a7a7ec3f073d542266f6eebdb6602d623da7d9242415255b87cfd41df3837db748cc147e64ebed3374c572f61e4e10105cd4
languageName: node
linkType: hard
"@typescript-eslint/visitor-keys@npm:4.14.2":
version: 4.14.2
resolution: "@typescript-eslint/visitor-keys@npm:4.14.2"
"@typescript-eslint/visitor-keys@npm:4.15.1":
version: 4.15.1
resolution: "@typescript-eslint/visitor-keys@npm:4.15.1"
dependencies:
"@typescript-eslint/types": 4.14.2
"@typescript-eslint/types": 4.15.1
eslint-visitor-keys: ^2.0.0
checksum: 03c92e600213a2fab8e9460b91fe9a7552eb6b85a64d1e61b8ac67dd3d3cf492f72318f72f701a6c0d45f8779f090e902cfdb4da56866816548baf1281e979e0
checksum: 779711aa95940738507eeb97e18efa0244d8513846284f497fb9b400d0d2e0791cc746829fd6870eb95a6256f4ab30b53b518d59a2e005d050f0cfcf8caa3ea2
languageName: node
linkType: hard
@@ -2861,10 +2869,10 @@ __metadata:
languageName: node
linkType: hard
"babel-plugin-module-extension-resolver@npm:^1.0.0-rc.1":
version: 1.0.0-rc.1
resolution: "babel-plugin-module-extension-resolver@npm:1.0.0-rc.1"
checksum: 0345ce89161cac82e8811e04bddc54a5ab44378fabd609a40e50ea44a6bcc236fd6d7dcbe312d93938eb6141f1880af31bdf83ac68233b80ab6757ce2be8b597
"babel-plugin-module-extension-resolver@npm:^1.0.0-rc.2":
version: 1.0.0-rc.2
resolution: "babel-plugin-module-extension-resolver@npm:1.0.0-rc.2"
checksum: f28afa3d081134d92c0133da93f9a000a078d39297eba974d458bacc04889a939f03a7f1aabb465eecb3fca7d2e4c622a480ddd578c0f358a158ccf557c881b8
languageName: node
linkType: hard
@@ -4517,10 +4525,10 @@ __metadata:
languageName: node
linkType: hard
"eslint-plugin-promise@npm:^4.2.1":
version: 4.2.1
resolution: "eslint-plugin-promise@npm:4.2.1"
checksum: 8c233a0b5f5646e08709e999aa75973481ee46c45255ec4b4d1577915f68d79ae52f6f84e361af5b761971294bdb38ec86021515fa4cff178f57c989226dd671
"eslint-plugin-promise@npm:^4.3.1":
version: 4.3.1
resolution: "eslint-plugin-promise@npm:4.3.1"
checksum: 01aa61c2bea6cfd2e612cda9aaaf079c7652503dd613248a251c99b58414245ee999a8f5ca0a15f62c6b1605aca4dcbace272d67f22d79aac3f698547eb75d9a
languageName: node
linkType: hard
@@ -4607,11 +4615,11 @@ __metadata:
languageName: node
linkType: hard
"eslint@npm:^7.19.0":
version: 7.19.0
resolution: "eslint@npm:7.19.0"
"eslint@npm:^7.20.0":
version: 7.20.0
resolution: "eslint@npm:7.20.0"
dependencies:
"@babel/code-frame": ^7.0.0
"@babel/code-frame": 7.12.11
"@eslint/eslintrc": ^0.3.0
ajv: ^6.10.0
chalk: ^4.0.0
@@ -4623,7 +4631,7 @@ __metadata:
eslint-utils: ^2.1.0
eslint-visitor-keys: ^2.0.0
espree: ^7.3.1
esquery: ^1.2.0
esquery: ^1.4.0
esutils: ^2.0.2
file-entry-cache: ^6.0.0
functional-red-black-tree: ^1.0.1
@@ -4650,7 +4658,7 @@ __metadata:
v8-compile-cache: ^2.0.3
bin:
eslint: bin/eslint.js
checksum: 0461e8b2b53c9097995efe131f659e2df77deda1daf79d7673654e2cbdac90bd2a412758b0ee0db48d29bf58f4b4d99170a70e17df1345782f0c8fa511bb0734
checksum: 1d56cabc7e21f43b8bb6a1934f2488b27d86b018ce2246bc9b89e52931e26b306c5883f5e4ff5c6e0228e0e8673553a460e98eacc4890f9e5984002df0292123
languageName: node
linkType: hard
@@ -4675,12 +4683,12 @@ __metadata:
languageName: node
linkType: hard
"esquery@npm:^1.2.0":
version: 1.3.1
resolution: "esquery@npm:1.3.1"
"esquery@npm:^1.4.0":
version: 1.4.0
resolution: "esquery@npm:1.4.0"
dependencies:
estraverse: ^5.1.0
checksum: 0aac7572bc8cf4aad87f4424b3e5e80917c214d15a1da02718c4bb0e6030552b0dea700777747507d5e310cfba43ea719e6397a45050fb50b9b68c0f7de6b26a
checksum: 3293ecc1507a8cec8d2da8a4707275c2ccf5413e7a3c771fe41c16cee603cacd193bb7383a6e219d1f7d2449156ef575ffd66c839073d4a8058f72856a15f622
languageName: node
linkType: hard
@@ -7535,12 +7543,12 @@ __metadata:
languageName: node
linkType: hard
"marked@npm:^1.2.9":
version: 1.2.9
resolution: "marked@npm:1.2.9"
"marked@npm:^2.0.0":
version: 2.0.0
resolution: "marked@npm:2.0.0"
bin:
marked: bin/marked
checksum: d6cce03ea4a069e31d8e3c6ef99a2aee62aa6b309462a380c1f57caaec6aad0d9d62f1195e45230b838a301484a7a94d2bc70ba07bfddb003f8685710708874d
checksum: 5b3b13b9b68beb126284d04fedeacee37c847618c091cf575eaa32746cf0af2d65b1ed25b2cc9269b0cdffa2e8dc5aa2daacff81ead68c59a7a6a1656f1d28ed
languageName: node
linkType: hard
@@ -9416,9 +9424,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "root-workspace-0b6124@workspace:."
dependencies:
"@babel/core": ^7.12.13
"@babel/core": ^7.12.16
"@pinata/sdk": ^1.1.11
"@polkadot/dev": ^0.61.25
"@polkadot/dev": ^0.61.26
"@types/jest": ^26.0.20
dnslink-cloudflare: ^3.0.0
languageName: unknown
@@ -10574,14 +10582,14 @@ __metadata:
languageName: node
linkType: hard
"typedoc-plugin-markdown@npm:^3.4.5":
version: 3.4.5
resolution: "typedoc-plugin-markdown@npm:3.4.5"
"typedoc-plugin-markdown@npm:^3.5.0":
version: 3.5.0
resolution: "typedoc-plugin-markdown@npm:3.5.0"
dependencies:
handlebars: ^4.7.6
peerDependencies:
typedoc: ">=0.20.0"
checksum: b2a884bf26131f87dcdd245331156000b153a0cfb058a3262f45b43f790ad00a7cefc61d37aa20b7da4b627c6f281d235d68e0fe36ddc24c3a126ffedc9a7cff
checksum: 66cf320f9dbd2de2344f0d68970d774a0aff21434059ac93539be96baf343e984b7da4678d41a28687e0872664a074b31f231c8b50a2d579d84beb9ec74dbb2e
languageName: node
linkType: hard
@@ -10594,16 +10602,16 @@ __metadata:
languageName: node
linkType: hard
"typedoc@npm:^0.20.23":
version: 0.20.23
resolution: "typedoc@npm:0.20.23"
"typedoc@npm:^0.20.25":
version: 0.20.25
resolution: "typedoc@npm:0.20.25"
dependencies:
colors: ^1.4.0
fs-extra: ^9.1.0
handlebars: ^4.7.6
lodash: ^4.17.20
lunr: ^2.3.9
marked: ^1.2.9
marked: ^2.0.0
minimatch: ^3.0.0
progress: ^2.0.3
shelljs: ^0.8.4
@@ -10613,7 +10621,7 @@ __metadata:
typescript: 3.9.x || 4.0.x || 4.1.x
bin:
typedoc: bin/typedoc
checksum: 551640e42e050dba8de22450a91ae7daefb3755fa8d2d7dafc71a4d1a7acbf367798b2a84400dee69c2902a1f90be47038ac966f113b4692451de9bfd5c6cca5
checksum: 6d1ec1d076e0f73f1bd4e40434f265808b137e5f04376ccbabdec1e7f27f4b63049ba6fbd7301fe150d8b582ac91904b376592a0ae389a93d39f4ec009c80a5b
languageName: node
linkType: hard